:root {
  --lime: #d5fc00;
  --ink: #1f1e1e;
  --paper: #fbf9f8;
  --sand: #ece8df;
  --sea: #006f76;
  --line: 2px solid var(--ink);
  --radius: 22px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select, a { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.app-shell {
  width: min(100%, 720px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.topbar {
  height: 78px;
  padding: max(14px, env(safe-area-inset-top)) 18px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--lime);
  border-bottom: var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 7px;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: -0.075em;
}
.brand-ciao { font-size: 26px; }
.brand-oman { font-size: 18px; font-weight: 700; letter-spacing: .02em; }
.top-actions { display: flex; gap: 8px; }
.language-control { position: relative; }
.round-button {
  min-width: 40px; height: 40px; padding: 0 11px;
  border: var(--line); border-radius: 999px; background: transparent;
  font-weight: 900; display: inline-flex; align-items: center; justify-content: center;
  gap: 4px; cursor: pointer;
}
.language-menu {
  position: absolute; z-index: 50; top: 48px; right: 0; width: min(290px, calc(100vw - 36px));
  padding: 8px; border: var(--line); background: var(--paper);
  box-shadow: 7px 7px 0 var(--ink);
}
.language-menu[hidden] { display: none; }
.language-menu-head { padding: 9px 10px 12px; border-bottom: 1px solid var(--ink); }
.language-menu-head strong, .language-menu-head small { display: block; }
.language-menu-head strong { font-size: 15px; text-transform: uppercase; }
.language-menu-head small { margin-top: 4px; font-size: 9px; line-height: 1.35; }
.language-menu > button {
  width: 100%; min-height: 42px; padding: 7px 9px; border: 0;
  border-bottom: 1px solid rgba(31, 30, 30, .25); background: transparent;
  display: grid; grid-template-columns: 36px 1fr auto; align-items: center;
  gap: 8px; text-align: left; cursor: pointer;
}
.language-menu > button:last-child { border-bottom: 0; }
.language-menu > button > span {
  width: 32px; height: 26px; display: grid; place-items: center;
  border: 1px solid var(--ink); font-size: 9px; font-weight: 950;
}
.language-menu > button > strong { font-size: 12px; }
.language-menu > button::after { content: "○"; font-size: 16px; }
.language-menu > button.is-active { background: var(--lime); }
.language-menu > button.is-active::after { content: "●"; }
.language-menu > button:hover, .language-menu > button:focus-visible { background: var(--lime); }
.saved-count {
  min-width: 17px; height: 17px; display: grid; place-items: center;
  border-radius: 999px; background: var(--ink); color: var(--lime); font-size: 10px;
}
.profile-shortcut { width: 40px; padding: 0; }
.profile-icon {
  position: relative; width: 18px; height: 18px; display: block;
  border: 2px solid var(--ink); border-radius: 50%;
}
.profile-icon::before {
  content: ""; position: absolute; width: 5px; height: 5px; left: 4.5px; top: 2px;
  border: 1.5px solid var(--ink); border-radius: 50%;
}
.profile-icon::after {
  content: ""; position: absolute; width: 10px; height: 5px; left: 2px; bottom: 2px;
  border: 1.5px solid var(--ink); border-radius: 8px 8px 4px 4px;
}
.screen { display: none; padding-bottom: 116px; }
.screen.is-active { display: block; animation: screen-in .28s ease both; }
@keyframes screen-in { from { opacity: 0; transform: translateY(6px); } }
.hero {
  position: relative;
  min-height: 570px;
  padding: 48px 22px 30px;
  background: var(--lime);
  border-bottom: var(--line);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px; border: 2px solid var(--ink);
  border-radius: 50%; right: -132px; top: 36px;
}
.hero::after {
  content: "";
  position: absolute;
  width: 440px; height: 180px;
  background: var(--ink);
  left: -90px; bottom: -116px;
  border-radius: 50% 50% 0 0;
  transform: rotate(7deg);
}
.eyebrow, .micro-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .17em;
}
.hero h1, .screen-intro h1 {
  margin: 0;
  max-width: 580px;
  font-size: clamp(58px, 15vw, 108px);
  line-height: .84;
  letter-spacing: -.075em;
  text-transform: uppercase;
  font-weight: 950;
  position: relative;
  z-index: 1;
}
.hero-copy {
  width: min(80%, 420px);
  margin: 30px 0 24px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 650;
  position: relative;
  z-index: 1;
}
.hero-search {
  width: min(100%, 500px);
  height: 60px;
  display: flex;
  border: var(--line);
  background: var(--paper);
  position: relative;
  z-index: 2;
}
.hero-search input, .large-search input {
  min-width: 0; flex: 1; border: 0; background: transparent; outline: none;
  padding: 0 17px; color: var(--ink); font-size: 16px; font-weight: 700;
}
.hero-search button {
  width: 58px; border: 0; border-left: var(--line);
  background: var(--ink); color: var(--lime); font-size: 26px; cursor: pointer;
}
.hero-stamp {
  position: absolute; right: 20px; bottom: 28px; z-index: 3;
  width: 94px; height: 94px; border-radius: 50%; background: var(--paper);
  border: var(--line); display: flex; flex-direction: column; align-items: center;
  justify-content: center; transform: rotate(-9deg); text-align: center;
}
.hero-stamp strong { font-size: 14px; }
.hero-stamp span { width: 70px; font-size: 9px; line-height: 1.15; }
.section-block { padding: 30px 20px; border-bottom: var(--line); }
.weather-strip {
  min-height: 164px; display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 15px;
  background: var(--ink); color: var(--paper);
}
.weather-summary { min-width: 0; }
.weather-main { display: flex; align-items: baseline; gap: 14px; }
.weather-main strong { color: var(--lime); font-size: 46px; letter-spacing: -.06em; }
.weather-main span { font-size: 14px; font-weight: 700; }
.oman-clock { display: flex; flex-direction: column; }
.oman-clock small {
  margin-bottom: 4px; color: var(--lime); font-size: 9px; font-weight: 950;
  letter-spacing: .14em;
}
.oman-clock strong {
  font-variant-numeric: tabular-nums; letter-spacing: -.035em; line-height: 1;
}
.oman-clock span { margin-top: 5px; font-size: 11px; font-weight: 700; }
.home-oman-clock {
  grid-column: 1 / 3; padding-top: 15px; border-top: 1px solid rgba(251, 249, 248, .45);
}
.home-oman-clock strong { color: var(--paper); font-size: 30px; }
.weather-arrow {
  grid-column: 2; grid-row: 1;
  width: 48px; height: 48px; border: 1px solid var(--paper); border-radius: 50%;
  color: var(--paper); background: transparent; font-size: 22px; cursor: pointer;
}
.premium-teaser {
  position: relative; min-height: 350px; display: flex; flex-direction: column;
  background: var(--lime); overflow: hidden; cursor: pointer;
}
.premium-teaser::after {
  content: ""; position: absolute; right: -74px; bottom: -116px;
  width: 250px; height: 250px; border: 34px solid var(--ink); border-radius: 50%;
  opacity: .08; pointer-events: none;
}
.premium-teaser-top {
  margin-bottom: 34px; display: flex; align-items: flex-start;
  justify-content: space-between; gap: 12px;
}
.premium-pass-mark {
  width: 66px; height: 66px; display: grid; place-items: center;
  border: var(--line); border-radius: 50%; background: var(--ink); color: var(--lime);
  font-size: 15px; font-weight: 950; line-height: .85; text-align: center;
}
.premium-status {
  padding: 7px 9px; border: 1px solid var(--ink); background: var(--paper);
  font-size: 9px; font-weight: 950; letter-spacing: .09em;
}
.premium-status.is-active { background: var(--ink); color: var(--lime); }
.premium-teaser h2 {
  position: relative; z-index: 1; max-width: 520px; margin: 0;
  font-size: clamp(43px, 11vw, 68px); line-height: .86;
  letter-spacing: -.065em; text-transform: uppercase;
}
.premium-teaser > p:not(.micro-label) {
  position: relative; z-index: 1; max-width: 430px; margin: 18px 0 28px;
  font-size: 14px; line-height: 1.5;
}
.premium-teaser-footer {
  position: relative; z-index: 1; margin-top: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.premium-teaser-footer > strong { font-size: 19px; letter-spacing: -.025em; }
.premium-arrow {
  width: 54px; height: 54px; border: var(--line); border-radius: 50%;
  background: var(--ink); color: var(--lime); font-size: 25px; cursor: pointer;
}
.home-updates { background: var(--sea); color: var(--paper); }
.home-updates .section-heading { align-items: start; }
.home-updates .micro-label { color: var(--lime); }
.live-dot {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 9px;
  border: 1px solid var(--paper); font-size: 9px; font-weight: 950; letter-spacing: .1em;
}
.live-dot::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 4px rgba(213, 252, 0, .15);
}
.home-updates-list { display: grid; gap: 10px; }
.home-update-card {
  padding: 17px; border: 1px solid rgba(251, 249, 248, .7); background: rgba(31, 30, 30, .22);
}
.home-update-card header {
  display: flex; justify-content: space-between; gap: 12px; margin-bottom: 11px;
  color: var(--lime); font-size: 9px; font-weight: 950; letter-spacing: .11em;
}
.home-update-card h3 { margin: 0 0 8px; font-size: 22px; line-height: 1; text-transform: uppercase; }
.home-update-card p { margin: 0; font-size: 13px; line-height: 1.5; }
.section-heading {
  display: flex; justify-content: space-between; align-items: end; gap: 14px; margin-bottom: 20px;
}
.section-heading h2, .founder-card h2, .custom-trip-card h2 {
  margin: 0; font-size: 30px; line-height: .98; letter-spacing: -.045em; text-transform: uppercase;
}
.text-button { border: 0; background: none; font-size: 12px; font-weight: 900; cursor: pointer; white-space: nowrap; }
.quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quick-card {
  min-height: 160px; padding: 14px; border: var(--line); background: var(--lime);
  display: flex; flex-direction: column; align-items: flex-start; text-align: left; cursor: pointer;
}
.quick-card span { font-size: 11px; font-weight: 900; }
.quick-card strong { margin-top: auto; max-width: 125px; font-size: 19px; line-height: 1; text-transform: uppercase; }
.quick-card small { margin-top: 7px; font-size: 11px; }
.quick-card.is-dark { background: var(--ink); color: var(--paper); }
.quick-card.is-outline { background: var(--paper); }
.quick-card.is-wide {
  position: relative; grid-column: 1 / -1; min-height: 124px;
  display: grid; grid-template-columns: 34px minmax(0, 1fr) auto;
  grid-template-rows: auto auto; align-items: center; gap: 3px 10px;
  background: var(--sea); color: var(--paper);
}
.quick-card.is-wide > span { grid-row: 1 / 3; align-self: start; color: var(--lime); }
.quick-card.is-wide > strong { max-width: none; margin: 0; font-size: 25px; }
.quick-card.is-wide > small { margin: 0; }
.quick-card.is-wide > b { grid-column: 3; grid-row: 1 / 3; color: var(--lime); font-size: 25px; }
.horizontal-cards {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(78vw, 310px);
  gap: 12px; overflow-x: auto; padding: 0 20px 12px; margin: 0 -20px;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.horizontal-cards::-webkit-scrollbar { display: none; }
.place-card {
  position: relative; min-height: 330px; border: var(--line);
  overflow: hidden; scroll-snap-align: start; background: var(--lime); cursor: pointer;
}
.premium-card-badge {
  position: absolute; z-index: 3; top: 12px; left: 12px; padding: 7px 9px;
  border: 1px solid var(--lime); background: var(--ink); color: var(--lime);
  font-size: 9px; font-weight: 950; letter-spacing: .09em;
}
.place-card.is-premium-locked .place-body p { opacity: .55; }
.place-card.compact { min-height: 280px; }
.place-art {
  height: 190px; position: relative; overflow: hidden; background: var(--lime); border-bottom: var(--line);
}
.place-art::before, .place-art::after { content: ""; position: absolute; background: var(--ink); }
.art-city::before { width: 55%; height: 70%; left: 8%; bottom: 0; clip-path: polygon(0 100%, 0 44%, 24% 44%, 24% 12%, 46% 12%, 46% 56%, 68% 56%, 68% 28%, 100% 28%, 100% 100%); }
.art-city::after { width: 86px; height: 86px; border-radius: 50%; right: 13%; top: 15%; }
.art-mountain::before { width: 92%; height: 82%; left: 4%; bottom: 0; clip-path: polygon(0 100%, 29% 22%, 45% 70%, 66% 4%, 100% 100%); }
.art-mountain::after { width: 54px; height: 54px; border-radius: 50%; right: 9%; top: 8%; background: var(--paper); }
.art-dune::before { width: 145%; height: 85%; left: -28%; bottom: -45%; border-radius: 50% 50% 0 0; transform: rotate(6deg); }
.art-dune::after { width: 62%; height: 52%; right: -15%; bottom: -24%; border-radius: 50% 50% 0 0; background: var(--paper); transform: rotate(-8deg); }
.art-water::before { width: 150%; height: 80%; left: -25%; bottom: -45%; border-radius: 50%; background: var(--ink); }
.art-water::after { width: 70%; height: 70%; right: -12%; top: -15%; border-radius: 50%; background: var(--paper); }
.art-coast::before { width: 80%; height: 90%; right: -12%; bottom: -10%; clip-path: polygon(62% 0, 100% 0, 100% 100%, 0 100%); }
.art-coast::after { width: 110%; height: 40%; left: -15%; bottom: -20%; border-radius: 50%; background: var(--paper); }
.art-white-dune { background: var(--sea); }
.art-white-dune::before {
  width: 145%; height: 84%; left: -34%; bottom: -43%; border-radius: 50% 58% 0 0;
  background: var(--paper); transform: rotate(5deg);
}
.art-white-dune::after {
  width: 78%; height: 56%; right: -19%; bottom: -31%; border-radius: 55% 45% 0 0;
  background: var(--lime); transform: rotate(-7deg);
}
.art-wetland { background: var(--sea); }
.art-wetland::before {
  width: 142%; height: 58%; left: -20%; bottom: -34%; border-radius: 50%;
  background: var(--paper);
}
.art-wetland::after {
  width: 64%; height: 48%; right: -7%; top: -23%; border-radius: 50%;
  background: var(--lime);
}
.art-sinkhole { background: var(--paper); }
.art-sinkhole::before {
  width: 152px; height: 152px; left: 50%; top: 50%; border-radius: 50%;
  background: var(--ink); transform: translate(-50%, -50%);
}
.art-sinkhole::after {
  width: 96px; height: 96px; left: 50%; top: 50%; border-radius: 50%;
  background: var(--sea); transform: translate(-50%, -50%);
}
.art-island { background: var(--sea); }
.art-island::before {
  width: 72%; height: 55%; left: 14%; bottom: 20%; border-radius: 58% 42% 55% 45%;
  background: var(--lime); transform: rotate(-7deg);
}
.art-island::after {
  width: 110%; height: 34%; left: -5%; bottom: -23%; border-radius: 50%;
  background: var(--paper);
}
.place-body { padding: 16px 14px 18px; background: var(--paper); }
.place-meta { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.place-body h3 { margin: 0 42px 7px 0; font-size: 28px; line-height: .95; letter-spacing: -.04em; text-transform: uppercase; }
.place-body p { margin: 0; font-size: 12px; line-height: 1.35; }
.heart-button {
  position: absolute; right: 12px; top: 202px; width: 40px; height: 40px; border: var(--line);
  border-radius: 50%; background: var(--paper); display: grid; place-items: center;
  font-size: 20px; cursor: pointer; z-index: 2;
}
.heart-button.is-saved { background: var(--ink); color: var(--lime); }
.founder-card {
  background: var(--lime); display: grid; grid-template-columns: 90px 1fr; gap: 16px;
}
.founder-number { font-size: 52px; font-weight: 950; letter-spacing: -.08em; }
.founder-card p:last-child { font-size: 14px; line-height: 1.5; margin-bottom: 0; }
.shop-teaser {
  min-height: 320px; display: grid; grid-template-columns: 1fr auto; align-items: end;
  gap: 18px; background: var(--ink); color: var(--paper); overflow: hidden;
}
.shop-teaser h2 { margin: 0; font-size: 42px; line-height: .9; letter-spacing: -.055em; text-transform: uppercase; }
.shop-teaser p:not(.micro-label) { max-width: 370px; line-height: 1.45; }
.shop-teaser .primary-button { margin-top: 10px; }
.shop-teaser-mark {
  width: 128px; height: 128px; display: grid; place-items: center;
  color: var(--lime); border: 2px solid var(--lime); border-radius: 50%;
  font-size: 76px; line-height: 1; transform: rotate(8deg) translate(12px, 12px);
}
.social-panel {
  display: grid; gap: 24px; background: var(--paper);
}
.social-copy h2 {
  margin: 0; font-size: clamp(38px, 9vw, 58px); line-height: .88;
  letter-spacing: -.06em; text-transform: uppercase;
}
.social-copy > p:last-child { max-width: 390px; margin-bottom: 0; line-height: 1.45; }
.social-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 8px; }
.social-link {
  min-width: 0; padding: 0; border: 0; background: transparent; color: inherit;
  display: grid; gap: 8px; justify-items: center; cursor: pointer; text-decoration: none;
}
.social-icon {
  width: 70px; height: 70px; display: grid; place-items: center;
  border: var(--line); border-radius: 50%; background: var(--lime);
  font-size: 21px; font-weight: 950; letter-spacing: -.06em;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.social-link:hover .social-icon, .social-link:focus-visible .social-icon {
  transform: translateY(-3px) rotate(-4deg); background: var(--ink); color: var(--lime);
}
.social-link strong { font-size: 10px; text-transform: uppercase; }
.social-icon-facebook { font-family: Arial, sans-serif; font-size: 33px; text-transform: lowercase; }
.social-icon-tiktok { background: var(--ink); color: var(--lime); }
.social-icon-youtube { background: var(--sea); color: var(--paper); }
.social-icon-email { background: var(--paper); }
.food-teaser {
  min-height: 370px; display: grid; grid-template-columns: minmax(0, 1fr) auto;
  align-items: center; gap: 24px; background: var(--lime); overflow: hidden;
}
.food-teaser h2 {
  max-width: 440px; margin: 0; font-size: clamp(40px, 9vw, 62px);
  line-height: .88; letter-spacing: -.06em; text-transform: uppercase;
}
.food-teaser p:not(.micro-label) { max-width: 410px; line-height: 1.45; }
.food-teaser .primary-button { margin-top: 9px; background: var(--paper); }
.food-teaser-art {
  position: relative; width: 170px; height: 170px; display: grid; place-items: center;
  border: var(--line); border-radius: 50%; background: var(--ink); color: var(--lime);
  font-size: 48px; font-weight: 900; transform: rotate(7deg) translateX(24px);
}
.food-teaser-art::before {
  content: ""; position: absolute; width: 112px; height: 48px; left: 27px; bottom: 24px;
  border: 2px solid var(--lime); border-top: 0; border-radius: 0 0 70px 70px;
}
.food-teaser-art::after {
  content: ""; position: absolute; width: 84px; height: 2px; left: 41px; bottom: 23px;
  background: var(--lime); box-shadow: 0 9px 0 var(--ink);
}
.screen-intro { padding: 46px 20px 30px; background: var(--lime); border-bottom: var(--line); }
.screen-intro h1 { font-size: clamp(54px, 13vw, 92px); }
.screen-intro > p:last-child { max-width: 500px; font-weight: 650; line-height: 1.45; }
.guide-intro {
  position: relative; min-height: 430px; padding-bottom: 46px;
  background: var(--ink); color: var(--paper); overflow: hidden;
}
.guide-intro::before,
.guide-intro::after {
  content: ""; position: absolute; border: 2px solid var(--lime); border-radius: 50%;
}
.guide-intro::before { width: 250px; height: 250px; right: -80px; top: 46px; }
.guide-intro::after { width: 135px; height: 135px; right: 83px; bottom: -55px; background: var(--lime); }
.guide-intro > * { position: relative; z-index: 1; }
.guide-intro .eyebrow { color: var(--lime); }
.guide-choice-grid { display: grid; grid-template-columns: 1fr 1fr; border-bottom: var(--line); }
.guide-choice-card {
  position: relative; min-width: 0; min-height: 330px; padding: 20px;
  display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto 1fr auto;
  border: 0; border-right: var(--line); color: var(--ink); text-align: left;
  cursor: pointer; overflow: hidden;
}
.guide-choice-card:last-child { border-right: 0; }
.guide-choice-card.is-food { background: var(--lime); }
.guide-choice-card.is-stay { background: var(--sea); color: var(--paper); }
.guide-choice-number {
  align-self: start; font-size: 10px; font-weight: 950; letter-spacing: .14em;
}
.guide-choice-symbol {
  width: 52px; height: 52px; display: grid; place-items: center;
  border: 2px solid currentColor; border-radius: 50%; font-size: 25px; font-weight: 950;
}
.guide-choice-copy { grid-column: 1 / 3; align-self: end; padding-top: 50px; }
.guide-choice-copy strong, .guide-choice-copy small { display: block; }
.guide-choice-copy strong {
  font-size: clamp(30px, 7vw, 47px); line-height: .9; letter-spacing: -.055em; text-transform: uppercase;
}
.guide-choice-copy small { max-width: 240px; margin-top: 13px; font-size: 11px; line-height: 1.45; }
.guide-choice-card > b {
  grid-column: 2; grid-row: 3; align-self: end; padding-left: 10px; font-size: 26px;
}
.guide-choice-card:hover .guide-choice-symbol,
.guide-choice-card:focus-visible .guide-choice-symbol { background: var(--paper); color: var(--ink); }
.guide-promise-card {
  margin: 22px 20px 34px; padding: 28px; border: var(--line); background: var(--paper);
  box-shadow: 8px 8px 0 var(--lime);
}
.guide-promise-card h2 {
  margin: 0; font-size: clamp(36px, 9vw, 58px); line-height: .88;
  letter-spacing: -.055em; text-transform: uppercase;
}
.guide-promise-card p:last-child { max-width: 470px; margin: 18px 0 0; line-height: 1.5; }
.guide-switch {
  display: grid; grid-template-columns: 1fr 1fr; border-bottom: var(--line); background: var(--paper);
}
.guide-switch button {
  min-height: 60px; display: flex; align-items: center; justify-content: center; gap: 9px;
  border: 0; border-right: var(--line); background: var(--paper); color: var(--ink);
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
}
.guide-switch button:last-child { border-right: 0; }
.guide-switch button span { font-size: 20px; }
.guide-switch button.is-active { background: var(--ink); color: var(--lime); }
.food-intro {
  position: relative; min-height: 400px; padding-bottom: 44px; overflow: hidden;
}
.food-intro::after {
  content: ""; position: absolute; width: 240px; height: 110px; right: -40px; bottom: -32px;
  border: 2px solid var(--ink); border-radius: 0 0 140px 140px; background: var(--paper);
  transform: rotate(-8deg);
}
.food-intro > * { position: relative; z-index: 1; }
.food-choice-grid { display: grid; grid-template-columns: 1fr 1fr; border-bottom: var(--line); }
.food-choice-card {
  min-height: 270px; padding: 22px; display: flex; flex-direction: column;
  border-right: var(--line);
}
.food-choice-card:last-child { border-right: 0; }
.food-choice-card.is-lime { background: var(--lime); }
.food-choice-card.is-dark { background: var(--ink); color: var(--paper); }
.food-choice-card > span { font-size: 11px; font-weight: 950; letter-spacing: .14em; }
.food-choice-card h2 {
  max-width: 230px; margin: auto 0 12px; font-size: clamp(27px, 6vw, 38px);
  line-height: .92; letter-spacing: -.05em; text-transform: uppercase;
}
.food-choice-card p { margin: 0; font-size: 12px; line-height: 1.45; }
.food-section { padding: 34px 20px; border-bottom: var(--line); }
.food-section .section-heading h2 {
  max-width: 520px; margin: 0; font-size: 32px; line-height: .95;
  letter-spacing: -.045em; text-transform: uppercase;
}
.dish-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dish-card {
  position: relative; min-height: 190px; padding: 15px; display: flex; flex-direction: column;
  align-items: flex-start; border: var(--line); background: var(--paper);
  text-align: left; cursor: pointer;
}
.dish-card.is-dark { background: var(--ink); color: var(--paper); }
.dish-number { font-size: 10px; font-weight: 950; letter-spacing: .12em; }
.dish-card strong {
  margin-top: auto; font-size: 27px; line-height: .95; letter-spacing: -.045em;
  text-transform: uppercase;
}
.dish-card small { margin-top: 8px; font-size: 11px; }
.dish-card.is-premium-locked::after {
  content: "◇ PREMIUM"; position: absolute; top: 12px; right: 12px;
  padding: 6px 7px; border: 1px solid currentColor;
  background: var(--lime); color: var(--ink); font-size: 8px; font-weight: 950;
}
.restaurant-section { background: var(--lime); }
.restaurant-area-list { border: var(--line); }
.restaurant-area-list button {
  position: relative; width: 100%; min-height: 88px; padding: 13px 14px; display: grid;
  grid-template-columns: 30px 1fr auto; grid-template-rows: auto auto;
  align-items: center; gap: 2px 10px; border: 0; border-bottom: var(--line);
  background: var(--paper); text-align: left; cursor: pointer;
}
.restaurant-area-list button:last-child { border-bottom: 0; }
.restaurant-area-list button > span {
  grid-row: 1 / 3; align-self: start; font-size: 10px; font-weight: 950;
}
.restaurant-area-list button > strong {
  font-size: 21px; line-height: 1; letter-spacing: -.035em; text-transform: uppercase;
}
.restaurant-area-list button > small { font-size: 10px; }
.restaurant-area-list button > b {
  grid-column: 3; grid-row: 1 / 3; font-size: 23px; font-weight: 500;
}
.restaurant-area-list button.is-premium-locked > b { font-size: 0; }
.restaurant-area-list button.is-premium-locked > b::after {
  content: "◇"; font-size: 23px; font-weight: 900;
}
.food-method-card {
  margin: 22px 20px 34px; padding: 26px; background: var(--ink); color: var(--paper);
}
.food-method-card h2 {
  margin: 0; color: var(--lime); font-size: 36px; line-height: .92;
  letter-spacing: -.045em; text-transform: uppercase;
}
.food-method-card p:last-child { max-width: 480px; margin-bottom: 0; line-height: 1.5; }
.food-dialog-hero { background: var(--lime); }
.restaurant-dialog-list, .stay-area-property-list {
  margin: 22px 0 0; border: var(--line);
}
.restaurant-dialog-list button, .stay-area-property-list button {
  width: 100%; min-height: 82px; padding: 13px; display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto; align-items: center; gap: 9px;
  border: 0; border-bottom: var(--line); background: var(--paper);
  color: var(--ink); text-align: left; cursor: pointer;
}
.restaurant-dialog-list button:last-child, .stay-area-property-list button:last-child { border-bottom: 0; }
.restaurant-dialog-list button:hover, .restaurant-dialog-list button:focus-visible { background: var(--lime); }
.restaurant-dialog-list button > span:first-child,
.stay-area-property-list button > span:first-child {
  align-self: start; font-size: 9px; font-weight: 950; letter-spacing: .12em;
}
.restaurant-dialog-list strong, .restaurant-dialog-list small,
.stay-area-property-list strong, .stay-area-property-list small { display: block; }
.restaurant-dialog-list strong, .stay-area-property-list strong {
  font-size: 18px; line-height: 1; letter-spacing: -.03em; text-transform: uppercase;
}
.restaurant-dialog-list small, .stay-area-property-list small {
  margin-top: 7px; font-size: 9px; line-height: 1.35;
}
.restaurant-dialog-list b, .stay-area-property-list b { font-size: 21px; }
.selection-source-note {
  margin: 18px 0 0; padding-top: 14px; border-top: 1px solid var(--ink);
  font-size: 9px; font-weight: 800; line-height: 1.5; letter-spacing: .04em;
}
.editorial-detail-grid { display: grid; grid-template-columns: 1fr 1fr; margin: 22px 0; border: var(--line); }
.editorial-detail-grid > div { min-height: 180px; padding: 16px; border-right: var(--line); }
.editorial-detail-grid > div:last-child { border-right: 0; background: var(--lime); }
.editorial-detail-grid span {
  display: block; font-size: 9px; font-weight: 950; letter-spacing: .12em;
}
.editorial-detail-grid p { margin: 42px 0 0; font-size: 12px; line-height: 1.5; }
.stay-intro {
  position: relative; min-height: 430px; padding-bottom: 48px;
  background: var(--sea); color: var(--paper); overflow: hidden;
}
.stay-intro::after {
  content: ""; position: absolute; width: 260px; height: 145px; right: -55px; bottom: -48px;
  border: 2px solid var(--lime); border-radius: 130px 130px 0 0; transform: rotate(-6deg);
}
.stay-intro > * { position: relative; z-index: 1; }
.stay-principles {
  display: grid; grid-template-columns: 1fr 1fr; border-bottom: var(--line);
}
.stay-principles article {
  min-height: 260px; padding: 22px; display: flex; flex-direction: column;
  border-right: var(--line); background: var(--lime);
}
.stay-principles article:last-child { border-right: 0; background: var(--paper); }
.stay-principles span { font-size: 10px; font-weight: 950; letter-spacing: .14em; }
.stay-principles h2 {
  margin: auto 0 12px; font-size: clamp(25px, 6vw, 36px); line-height: .92;
  letter-spacing: -.05em; text-transform: uppercase;
}
.stay-principles p { margin: 0; font-size: 12px; line-height: 1.45; }
.stay-section { padding: 34px 20px; border-bottom: var(--line); }
.stay-section .section-heading h2 {
  margin: 0; font-size: 35px; line-height: .95; letter-spacing: -.045em; text-transform: uppercase;
}
.stay-coming-badge {
  padding: 7px 8px; border: 1px solid var(--ink); background: var(--lime);
  font-size: 8px; font-weight: 950; letter-spacing: .08em; white-space: nowrap;
}
.stay-area-list { border: var(--line); }
.stay-area-list button {
  width: 100%; min-height: 96px; padding: 14px; display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto; align-items: center; gap: 10px;
  border: 0; border-bottom: var(--line); background: var(--paper); text-align: left; cursor: pointer;
}
.stay-area-list button:last-child { border-bottom: 0; }
.stay-area-list button > span {
  align-self: start; color: var(--sea); font-size: 10px; font-weight: 950; letter-spacing: .1em;
}
.stay-area-list button div { min-width: 0; }
.stay-area-list button strong, .stay-area-list button small { display: block; }
.stay-area-list button strong {
  font-size: 21px; line-height: 1; letter-spacing: -.035em; text-transform: uppercase;
}
.stay-area-list button small { margin-top: 7px; font-size: 10px; line-height: 1.35; }
.stay-area-list button > b { color: var(--sea); font-size: 23px; }
.stay-area-list button:hover, .stay-area-list button:focus-visible { background: var(--lime); }
.stay-area-property-list button {
  grid-template-columns: 30px minmax(0, 1fr) auto auto;
}
.stay-area-property-list button:hover, .stay-area-property-list button:focus-visible { background: var(--lime); }
.stay-area-property-list .stay-property-status {
  margin: 0; white-space: nowrap;
}
.stay-featured-section { padding: 34px 20px; border-bottom: var(--line); background: var(--lime); }
.stay-featured-section.is-online { background: var(--paper); }
.stay-featured-section.is-candidate { background: var(--sand); }
.stay-featured-section .section-heading h2 {
  margin: 0; font-size: 35px; line-height: .95; letter-spacing: -.045em; text-transform: uppercase;
}
.stay-verified-date {
  max-width: 120px; padding: 7px 8px; border: 1px solid var(--ink);
  font-size: 8px; font-weight: 950; line-height: 1.3; text-align: right;
}
.stay-verified-date.is-personal { background: var(--ink); color: var(--lime); }
.stay-property-list { display: grid; gap: 10px; }
.stay-property-card {
  width: 100%; min-height: 142px; padding: 16px; display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto; align-items: start; gap: 10px;
  border: var(--line); background: var(--paper); text-align: left; cursor: pointer;
}
.stay-property-card.is-dark { background: var(--sea); color: var(--paper); }
.stay-property-number { font-size: 10px; font-weight: 950; letter-spacing: .1em; }
.stay-property-copy small, .stay-property-copy strong, .stay-property-copy em { display: block; }
.stay-property-copy small { margin-bottom: 16px; font-size: 9px; font-weight: 950; letter-spacing: .1em; }
.stay-property-card.is-dark .stay-property-copy small { color: var(--lime); }
.stay-property-copy strong {
  max-width: 380px; font-size: 26px; line-height: .92; letter-spacing: -.04em; text-transform: uppercase;
}
.stay-property-copy em { margin-top: 9px; font-size: 11px; font-style: normal; }
.stay-property-status {
  display: inline-flex; margin-top: 13px; padding: 6px 7px; border: 1px solid currentColor;
  background: transparent; color: inherit; font-size: 8px; font-weight: 950; letter-spacing: .08em;
}
.stay-property-status.status-tested { border-color: var(--sea); background: var(--sea); color: var(--paper); }
.stay-property-card.is-dark .stay-property-status.status-tested { border-color: var(--lime); background: var(--lime); color: var(--ink); }
.stay-property-status.status-online { background: var(--lime); color: var(--ink); }
.stay-property-status.status-candidate { opacity: .72; }
.stay-property-arrow { align-self: center; font-size: 25px; }
.stay-property-card:hover, .stay-property-card:focus-visible {
  box-shadow: 6px 6px 0 var(--ink); transform: translate(-2px, -2px);
}
.stay-editorial-status {
  margin: 16px 0 0; padding-top: 14px; border-top: 1px solid var(--ink);
  font-size: 10px; font-weight: 750; line-height: 1.45;
}
.stay-partnership-policy {
  margin: 22px 20px 34px; padding: 26px; background: var(--ink); color: var(--paper);
}
.stay-partnership-policy h2 {
  margin: 0; color: var(--lime); font-size: 38px; line-height: .92;
  letter-spacing: -.05em; text-transform: uppercase;
}
.stay-partnership-policy > p:last-of-type { max-width: 500px; line-height: 1.5; }
.stay-label-demo { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.stay-label-demo span {
  padding: 7px 8px; border: 1px solid var(--paper); font-size: 8px; font-weight: 950; letter-spacing: .08em;
}
.stay-label-demo span:first-child { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.stay-dialog-hero { background: var(--sea); color: var(--paper); }
.stay-dialog-hero p { color: var(--lime); }
.stay-source-note {
  margin-top: 20px; padding-top: 14px; border-top: 1px solid var(--ink);
  font-size: 10px; font-weight: 750; line-height: 1.45;
}
.large-search { margin-top: 28px; height: 56px; display: flex; border: var(--line); background: var(--paper); }
.large-search span { width: 54px; display: grid; place-items: center; font-size: 25px; }
.filter-row, .trip-tabs {
  display: flex; gap: 7px; margin-top: 15px; overflow-x: auto; scrollbar-width: none;
}
.filter-row::-webkit-scrollbar, .trip-tabs::-webkit-scrollbar { display: none; }
.filter, .trip-tab {
  border: var(--line); background: transparent; border-radius: 999px; padding: 9px 14px;
  font-size: 12px; font-weight: 900; white-space: nowrap; cursor: pointer;
}
.filter.is-active, .trip-tab.is-active { background: var(--ink); color: var(--lime); }
.place-list, .trip-list { display: grid; grid-template-columns: 1fr; gap: 14px; padding: 20px; }
.place-list .place-card { min-height: 360px; }
.empty-state { padding: 70px 28px; text-align: center; }
.empty-state span { font-size: 60px; }
.empty-state h2 { margin: 12px 0 5px; font-size: 28px; text-transform: uppercase; }
.empty-state p { margin: 0 auto 22px; max-width: 300px; line-height: 1.45; }
.trip-tabs { padding: 16px 20px 0; margin-top: 0; }
.trip-intro-note {
  margin: 14px 20px 0; padding: 14px; display: flex; flex-direction: column; gap: 4px;
  background: var(--lime); border: var(--line);
}
.trip-intro-note strong { font-size: 11px; letter-spacing: .12em; }
.trip-intro-note span { font-size: 12px; line-height: 1.4; }
.trip-card { border: var(--line); background: var(--paper); overflow: hidden; }
.trip-card:nth-child(even) .trip-head { background: var(--sand); }
.trip-head { padding: 18px; display: grid; grid-template-columns: auto 1fr auto; align-items: start; gap: 16px; }
.trip-days { min-width: 70px; font-size: 44px; line-height: .8; font-weight: 950; color: var(--lime); -webkit-text-stroke: 1.5px var(--ink); }
.trip-days small { display: block; font-size: 10px; color: var(--ink); -webkit-text-stroke: 0; letter-spacing: .12em; }
.trip-head-copy { min-width: 0; }
.trip-head h3 { margin: 0 0 7px; font-size: 24px; line-height: 1; text-transform: uppercase; }
.trip-head p { margin: 0; font-size: 12px; line-height: 1.4; }
.trip-total {
  display: inline-flex; margin-top: 12px; padding: 6px 8px;
  background: var(--ink); color: var(--lime); font-size: 10px; font-weight: 950; letter-spacing: .08em;
}
.trip-toggle { width: 44px; height: 44px; border: var(--line); border-radius: 50%; background: var(--lime); font-size: 22px; cursor: pointer; flex: 0 0 auto; }
.trip-lock-symbol {
  width: 44px; height: 44px; display: grid; place-items: center;
  border: var(--line); border-radius: 50%; background: var(--ink); color: var(--lime);
  font-size: 22px; font-weight: 950;
}
.trip-premium-lock {
  width: 100%; min-height: 106px; padding: 16px 18px; border: 0; border-top: var(--line);
  background: var(--ink); color: var(--paper); display: grid;
  grid-template-columns: 90px 1fr auto; align-items: center; gap: 13px;
  text-align: left; cursor: pointer;
}
.trip-premium-lock > span {
  color: var(--lime); font-size: 10px; font-weight: 950; letter-spacing: .12em;
}
.trip-premium-lock > strong { font-size: 13px; line-height: 1.35; }
.trip-premium-lock > b { color: var(--lime); font-size: 24px; }
.trip-route { display: none; border-top: var(--line); }
.trip-card.is-open .trip-route { display: block; }
.roadbook-summary {
  padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: var(--ink); color: var(--paper);
}
.roadbook-summary span { color: var(--lime); font-size: 10px; font-weight: 950; letter-spacing: .14em; }
.roadbook-summary strong { font-size: 11px; text-align: right; }
.roadbook-list { margin: 0; padding: 18px; list-style: none; }
.roadbook-list li {
  position: relative; display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 12px;
  padding: 0 0 17px;
}
.roadbook-list li:last-child { padding-bottom: 0; }
.roadbook-list li:not(:last-child)::after {
  content: ""; position: absolute; left: 20px; top: 38px; bottom: -1px;
  width: 2px; background: var(--ink);
}
.roadbook-marker {
  position: relative; z-index: 1; width: 42px; height: 42px; display: grid; place-items: center;
  border: var(--line); border-radius: 50%; background: var(--lime); font-size: 11px; font-weight: 950;
}
.roadbook-stage { min-width: 0; padding: 14px; border: 1px solid var(--ink); background: var(--paper); }
.roadbook-stage-head { display: flex; justify-content: space-between; align-items: start; gap: 10px; }
.roadbook-stage h4 {
  margin: 0; font-size: 18px; line-height: 1; letter-spacing: -.025em; text-transform: uppercase;
}
.roadbook-stage-head > strong {
  flex: 0 0 auto; padding: 5px 7px; background: var(--lime);
  font-size: 10px; line-height: 1; white-space: nowrap;
}
.roadbook-path { margin: 10px 0 0; font-size: 12px; font-weight: 900; line-height: 1.4; }
.roadbook-note { margin: 7px 0 0; color: #56504a; font-size: 11px; line-height: 1.4; }
.maps-button {
  min-height: 40px; margin-top: 13px; padding: 0 10px; display: flex; align-items: center;
  justify-content: space-between; gap: 8px; border: 1px solid var(--ink);
  background: var(--sea); color: var(--paper); font-size: 10px; font-weight: 950;
  line-height: 1.2; text-decoration: none;
}
.maps-button span { color: var(--lime); font-size: 17px; }
.trip-distance-note {
  margin: 0; padding: 14px 18px; border-top: 1px solid var(--ink);
  background: var(--sand); font-size: 10px; line-height: 1.45;
}
.custom-trip-card { margin: 12px 20px 30px; padding: 24px; background: var(--ink); color: var(--paper); }
.custom-trip-card h2 { font-size: 34px; margin: 16px 0; }
.custom-trip-card p { line-height: 1.45; }
.custom-badge { display: inline-block; padding: 7px 10px; background: var(--lime); color: var(--ink); font-size: 10px; font-weight: 950; }
.primary-button {
  min-height: 52px; padding: 0 16px; display: inline-flex; align-items: center; justify-content: space-between;
  gap: 20px; border: var(--line); background: var(--lime); color: var(--ink);
  font-weight: 900; text-decoration: none; cursor: pointer;
}
.weather-panel { margin: 20px; padding: 22px; background: var(--lime); border: var(--line); }
.weather-panel-top { display: flex; align-items: flex-start; justify-content: space-between; }
.weather-panel select { border: 0; border-bottom: 2px solid var(--ink); background: transparent; font-size: 24px; font-weight: 950; outline: none; }
.weather-icon { font-size: 48px; }
.tools-oman-clock {
  margin-top: 22px; padding: 15px 0; border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.tools-oman-clock small { color: var(--ink); }
.tools-oman-clock strong { font-size: clamp(40px, 11vw, 66px); }
.tools-oman-clock span { font-size: 12px; }
.big-temperature { display: block; margin: 25px 0; font-size: 94px; line-height: .8; letter-spacing: -.08em; }
.weather-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: var(--line); }
.weather-stats div { padding: 12px 6px 0; border-right: 1px solid var(--ink); }
.weather-stats div:last-child { border-right: 0; }
.weather-stats span, .weather-stats strong { display: block; font-size: 10px; }
.weather-stats strong { margin-top: 5px; font-size: 12px; }
.weather-credit { display: block; margin-top: 18px; font-size: 9px; }
.weather-credit a,
.dialog-body a { color: inherit; font-weight: 800; text-underline-offset: 2px; }
.money-dialog-hero { background: var(--lime); }
.money-dialog-hero h2 { max-width: 500px; }
.exchange-rate-grid { display: grid; grid-template-columns: 1fr 1fr; border: var(--line); }
.exchange-rate-grid > div {
  min-height: 120px; padding: 15px; display: flex; flex-direction: column;
  border-right: var(--line); background: var(--paper);
}
.exchange-rate-grid > div:last-child { border-right: 0; background: var(--lime); }
.exchange-rate-grid span { font-size: 10px; font-weight: 950; letter-spacing: .12em; }
.exchange-rate-grid strong {
  margin-top: auto; font-size: clamp(22px, 6vw, 32px); line-height: .95;
  letter-spacing: -.045em;
}
.currency-converter { margin-top: 14px; padding: 18px; background: var(--ink); color: var(--paper); }
.currency-input-row { display: grid; grid-template-columns: 1fr 92px; height: 54px; }
.currency-input-row input,
.currency-input-row select {
  min-width: 0; padding: 0 12px; border: 0; border-radius: 0;
  background: var(--paper); color: var(--ink); font-size: 20px; font-weight: 900;
}
.currency-input-row select { border-left: var(--line); }
.currency-converter output {
  display: block; margin-top: 18px; color: var(--lime);
  font-size: clamp(38px, 10vw, 62px); font-weight: 950; letter-spacing: -.06em;
}
.exchange-updated { margin: 15px 0 5px; font-size: 11px; font-weight: 900; }
.exchange-disclaimer { margin: 0; font-size: 10px; line-height: 1.45 !important; color: #5b5751; }
.tides-dialog-hero { background: var(--sea); color: var(--paper); }
.tides-dialog-hero p { color: var(--lime); }
.tide-location-label {
  display: block; margin-bottom: 7px; font-size: 10px; font-weight: 950;
  letter-spacing: .12em; text-transform: uppercase;
}
#tide-location {
  width: 100%; height: 54px; padding: 0 12px; border: var(--line); border-radius: 0;
  background: var(--paper); color: var(--ink); font-size: 18px; font-weight: 950;
}
.tide-loading, .tide-error {
  margin-top: 12px; padding: 26px 16px; border: var(--line);
  background: var(--sand); text-align: center; font-size: 12px; font-weight: 800;
}
.tide-current-card {
  display: grid; grid-template-columns: 1fr 1fr; margin-top: 12px; border: var(--line);
}
.tide-current-card > div {
  min-height: 145px; padding: 15px; display: flex; flex-direction: column;
  border-right: var(--line); background: var(--sea); color: var(--paper);
}
.tide-current-card > div:last-child { border-right: 0; background: var(--lime); color: var(--ink); }
.tide-current-card span { font-size: 9px; font-weight: 950; letter-spacing: .11em; }
.tide-current-card strong {
  margin-top: auto; font-size: clamp(29px, 8vw, 46px); line-height: .9; letter-spacing: -.05em;
}
.tide-current-card small { margin-top: 8px; font-size: 10px; }
.tide-event-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.tide-event-list article {
  min-height: 112px; padding: 12px; display: flex; flex-direction: column;
  border: var(--line); background: var(--paper);
}
.tide-event-list article.is-high { background: var(--lime); }
.tide-event-list article > span { font-size: 9px; font-weight: 950; letter-spacing: .12em; }
.tide-event-list article > strong { margin-top: auto; font-size: 18px; text-transform: capitalize; }
.tide-event-list article > small { margin-top: 5px; font-size: 11px; font-weight: 800; }
.tide-status { margin: 12px 0; font-size: 10px; font-weight: 900; }
.tide-warning { padding: 16px; background: var(--ink); color: var(--paper); }
.tide-warning strong { color: var(--lime); font-size: 10px; letter-spacing: .1em; }
.tide-warning p { margin: 7px 0 0; font-size: 11px; line-height: 1.45; }
.tide-source, .moon-source { margin-bottom: 0; font-size: 9px; line-height: 1.45 !important; color: #5b5751; }
.moon-dialog-hero { background: var(--ink); color: var(--paper); }
.moon-dialog-hero p { color: var(--lime); }
.moon-now-card {
  min-height: 190px; padding: 18px; display: grid; grid-template-columns: 140px 1fr;
  align-items: center; gap: 20px; background: var(--ink); color: var(--paper);
}
.moon-symbol {
  width: 140px; height: 140px; display: grid; place-items: center;
  color: var(--lime); font-size: 144px; line-height: .7; overflow: hidden;
}
.moon-now-card div { display: flex; flex-direction: column; }
.moon-now-card div > span { color: var(--lime); font-size: 9px; font-weight: 950; letter-spacing: .12em; }
.moon-now-card div > strong {
  margin-top: 14px; font-size: clamp(25px, 7vw, 38px); line-height: .9;
  letter-spacing: -.04em; text-transform: uppercase;
}
.moon-now-card div > small { margin-top: 10px; font-size: 11px; }
.moon-stats { display: grid; grid-template-columns: repeat(3, 1fr); border: var(--line); border-top: 0; }
.moon-stats > div { min-height: 105px; padding: 11px; border-right: 1px solid var(--ink); }
.moon-stats > div:last-child { border-right: 0; }
.moon-stats span, .moon-stats strong { display: block; }
.moon-stats span { min-height: 25px; font-size: 8px; font-weight: 950; letter-spacing: .08em; }
.moon-stats strong { margin-top: 13px; font-size: 16px; line-height: 1.05; text-transform: capitalize; }
.moon-tip { margin-top: 14px; padding: 17px; background: var(--lime); border: var(--line); }
.moon-tip strong { font-size: 10px; letter-spacing: .1em; }
.moon-tip p { margin: 8px 0 0; font-size: 11px; line-height: 1.5; }
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 20px 20px; }
.tool-card {
  min-height: 154px; padding: 14px; border: var(--line); background: var(--paper);
  text-align: left; display: flex; flex-direction: column; align-items: flex-start; cursor: pointer;
}
.tool-card.is-lime { background: var(--lime); }
.tool-card.is-dark { background: var(--ink); color: var(--paper); }
.tool-card.is-dark > span { color: var(--lime); }
.tool-card.is-sea { background: var(--sea); color: var(--paper); }
.tool-card.is-sea > span { color: var(--lime); }
.tool-card.is-night { background: #111925; color: var(--paper); }
.tool-card.is-night > span { color: var(--lime); }
.tool-card > span { min-height: 38px; font-size: 24px; font-weight: 950; }
.tool-card strong { margin-top: auto; font-size: 17px; line-height: 1; text-transform: uppercase; }
.tool-card small { margin-top: 6px; }
.install-card {
  width: calc(100% - 40px); margin: 0 20px; min-height: 80px; padding: 12px;
  border: var(--line); background: var(--ink); color: var(--paper);
  display: flex; align-items: center; gap: 14px; text-align: left; cursor: pointer;
}
.install-card > span:nth-child(2) { flex: 1; }
.install-card strong, .install-card small { display: block; }
.install-card small { margin-top: 4px; }
.install-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--lime); color: var(--ink); display: grid; place-items: center; font-size: 28px; }
.documents-intro {
  min-height: 420px; background: var(--ink); color: var(--paper); position: relative; overflow: hidden;
}
.documents-intro::after {
  content: "DOC"; position: absolute; right: -16px; bottom: -28px;
  color: var(--lime); font-size: 128px; line-height: .8; font-weight: 950;
  letter-spacing: -.09em; transform: rotate(-7deg);
}
.documents-intro > * { position: relative; z-index: 1; }
.document-security-note {
  display: grid; grid-template-columns: 46px 1fr; gap: 14px;
  padding: 20px; background: var(--lime); border-bottom: var(--line);
}
.document-security-note > span {
  width: 46px; height: 46px; display: grid; place-items: center;
  border: var(--line); border-radius: 50%; font-size: 24px;
}
.document-security-note strong { display: block; font-size: 15px; text-transform: uppercase; }
.document-security-note p { margin: 5px 0 0; font-size: 11px; line-height: 1.4; }
.document-upload-card { margin: 20px; padding: 22px; border: var(--line); background: var(--paper); }
.document-upload-head { display: flex; justify-content: space-between; gap: 14px; }
.document-upload-head h2 {
  margin: 0; font-size: 32px; line-height: .93; letter-spacing: -.04em; text-transform: uppercase;
}
.document-upload-head > span {
  width: 54px; height: 54px; flex: 0 0 auto; display: grid; place-items: center;
  border: var(--line); border-radius: 50%; background: var(--lime); font-size: 30px;
}
.document-upload-card > label:not(.document-file-button) {
  display: block; margin: 25px 0 7px; font-size: 10px; font-weight: 950;
  letter-spacing: .1em; text-transform: uppercase;
}
.document-upload-card select {
  width: 100%; height: 52px; padding: 0 12px; border: var(--line);
  border-radius: 0; background: var(--paper); color: var(--ink); font-weight: 900;
}
.document-file-button {
  min-height: 58px; margin-top: 10px; padding: 0 14px; display: flex;
  align-items: center; justify-content: space-between; border: var(--line);
  background: var(--ink); color: var(--lime); font-weight: 950; cursor: pointer;
}
.document-upload-card > small { display: block; margin-top: 10px; font-size: 9px; line-height: 1.4; }
.document-library { padding: 24px 20px 30px; border-top: var(--line); }
.document-library .section-heading h2 {
  margin: 0; font-size: 32px; line-height: .95; letter-spacing: -.04em; text-transform: uppercase;
}
.document-count {
  min-width: 46px; height: 46px; display: grid; place-items: center;
  border: var(--line); border-radius: 50%; background: var(--lime); font-weight: 950;
}
.document-list { display: grid; gap: 9px; }
.document-card {
  min-width: 0; min-height: 88px; padding: 10px; display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto; align-items: center; gap: 11px;
  border: var(--line); background: var(--paper);
}
.document-mark {
  width: 52px; height: 52px; display: grid; place-items: center;
  background: var(--lime); border: 1px solid var(--ink); font-size: 11px; font-weight: 950;
}
.document-copy { min-width: 0; display: flex; flex-direction: column; }
.document-copy small { font-size: 9px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.document-copy strong {
  margin: 4px 0; overflow: hidden; font-size: 14px; text-overflow: ellipsis; white-space: nowrap;
}
.document-copy span { font-size: 9px; }
.document-actions { display: flex; align-items: center; gap: 5px; }
.document-actions button {
  min-height: 38px; padding: 0 10px; border: 1px solid var(--ink);
  background: var(--paper); font-size: 11px; font-weight: 950; cursor: pointer;
}
.document-actions button:last-child {
  width: 38px; padding: 0; background: var(--ink); color: var(--paper); font-size: 19px;
}
.document-empty { padding: 50px 18px; border: var(--line); text-align: center; }
.document-empty[hidden] { display: none; }
.document-empty > span { display: block; font-size: 48px; }
.document-empty strong { display: block; margin-top: 10px; font-size: 17px; text-transform: uppercase; }
.document-empty p { margin: 6px 0 0; font-size: 12px; }
.document-production-warning {
  margin: 0 20px 34px; padding: 24px; background: var(--ink); color: var(--paper);
}
.document-production-warning h2 {
  margin: 0; color: var(--lime); font-size: 34px; line-height: .95;
  letter-spacing: -.04em; text-transform: uppercase;
}
.document-production-warning p:last-child { margin-bottom: 0; font-size: 12px; line-height: 1.5; }
.premium-intro {
  position: relative; min-height: 510px; padding: 50px 22px 38px;
  background: var(--ink); color: var(--paper); overflow: hidden;
}
.premium-intro > *:not(.premium-orbit) { position: relative; z-index: 1; }
.premium-intro h1 {
  max-width: 600px; margin: 0; color: var(--lime);
  font-size: clamp(62px, 15vw, 104px); line-height: .82;
  letter-spacing: -.075em; text-transform: uppercase;
}
.premium-intro > p:last-child {
  max-width: 420px; margin: 28px 0 0; font-size: 16px; line-height: 1.5;
}
.premium-orbit {
  position: absolute; right: -70px; bottom: -72px; width: 280px; height: 280px;
  display: grid; place-items: center; border: 32px solid var(--lime); border-radius: 50%;
  color: var(--lime); font-size: 88px; font-weight: 950; letter-spacing: -.08em;
  transform: rotate(-10deg); opacity: .9;
}
.premium-plan-card { margin: 20px; padding: 24px; border: var(--line); background: var(--lime); }
.premium-plan-head { display: flex; justify-content: space-between; gap: 18px; }
.premium-plan-head h2 {
  margin: 0; font-size: 40px; line-height: .86; letter-spacing: -.055em; text-transform: uppercase;
}
.premium-plan-badge {
  width: 68px; height: 68px; flex: 0 0 auto; display: grid; place-items: center;
  border: var(--line); border-radius: 50%; background: var(--ink); color: var(--lime);
  font-size: 21px; font-weight: 950;
}
.premium-plan-price {
  margin-top: 36px; padding-top: 18px; border-top: var(--line);
  display: flex; align-items: end; justify-content: space-between; gap: 12px;
}
.premium-plan-price strong { font-size: clamp(45px, 12vw, 72px); line-height: .8; letter-spacing: -.065em; }
.premium-plan-price span { font-size: 12px; font-weight: 900; }
.premium-plan-card > p:last-child { max-width: 480px; margin: 24px 0 0; font-size: 13px; line-height: 1.5; }
.premium-benefits, .premium-compare { padding: 32px 20px; border-bottom: var(--line); }
.premium-benefit-list { margin-top: 20px; border: var(--line); }
.premium-benefit-list article {
  min-height: 76px; padding: 14px; display: grid; grid-template-columns: 44px 1fr;
  align-items: center; gap: 12px; border-bottom: var(--line);
}
.premium-benefit-list article:last-child { border-bottom: 0; }
.premium-benefit-list article:nth-child(even) { background: var(--sand); }
.premium-benefit-list span {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: var(--line); border-radius: 50%; background: var(--lime); font-size: 10px; font-weight: 950;
}
.premium-benefit-list strong { font-size: 14px; line-height: 1.35; text-transform: uppercase; }
.premium-compare { background: var(--ink); color: var(--paper); }
.compare-head, .compare-row {
  display: grid; grid-template-columns: minmax(0, 1fr) 72px 82px;
  align-items: center; border-bottom: 1px solid rgba(251, 249, 248, .35);
}
.compare-head { margin-top: 20px; min-height: 46px; color: var(--lime); font-size: 9px; letter-spacing: .08em; }
.compare-row { min-height: 62px; }
.compare-row > span { padding-right: 10px; font-size: 12px; line-height: 1.3; }
.compare-head strong, .compare-row b { text-align: center; }
.compare-row b:last-child { color: var(--lime); font-size: 17px; }
.premium-checkout { padding: 26px 20px 42px; background: var(--lime); }
.premium-checkout-status {
  padding: 15px; border: var(--line); background: var(--paper);
  display: grid; grid-template-columns: 48px 1fr; gap: 13px; align-items: center;
}
.premium-checkout-status > span {
  width: 48px; height: 48px; display: grid; place-items: center;
  border: var(--line); border-radius: 50%; font-size: 22px;
}
.premium-checkout-status strong, .premium-checkout-status small { display: block; }
.premium-checkout-status strong { font-size: 14px; }
.premium-checkout-status small { margin-top: 4px; font-size: 10px; }
.premium-checkout-status.is-active { background: var(--ink); color: var(--paper); }
.premium-checkout-status.is-active > span { border-color: var(--lime); color: var(--lime); }
.premium-checkout-status.is-active strong { color: var(--lime); }
.premium-buy-button, .premium-restore-button {
  width: 100%; min-height: 58px; margin-top: 12px; padding: 12px 16px;
  border: var(--line); font-weight: 950; cursor: pointer;
}
.premium-buy-button { background: var(--ink); color: var(--lime); }
.premium-buy-button:disabled { cursor: wait; opacity: .72; }
.premium-buy-button.is-active { background: var(--teal); color: var(--paper); cursor: default; opacity: 1; }
.premium-restore-button { min-height: 48px; margin-top: 8px; background: transparent; }
.premium-checkout > p:last-child { margin: 14px 4px 0; font-size: 10px; line-height: 1.5; }
.premium-restore-panel {
  margin-top: 10px; padding: 14px; border: 2px solid var(--ink); background: rgba(255,255,255,.38);
}
.premium-restore-panel[hidden], .premium-recovery-card[hidden] { display: none; }
.premium-restore-panel label {
  display: block; margin-bottom: 8px; font: 900 10px/1.2 var(--display); letter-spacing: .08em; text-transform: uppercase;
}
.premium-restore-panel > div { display: grid; grid-template-columns: 1fr auto; }
.premium-restore-panel input {
  min-width: 0; border: 2px solid var(--ink); border-right: 0; border-radius: 0; padding: 12px;
  background: var(--paper); color: var(--ink); font: 800 12px/1.2 var(--mono); text-transform: uppercase;
}
.premium-restore-panel button, .premium-recovery-card button {
  border: 0; border-radius: 0; padding: 11px 14px; background: var(--ink); color: var(--lime);
  font: 900 10px/1 var(--display); letter-spacing: .06em; cursor: pointer;
}
.premium-restore-panel small { display: block; margin-top: 9px; font-size: 9px; line-height: 1.45; }
.premium-recovery-card {
  margin-top: 12px; padding: 16px; border: 2px solid var(--ink); background: var(--paper); color: var(--ink);
}
.premium-recovery-card strong { display: block; font: 900 12px/1 var(--display); }
.premium-recovery-card p { margin: 7px 0 12px; font-size: 10px; line-height: 1.45; }
.premium-recovery-card code {
  display: block; overflow-wrap: anywhere; padding: 12px; background: var(--ink); color: var(--lime);
  font: 800 13px/1.4 var(--mono); letter-spacing: .04em; text-align: center;
}
.premium-recovery-card button { width: 100%; margin-top: 8px; }
.shop-intro { background: var(--lime); }
.shop-intro > p:not(.eyebrow) { max-width: 480px; font-size: 17px; line-height: 1.45; }
.preview-ribbon {
  display: inline-flex; margin-top: 18px; padding: 9px 11px;
  background: var(--ink); color: var(--lime); font-size: 10px;
  font-weight: 950; letter-spacing: .13em;
}
.shop-live-link {
  display: flex; width: fit-content; min-height: 46px; margin-top: 10px;
  padding: 0 14px; align-items: center; justify-content: space-between; gap: 24px;
  border: var(--line); background: var(--paper); color: var(--ink);
  font-size: 10px; font-weight: 950; letter-spacing: .08em; text-decoration: none;
}
.shop-live-link span { font-size: 18px; }

.profile-intro { background: var(--sea); color: var(--paper); }
.profile-access-card, .profile-member, .owner-entry, .profile-production-note {
  margin: 20px; border: var(--line);
}
.profile-access-card {
  padding: 22px; background: var(--lime); box-shadow: 8px 8px 0 var(--ink);
}
.profile-access-card h2, .owner-entry h2 {
  margin: 0; font-size: 33px; line-height: .95; letter-spacing: -.045em; text-transform: uppercase;
}
.profile-access-card > p:not(.micro-label) { font-size: 13px; line-height: 1.5; }
.profile-demo-form { display: grid; gap: 7px; margin-top: 20px; }
.profile-demo-form label, .admin-editor label {
  margin-top: 7px; font-size: 10px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase;
}
.profile-demo-form input, .admin-editor input, .admin-editor select, .admin-editor textarea {
  width: 100%; min-height: 50px; padding: 12px; border: var(--line);
  border-radius: 0; background: var(--paper); color: var(--ink); font: inherit;
}
.profile-demo-form .primary-button { width: 100%; margin-top: 10px; }
.local-demo-note {
  margin: 16px 0 0 !important; padding-top: 14px; border-top: 1px solid var(--ink);
  font-size: 10px !important; font-weight: 800;
}
.profile-member { background: var(--paper); }
.profile-identity {
  padding: 20px; display: grid; grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: center; gap: 14px; background: var(--ink); color: var(--paper);
}
.profile-avatar {
  width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%;
  border: 2px solid var(--lime); color: var(--lime); font-size: 20px; font-weight: 950;
}
.profile-identity small { color: var(--lime); font-size: 9px; font-weight: 950; letter-spacing: .1em; }
.profile-identity h2 { margin: 5px 0 2px; font-size: 23px; line-height: 1; text-transform: uppercase; }
.profile-identity p { margin: 0; opacity: .7; font-size: 11px; overflow-wrap: anywhere; }
.profile-plan-badge {
  padding: 7px 8px; border: 1px solid var(--paper); color: var(--paper);
  font-size: 9px; font-weight: 950; letter-spacing: .08em;
}
.profile-plan-badge.is-active { border-color: var(--lime); background: var(--lime); color: var(--ink); }
.profile-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: var(--line); }
.profile-stats button {
  min-height: 86px; padding: 10px; border: 0; border-right: var(--line);
  background: var(--paper); cursor: pointer;
}
.profile-stats button:last-child { border-right: 0; }
.profile-stats strong, .profile-stats span { display: block; }
.profile-stats strong { font-size: 23px; }
.profile-stats span { margin-top: 4px; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.profile-actions > button {
  width: 100%; min-height: 50px; padding: 0 15px; display: flex; align-items: center;
  justify-content: space-between; border: 0; border-bottom: 1px solid var(--ink);
  background: transparent; font-weight: 850; text-align: left; cursor: pointer;
}
.profile-switch {
  min-height: 58px; padding: 0 15px; display: flex; align-items: center;
  gap: 12px; font-size: 13px; font-weight: 850;
}
.profile-switch > span { margin-right: auto; }
.profile-switch input { position: absolute; opacity: 0; pointer-events: none; }
.profile-switch i {
  position: relative; width: 44px; height: 24px; border: var(--line); border-radius: 999px;
  background: var(--paper); cursor: pointer;
}
.profile-switch i::after {
  content: ""; position: absolute; width: 14px; height: 14px; top: 3px; left: 3px;
  border-radius: 50%; background: var(--ink); transition: .2s ease;
}
.profile-switch input:checked + i { background: var(--lime); }
.profile-switch input:checked + i::after { transform: translateX(20px); }
.profile-logout {
  width: 100%; min-height: 48px; border: 0; border-top: var(--line);
  background: var(--sand); font-size: 11px; font-weight: 950; cursor: pointer;
}
.owner-entry {
  padding: 21px; display: grid; grid-template-columns: 1fr 54px; align-items: end;
  gap: 18px; background: var(--lime); cursor: pointer;
}
.owner-entry p:last-child { margin: 10px 0 0; font-size: 12px; line-height: 1.45; }
.owner-entry > button {
  width: 54px; height: 54px; border: var(--line); border-radius: 50%;
  background: var(--ink); color: var(--lime); font-size: 23px; cursor: pointer;
}
.profile-production-note, .admin-production-note {
  padding: 18px; background: var(--sand); font-size: 11px; line-height: 1.45;
}
.profile-production-note strong, .admin-production-note strong { font-size: 10px; letter-spacing: .1em; }
.profile-production-note p, .admin-production-note p { margin: 8px 0 0; }
.profile-legal-links {
  display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 14px; padding-top: 12px;
  border-top: 1px solid var(--ink);
}
.profile-legal-links a {
  color: var(--ink); font-size: 10px; font-weight: 950; letter-spacing: .04em;
  text-decoration: underline; text-underline-offset: 3px;
}
.native-app .owner-entry { display: none; }

.admin-intro { background: var(--lime); }
.admin-dashboard {
  display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: var(--line);
}
.admin-dashboard div {
  min-height: 104px; padding: 16px 8px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; border-right: var(--line); text-align: center;
}
.admin-dashboard div:last-child { border-right: 0; }
.admin-dashboard strong { font-size: 31px; }
.admin-dashboard span { margin-top: 4px; font-size: 8px; font-weight: 950; letter-spacing: .08em; }
.admin-editor, .admin-library { padding: 25px 20px; border-bottom: var(--line); }
.admin-editor { background: var(--ink); color: var(--paper); }
.admin-section-head { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 17px; }
.admin-section-head .micro-label { margin: 0; }
.admin-section-head > span { font-size: 9px; font-weight: 950; color: var(--lime); letter-spacing: .1em; }
.admin-editor form { display: grid; gap: 7px; }
.admin-editor textarea { resize: vertical; min-height: 120px; }
.admin-submit-row { display: grid; grid-template-columns: 1fr 1.35fr; gap: 8px; margin-top: 12px; }
.admin-submit-row button {
  min-height: 52px; padding: 8px; border: 1px solid var(--paper);
  background: transparent; color: var(--paper); font-size: 9px; font-weight: 950; cursor: pointer;
}
.admin-submit-row button:last-child { border-color: var(--lime); background: var(--lime); color: var(--ink); }
.admin-library { background: var(--paper); }
.admin-update-list { display: grid; gap: 10px; }
.admin-update-card { border: var(--line); background: var(--paper); }
.admin-update-card-head {
  padding: 10px 12px; display: flex; justify-content: space-between; gap: 10px;
  border-bottom: 1px solid var(--ink); font-size: 9px; font-weight: 950; letter-spacing: .08em;
}
.admin-status-published { color: var(--sea); }
.admin-status-draft { opacity: .55; }
.admin-update-card-body { padding: 14px; }
.admin-update-card h3 { margin: 0 0 7px; font-size: 21px; text-transform: uppercase; }
.admin-update-card p { margin: 0; font-size: 12px; line-height: 1.45; }
.admin-update-card small { display: block; margin-top: 10px; font-weight: 800; }
.admin-card-actions { display: grid; grid-template-columns: 1fr auto; border-top: 1px solid var(--ink); }
.admin-card-actions button {
  min-height: 43px; padding: 0 12px; border: 0; background: var(--lime);
  font-size: 9px; font-weight: 950; cursor: pointer;
}
.admin-card-actions button:last-child { width: 48px; border-left: 1px solid var(--ink); background: var(--sand); font-size: 16px; }
.admin-empty { padding: 38px 16px; text-align: center; border: 2px dashed rgba(31, 30, 30, .35); }
.admin-empty > span { display: block; margin-bottom: 10px; font-size: 35px; }
.admin-empty strong { text-transform: uppercase; }
.admin-empty p { margin: 7px auto 0; max-width: 280px; font-size: 12px; line-height: 1.4; }
.admin-production-note { margin: 20px; border: var(--line); }
.shop-premium-banner {
  margin: 18px 20px 0; padding: 15px; display: grid;
  grid-template-columns: 66px 1fr auto; align-items: center; gap: 13px;
  border: var(--line); background: var(--paper); cursor: pointer;
}
.shop-premium-banner > span {
  width: 62px; height: 62px; display: grid; place-items: center;
  border: var(--line); border-radius: 50%; background: var(--ink); color: var(--lime);
  font-size: 21px; font-weight: 950;
}
.shop-premium-banner strong, .shop-premium-banner small { display: block; }
.shop-premium-banner strong { font-size: 12px; letter-spacing: .08em; }
.shop-premium-banner small { margin-top: 5px; font-size: 10px; line-height: 1.35; }
.shop-premium-banner > b { font-size: 23px; }
.shop-premium-banner.is-active { background: var(--lime); }
.shop-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: 20px;
}
.product-card {
  min-width: 0; padding: 0; border: var(--line); background: var(--paper);
  text-align: left; cursor: pointer; overflow: hidden;
}
.product-image-wrap {
  position: relative; aspect-ratio: 1; overflow: hidden;
  background: var(--paper); border-bottom: var(--line);
}
.product-image { width: 100%; height: 100%; display: block; object-fit: cover; }
.product-number {
  position: absolute; top: 10px; left: 10px; min-width: 30px; height: 30px;
  display: grid; place-items: center; padding: 0 7px; background: var(--ink);
  color: var(--lime); font-size: 10px; font-weight: 950;
}
.product-availability {
  position: absolute; right: 8px; bottom: 8px; padding: 7px 8px;
  background: var(--lime); border: var(--line); color: var(--ink);
  font-size: 8px; font-weight: 950; letter-spacing: .07em;
}
.product-body { display: block; padding: 14px; }
.product-category {
  display: block; margin-bottom: 8px; font-size: 9px;
  font-weight: 950; letter-spacing: .13em; text-transform: uppercase;
}
.product-body h2 {
  min-height: 2em; margin: 0; font-size: 20px; line-height: 1;
  letter-spacing: -.035em; text-transform: uppercase;
}
.product-footer {
  display: flex; align-items: end; justify-content: space-between;
  gap: 8px; margin-top: 18px;
}
.product-price { font-size: 19px; font-weight: 950; }
.product-arrow { font-size: 20px; }
.shop-operation-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 20px 20px;
  border: var(--line); background: var(--paper);
}
.shop-operation-grid article { min-width: 0; padding: 15px; border-right: var(--line); }
.shop-operation-grid article:last-child { border-right: 0; }
.shop-operation-grid span, .shop-operation-grid strong { display: block; }
.shop-operation-grid span { margin-bottom: 28px; font-size: 9px; font-weight: 950; }
.shop-operation-grid strong { font-size: 11px; letter-spacing: .08em; }
.shop-operation-grid p { margin: 8px 0 0; font-size: 10px; line-height: 1.4; }
.shop-footer-card {
  margin: 0 20px 30px; padding: 24px; background: var(--ink); color: var(--paper);
}
.shop-footer-card h2 { margin: 0 0 12px; font-size: 32px; line-height: .95; text-transform: uppercase; }
.shop-footer-card p:last-child { margin-bottom: 0; line-height: 1.5; }
.shop-footer-card a {
  display: inline-flex; margin-top: 18px; padding-bottom: 4px;
  border-bottom: 1px solid currentColor; color: var(--lime);
  font-size: 10px; font-weight: 950; letter-spacing: .08em;
}
.product-dialog-image {
  width: 100%; aspect-ratio: 1; display: block; object-fit: cover;
  border-bottom: var(--line); background: var(--paper);
}
.product-dialog-meta {
  display: flex; justify-content: space-between; gap: 14px;
  margin-bottom: 18px; font-size: 12px; font-weight: 950;
  letter-spacing: .08em; text-transform: uppercase;
}
.product-dialog-price { color: var(--ink); font-size: 24px; letter-spacing: -.03em; }
.product-checkout-button { width: 100%; margin-top: 14px; }
.bottom-nav {
  position: fixed; z-index: 30; left: 50%; transform: translateX(-50%); bottom: 0;
  width: min(100%, 720px); min-height: calc(76px + env(safe-area-inset-bottom));
  padding: 8px 10px env(safe-area-inset-bottom);
  display: grid; grid-template-columns: repeat(6, 1fr);
  background: var(--paper); border-top: var(--line);
}
.nav-item {
  border: 0; background: transparent; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 4px; opacity: .45; cursor: pointer; font-weight: 900;
}
.nav-item span { font-size: 22px; line-height: 1; }
.nav-item small { font-size: 9px; text-transform: uppercase; }
.nav-item.is-active { opacity: 1; }
.nav-item.is-active span { color: var(--lime); -webkit-text-stroke: 1px var(--ink); }
.details-dialog {
  width: min(calc(100% - 28px), 620px); max-height: 84vh; padding: 0; border: var(--line);
  background: var(--paper); color: var(--ink); overflow-y: auto;
}
.details-dialog::backdrop { background: rgba(31, 30, 30, .72); backdrop-filter: blur(3px); }
.dialog-close { position: sticky; top: 12px; float: right; margin: 12px; width: 44px; height: 44px; z-index: 3; border: var(--line); border-radius: 50%; background: var(--paper); font-size: 24px; cursor: pointer; }
.dialog-hero { clear: both; padding: 32px 22px; background: var(--lime); border-bottom: var(--line); }
.dialog-hero p { font-weight: 900; letter-spacing: .1em; font-size: 10px; }
.dialog-hero h2 { margin: 8px 0 0; font-size: 50px; line-height: .9; text-transform: uppercase; }
.dialog-body { padding: 22px; }
.dialog-body p { line-height: 1.55; }
.place-experiences { margin-top: 24px; padding-top: 20px; border-top: var(--line); }
.place-experience { margin-top: 12px; padding: 18px; background: var(--sea); color: var(--paper); }
.place-experience > span {
  display: block; margin-bottom: 9px; color: var(--lime);
  font-size: 10px; font-weight: 950; letter-spacing: .11em;
}
.place-experience h3 {
  margin: 0; font-size: 30px; line-height: .95; letter-spacing: -.04em; text-transform: uppercase;
}
.place-experience > p { margin-bottom: 0; font-size: 14px; }
.experience-tip { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(251, 249, 248, .55); }
.experience-tip strong { color: var(--lime); font-size: 10px; letter-spacing: .12em; }
.experience-tip p { margin: 6px 0 0; font-size: 12px; }
.legal-list {
  margin: 18px 0 0; padding: 0; list-style: none; border-top: var(--line);
}
.legal-list li {
  position: relative; padding: 14px 8px 14px 29px; border-bottom: var(--line);
  font-size: 13px; line-height: 1.5;
}
.legal-list li::before {
  content: "→"; position: absolute; left: 3px; top: 13px; font-weight: 950;
}
.official-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.official-links a, .official-links span {
  padding: 9px 10px; border: var(--line); color: inherit; font-size: 10px;
  font-weight: 900; text-decoration: none; text-transform: uppercase;
}
.official-links a:hover, .official-links a:focus-visible { background: var(--lime); }
.tip-box { margin-top: 22px; padding: 16px; background: var(--ink); color: var(--paper); }
.tip-box strong { color: var(--lime); }
.premium-nudge {
  position: fixed; z-index: 55; left: 50%; bottom: calc(92px + env(safe-area-inset-bottom));
  transform: translate(-50%, 24px); width: min(calc(100% - 24px), 520px);
  padding: 14px 46px 13px 14px; display: grid;
  grid-template-columns: 58px minmax(0, 1fr); gap: 12px;
  border: var(--line); background: var(--paper); box-shadow: 7px 7px 0 var(--ink);
  opacity: 0; transition: opacity .24s ease, transform .24s ease;
}
.premium-nudge[hidden] { display: none; }
.premium-nudge.is-visible { opacity: 1; transform: translate(-50%, 0); }
.premium-nudge-close {
  position: absolute; top: 8px; right: 8px; width: 31px; height: 31px;
  padding: 0; border: 0; border-radius: 50%; background: var(--sand);
  font-size: 19px; line-height: 1; cursor: pointer;
}
.premium-nudge-pass {
  grid-row: 1 / 3; width: 58px; height: 58px; display: grid; place-items: center;
  align-self: start; border: var(--line); border-radius: 50%;
  background: var(--lime); font-size: 17px; font-weight: 950;
}
.premium-nudge-copy { min-width: 0; padding-right: 2px; }
.premium-nudge-copy small, .premium-nudge-copy strong { display: block; }
.premium-nudge-copy small {
  margin-bottom: 4px; font-size: 8px; font-weight: 950; letter-spacing: .13em;
}
.premium-nudge-copy strong {
  font-size: 19px; line-height: 1; letter-spacing: -.025em; text-transform: uppercase;
}
.premium-nudge-copy p { margin: 6px 0 0; font-size: 11px; line-height: 1.35; }
.premium-nudge-action {
  min-height: 41px; padding: 0 12px; border: var(--line);
  background: var(--ink); color: var(--lime); font-size: 10px;
  font-weight: 950; letter-spacing: .04em; cursor: pointer;
}
.premium-nudge-later {
  position: absolute; right: 13px; bottom: 15px; padding: 5px 0;
  border: 0; border-bottom: 1px solid currentColor; background: transparent;
  font-size: 8px; font-weight: 950; letter-spacing: .08em; cursor: pointer;
}
.premium-nudge-action { margin-right: 72px; }
.toast {
  position: fixed; z-index: 60; left: 50%; bottom: 94px; transform: translate(-50%, 20px);
  width: min(calc(100% - 40px), 430px); padding: 13px 16px; background: var(--ink);
  color: var(--paper); border: 1px solid var(--paper); text-align: center; font-size: 13px; font-weight: 800;
  opacity: 0; pointer-events: none; transition: .25s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (min-width: 580px) {
  .quick-grid, .tools-grid { grid-template-columns: repeat(4, 1fr); }
  .social-panel { grid-template-columns: minmax(0, 1fr) auto; align-items: end; }
  .social-links { min-width: 300px; }
  .social-links { grid-template-columns: repeat(3, 1fr); }
  .quick-card { min-height: 180px; }
  .tools-grid .tool-card { min-height: 170px; }
  .place-list { grid-template-columns: 1fr 1fr; }
  .shop-grid { grid-template-columns: repeat(3, 1fr); padding-left: 30px; padding-right: 30px; }
  .hero { padding-left: 34px; padding-right: 34px; }
  .section-block, .screen-intro { padding-left: 30px; padding-right: 30px; }
  .guide-promise-card { margin-left: 30px; margin-right: 30px; }
  .food-section { padding-left: 30px; padding-right: 30px; }
  .stay-section { padding-left: 30px; padding-right: 30px; }
  .stay-featured-section { padding-left: 30px; padding-right: 30px; }
  .document-upload-card { margin-left: 30px; margin-right: 30px; }
  .document-library { padding-left: 30px; padding-right: 30px; }
  .document-production-warning { margin-left: 30px; margin-right: 30px; }
  .weather-strip { min-height: 122px; grid-template-columns: 1fr auto auto; }
  .home-oman-clock {
    grid-column: 2; grid-row: 1; min-width: 210px; padding: 0 20px;
    border-top: 0; border-left: 1px solid rgba(251, 249, 248, .45);
  }
  .weather-arrow { grid-column: 3; }
}

@media (max-width: 420px) {
  .premium-nudge {
    grid-template-columns: 48px minmax(0, 1fr); gap: 10px;
    padding-left: 11px; padding-bottom: 11px;
  }
  .premium-nudge-pass { width: 48px; height: 48px; font-size: 14px; }
  .premium-nudge-copy strong { font-size: 17px; }
  .premium-nudge-copy p { font-size: 10px; }
  .shop-teaser { grid-template-columns: 1fr; }
  .shop-operation-grid { grid-template-columns: 1fr; }
  .shop-operation-grid article { border-right: 0; border-bottom: var(--line); }
  .shop-operation-grid article:last-child { border-bottom: 0; }
  .shop-operation-grid span { margin-bottom: 12px; }
  .shop-teaser-mark { width: 92px; height: 92px; font-size: 54px; justify-self: end; }
  .food-teaser { grid-template-columns: 1fr; }
  .food-teaser-art {
    width: 118px; height: 118px; justify-self: end; font-size: 35px;
    transform: rotate(7deg) translate(18px, 8px);
  }
  .food-teaser-art::before { width: 76px; height: 34px; left: 19px; bottom: 16px; }
  .food-teaser-art::after { width: 54px; left: 30px; bottom: 15px; }
  .bottom-nav { padding-left: 4px; padding-right: 4px; }
  .nav-item small { font-size: 8px; line-height: 1.05; text-align: center; }
  .stay-area-property-list button { grid-template-columns: 26px minmax(0, 1fr) auto; }
  .stay-area-property-list .stay-property-status {
    grid-column: 2; justify-self: start; margin-top: 7px;
  }
  .stay-area-property-list button > b { grid-column: 3; grid-row: 1 / 3; }
  .editorial-detail-grid { grid-template-columns: 1fr; }
  .editorial-detail-grid > div {
    min-height: 150px; border-right: 0; border-bottom: var(--line);
  }
  .editorial-detail-grid > div:last-child { border-bottom: 0; }
  .document-card { grid-template-columns: 42px minmax(0, 1fr) auto; gap: 8px; }
  .document-mark { width: 42px; height: 48px; }
  .document-actions button { padding: 0 7px; }
  .document-actions button:last-child { width: 34px; }
  .moon-now-card { grid-template-columns: 92px 1fr; gap: 12px; padding: 14px; }
  .moon-symbol { width: 92px; height: 112px; font-size: 104px; }
  .moon-stats > div { padding: 8px; }
  .moon-stats strong { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
