/* Travel Go 365 — premium mobil365 presentation */

:root {
  --g-950: #022c22;
  --g-900: #064e3b;
  --g-800: #065f46;
  --g-700: #047857;
  --g-600: #059669;
  --g-500: #10b981;
  --g-400: #34d399;
  --g-100: #d1fae5;
  --g-50: #ecfdf5;

  --ink: #042f2e;
  --muted: #4b6b63;
  --line: #cfe8dc;
  --bg: #f4fbf7;
  --bg-soft: #e8f6ef;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(4, 47, 46, 0.08);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --header: 3.5rem;
  --bottom-nav: 4.35rem;
  --shell: min(1120px, calc(100% - 1.5rem));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-d: "Fraunces", Georgia, serif;
  --font-b: "Outfit", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + .5rem); scroll-padding-bottom: calc(var(--bottom-nav) + .75rem); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-b);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 100% -10%, rgba(16, 185, 129, 0.14), transparent 50%),
    radial-gradient(700px 360px at 0% 30%, rgba(4, 120, 87, 0.08), transparent 45%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: calc(var(--bottom-nav) + env(safe-area-inset-bottom, 0px));
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--font-d); font-weight: 600; line-height: 1.15; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }

.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 999;
  padding: .7rem 1rem; background: var(--g-800); color: #fff;
}
.skip-link:focus { top: 1rem; }

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  font-size: 1.35rem;
  line-height: 1;
  vertical-align: middle;
}

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header);
  border-bottom: 1px solid transparent;
  transition: .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(244, 251, 247, 0.86);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 1rem; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand-logo {
  display: block;
  height: 2.15rem;
  width: auto;
  object-fit: contain;
  background: transparent;
}
.footer-logo {
  height: 3.2rem;
}
.hero-logo {
  margin-bottom: 1rem;
  max-width: 240px;
  background: transparent;
}
.hero-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 10px 24px rgba(4, 120, 87, 0.16));
}
.hero-logo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  overflow: hidden;
}
.hero-logo-bg img {
  width: min(68vw, 520px);
  height: auto;
  object-fit: contain;
  opacity: 0.25;
  filter: saturate(1.05);
  transform: translateY(2%);
}
.hero .shell,
.hero-grid {
  position: relative;
  z-index: 1;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--g-600); margin-bottom: .9rem;
}
.nav { display: none; margin-left: auto; gap: 1.25rem; }
.nav a {
  font-size: .9rem; font-weight: 500; color: var(--muted);
  transition: color .2s var(--ease);
}
.nav a:hover { color: var(--g-800); }
.nav a[href="#contact"] {
  color: #fff;
  background: linear-gradient(135deg, var(--g-500), var(--g-700));
  padding: .55rem 1rem;
  border-radius: .65rem;
  box-shadow: 0 10px 22px rgba(5, 150, 105, .25);
}
.nav a[href="#contact"]:hover { color: #fff; }

/* Bottom mobile nav */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  height: calc(var(--bottom-nav) + env(safe-area-inset-bottom, 0px));
  padding: .35rem .35rem calc(.35rem + env(safe-area-inset-bottom, 0px));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .15rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(4, 47, 46, 0.08);
}
.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .15rem;
  min-width: 0;
  padding: .35rem .2rem;
  border-radius: .85rem;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.bottom-nav__item .material-symbols-outlined {
  font-size: 1.35rem;
  line-height: 1;
}
.bottom-nav__item span:last-child {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bottom-nav__item.is-active {
  color: var(--g-800);
  background: rgba(16, 185, 129, 0.12);
}
.bottom-nav__item--cta.is-active,
.bottom-nav__item--cta {
  color: var(--g-700);
}
.bottom-nav__item--cta.is-active {
  background: rgba(5, 150, 105, 0.16);
}
.bottom-nav__item:active {
  transform: scale(0.96);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 3rem; padding: .75rem 1.25rem; border-radius: .7rem;
  font-weight: 600; cursor: pointer; transition: .25s var(--ease);
}
.btn .material-symbols-outlined { font-size: 1.15rem; }
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--g-600); outline-offset: 3px; }
.btn-primary {
  background: linear-gradient(135deg, var(--g-500), var(--g-700));
  color: #fff; box-shadow: 0 12px 28px rgba(5, 150, 105, .28);
}
.btn-outline {
  border: 1.5px solid rgba(6, 78, 59, .2);
  background: rgba(255,255,255,.55); color: var(--g-900);
}
.btn-light {
  background: #fff; color: var(--g-900);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

/* Hero */
.hero {
  position: relative;
  display: flex; align-items: flex-start;
  padding: calc(var(--header) + 1rem) 0 1rem;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 80% 35%, rgba(16,185,129,.18), transparent 40%),
    linear-gradient(180deg, #e7f6ee, var(--bg) 70%);
}
.hero-grid {
  display: grid; gap: 1.5rem; align-items: center;
}
.hero-title {
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 500; max-width: 18ch; margin-bottom: .7rem;
}
.hero-lead {
  max-width: 42ch; color: var(--muted); font-weight: 300; margin-bottom: 1.1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.15rem; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .65rem;
  max-width: 420px;
}
.hero-stats > div {
  padding: .85rem .6rem; text-align: center;
  border-radius: var(--radius-sm); background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
}
.hero-stats b {
  display: block; font-family: var(--font-d); font-size: 1.25rem; color: var(--g-800);
}
.hero-stats span { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  justify-items: end;
}
.hero-app-shot {
  display: block;
  width: min(100%, 230px);
  height: auto;
  margin-left: auto;
  margin-right: 0;
  border-radius: 1.85rem;
  overflow: hidden;
  filter: drop-shadow(0 28px 50px rgba(4, 47, 46, 0.22));
}
.app-bar {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-d); font-size: 1rem; margin-bottom: .85rem; color: var(--g-900);
}
.app-search {
  display: flex; align-items: center; gap: .4rem;
  padding: .7rem .8rem; border-radius: .8rem;
  background: #fff; border: 1px solid var(--line);
  color: var(--muted); font-size: .85rem; margin-bottom: .7rem;
}
.app-chips { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .85rem; }
.app-chips i {
  font-style: normal; font-size: .72rem; font-weight: 600;
  padding: .35rem .55rem; border-radius: 999px;
  background: var(--g-100); color: var(--g-800);
}
.app-card {
  display: grid; grid-template-columns: 56px 1fr; gap: .65rem;
  padding: .65rem; border-radius: .9rem; background: #fff;
  border: 1px solid var(--line); margin-bottom: .55rem;
}
.app-photo {
  border-radius: .55rem;
  background: linear-gradient(135deg, #34d399, #047857);
}
.app-photo.alt { background: linear-gradient(135deg, #5eead4, #0f766e); }
.app-card strong { display: block; font-size: .82rem; color: var(--ink); }
.app-card em { font-style: normal; font-size: .72rem; color: var(--muted); }
.app-dock {
  position: absolute; left: .6rem; right: .6rem; bottom: .55rem;
  display: flex; justify-content: space-around;
  padding: .55rem; border-radius: 1rem;
  background: rgba(255,255,255,.92); border: 1px solid var(--line);
}
.app-dock .material-symbols-outlined { color: var(--muted); font-size: 1.25rem; }
.app-dock .active { color: var(--g-700); }

.globe-section {
  padding: 1.5rem 0 2rem;
}
.globe-wrap {
  display: grid;
  gap: 2rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}
.globe-stage {
  position: relative;
  width: min(100%, 280px);
  aspect-ratio: 1;
}
#globe-canvas {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50%;
  display: block;
}
.globe-glow {
  position: absolute; inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52,211,153,.3), transparent 70%);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}

@media (min-width: 900px) {
  .globe-wrap {
    grid-template-columns: 1fr auto;
    text-align: left;
    justify-items: stretch;
  }
  .globe-stage { width: 260px; }
}

/* Sections */
.section { padding: 1.5rem 0; }
.section.band {
  background: linear-gradient(180deg, transparent, var(--bg-soft) 12%, var(--bg-soft) 88%, transparent);
}
.section-head {
  max-width: 40rem;
  margin: 0 auto .85rem;
  text-align: center;
}
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  font-size: .74rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--g-600); margin-bottom: .2rem;
}
.eyebrow.light { color: #a7f3d0; }
.section-title {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem); color: var(--g-900); margin-bottom: .3rem;
}
.section-lead {
  color: var(--muted); font-weight: 300; max-width: 46ch;
  margin-inline: auto;
}
.section-head.center .section-lead { margin-inline: auto; }

/* Journey */
.journey {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.journey-card {
  display: flex; flex-direction: column;
  height: 100%;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.icon-wrap {
  width: 2.75rem; height: 2.75rem; border-radius: .85rem;
  display: grid; place-items: center; margin-bottom: 1rem;
}
.icon-wrap .material-symbols-outlined { font-size: 1.35rem; color: #fff; }
.icon-wrap.live { background: linear-gradient(135deg, var(--g-500), var(--g-700)); }
.icon-wrap.mid { background: linear-gradient(135deg, #f59e0b, #b45309); }
.icon-wrap.next { background: linear-gradient(135deg, #0ea5e9, #0369a1); }
.journey-card h3 { font-size: 1.45rem; margin-bottom: .55rem; }
.journey-card > p { color: var(--muted); font-weight: 300; margin-bottom: 1rem; flex: 1; }
.journey-card ul { display: grid; gap: .35rem; margin-top: auto; }
.journey-card li {
  position: relative; padding-left: 1rem; color: var(--muted); font-size: .92rem; font-weight: 300;
}
.journey-card li::before {
  content: ""; position: absolute; left: 0; top: .55rem;
  width: .4rem; height: .4rem; border-radius: 1px; background: var(--g-500);
}

/* Equal icon tiles */
.icon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.icon-grid.compact .tile p { display: none; }
.tile {
  display: flex; flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.tile:hover { border-color: var(--g-500); transform: translateY(-2px); }
.tile > .material-symbols-outlined {
  width: 2.5rem; height: 2.5rem; border-radius: .7rem;
  display: grid; place-items: center; margin-bottom: .9rem;
  background: var(--g-50); color: var(--g-700); font-size: 1.3rem;
}
.tile h3 { font-size: 1.15rem; margin-bottom: .35rem; color: var(--g-900); }
.tile p { color: var(--muted); font-weight: 300; font-size: .92rem; margin-top: auto; }

/* Roles */
.role-grid {
  display: grid; gap: 1rem; grid-template-columns: 1fr;
}
.role {
  height: 100%;
  padding: 1.6rem 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.role > .material-symbols-outlined {
  font-size: 2rem; color: var(--g-600); margin-bottom: .85rem;
}
.role h3 { font-size: 1.5rem; margin-bottom: .55rem; }
.role p { color: var(--muted); font-weight: 300; }

/* Modules */
.module-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.module {
  display: flex; flex-direction: column;
  height: 100%;
  padding: 1.4rem 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.module.accent {
  border-color: var(--g-500);
  background: linear-gradient(160deg, rgba(16,185,129,.1), #fff 45%);
}
.module header {
  display: flex; align-items: center; gap: .65rem; margin-bottom: 1rem;
}
.module header .material-symbols-outlined {
  width: 2.4rem; height: 2.4rem; border-radius: .7rem;
  display: grid; place-items: center;
  background: var(--g-50); color: var(--g-700);
}
.module h3 { font-size: 1.25rem; }
.module ul { display: grid; gap: .45rem; margin-top: auto; }
.module li {
  position: relative; padding-left: 1.1rem;
  color: var(--muted); font-weight: 300; font-size: .94rem;
}
.module li::before {
  content: ""; position: absolute; left: 0; top: .55rem;
  width: .4rem; height: .4rem; border-radius: 1px; background: var(--g-500);
}

/* Feature rows */
.feature-rows {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
.frow {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 5.2rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}
.frow > .material-symbols-outlined {
  width: 2.6rem; height: 2.6rem; border-radius: .75rem;
  display: grid; place-items: center;
  background: var(--g-50); color: var(--g-700); font-size: 1.35rem;
}
.frow strong { display: block; font-family: var(--font-d); font-size: 1.15rem; margin-bottom: .2rem; }
.frow p { color: var(--muted); font-weight: 300; font-size: .95rem; }

/* Screenshots carousel — circular 3D ring */
.shots { padding-top: 0; overflow: hidden; }
.carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .75rem;
  align-items: center;
  padding: .35rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(232,245,239,.65));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: .85rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1.35rem .4rem 1.45rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  perspective: 900px;
  perspective-origin: 50% 50%;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: none;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.carousel-track::-webkit-scrollbar { display: none; }
.shot {
  margin: 0;
  flex: 0 0 min(40vw, 155px);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  padding: .4rem .4rem .6rem;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid rgba(207, 232, 220, .9);
  box-shadow: 0 10px 28px rgba(4, 47, 46, 0.08);
  transform-style: flat;
  transform-origin: center center;
  will-change: transform, opacity;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  backface-visibility: hidden;
  touch-action: pan-x;
  user-select: none;
  -webkit-user-drag: none;
}
.shot.is-active {
  border-color: var(--g-500);
  box-shadow:
    0 18px 40px rgba(5, 150, 105, 0.2),
    0 0 0 1px rgba(5, 150, 105, 0.12);
}
.shot img {
  width: 100%;
  height: auto;
  border-radius: .9rem;
  display: block;
  background: #e8f5ef;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.shot figcaption {
  margin-top: .45rem;
  padding: 0 .1rem;
  text-align: center;
}
.shot strong {
  display: block;
  font-family: var(--font-d);
  font-size: .88rem;
  color: var(--g-900);
  margin-bottom: .08rem;
}
.shot span {
  display: block;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 300;
  line-height: 1.3;
}
.carousel-btn {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--g-800);
  box-shadow: 0 8px 20px rgba(4, 47, 46, 0.1);
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
  cursor: pointer;
  z-index: 5;
}
.carousel-btn:hover {
  border-color: var(--g-500);
  background: var(--g-50);
  transform: scale(1.06);
}
.carousel-btn:active { transform: scale(0.96); }
.carousel-btn .material-symbols-outlined { font-size: 1.4rem; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin-top: .9rem;
  flex-wrap: wrap;
}
.carousel-dot {
  width: .45rem;
  height: .45rem;
  border-radius: 99px;
  border: 0;
  padding: 0;
  background: #b7dcc8;
  cursor: pointer;
  transition: width .25s var(--ease), background .25s var(--ease);
}
.carousel-dot.is-active {
  width: 1.15rem;
  background: var(--g-600);
}
.carousel-hint {
  text-align: center;
  margin-top: .65rem;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 300;
}

@media (min-width: 700px) {
  .shot { flex-basis: 165px; }
}
@media (min-width: 1000px) {
  .shot { flex-basis: 175px; }
  .carousel { padding: .5rem .65rem; }
  .carousel-track { perspective: 1100px; }
}

@media (prefers-reduced-motion: reduce) {
  .carousel { perspective: none; }
  .shot { opacity: 1 !important; transform: none !important; }
}

.tree-section {
  background:
    radial-gradient(700px 360px at 50% 10%, rgba(16, 185, 129, 0.14), transparent 55%),
    linear-gradient(180deg, transparent, var(--bg-soft) 8%, var(--bg-soft) 92%, transparent);
  overflow: hidden;
}
.growth-tree {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 .25rem .35rem;
}
.gt-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  height: 100%;
  padding: 1.25rem 1.2rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(207, 232, 220, 0.95);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow:
    0 18px 40px rgba(4, 47, 46, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.gt-card:hover {
  transform: translateY(-3px);
  border-color: var(--g-500);
}
.gt-icon {
  width: 3rem;
  height: 3rem;
  border-radius: .95rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.gt-icon .material-symbols-outlined { font-size: 1.4rem; color: #fff; }
.gt-icon.live { background: linear-gradient(135deg, #34d399, #047857); }
.gt-icon.next { background: linear-gradient(135deg, #0ea5e9, #0369a1); }
.gt-icon.soon { background: linear-gradient(135deg, #a7f3d0, #059669); }
.gt-icon.crown { background: linear-gradient(135deg, #fbbf24, #b45309); }
.gt-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.6rem;
  padding: .2rem .65rem;
  margin-bottom: .55rem;
  border-radius: .45rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--g-50);
  color: var(--g-800);
}
.gt-badge.done { background: var(--g-700); color: #fff; }
.gt-badge.next { background: #0c4a6e; color: #bae6fd; }
.gt-badge.crown { background: rgba(255,255,255,.18); color: #ecfdf5; }
.gt-card h3 {
  font-size: 1.3rem;
  margin-bottom: .4rem;
  color: var(--g-900);
}
.gt-card p {
  color: var(--muted);
  font-weight: 300;
  font-size: .95rem;
}
.gt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .85rem;
}
.gt-tags i {
  font-style: normal;
  font-size: .72rem;
  font-weight: 600;
  padding: .3rem .55rem;
  border-radius: 999px;
  background: var(--g-100);
  color: var(--g-800);
}

.gt-root {
  width: min(100%, 520px);
  margin: 0 auto 1.25rem;
  border-color: rgba(16, 185, 129, 0.55);
}
.gt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.gt-crown {
  width: min(100%, 560px);
  margin: 0 auto;
  background: linear-gradient(135deg, #064e3b, #059669 60%, #10b981);
  border: 0;
  color: #ecfdf5;
}
.gt-crown h3 { color: #fff; }
.gt-crown p { color: rgba(236, 253, 245, 0.88); }

@media (min-width: 700px) {
  .gt-grid { grid-template-columns: 1fr 1fr; }
}

/* Status */
.status-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.status-card {
  height: 100%;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.status-card.live { border-color: var(--g-500); }
.status-top {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: .85rem;
}
.status-top .material-symbols-outlined { font-size: 1.8rem; color: var(--g-600); }
.tag {
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .6rem; border-radius: .4rem;
}
.tag.live { background: var(--g-100); color: var(--g-800); }
.tag.demo { background: #ffedd5; color: #9a3412; }
.status-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.status-card ul { display: grid; gap: .45rem; }
.status-card li {
  position: relative; padding-left: 1.1rem; color: var(--muted); font-weight: 300;
}
.status-card li::before {
  content: ""; position: absolute; left: 0; top: .55rem;
  width: .4rem; height: .4rem; background: var(--g-500); border-radius: 1px;
}

/* Split tech/name */
.split { display: grid; gap: 1.5rem; }
.tech-list { display: grid; gap: .85rem; margin-top: 1.5rem; }
.tech-list > div {
  display: grid; grid-template-columns: auto 1fr; gap: .85rem; align-items: center;
  padding: 1rem 1.1rem; border-radius: var(--radius-sm);
  background: #fff; border: 1px solid var(--line); min-height: 4.5rem;
}
.tech-list .material-symbols-outlined {
  width: 2.4rem; height: 2.4rem; border-radius: .7rem;
  display: grid; place-items: center; background: var(--g-50); color: var(--g-700);
}
.tech-list strong { display: block; font-family: var(--font-d); }
.tech-list p { color: var(--muted); font-weight: 300; font-size: .92rem; word-break: break-word; }
.name-mini { display: grid; gap: .85rem; margin-top: 1.5rem; }
.name-mini article {
  padding: 1.15rem 1.2rem; border-radius: var(--radius-sm);
  background: #fff; border: 1px solid var(--line); min-height: 5.5rem;
}
.name-mini h3 { font-size: 1.5rem; color: var(--g-700); margin-bottom: .35rem; }
.name-mini p { color: var(--muted); font-weight: 300; }

/* CTA */
.cta-band {
  margin: 0;
  padding: 2rem 0;
  background: linear-gradient(135deg, var(--g-950), var(--g-700));
  color: #fff;
}
.cta-inner {
  display: grid; gap: 1.5rem; align-items: center;
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: .4rem 0 .7rem;
}
.cta-inner p { color: rgba(236,253,245,.85); font-weight: 300; max-width: 42ch; }
.cta-dev {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(236, 253, 245, 0.9);
  font-size: .92rem;
  font-weight: 300;
  text-align: left;
}
.cta-dev img {
  height: 2.6rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.cta-dev strong {
  font-weight: 600;
  color: #fff;
}

/* Footer */
.site-footer { padding: 1.35rem 0 1.75rem; border-top: 1px solid var(--line); }
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  align-items: flex-start;
}
.footer-brand { display: flex; align-items: center; gap: .9rem; }
.footer-brand strong { display: block; font-family: var(--font-d); }
.footer-brand p, .footer-copy { color: var(--muted); font-size: .88rem; }
.footer-dev {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  max-width: 100%;
}
.footer-dev .dev-logo {
  display: block;
  height: 3.1rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-dev strong {
  display: block;
  font-family: var(--font-d);
  font-size: 1rem;
  color: var(--g-900);
  margin-bottom: .15rem;
}
.footer-dev p {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 300;
}

/* Responsive equal grids */
@media (min-width: 640px) {
  .journey { grid-template-columns: repeat(3, 1fr); }
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .icon-grid.compact { grid-template-columns: repeat(4, 1fr); }
  .role-grid { grid-template-columns: repeat(3, 1fr); }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-rows { grid-template-columns: repeat(2, 1fr); }
  .status-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
}

@media (min-width: 900px) {
  :root {
    --shell: min(1140px, calc(100% - 3rem));
    --header: 4.25rem;
    --bottom-nav: 0px;
  }
  body { padding-bottom: 0; }
  .nav { display: flex; }
  .bottom-nav { display: none; }
  .brand-logo { height: 2.6rem; }

  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 1.25rem; }
  .hero-visual { min-height: 0; justify-items: end; padding-right: 0.25rem; }
  .hero-app-shot { width: min(100%, 255px); border-radius: 1.95rem; transform: translateX(-8px); }

  .icon-grid { grid-template-columns: repeat(4, 1fr); }
  .module-grid { grid-template-columns: repeat(3, 1fr); }
  .owner-grid { grid-template-columns: repeat(3, 1fr); }

  .cta-inner { grid-template-columns: 1fr auto; }
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}

@media (min-width: 900px) {
  .hero-logo-bg img {
    width: min(48vw, 560px);
    opacity: 0.27;
  }
}

@media (min-width: 1100px) {
  .section { padding: 1.75rem 0; }
}

/* ——— Mobile compact layout ——— */
@media (max-width: 899px) {
  body { font-size: .95rem; }

  .site-header {
    background: rgba(244, 251, 247, 0.9);
    backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
  }

  .hero {
    padding: calc(var(--header) + .75rem) 0 .85rem;
  }
  .hero-kicker {
    font-size: .65rem;
    letter-spacing: .1em;
    margin-bottom: .55rem;
    flex-wrap: wrap;
  }
  .hero-title {
    font-size: clamp(1.2rem, 5.2vw, 1.55rem);
    max-width: none;
    margin-bottom: .55rem;
    line-height: 1.25;
  }
  .hero-lead {
    font-size: .9rem;
    margin-bottom: .85rem;
    max-width: none;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem;
    margin-bottom: .85rem;
  }
  .btn {
    min-height: 2.65rem;
    padding: .65rem 1rem;
    font-size: .92rem;
    width: 100%;
  }
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .45rem;
    max-width: none;
  }
  .hero-stats > div {
    padding: .55rem .45rem;
  }
  .hero-stats b { font-size: 1.05rem; }
  .hero-stats span { font-size: .65rem; }
  .hero-visual {
    justify-items: center;
    margin: 0 auto .15rem;
  }
  .hero-app-shot {
    width: min(42vw, 168px);
    margin: 0 auto;
    border-radius: 1.35rem;
    filter: drop-shadow(0 16px 28px rgba(4, 47, 46, 0.18));
  }
  .hero-logo-bg img {
    width: min(78vw, 340px);
    opacity: 0.18;
  }
  .hero-grid { gap: .85rem; }

  .section { padding: 1.15rem 0; }
  .section-head { margin: 0 auto .7rem; }
  .section-title {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    margin-bottom: .25rem;
  }
  .section-lead { font-size: .88rem; }
  .eyebrow { font-size: .68rem; margin-bottom: .15rem; }

  .journey { gap: .65rem; }
  .journey-card {
    padding: 1rem .95rem;
  }
  .journey-card h3 { font-size: 1.2rem; margin-bottom: .35rem; }
  .journey-card > p { font-size: .88rem; margin-bottom: .65rem; }
  .icon-wrap {
    width: 2.35rem;
    height: 2.35rem;
    margin-bottom: .65rem;
  }

  .carousel {
    grid-template-columns: 2rem 1fr 2rem;
    gap: .25rem;
    padding: .25rem;
    border-radius: 1.15rem;
  }
  .carousel-btn {
    width: 2rem;
    height: 2rem;
  }
  .carousel-btn .material-symbols-outlined { font-size: 1.15rem; }
  .carousel-track {
    padding: 1.1rem .15rem 1.25rem;
    gap: .55rem;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }
  .shot {
    flex: 0 0 min(46vw, 132px);
    padding: .3rem .3rem .45rem;
    border-radius: .9rem;
  }
  .shot strong { font-size: .78rem; }
  .shot span { font-size: .62rem; }
  .carousel-hint { font-size: .72rem; margin-top: .45rem; }
  .carousel-dots { margin-top: .55rem; gap: .3rem; }

  .tile, .module, .role, .status-card, .frow {
    padding: 1rem .95rem;
  }
  .tile h3, .module h3, .role h3 { font-size: 1.05rem; }
  .tile p, .module p, .role p, .frow p { font-size: .86rem; }

  .icon-grid, .module-grid, .owner-grid, .feature-rows, .role-grid {
    gap: .65rem;
  }

  .gt-card {
    grid-template-columns: auto 1fr;
    gap: .65rem;
    padding: .95rem .85rem;
  }
  .growth-tree { gap: .65rem; }

  .cta-band { padding: 1.6rem 0; }
  .cta-inner { gap: 1rem; text-align: center; justify-items: center; }
  .cta-inner h2 { font-size: 1.45rem; }
  .cta-inner .btn { width: auto; min-width: 12rem; }
  .cta-dev {
    flex-direction: column;
    text-align: center;
    gap: .55rem;
    margin-top: 1.1rem;
    font-size: .82rem;
  }
  .cta-dev img { height: 2.2rem; }

  .site-footer { padding: 1.1rem 0 1.25rem; }
  .footer-logo { height: 2.4rem; }
  .footer-brand { gap: .65rem; }
  .footer-brand strong { font-size: .95rem; }
  .footer-brand p, .footer-copy { font-size: .78rem; }
  .footer-dev {
    width: 100%;
    padding: .75rem .85rem;
    gap: .7rem;
  }
  .footer-dev .dev-logo { height: 2.6rem; }
  .footer-dev strong { font-size: .9rem; }
  .footer-dev p { font-size: .78rem; }

  .globe-section { padding: 1.15rem 0 1.5rem; }
  .globe-stage { width: min(100%, 220px); }
}

@media (max-width: 420px) {
  .hero-app-shot { width: min(48vw, 150px); }
  .shot { flex: 0 0 42vw; }
  .bottom-nav__item { font-size: .58rem; padding: .3rem .1rem; }
  .bottom-nav__item .material-symbols-outlined { font-size: 1.25rem; }
}
