:root {
  --ink: #06111f;
  --ink-2: #09192a;
  --surface: #0d1b2d;
  --surface-2: #14263a;
  --paper: #f4f2ed;
  --paper-2: #e9e8e2;
  --white: #ffffff;
  --muted: #9aabba;
  --muted-dark: #536274;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(7, 18, 32, 0.13);
  --accent: #ff4f64;
  --accent-deep: #de314b;
  --green: #4bd19a;
  --radius: 28px;
  --font-display: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Avenir Next", "Segoe UI", sans-serif;
  --container: min(1180px, calc(100vw - 48px));
  --container-wide: min(1440px, calc(100vw - 48px));
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
p, h1, h2, h3 { margin-top: 0; }
::selection { color: var(--white); background: var(--accent); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.container { width: var(--container); margin-inline: auto; }
.container-wide { width: var(--container-wide); margin-inline: auto; }
.site-shell { position: relative; z-index: 1; }
.page-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.announcement {
  position: relative;
  z-index: 90;
  min-height: 34px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: #0a1a2c;
  color: #dce5ee;
  font-size: 12px;
  letter-spacing: .02em;
  text-align: center;
}
.announcement a { display: inline-flex; gap: 10px; align-items: center; padding: 7px 18px; }
.announcement a:hover { color: var(--white); }
.site-header {
  position: sticky;
  top: 12px;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--container-wide);
  height: 72px;
  margin: 12px auto 0;
  padding: 0 12px 0 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(7, 18, 31, .72);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .24);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; }
.brand img { width: 38px; height: 38px; object-fit: contain; border-radius: 10px; }
.brand span { font-size: 18px; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 30px; }
.desktop-nav a, .header-login { position: relative; color: #b6c1cc; font-size: 13px; font-weight: 600; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  transition: transform .35s ease;
}
.desktop-nav a:hover, .header-login:hover { color: var(--white); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 18px; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 15px 42px rgba(255, 79, 100, .24), inset 0 1px 0 rgba(255,255,255,.22);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.button:hover { background: #ff6476; box-shadow: 0 18px 54px rgba(255,79,100,.35), inset 0 1px 0 rgba(255,255,255,.3); }
.button:disabled { opacity: .55; cursor: progress; }
.button-small { min-height: 46px; padding: 0 18px; border-radius: 12px; font-size: 13px; }
.quiet-link { display: inline-flex; align-items: center; gap: 10px; color: #d7e0e8; font-size: 14px; font-weight: 700; }
.quiet-link span { color: var(--accent); transition: transform .25s ease; }
.quiet-link:hover span { transform: translate(2px, -2px); }
.menu-button { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 12px; background: transparent; }
.menu-button span { display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor; }
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  padding: 120px 28px 34px;
  background: rgba(5, 15, 27, .98);
}
.mobile-nav a:not(.button) { display: block; padding: 15px 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: clamp(28px, 8vw, 44px); font-weight: 700; }
.mobile-nav .button { margin-top: 26px; }

.eyebrow, .section-label {
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.display-title {
  max-width: 930px;
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: clamp(44px, 5.7vw, 86px);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .99;
}
.section-intro { max-width: 620px; color: var(--muted); font-size: clamp(17px, 1.7vw, 21px); line-height: 1.55; }

.hero-section {
  position: relative;
  min-height: calc(100svh - 118px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 40%, rgba(35, 84, 124, .35), transparent 33%),
    radial-gradient(circle at 84% 70%, rgba(255, 79, 100, .14), transparent 25%),
    linear-gradient(180deg, #06111f 0%, #071423 100%);
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(255,255,255,.034) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.034) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero-canvas { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; opacity: .72; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(560px, 1.18fr); align-items: center; min-height: calc(100svh - 118px); padding: 70px 0 84px; }
.hero-copy { position: relative; z-index: 3; max-width: 720px; padding-left: clamp(0px, 2vw, 24px); }
.hero-copy h1 {
  max-width: 750px;
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-size: clamp(58px, 6.4vw, 112px);
  font-weight: 700;
  letter-spacing: -.075em;
  line-height: .88;
  text-wrap: balance;
}
.hero-copy h1::after { content: ""; display: inline-block; width: .12em; height: .12em; margin-left: .08em; border-radius: 50%; background: var(--accent); vertical-align: .1em; }
.hero-body { max-width: 610px; margin-bottom: 34px; color: #acbbc8; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.product-signature { display: flex; align-items: center; gap: 13px; margin-top: 60px; color: #8194a5; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-signature i { width: 18px; height: 1px; background: rgba(255,255,255,.2); }
.hero-visual { position: relative; height: min(660px, 70vh); perspective: 1600px; transform-style: preserve-3d; }
.hero-glow { position: absolute; inset: 14% 4% 4% 13%; border-radius: 50%; background: rgba(56, 117, 163, .24); filter: blur(80px); }
.hero-orbit { position: absolute; top: -7%; right: 7%; width: 48%; opacity: .8; filter: drop-shadow(0 28px 50px rgba(0,0,0,.36)); transform: rotate(6deg) translateZ(50px); }
.hero-dashboard { position: absolute; right: 1%; bottom: 11%; width: 83%; transform: rotateX(4deg) rotateY(-11deg) rotateZ(-1.2deg) translateZ(5px); transform-origin: center; }
.hero-phone { position: absolute; z-index: 4; width: 23%; }
.hero-phone-guide { left: 2%; bottom: 2%; transform: rotateY(13deg) rotateZ(-6deg) translateZ(90px); }
.hero-phone-traveller { right: -1%; bottom: 0; transform: rotateY(-12deg) rotateZ(6deg) translateZ(120px); }
.browser-mockup {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(12, 24, 39, .9);
  box-shadow: 0 44px 95px rgba(0,0,0,.48), 0 0 0 1px rgba(255,255,255,.035) inset;
}
.browser-bar { display: flex; height: 32px; align-items: center; gap: 5px; padding: 0 10px; border-bottom: 1px solid var(--line); background: rgba(7,17,30,.92); }
.browser-bar > span { width: 6px; height: 6px; border-radius: 50%; background: #536579; }
.browser-bar > span:first-child { background: var(--accent); }
.browser-address { width: 32%; height: 12px; margin-left: 8px; padding-left: 8px; border-radius: 4px; color: #668095; background: rgba(255,255,255,.055); font-size: 6px; line-height: 12px; }
.browser-screen { position: relative; aspect-ratio: 1.98; overflow: hidden; background: #f4f5f8; }
.browser-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.phone-mockup { position: relative; overflow: hidden; padding: 7px; border: 1px solid rgba(255,255,255,.2); border-radius: 32px; background: linear-gradient(145deg, #344456, #030a13 44%, #27394d); box-shadow: 0 38px 75px rgba(0,0,0,.48), inset 0 0 0 1px rgba(255,255,255,.16); }
.phone-screen { overflow: hidden; aspect-ratio: .485; border-radius: 25px; background: #fff; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.phone-speaker { position: absolute; top: 13px; left: 50%; z-index: 2; width: 32%; height: 15px; transform: translateX(-50%); border-radius: 14px; background: #02060c; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05); }
.phone-home { position: absolute; bottom: 11px; left: 50%; width: 29%; height: 3px; transform: translateX(-50%); border-radius: 4px; background: rgba(255,255,255,.58); }
.signal-pill { position: absolute; z-index: 8; display: flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; color: #dbe4ec; background: rgba(10, 28, 45, .76); box-shadow: 0 16px 42px rgba(0,0,0,.28); backdrop-filter: blur(14px); font-size: 10px; font-weight: 600; }
.signal-pill span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.signal-pill-one { top: 21%; left: 8%; }
.signal-pill-two { right: 7%; bottom: 14%; }
.hero-floor { position: absolute; right: 0; bottom: -1px; left: 0; height: 90px; background: linear-gradient(to bottom, transparent, #0a1828); clip-path: polygon(0 78%, 36% 18%, 100% 64%, 100% 100%, 0 100%); opacity: .72; }

.statement-section { position: relative; overflow: hidden; padding: clamp(120px, 15vw, 230px) 0; color: #0a1523; background: var(--paper); }
.statement-grid { display: grid; grid-template-columns: 180px minmax(0, 1fr) 210px; align-items: end; gap: 46px; }
.statement-section .section-label { align-self: start; }
.statement-section .display-title { max-width: 850px; }
.statement-body { max-width: 690px; margin: 0; color: #405062; font-size: clamp(19px, 2vw, 26px); line-height: 1.5; }
.statement-aside { margin: 0 0 8px; padding-left: 18px; border-left: 2px solid var(--accent); color: #657284; font-size: 13px; font-weight: 600; }
.statement-mark { position: absolute; top: -8%; right: -2%; width: 310px; height: 310px; opacity: .12; transform: rotate(-18deg); }
.statement-mark span { position: absolute; border: 1px solid #1a3044; border-radius: 50%; }
.statement-mark span:nth-child(1) { inset: 0; }
.statement-mark span:nth-child(2) { inset: 48px; }
.statement-mark span:nth-child(3) { inset: 96px; border-color: var(--accent); background: var(--accent); }

.platform-section { position: relative; padding: 150px 0 100px; background: #081624; }
.platform-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(31,88,132,.26), transparent 34%); pointer-events: none; }
.platform-intro { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .6fr; gap: 80px; align-items: end; padding-bottom: 100px; }
.platform-intro .display-title { max-width: 790px; }
.story-layout { position: relative; display: grid; grid-template-columns: 150px minmax(320px, 420px) minmax(0, 1fr); gap: clamp(28px, 4vw, 70px); }
.story-rail { position: sticky; top: 160px; align-self: start; display: flex; flex-direction: column; gap: 5px; padding-top: 40px; }
.story-rail-item { display: grid; grid-template-columns: 28px 1fr; gap: 8px; width: 100%; padding: 11px 0; border: 0; color: #61788b; background: none; text-align: left; font-size: 11px; cursor: pointer; transition: color .3s ease; }
.story-rail-item span { font-family: var(--font-display); }
.story-rail-item.is-active { color: var(--white); }
.story-rail-item.is-active span { color: var(--accent); }
.story-copy { position: relative; z-index: 2; }
.story-chapter { display: flex; min-height: 72vh; flex-direction: column; justify-content: center; opacity: .28; transition: opacity .45s ease; }
.story-chapter.is-active { opacity: 1; }
.chapter-index { margin-bottom: 28px; color: var(--accent); font-family: var(--font-display); font-size: 13px; font-weight: 800; }
.chapter-product { margin-bottom: 14px; color: #7590a5; font-size: 12px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.story-chapter h3 { margin-bottom: 22px; font-family: var(--font-display); font-size: clamp(38px, 4.2vw, 64px); font-weight: 650; letter-spacing: -.055em; line-height: 1.02; }
.story-chapter > p:last-child { max-width: 520px; margin: 0; color: #98a9b7; font-size: 18px; line-height: 1.6; }
.story-stage { position: relative; }
.story-stage-sticky { position: sticky; top: 15vh; height: 70vh; overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius); background: linear-gradient(145deg, rgba(21, 49, 73, .84), rgba(7,18,31,.96)); box-shadow: 0 55px 100px rgba(0,0,0,.25); }
.story-stage-sticky::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 52px 52px; mask-image: radial-gradient(circle, black, transparent 78%); }
.story-media { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transform: translateY(40px) scale(.95) rotateX(3deg); transition: opacity .55s ease, transform .7s cubic-bezier(.2,.8,.2,1); pointer-events: none; }
.story-media.is-active { z-index: 2; opacity: 1; transform: translateY(0) scale(1) rotateX(0); }
.story-browser { width: 86%; transform: rotate(-2deg); }
.story-phone { width: min(44%, 320px); }
.story-phone-1 { transform: rotate(-4deg); }
.story-phone-2 { transform: rotate(4deg); }
.story-media-number { position: absolute; top: -5%; right: 2%; color: rgba(255,255,255,.045); font-family: var(--font-display); font-size: clamp(160px, 21vw, 360px); font-weight: 800; letter-spacing: -.09em; line-height: 1; }
.story-caption { position: absolute; right: 24px; bottom: 22px; display: flex; align-items: center; gap: 8px; color: #aec0cf; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.story-caption span { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 15px var(--accent); }
.story-orbit-ring { position: absolute; top: 12%; left: 50%; width: 58%; aspect-ratio: 1; transform: translateX(-50%); border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.018), 0 0 0 100px rgba(255,255,255,.012); }

.bento-section { padding: 160px 0; color: #0a1523; background: #eef0ed; }
.bento-heading { display: grid; grid-template-columns: 170px 1fr; column-gap: 52px; align-items: start; margin-bottom: 70px; }
.bento-heading .section-label { grid-row: 1 / span 2; }
.bento-heading .display-title { max-width: 920px; }
.bento-heading .section-intro { grid-column: 2; color: #536274; }
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 280px; gap: 18px; }
.bento-card { position: relative; display: flex; min-height: 280px; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 30px; border: 1px solid rgba(7,18,32,.1); border-radius: var(--radius); background: #fff; box-shadow: 0 24px 70px rgba(18,34,52,.08); }
.bento-card:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.bento-card:nth-child(2), .bento-card:nth-child(3) { grid-column: span 5; }
.bento-card:nth-child(4) { grid-column: span 4; }
.bento-card:nth-child(5) { grid-column: span 8; }
.bento-card-top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; color: currentColor; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.bento-icon { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid currentColor; border-radius: 50%; opacity: .86; }
.bento-icon svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.bento-card-copy { position: relative; z-index: 2; max-width: 480px; }
.bento-card h3 { margin-bottom: 12px; font-family: var(--font-display); font-size: clamp(28px, 3.1vw, 47px); font-weight: 650; letter-spacing: -.045em; line-height: 1.02; }
.bento-card p { max-width: 410px; margin: 0; color: currentColor; opacity: .7; font-size: 15px; }
.bento-coral { color: #fff; border-color: transparent; background: var(--accent); }
.bento-coral::after { content: ""; position: absolute; right: -18%; bottom: -28%; width: 65%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.055), 0 0 0 100px rgba(255,255,255,.04); }
.bento-glass { color: #dbe8f1; background: linear-gradient(145deg, #142c43, #0c1b2b); }
.bento-light { background: #dde5e9; }
.bento-navy { color: #fff; background: #071523; }
.bento-image { color: #fff; background: #0a1928; }
.bento-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .24; filter: saturate(.35) contrast(1.05); }
.bento-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,15,26,.96) 0%, rgba(5,15,26,.62) 48%, rgba(5,15,26,.22) 100%); }

.mobile-story { padding: 160px 0 180px; color: #0a1523; background: var(--paper); }
.mobile-heading { display: grid; grid-template-columns: 1fr .45fr; gap: 70px; align-items: end; margin-bottom: 70px; }
.mobile-products { display: grid; grid-template-columns: .88fr 1.12fr; gap: 18px; }
.mobile-product { position: relative; min-height: 760px; overflow: hidden; border-radius: var(--radius); }
.guidzz-product { color: #f5f8fb; background: linear-gradient(155deg, #14263a 0%, #071421 76%); }
.travizzo-product { color: #0b1827; background: #dce7ec; }
.mobile-product-copy { position: relative; z-index: 5; padding: 48px; }
.product-wordmark { display: flex; align-items: center; gap: 15px; margin-bottom: 42px; font-size: 12px; font-weight: 700; }
.product-wordmark img { width: 66px; height: 34px; object-fit: contain; object-position: left center; }
.guidzz-product .product-wordmark img { filter: drop-shadow(0 5px 12px rgba(255,255,255,.07)); }
.mobile-product h3 { max-width: 590px; margin-bottom: 18px; font-family: var(--font-display); font-size: clamp(35px, 3.7vw, 58px); font-weight: 650; letter-spacing: -.055em; line-height: 1.02; }
.mobile-product-copy > p { max-width: 560px; color: currentColor; opacity: .68; font-size: 17px; }
.guidzz-product .quiet-link { color: #fff; }
.travizzo-product .quiet-link { color: #0b1827; }
.mobile-device-stage { position: absolute; right: 0; bottom: -14%; left: 0; height: 60%; display: grid; place-items: center; perspective: 1200px; }
.mobile-device-stage .guidzz-phone { z-index: 2; width: min(51%, 280px); transform: rotateX(3deg) rotateY(-5deg) rotateZ(-3deg); }
.traveller-stage .travizzo-phone-one, .traveller-stage .travizzo-phone-two { position: absolute; width: min(37%, 250px); }
.traveller-stage .travizzo-phone-one { left: 24%; z-index: 3; transform: rotate(-5deg) translateY(12px); }
.traveller-stage .travizzo-phone-two { right: 21%; z-index: 2; transform: rotate(5deg) translateY(-34px); }
.phone-shadow { position: absolute; right: 17%; bottom: 5%; left: 17%; height: 30%; border-radius: 50%; background: rgba(0,0,0,.32); filter: blur(40px); }
.floating-chip { position: absolute; z-index: 5; padding: 9px 12px; border: 1px solid rgba(255,255,255,.15); border-radius: 11px; color: #e6edf3; background: rgba(20,39,57,.7); box-shadow: 0 16px 30px rgba(0,0,0,.2); backdrop-filter: blur(12px); font-size: 10px; font-weight: 700; }
.chip-rank { top: 18%; left: 12%; transform: rotate(-4deg); }
.chip-city { top: 40%; right: 10%; transform: rotate(4deg); }

.flow-section { position: relative; padding: 150px 0 180px; background: #0a1827; }
.flow-intro { display: grid; grid-template-columns: 170px 1fr; column-gap: 52px; align-items: start; }
.flow-intro .section-label { grid-row: 1 / span 2; }
.flow-intro .display-title { max-width: 940px; }
.flow-intro .section-intro { grid-column: 2; }
.flow-track { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; margin-top: 100px; }
.flow-step { position: relative; padding-top: 56px; }
.flow-number { position: absolute; top: 0; color: #657e92; font-family: var(--font-display); font-size: 11px; font-weight: 800; }
.flow-node { position: absolute; top: 24px; left: 0; z-index: 2; width: 13px; height: 13px; border: 3px solid #0a1827; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 0 24px rgba(255,79,100,.5); }
.flow-step h3 { margin-bottom: 13px; font-family: var(--font-display); font-size: 30px; letter-spacing: -.035em; }
.flow-step p { max-width: 320px; margin: 0; color: #91a4b4; }
.flow-progress { position: absolute; top: 30px; right: 0; left: 0; height: 1px; overflow: hidden; background: rgba(255,255,255,.12); }
.flow-progress span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--accent), #8da8bf); }

.contact-section { position: relative; overflow: hidden; padding: 150px 0; color: #0b1725; background: var(--accent); }
.contact-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 15%, rgba(255,255,255,.2), transparent 27%), linear-gradient(125deg, transparent 55%, rgba(68,4,24,.16)); }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.contact-section .section-label { color: #55111d; }
.contact-section .display-title { color: #fff; font-size: clamp(50px, 6.4vw, 92px); }
.contact-section .section-intro { color: #641827; }
.glass-panel { border: 1px solid rgba(255,255,255,.38); background: rgba(255,255,255,.82); box-shadow: 0 38px 90px rgba(78, 7, 22, .2); backdrop-filter: blur(24px); }
.lead-form { padding: 34px; border-radius: var(--radius); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form label { display: block; margin-bottom: 16px; color: #3e4c5a; font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.lead-form input, .lead-form textarea { display: block; width: 100%; margin-top: 8px; border: 0; border-bottom: 1px solid rgba(7,18,32,.15); border-radius: 0; outline: none; color: #0b1725; background: transparent; font-size: 15px; font-weight: 500; }
.lead-form input { height: 44px; }
.lead-form textarea { min-height: 90px; padding-top: 10px; resize: vertical; }
.lead-form input:focus, .lead-form textarea:focus { border-color: var(--accent-deep); }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: #89939d; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding-top: 8px; }
.form-foot p { max-width: 250px; margin: 0; color: #6f7b86; font-size: 11px; }
.form-foot .button { flex: 0 0 auto; }
.form-message { min-height: 20px; margin: 16px 0 0; color: #4f5d69; font-size: 12px; font-weight: 600; }
.form-message.success { color: #087447; }
.form-message.error { color: #b21f37; }
.honeypot { position: absolute !important; left: -10000px !important; }
.contact-orbit { position: absolute; right: -12%; bottom: -44%; width: 600px; height: 600px; opacity: .18; }
.contact-orbit span { position: absolute; border: 1px solid #fff; border-radius: 50%; }
.contact-orbit span:nth-child(1) { inset: 0; }
.contact-orbit span:nth-child(2) { inset: 70px; }
.contact-orbit span:nth-child(3) { inset: 150px; background: rgba(255,255,255,.22); }

.site-footer { padding: 80px 0 24px; background: #040d17; }
.footer-main { display: grid; grid-template-columns: 290px 1fr auto; gap: 44px; align-items: end; }
.footer-brand p { margin: 24px 0 0; color: #728698; font-size: 14px; }
.footer-word { overflow: hidden; color: rgba(255,255,255,.05); font-family: var(--font-display); font-size: clamp(72px, 13vw, 210px); font-weight: 800; letter-spacing: -.09em; line-height: .75; white-space: nowrap; }
.footer-links { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; color: #8da0b1; font-size: 12px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 55px; padding-top: 20px; border-top: 1px solid var(--line); color: #5c7184; font-size: 10px; }

.loading-view { display: grid; min-height: 70vh; place-items: center; align-content: center; gap: 18px; background: var(--ink); color: var(--muted); }
.loader-mark { width: 26px; height: 26px; border: 2px solid rgba(255,255,255,.15); border-top-color: var(--accent); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.error-view .button { margin-top: 8px; }
.generic-section { padding: 140px 0; background: var(--paper); color: var(--ink); }
.generic-section img { margin-top: 42px; border-radius: var(--radius); }
.simple-page-hero { padding: 150px 0 100px; background: radial-gradient(circle at 80% 20%, rgba(255,79,100,.18), transparent 28%), var(--ink); }
.simple-page-hero h1 { max-width: 900px; margin-bottom: 24px; font-family: var(--font-display); font-size: clamp(62px, 9vw, 130px); letter-spacing: -.075em; line-height: .9; }
.simple-page-hero > .container > p:last-child { max-width: 620px; color: var(--muted); font-size: 19px; }

.legal-header { position: relative; top: auto; }
.legal-hero { padding: 110px 0 90px; color: #fff; background: radial-gradient(circle at 82% 30%, rgba(255,79,100,.18), transparent 25%), #071523; }
.back-link { display: inline-block; margin-bottom: 70px; color: #95a8b9; font-size: 13px; }
.back-link:hover { color: #fff; }
.legal-hero h1 { max-width: 900px; margin-bottom: 24px; font-family: var(--font-display); font-size: clamp(62px, 9vw, 132px); letter-spacing: -.075em; line-height: .9; }
.legal-hero > .container > p:not(.section-label) { max-width: 620px; color: #9caebb; font-size: 19px; }
.legal-dates { display: flex; gap: 30px; margin-top: 42px; color: #73899b; font-size: 12px; }
.legal-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); gap: 90px; padding: 90px 0 150px; color: #152234; background: var(--paper); }
body[data-page="privacy"] { background: var(--paper); }
.legal-toc { position: sticky; top: 32px; align-self: start; display: flex; flex-direction: column; gap: 10px; padding-right: 20px; border-right: 1px solid var(--line-dark); }
.legal-toc p { margin-bottom: 12px; color: #87919d; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.legal-toc a { color: #586574; font-size: 12px; line-height: 1.35; }
.legal-toc a:hover { color: var(--accent-deep); }
.legal-toc .legal-contact { margin-top: 22px; color: var(--accent-deep); font-weight: 700; }
.legal-intro { margin-bottom: 80px; padding: 34px; border: 1px solid var(--line-dark); border-radius: 20px; background: #fff; }
.legal-intro p { color: #475668; font-size: 16px; }
.legal-intro p:last-child { margin-bottom: 0; }
.legal-section { padding: 0 0 70px; scroll-margin-top: 30px; }
.legal-section + .legal-section { padding-top: 70px; border-top: 1px solid var(--line-dark); }
.legal-section h2 { margin-bottom: 26px; font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); letter-spacing: -.045em; line-height: 1.05; }
.legal-section p { color: #485768; font-size: 16px; line-height: 1.75; }
.legal-block { margin-top: 32px; }
.legal-block h3 { margin-bottom: 10px; color: #152234; font-family: var(--font-display); font-size: 19px; letter-spacing: -.02em; }

.cursor-dot { position: fixed; top: -8px; left: -8px; z-index: 999; width: 16px; height: 16px; pointer-events: none; border: 1px solid rgba(255,255,255,.48); border-radius: 50%; mix-blend-mode: difference; transition: width .2s ease, height .2s ease, margin .2s ease, background .2s ease; }
.cursor-dot.is-hovering { width: 38px; height: 38px; margin: -11px; background: rgba(255,255,255,.12); }

.cms-preview .announcement, .cms-preview .site-header, .cms-preview .site-footer, .cms-preview .cursor-dot { display: none !important; }
.cms-preview [data-section-id] { position: relative; cursor: pointer; }
.cms-preview [data-section-id]:hover { outline: 2px solid #725cff; outline-offset: -2px; }
.cms-preview [data-section-id]::after { content: attr(data-section-type); position: absolute; top: 10px; left: 10px; z-index: 50; display: none; padding: 5px 8px; border-radius: 5px; color: #fff; background: #725cff; font-size: 10px; line-height: 1; }
.cms-preview [data-section-id]:hover::after { display: block; }
.cms-preview .hero-section, .cms-preview .hero-grid { min-height: 100vh; }

@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: .9fr 1.1fr; }
  .hero-copy h1 { font-size: clamp(52px, 6.5vw, 82px); }
  .story-layout { grid-template-columns: 120px 350px minmax(0,1fr); gap: 28px; }
  .story-chapter h3 { font-size: 44px; }
  .mobile-product-copy { padding: 38px; }
}

@media (max-width: 960px) {
  :root { --container: min(100% - 36px, 760px); --container-wide: min(100% - 36px, 900px); }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-login { display: none; }
  .menu-button { display: block; }
  .header-actions .button { display: none; }
  .hero-section { min-height: auto; }
  .hero-grid { display: block; min-height: auto; padding: 90px 0 55px; }
  .hero-copy { max-width: 760px; }
  .hero-copy h1 { max-width: 720px; font-size: clamp(60px, 10vw, 90px); }
  .hero-visual { height: 650px; margin-top: 30px; }
  .hero-dashboard { right: 3%; width: 80%; }
  .product-signature { margin-top: 45px; }
  .statement-grid { grid-template-columns: 130px 1fr; }
  .statement-aside { grid-column: 2; margin-top: 25px; }
  .platform-intro { grid-template-columns: 1fr; gap: 18px; }
  .story-layout { grid-template-columns: 1fr 1fr; }
  .story-rail { position: relative; top: auto; grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; padding: 0; }
  .story-rail-item { width: auto; padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px; }
  .story-copy { grid-column: 1; }
  .story-stage { grid-column: 2; }
  .story-stage-sticky { top: 15vh; }
  .bento-heading, .flow-intro { grid-template-columns: 1fr; }
  .bento-heading .section-label, .flow-intro .section-label { grid-row: auto; }
  .bento-heading .section-intro, .flow-intro .section-intro { grid-column: auto; }
  .bento-card:nth-child(1) { grid-column: span 12; grid-row: span 2; }
  .bento-card:nth-child(2), .bento-card:nth-child(3) { grid-column: span 6; }
  .bento-card:nth-child(4) { grid-column: span 5; }
  .bento-card:nth-child(5) { grid-column: span 7; }
  .mobile-heading { grid-template-columns: 1fr; gap: 12px; }
  .mobile-products { grid-template-columns: 1fr; }
  .mobile-product { min-height: 720px; }
  .mobile-device-stage { height: 58%; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .legal-layout { grid-template-columns: 180px minmax(0, 1fr); gap: 45px; }
  .footer-main { grid-template-columns: 240px 1fr; }
  .footer-word { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 700px) {
  :root { --container: calc(100% - 28px); --container-wide: calc(100% - 28px); --radius: 22px; }
  .announcement { text-align: left; }
  .site-header { top: 8px; height: 64px; margin-top: 8px; border-radius: 16px; }
  .brand img { width: 34px; height: 34px; }
  .brand span { font-size: 16px; }
  .hero-grid { padding-top: 66px; }
  .hero-copy h1 { font-size: clamp(54px, 16vw, 78px); line-height: .9; }
  .hero-body { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .product-signature { flex-wrap: wrap; margin-top: 44px; }
  .hero-visual { height: 470px; margin-top: 20px; }
  .hero-orbit { top: 2%; right: 6%; width: 52%; }
  .hero-dashboard { right: -5%; bottom: 14%; width: 92%; }
  .hero-phone { width: 29%; }
  .hero-phone-guide { left: -2%; }
  .hero-phone-traveller { right: -4%; }
  .signal-pill { padding: 7px 9px; font-size: 8px; }
  .signal-pill-one { top: 22%; left: 0; }
  .signal-pill-two { right: 0; bottom: 13%; }
  .browser-bar { height: 22px; }
  .phone-mockup { padding: 5px; border-radius: 22px; }
  .phone-screen { border-radius: 18px; }
  .phone-speaker { top: 9px; height: 10px; }
  .display-title { font-size: clamp(42px, 13vw, 65px); }
  .statement-section, .platform-section, .bento-section, .mobile-story, .flow-section, .contact-section { padding-top: 105px; padding-bottom: 110px; }
  .statement-grid { grid-template-columns: 1fr; gap: 18px; }
  .statement-aside { grid-column: 1; margin-top: 24px; }
  .statement-mark { right: -32%; width: 230px; height: 230px; }
  .platform-intro { padding-bottom: 62px; }
  .story-layout { display: flex; flex-direction: column; }
  .story-rail { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 5px; }
  .story-rail-item { flex: 0 0 auto; }
  .story-copy { order: 2; }
  .story-stage { order: 1; }
  .story-stage-sticky { position: relative; top: auto; height: 460px; }
  .story-chapter { min-height: auto; padding: 70px 0; opacity: 1; }
  .story-chapter + .story-chapter { border-top: 1px solid var(--line); }
  .story-phone { width: min(55%, 250px); }
  .bento-heading { margin-bottom: 50px; }
  .bento-grid { display: block; }
  .bento-card { min-height: 330px; margin-bottom: 14px; }
  .bento-card:nth-child(1) { min-height: 470px; }
  .bento-card h3 { font-size: 34px; }
  .mobile-products { display: block; }
  .mobile-product { min-height: 680px; margin-bottom: 14px; }
  .mobile-product-copy { padding: 30px 25px; }
  .mobile-device-stage .guidzz-phone { width: min(54%, 240px); }
  .traveller-stage .travizzo-phone-one, .traveller-stage .travizzo-phone-two { width: min(42%, 210px); }
  .traveller-stage .travizzo-phone-one { left: 18%; }
  .traveller-stage .travizzo-phone-two { right: 15%; }
  .flow-track { grid-template-columns: 1fr; gap: 18px; margin-top: 60px; padding-left: 40px; }
  .flow-step { min-height: 190px; padding: 0 0 0 20px; }
  .flow-number { top: 0; left: -40px; }
  .flow-node { top: 28px; left: -27px; }
  .flow-progress { top: 30px; right: auto; bottom: 30px; left: 19px; width: 1px; height: auto; }
  .flow-progress span { width: 100%; height: 100%; transform: scaleY(0); transform-origin: top; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .lead-form { padding: 25px; }
  .form-foot { align-items: stretch; flex-direction: column; }
  .footer-main { display: block; }
  .footer-word { margin: 70px 0 40px; font-size: 24vw; }
  .footer-links { align-items: flex-start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .legal-hero { padding: 70px 0; }
  .back-link { margin-bottom: 50px; }
  .legal-hero h1 { font-size: 17vw; }
  .legal-layout { display: block; padding-top: 50px; }
  .legal-toc { position: relative; top: auto; margin-bottom: 60px; padding: 0 0 24px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .legal-intro { padding: 24px; }
  .cursor-dot { display: none; }
}

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