:root {
  --bg: #ffffff;
  --text: #0b1220;
  --muted: rgba(11, 18, 32, 0.62);

  --blue: #2563eb;
  --blueDeep: #1d4ed8;
  --blueSoft: rgba(37, 99, 235, 0.08);
  --blueSoft2: rgba(37, 99, 235, 0.12);

  --stroke: rgba(11, 18, 32, 0.1);
  --strokeSoft: rgba(11, 18, 32, 0.07);

  --shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
  --shadow2: 0 10px 24px rgba(15, 23, 42, 0.1);

  --r16: 16px;
  --r20: 20px;
  --r24: 24px;

  --tap: 54px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --focus: 0 0 0 3px rgba(37, 99, 235, 0.18), 0 0 0 1px rgba(37, 99, 235, 0.22);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

.wrap {
  width: min(720px, 92vw);
  margin: 0 auto;
}
.muted {
  color: var(--muted);
}
.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}
.ic {
  width: 18px;
  height: 18px;
}

/* Top */
.top {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--strokeSoft);
}
.top__in {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(37, 99, 235, 0.16),
    rgba(37, 99, 235, 0.06)
  );
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.12);
}
.brand__t {
  font-weight: 920;
  letter-spacing: -0.25px;
}
.brand__s {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.top__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.iconBtn {
  width: var(--tap);
  height: var(--tap);
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(37, 99, 235, 0.06);
  color: var(--blue);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease),
    background 180ms var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.iconBtn:hover {
  transform: translateY(-1px);
  background: rgba(37, 99, 235, 0.1);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}
.iconBtn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

/* Hero */
.hero {
  padding: 16px 0 6px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(11, 18, 32, 0.76);
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: rgba(37, 99, 235, 0.06);
  padding: 8px 10px;
  border-radius: 999px;
}
.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.14);
}
.pill__sep {
  width: 1px;
  height: 14px;
  background: rgba(11, 18, 32, 0.14);
}

.h1 {
  margin: 12px 0 0;
  font-size: clamp(28px, 8vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.8px;
  font-weight: 940;
}
.accent {
  background: linear-gradient(90deg, var(--blue), rgba(96, 165, 250, 0.95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hero__cta {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

/* Buttons */
.btn {
  min-height: var(--tap);
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: #fff;
  color: rgba(11, 18, 32, 0.92);
  padding: 12px 14px;
  font-weight: 900;
  letter-spacing: -0.15px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease),
    border-color 180ms var(--ease), background 180ms var(--ease);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  -webkit-tap-highlight-color: transparent;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.btn--xl {
  min-height: 62px;
  border-radius: 20px;
  font-size: 15px;
}

.btn--ghost {
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: none;
}
.btn--ghost:hover {
  background: rgba(37, 99, 235, 0.1);
}

.btn--primary {
  background: linear-gradient(180deg, var(--blue), var(--blueDeep));
  border-color: rgba(37, 99, 235, 0.35);
  color: #fff;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.22);
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: -40% -30%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: translateX(-60%) rotate(12deg);
  opacity: 0.55;
}
.btn--primary:hover::after {
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translateX(70%) rotate(12deg);
}

.btn.is-loading {
  pointer-events: none;
  opacity: 0.92;
}
.btn.is-loading::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-top-color: rgba(255, 255, 255, 0.95);
  animation: spin 900ms linear infinite;
}
.btn:not(.btn--primary).is-loading::before {
  border: 2px solid rgba(11, 18, 32, 0.18);
  border-top-color: rgba(37, 99, 235, 0.85);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Sections */
.section {
  margin-top: 14px;
}
.section__head {
  padding: 0 2px 10px;
}
.h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 920;
  letter-spacing: -0.2px;
}
.sub {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* Info strip */
.strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.chip {
  border-radius: var(--r24);
  border: 1px solid var(--strokeSoft);
  background: #fff;
  box-shadow: var(--shadow2);
  padding: 14px;
}
.chip__k {
  font-size: 12px;
  color: var(--muted);
}
.chip__v {
  margin-top: 6px;
  font-weight: 940;
  letter-spacing: -0.15px;
}
.chip__s {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(11, 18, 32, 0.7);
}

/* Ultra grid tiles */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.tile {
  width: 100%;
  text-align: left;
  border-radius: var(--r24);
  border: 1px solid var(--strokeSoft);
  background: #fff;
  box-shadow: var(--shadow2);
  padding: 14px;
  cursor: pointer;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease),
    border-color 200ms var(--ease);
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.tile::before {
  content: "";
  position: absolute;
  inset: -60px -60px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}
.tile:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: var(--shadow);
}
.tile:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}
.tile__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tile__t {
  font-weight: 940;
  letter-spacing: -0.2px;
  font-size: 15px;
}
.tile__s {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.tile__ic {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
}

/* Lists */
.list {
  display: grid;
  gap: 10px;
}
.rowItem {
  border-radius: var(--r20);
  border: 1px solid var(--strokeSoft);
  background: #fff;
  box-shadow: var(--shadow2);
  padding: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.rowItem__t {
  font-weight: 920;
  letter-spacing: -0.15px;
}
.rowItem__s {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.rowItem__meta {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(11, 18, 32, 0.7);
  display: flex;
  gap: 10px;
}
.rowItem__cta {
  flex: 0 0 auto;
}

/* Panel */
.panel {
  border-radius: var(--r24);
  border: 1px solid var(--strokeSoft);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow2);
  padding: 14px;
}
.panel--inner {
  border-radius: 18px;
}

.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.panel__t {
  font-weight: 920;
  letter-spacing: -0.15px;
}

/* KV rows */
.kv {
  margin-top: 2px;
}
.kv--flat .kv__row {
  border-bottom: 1px solid rgba(11, 18, 32, 0.06);
}
.kv__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}
.kv__k {
  color: var(--muted);
  font-size: 12px;
}
.kv__v {
  font-size: 12px;
  color: rgba(11, 18, 32, 0.92);
  text-decoration: none;
  max-width: 70%;
  text-align: right;
}
.rowBtns {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

/* Accordion */
.accordion {
  display: grid;
  gap: 10px;
}
.acc {
  border-radius: 18px;
  border: 1px solid var(--strokeSoft);
  background: #fff;
  box-shadow: var(--shadow2);
  overflow: hidden;
}
.acc__btn {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 12px 12px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  font-weight: 920;
  letter-spacing: -0.12px;
}
.acc__btn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}
.acc__chev {
  color: rgba(11, 18, 32, 0.6);
  transition: transform 220ms var(--ease);
}
.acc.is-open .acc__chev {
  transform: rotate(180deg);
}
.acc__body {
  padding: 0 12px 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  display: none;
}
.acc.is-open .acc__body {
  display: block;
}

/* Form */
.form {
  display: grid;
  gap: 10px;
}
.row {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 10px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field span {
  font-size: 12px;
  color: var(--muted);
}

.input {
  min-height: var(--tap);
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: 16px;
  padding: 10px 12px;
  font-size: 13px;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.input:focus {
  outline: none;
  box-shadow: var(--focus);
  border-color: rgba(37, 99, 235, 0.24);
}
.input--area {
  min-height: 120px;
  resize: vertical;
}

/* Reviews */
.reviews {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.review {
  border-radius: 18px;
  border: 1px solid var(--strokeSoft);
  background: #fff;
  box-shadow: var(--shadow2);
  padding: 12px;
}
.review__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.review__n {
  font-weight: 920;
  letter-spacing: -0.1px;
}
.review__stars {
  color: var(--blue);
  font-size: 12px;
}
.review__txt {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

/* Footer */
.footer {
  padding: 16px 0 calc(92px + env(safe-area-inset-bottom));
  text-align: center;
  font-size: 12px;
}

/* Toast */
.toastHost {
  position: fixed;
  right: 14px;
  bottom: calc(90px + env(safe-area-inset-bottom));
  z-index: 50;
  display: grid;
  gap: 10px;
  max-width: min(420px, 92vw);
}
.toast {
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow2);
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  transform: translateY(10px);
  opacity: 0;
  animation: toastIn 420ms var(--ease) forwards;
}
@keyframes toastIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.toast__dot {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.14);
}
.toast__t {
  font-weight: 920;
}
.toast__s {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}
.toast__x {
  margin-left: auto;
  background: transparent;
  border: 0;
  padding: 6px;
  border-radius: 12px;
  cursor: pointer;
  color: rgba(11, 18, 32, 0.58);
}
.toast__x:hover {
  background: rgba(37, 99, 235, 0.08);
}

/* Modal */
.modalHost {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}
.modalHost.is-open {
  display: block;
}
.backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(8px);
}
.modal {
  position: absolute;
  left: 50%;
  bottom: calc(12px + env(safe-area-inset-bottom));
  transform: translateX(-50%) translateY(14px) scale(0.99);
  width: min(720px, 94vw);
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  padding: 14px;
  opacity: 0;
  transition: transform 360ms var(--ease), opacity 260ms var(--ease);
  display: none;
}
.modal.is-open {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}
.modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.modal__t {
  font-weight: 940;
  letter-spacing: -0.2px;
  font-size: 16px;
}
.modal__s {
  margin-top: 4px;
  font-size: 12px;
}
.modal__body {
  margin-top: 12px;
}

.mini {
  font-size: 12px;
}

/* Wi-Fi box */
.wifiBox {
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  background: #fff;
  box-shadow: var(--shadow2);
  overflow: hidden;
}
.wifiRow {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid rgba(11, 18, 32, 0.06);
}
.wifiRow:last-child {
  border-bottom: 0;
}
.wifiKey {
  color: var(--muted);
  font-size: 12px;
}
.wifiVal {
  font-size: 13px;
}

/* Menu */
.menu {
  display: grid;
  gap: 10px;
}
.menuItem {
  border-radius: 18px;
  border: 1px solid var(--strokeSoft);
  background: #fff;
  box-shadow: var(--shadow2);
  padding: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.menuItem__t {
  font-weight: 920;
}
.menuItem__s {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}
.menuItem__p {
  color: var(--blue);
  font-weight: 920;
}

/* Guide */
.guide {
  display: grid;
  gap: 10px;
}
.gItem {
  border-radius: 18px;
  border: 1px solid var(--strokeSoft);
  background: #fff;
  box-shadow: var(--shadow2);
  padding: 12px;
}
.gItem__t {
  font-weight: 920;
}
.gItem__s {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}
.gItem__a {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Photo */
.photoBox {
  display: grid;
  gap: 10px;
}
.photoPick input {
  display: none;
}
.photoPick {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
  border: 1px dashed rgba(37, 99, 235, 0.28);
  background: rgba(37, 99, 235, 0.06);
  padding: 12px;
}
.photoPick__btn {
  font-weight: 920;
  color: rgba(11, 18, 32, 0.9);
}
.photoPick__hint {
  font-size: 12px;
}

.photoPrev {
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--strokeSoft);
  background: #fff;
  box-shadow: var(--shadow2);
  overflow: hidden;
}
.photoPrev img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.photoPrev .iconBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 16px;
}

/* Toggles */
.toggleList {
  display: grid;
  gap: 12px;
}
.toggleRow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-radius: 18px;
  border: 1px solid var(--strokeSoft);
  background: #fff;
  box-shadow: var(--shadow2);
  padding: 12px;
}
.toggleRow__t {
  font-weight: 920;
}
.toggleRow__s {
  margin-top: 4px;
  font-size: 12px;
}

.switch {
  position: relative;
  width: 54px;
  height: 34px;
  flex: 0 0 auto;
}
.switch input {
  display: none;
}
.switch__ui {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.1);
  border: 1px solid rgba(11, 18, 32, 0.1);
  transition: background 220ms var(--ease), border-color 220ms var(--ease);
}
.switch__ui::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: #fff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
  transition: transform 220ms var(--ease);
}
.switch input:checked + .switch__ui {
  background: rgba(37, 99, 235, 0.22);
  border-color: rgba(37, 99, 235, 0.28);
}
.switch input:checked + .switch__ui::after {
  transform: translate(20px, -50%);
}
.switch input:focus-visible + .switch__ui {
  box-shadow: var(--focus);
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
}
.faqItem {
  border-radius: 18px;
  border: 1px solid var(--strokeSoft);
  background: #fff;
  box-shadow: var(--shadow2);
  padding: 12px;
}
.faqItem__q {
  font-weight: 920;
}
.faqItem__a {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Bottom bar */
.bar {
  position: fixed;
  left: 50%;
  bottom: calc(12px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: min(520px, 94vw);
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow2);
  padding: 10px;
  display: flex;
  z-index: 20;
}
.barBtn {
  width: 33.333%;
  border: 0;
  background: transparent;
  color: rgba(11, 18, 32, 0.92);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  border-radius: 14px;
  cursor: pointer;
  transition: background 180ms var(--ease), transform 180ms var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.barBtn:hover {
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-1px);
}
.barBtn:active {
  transform: translateY(0);
}
.barBtn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}
.barBtn__ic {
  width: 38px;
  height: 38px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
}
.barBtn__t {
  font-size: 11px;
  color: rgba(11, 18, 32, 0.62);
}

/* Premium empty state */
.emptyCard {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px 16px;
  text-align: left;
}
.emptyCard__t {
  font-weight: 650;
  font-size: 16px;
  letter-spacing: 0.2px;
}
.emptyCard__s {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

/* Premium select */
select.input {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 44px;
  background-image: linear-gradient(
      45deg,
      transparent 50%,
      rgba(255, 255, 255, 0.75) 50%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.75) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
select.input:focus {
  outline: none;
}


/* ======================================================
   CLEAN LIGHT PREMIUM
   append to END of style.css
   ====================================================== */

:root{
  --bg: #ffffff;

  --surface: #f8fafc;
  --surface-2: #ffffff;

  --text: #0b1220;
  --muted: rgba(11,18,32,.6);

  --blue: #1e40af;
  --blueDeep: #1e3a8a;

  --stroke: rgba(11,18,32,.08);
  --strokeSoft: rgba(11,18,32,.06);

  --shadow: 0 16px 40px rgba(15,23,42,.08);
  --shadow2: 0 8px 22px rgba(15,23,42,.06);

  --focus: 0 0 0 3px rgba(30,64,175,.18);
}

/* Base */
body{
  background: var(--bg);
  color: var(--text);
}

h1,h2,h3,h4,h5,h6{
  color:#0b1220;
}

.muted,
.sub,
.lead,
.field span,
.kv__k,
.tile__s,
.rowItem__s,
.rowItem__meta,
.review__txt,
.faqItem__a{
  color: var(--muted) !important;
}

/* Top bar — clean */
.top{
  background: #ffffff;
  border-bottom: 1px solid var(--strokeSoft);
  backdrop-filter: none;
}
.brand__mark{
  background: linear-gradient(180deg,#eaf0ff,#f7f9ff);
  border: 1px solid rgba(30,64,175,.18);
  box-shadow: none;
}

/* Sections spacing — more air */
.section{
  margin-top: 20px;
}

/* Cards / panels — light, clean */
.panel,
.tile,
.chip,
.rowItem,
.acc,
.review,
.faqItem,
.menuItem,
.gItem,
.wifiBox,
.photoPrev,
.toggleRow{
  background: var(--surface-2);
  border: 1px solid var(--strokeSoft);
  box-shadow: var(--shadow2);
}

/* Remove heavy glow from tiles */
.tile::before{
  display:none;
}

/* Tile hover — subtle */
.tile:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Buttons — dark blue, solid */
.btn{
  background:#ffffff;
  border:1px solid var(--stroke);
  color:#0b1220;
  box-shadow: var(--shadow2);
}

.btn:hover{
  border-color: rgba(30,64,175,.25);
}

/* Primary button */
.btn--primary{
  background: linear-gradient(180deg,var(--blue),var(--blueDeep));
  color:#ffffff;
  border:none;
  box-shadow: 0 12px 28px rgba(30,64,175,.25);
}

.btn--primary:hover{
  box-shadow: 0 16px 36px rgba(30,64,175,.32);
}

/* Ghost button */
.btn--ghost{
  background:#f1f5ff;
  border:1px solid rgba(30,64,175,.18);
  color:var(--blue);
  box-shadow:none;
}

.btn--ghost:hover{
  background:#e8eeff;
}

/* Icon buttons */
.iconBtn{
  background:#f5f7fb;
  border:1px solid var(--stroke);
  color:#0b1220;
  box-shadow:none;
}
.iconBtn:hover{
  background:#eef2ff;
}

/* Pills */
.pill{
  background:#f5f7fb;
  border:1px solid var(--strokeSoft);
  color:#0b1220;
}
.pill__sep{ background: rgba(11,18,32,.18); }
.pill__dot{
  background:var(--blue);
  box-shadow:none;
}

/* Inputs */
.input{
  background:#ffffff;
  border:1px solid var(--stroke);
  color:#0b1220;
}
.input::placeholder{
  color: rgba(11,18,32,.45);
}
.input:focus{
  border-color: var(--blue);
  box-shadow: var(--focus);
}

/* Bottom bar — light */
.bar{
  background:#ffffff;
  border:1px solid var(--strokeSoft);
  backdrop-filter:none;
  box-shadow: var(--shadow2);
}

.barBtn{
  color:#0b1220;
}
.barBtn__t{
  color: rgba(11,18,32,.55);
}
.barBtn__ic{
  background:#f5f7fb;
  border:1px solid var(--stroke);
  color:#0b1220;
}

/* Accent title — calm */
.accent{
  background:none;
  color:var(--blue);
}

/* Modals — clean sheets */
.backdrop{
  background: rgba(15,23,42,.18);
  backdrop-filter:none;
}
.modal{
  background:#ffffff;
  border:1px solid var(--strokeSoft);
  box-shadow: var(--shadow);
}

/* Toast */
.toast{
  background:#ffffff;
  border:1px solid var(--strokeSoft);
  box-shadow: var(--shadow2);
}
