/* ==========================================================================
   BEBESOTA MEDIA — Design System
   Palette: warm ivory ground, ocean/sky blue, blush/pink-sand, champagne.
   Display: Fraunces (editorial serif). Body: Manrope. Accent script: Mrs Saint Delafield.
   Signature motif: the "boarding pass" — dashed tear-rules between sections,
   ticket-stub shaped CTAs, small stamp-dot eyebrows. Ties the travel/freedom
   idea into the structure itself, not just the imagery.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Manrope:wght@400;500;600;700;800&family=Mrs+Saint+Delafield&display=swap');

:root {
  /* ---- color ---- */
  --ivory: #FBF6EF;
  --white: #FFFFFF;
  --pink-sand: #F4DAD1;
  --blush: #E8A79A;
  --blush-deep: #DC8E80;
  --rose: #E23F73;
  --rose-deep: #C22A5C;
  --ocean: #1A6690;
  --ocean-deep: #124D6E;
  --sky: #8FC7DE;
  --navy: #1E2A3A;
  --champagne: #C6A468;
  --champagne-light: #E4D2AC;

  --ink: var(--navy);
  --ink-soft: #5B6472;
  --line: rgba(30, 42, 58, 0.10);
  --line-soft: rgba(30, 42, 58, 0.06);

  /* ---- type ---- */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Mrs Saint Delafield', cursive;

  /* ---- layout ---- */
  --container: 1240px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 50px -25px rgba(30, 42, 58, 0.35);
  --shadow-card: 0 12px 30px -18px rgba(30, 42, 58, 0.25);
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 500; line-height: 1.08; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}

/* ---- type scale ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ocean-deep);
}
.eyebrow::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--rose); flex-shrink: 0;
}
.eyebrow.on-dark { color: var(--champagne-light); }
.eyebrow.on-dark::before { background: var(--champagne); }

h1 { font-size: clamp(3rem, 6vw, 5.4rem); letter-spacing: -0.015em; }
h2.section-title { font-size: clamp(2.1rem, 3.8vw, 3.4rem); letter-spacing: -0.015em; }
h3 { font-size: 1.3rem; }
.display-statement {
  font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem); line-height: 1.06; text-align: center;
}
.display-statement .accent-line { color: var(--rose); font-style: italic; }

/* True handwritten cursive — reserved ONLY for the hero "Your way." line,
   the hero note callout, and destination photo labels. Everywhere else
   uses .accent (italic serif) so the script doesn't get overused. */
.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--rose);
  display: inline-block;
  line-height: 0.9;
  position: relative;
}
.script-underline::after {
  content: '';
  display: block;
  width: 78%;
  height: 10px;
  margin-top: -2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 16'%3E%3Cpath d='M2 10 C 40 2, 70 14, 100 8 S 160 2, 198 9' stroke='%23C6A468' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat left center / contain;
}

/* Italic-serif accent — the recurring "second phrase" treatment seen
   throughout the reference (e.g. "Live everywhere.", "Private by design."). */
.accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--rose);
}

.sparkle { color: var(--champagne); font-size: 0.6em; vertical-align: super; }

.lede { font-size: 1.08rem; color: var(--ink-soft); line-height: 1.65; max-width: 46ch; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 14.5px;
  letter-spacing: 0.02em; border: none; white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-deep) 100%);
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(220, 142, 128, 0.65);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(220, 142, 128, 0.75); }
.btn-secondary {
  background: var(--ocean); color: var(--white);
  box-shadow: 0 14px 30px -14px rgba(18, 77, 110, 0.6);
}
.btn-secondary:hover { transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--navy); }

/* ticket-stub notch on the main CTA — signature touch */
.btn-ticket { position: relative; }
.btn-ticket::after {
  content: '';
  position: absolute; right: -3px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--ivory);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.5);
}

/* ---- perforated section divider (boarding-pass motif) ---- */
.tear-rule {
  border: none; height: 0; margin: 0;
  border-top: 2px dashed rgba(30, 42, 58, 0.14);
  position: relative;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 246, 239, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  height: 84px;
}
.logo {
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem;
  color: var(--rose); letter-spacing: 0.01em;
}
.logo small {
  display: block; font-family: var(--font-body); font-weight: 700;
  font-size: 10px; letter-spacing: 0.32em; color: var(--champagne);
  margin-top: 1px;
}
.nav-primary { display: flex; align-items: center; gap: 24px; }
.nav-links { display: flex; gap: 20px; }
.nav-links a {
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--ocean-deep); position: relative; }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -18px;
  height: 2px; background: var(--ocean-deep);
}

.header-actions { display: flex; align-items: center; gap: 22px; }
.lang-switch { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.lang-switch button {
  background: none; border: none; color: var(--ink-soft); font-weight: 700; font-size: 13px;
  padding: 2px 4px;
}
.lang-switch button.active, .lang-switch button:hover { color: var(--ocean-deep); }
.lang-divider { color: var(--line); }

.hamburger { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
body.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO — cinematic, minimal clutter
   ========================================================================== */
.hero {
  position: relative; padding: 84px 0 120px;
  overflow: hidden;
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.hero-copy h1 { color: var(--navy); margin-bottom: 6px; }
.hero-copy .lede { margin: 26px 0 38px; }
.hero-badges {
  display: flex; align-items: center; gap: 18px; margin-top: 46px; flex-wrap: wrap;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-badges .sep { color: var(--line); font-weight: 400; }

.hero-media { position: relative; }
.hero-media .frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-note {
  position: absolute; top: 7%; right: -7%; background: var(--white);
  padding: 18px 22px; border-radius: var(--radius-sm); box-shadow: var(--shadow-card);
  font-size: 1.4rem; line-height: 1.15; transform: rotate(-3deg);
  max-width: 210px;
}

/* ==========================================================================
   TRANSITION STATEMENT (hero → services narrative beat)
   ========================================================================== */
.transition-statement { padding: 78px 0; text-align: center; }
.transition-statement .display-statement span:first-child { color: var(--navy); }

/* ==========================================================================
   SERVICES — editorial rows, not cards
   ========================================================================== */
.section { padding: 128px 0; }
.section-head { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-head .eyebrow { justify-content: center; margin-bottom: 14px; }
.section-head h2 { margin-bottom: 14px; }

.services-list { max-width: 880px; margin: 0 auto; }
.service-row {
  display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 28px;
  padding: 30px 0; border-top: 1px solid var(--line);
}
.services-list .service-row:last-child { border-bottom: 1px solid var(--line); }
.service-mark {
  font-family: var(--font-display); font-style: italic; font-size: 1.1rem;
  color: var(--rose); opacity: 0.7;
}
.service-copy h3 { font-size: 1.35rem; margin-bottom: 6px; }
.service-copy p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; max-width: 52ch; }
.service-num { font-family: var(--font-display); font-size: 2.4rem; color: var(--line); font-style: italic; }

/* ==========================================================================
   CREATOR PLATFORM — the star section
   ========================================================================== */
.platform-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--ivory) 100%);
  position: relative; padding: 130px 0;
}
.platform-intro { max-width: 620px; margin: 0 auto 80px; text-align: center; }
.platform-intro .eyebrow { justify-content: center; margin-bottom: 18px; }
.platform-intro h2 { margin-bottom: 20px; }
.platform-intro .lede { margin: 0 auto; }

.platform-showcase { position: relative; display: flex; justify-content: center; padding: 40px 0 70px; }
.float-label {
  position: absolute; background: var(--white); box-shadow: var(--shadow-card);
  border-radius: 999px; padding: 10px 20px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ocean-deep);
  display: flex; align-items: center; gap: 8px; z-index: 3;
}
.float-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--rose); }
.float-label.lbl-brand { top: 4%; left: 2%; }
.float-label.lbl-content { top: 18%; right: 0%; }
.float-label.lbl-platform { bottom: 22%; left: -2%; }
.float-label.lbl-audience { bottom: 4%; right: 4%; }

.platform-statement {
  max-width: 900px; margin: 90px auto 0; text-align: center;
}
.platform-statement p:first-child { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 8px; }
.platform-statement .display-statement { font-size: clamp(1.7rem, 3vw, 2.4rem); }

.platform-features-row {
  display: flex; justify-content: center; gap: 56px; margin-top: 56px; flex-wrap: wrap;
  text-align: center;
}
.platform-feature-min h4 {
  font-family: var(--font-display); font-style: italic; color: var(--rose);
  font-size: 1.1rem; margin-bottom: 6px;
}
.platform-feature-min p { font-size: 13px; color: var(--ink-soft); max-width: 22ch; }

.device-stack { position: relative; display: flex; justify-content: center; }
.browser-mock {
  width: 100%; max-width: 680px; background: var(--white);
  border-radius: 20px; box-shadow: var(--shadow-soft); overflow: hidden;
  border: 1px solid var(--line-soft);
}
.browser-bar { display: flex; align-items: center; gap: 6px; padding: 14px 18px; background: #F2ECE3; border-bottom: 1px solid var(--line-soft); }
.browser-bar span { width: 9px; height: 9px; border-radius: 50%; background: #E0D6C7; }
.browser-url {
  margin-left: 10px; background: var(--white); border-radius: 6px; padding: 5px 14px;
  font-size: 12px; color: var(--ink-soft); flex: 1;
}
.profile-cover { position: relative; height: 190px; }
.profile-cover img { width: 100%; height: 100%; object-fit: cover; }
.profile-avatar {
  width: 96px; height: 96px; border-radius: 50%; border: 5px solid var(--white);
  position: absolute; left: 32px; bottom: -48px; overflow: hidden; box-shadow: var(--shadow-card);
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-body { padding: 62px 32px 36px; }
.profile-body h3 { font-size: 1.5rem; margin-bottom: 4px; }
.profile-body .handle { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 8px; display: block; }
.profile-body .tagline { font-family: var(--font-script); font-size: 1.7rem; color: var(--rose); display: block; margin-bottom: 22px; }
.profile-tabs { display: flex; gap: 26px; border-bottom: 1px solid var(--line-soft); margin-bottom: 20px; }
.profile-tabs span { font-size: 13px; font-weight: 700; padding-bottom: 12px; color: var(--ink-soft); }
.profile-tabs span.active { color: var(--navy); border-bottom: 2px solid var(--rose); }
.profile-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.profile-thumbs div { aspect-ratio: 1; border-radius: 8px; background: var(--pink-sand); }
.profile-thumbs div:nth-child(2) { background: var(--sky); }
.profile-thumbs div:nth-child(3) { background: var(--champagne-light); }

.phone-mock {
  position: absolute; right: -6%; bottom: -12%; width: 190px;
  background: var(--navy); border-radius: 30px; padding: 9px;
  box-shadow: var(--shadow-soft);
}
.phone-mock .screen { background: var(--white); border-radius: 21px; overflow: hidden; }
.phone-mock .screen img { width: 100%; aspect-ratio: 9/16; object-fit: cover; }

/* ==========================================================================
   TRAVEL / DESTINATIONS — editorial collage
   ========================================================================== */
.travel-section { background: var(--pink-sand); overflow: hidden; }
.travel-intro { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.travel-intro .eyebrow { justify-content: center; margin-bottom: 14px; }
.travel-intro .lede { margin: 18px auto 0; }

.destination-collage {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; align-items: start;
  max-width: 1080px; margin: 0 auto;
}
.dest-hero { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 3/4; }
.dest-hero img { width: 100%; height: 100%; object-fit: cover; }
.dest-side { display: flex; flex-direction: column; gap: 24px; }
.dest-side .destination-card { aspect-ratio: 16/10; }

.destination-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}
.destination-card:hover { transform: translateY(-6px); }
.destination-card img { width: 100%; height: 100%; object-fit: cover; }
.destination-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20,30,42,0.65) 100%);
}
.destination-card span {
  position: absolute; bottom: 16px; left: 18px; z-index: 2;
  font-family: var(--font-script); font-size: 1.6rem; color: var(--white);
}
.dest-hero span { font-size: 2.2rem; bottom: 24px; left: 28px; }
.travel-cta-row { text-align: center; margin-top: 48px; }

/* ==========================================================================
   PRIVACY
   ========================================================================== */
.privacy-section { background: linear-gradient(180deg, var(--white) 0%, #EAF3F7 100%); }
.privacy-section .container { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.privacy-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 4/5; }
.privacy-media img { width: 100%; height: 100%; object-fit: cover; }
.privacy-copy h2 { margin: 8px 0 18px; }
.privacy-copy .lede { margin-bottom: 30px; }
.privacy-features { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px; margin-top: 6px; }
.privacy-feature { padding-top: 18px; border-top: 1px solid var(--line); }
.privacy-feature h4 { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--ocean-deep); font-weight: 500; margin-bottom: 6px; }
.privacy-feature p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }

/* ==========================================================================
   AI CREATOR PROGRAM — one calm statement, not a wall of cards
   ========================================================================== */
.ai-section {
  background: #EAF3F7; border-radius: var(--radius-lg); position: relative; overflow: hidden;
}
.ai-section .container { padding: 88px 32px; }
.ai-section .section-head { max-width: 620px; }
.ai-section .section-head .eyebrow { color: var(--ocean-deep); }
.ai-section .section-head .eyebrow::before { background: var(--rose); }
.ai-section .section-head h2 { color: var(--navy); }
.ai-feature-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px 30px; margin-top: 54px;
  max-width: 920px; margin-left: auto; margin-right: auto;
}
.ai-feature { text-align: center; padding-top: 20px; border-top: 1px solid rgba(26,102,144,0.18); }
.ai-feature h4 { font-size: 14px; margin-bottom: 8px; color: var(--ocean-deep); }
.ai-feature p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }

/* ==========================================================================
   FLAGS / BORDERS
   ========================================================================== */
.flags-section { text-align: center; }
.flag-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 26px 20px; margin-top: 46px;
}
.flag-item { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 88px; }
.flag-circle {
  width: 64px; height: 64px; border-radius: 50%; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 30px;
  background: var(--white); box-shadow: var(--shadow-card); border: 1px solid var(--line-soft);
}
.flag-item span { font-size: 10.5px; font-weight: 700; letter-spacing: 0.03em; color: var(--ink-soft); text-transform: uppercase; }
.flag-circle img { width: 100%; height: 100%; object-fit: cover; }
.flag-circle.more { color: var(--champagne); font-size: 22px; border: 1.5px dashed var(--champagne); }

/* ==========================================================================
   RESULTS — large editorial numbers
   ========================================================================== */
.results-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.results-copy h2 { margin-bottom: 10px; }
.results-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 28px; max-width: 44ch; }
.stat-row { display: flex; margin-top: 40px; }
.stat { flex: 1; padding-right: 20px; border-left: 1px solid var(--line); padding-left: 20px; }
.stat:first-child { border-left: none; padding-left: 0; }
.stat .num {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--ocean-deep); display: block; font-style: italic; line-height: 1;
}
.stat .label { font-size: 11px; color: var(--ink-soft); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; display: block; margin-top: 8px; }
.results-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 4/3; }
.results-media img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   LIFESTYLE POLAROID STRIP
   ========================================================================== */
.lifestyle-section .container { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: center; }
.lifestyle-words { grid-column: 1 / -1; }
.lifestyle-copy h2 { margin-bottom: 16px; }
.lifestyle-words {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 90px; padding-bottom: 46px; border-bottom: 1px solid var(--line);
}
.lifestyle-words span {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--ink-soft);
}
.lifestyle-words span:nth-child(1) { color: var(--navy); }
.lifestyle-words span:nth-child(4) { color: var(--rose); }
.lifestyle-words .div { color: var(--line); font-style: normal; }
.polaroid-strip { position: relative; height: 380px; }
.polaroid {
  position: absolute; width: 190px; background: var(--white); padding: 10px 10px 34px;
  border-radius: 4px; box-shadow: var(--shadow-card);
}
.polaroid img { width: 100%; aspect-ratio: 1/1.05; object-fit: cover; border-radius: 2px; }
.polaroid:nth-child(1) { left: 0; top: 20px; transform: rotate(-7deg); z-index: 1; }
.polaroid:nth-child(2) { left: 150px; top: 60px; transform: rotate(4deg); z-index: 2; }
.polaroid:nth-child(3) { left: 300px; top: 10px; transform: rotate(-3deg); z-index: 3; }
.polaroid:nth-child(4) { left: 440px; top: 50px; transform: rotate(6deg); z-index: 2; }

/* ==========================================================================
   FINAL CTA — travel photography backdrop
   ========================================================================== */
.final-cta {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  text-align: center; padding: 130px 32px;
}
.final-cta .cta-bg { position: absolute; inset: 0; z-index: 0; }
.final-cta .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta .cta-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,42,58,0.55) 0%, rgba(18,26,38,0.82) 100%);
}
.final-cta .cta-inner { position: relative; z-index: 1; }
.final-cta h2 { color: var(--white); margin-bottom: 18px; }
.final-cta .lede { color: rgba(255,255,255,0.82); margin: 0 auto 36px; }
.final-cta .fine { margin-top: 18px; font-size: 12.5px; color: rgba(255,255,255,0.6); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { padding: 64px 0 36px; border-top: 1px solid var(--line); }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid var(--line);
}
.footer-brand .logo { margin-bottom: 10px; }
.footer-brand p { max-width: 34ch; color: var(--ink-soft); font-size: 13.5px; line-height: 1.6; }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; background: var(--white); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--ink-soft);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { color: var(--blush-deep); border-color: var(--blush-deep); }
.footer-links { display: flex; gap: 60px; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: var(--navy); margin-bottom: 10px; }
.footer-bottom {
  display: flex; justify-content: space-between; padding-top: 26px;
  font-size: 12.5px; color: var(--ink-soft); flex-wrap: wrap; gap: 10px;
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
[data-reveal] { transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].reveal-pending { opacity: 0; transform: translateY(22px); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .platform-grid, .privacy-section .container, .results-section .container,
  .lifestyle-section .container { grid-template-columns: 1fr; }
  .privacy-media, .results-media { aspect-ratio: 16/9; }
  .device-stack { margin-top: 20px; }
  .ai-feature-row { grid-template-columns: 1fr 1fr; }
  .destination-collage { grid-template-columns: 1fr; }
  .dest-hero { aspect-ratio: 16/10; }
  .dest-side { flex-direction: row; }
  .dest-side .destination-card { aspect-ratio: 1/1; }
}

@media (max-width: 760px) {
  .nav-links, .lang-switch { display: none; }
  .hamburger { display: flex; }

  /* ---- mobile dropdown menu (opened via hamburger) ----
     Flow-based, not fixed-position: the sticky header simply grows taller
     while open. No guessed pixel offsets, so it can't drift out of sync
     if the number of nav items or font size ever changes. */
  .site-header .container { position: relative; flex-wrap: wrap; height: auto; min-height: 84px; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-primary { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  body.nav-open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    width: 100%; max-height: calc(100vh - 84px); overflow-y: auto;
    padding-top: 8px;
  }
  body.nav-open .nav-links a {
    display: block; width: 100%;
    padding: 16px 0; border-bottom: 1px solid var(--line);
    font-size: 15px;
  }
  body.nav-open .nav-links a.active::after { display: none; }
  body.nav-open .header-actions {
    flex-direction: column; align-items: stretch; gap: 16px;
    width: 100%; padding-bottom: 20px;
  }
  body.nav-open .lang-switch {
    display: flex; justify-content: center; gap: 10px; padding-top: 4px;
  }
  body.nav-open .btn-ticket { order: 2; align-self: center; }
  body.nav-open .hamburger {
    position: absolute; top: 24px; right: 24px;
  }

  .hero .container { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 60px; }
  .hero-media { order: -1; }
  .hero-note { right: 4%; }
  .phone-mock { width: 130px; right: 2%; bottom: -6%; }
  .float-label { font-size: 10px; padding: 7px 14px; }
  .float-label.lbl-brand { left: 0; }
  .float-label.lbl-audience { right: 0; }
  .section { padding: 64px 0; }
  .service-row { grid-template-columns: 40px 1fr; }
  .service-num { display: none; }
  .dest-side { flex-direction: column; }
  .ai-feature-row { grid-template-columns: 1fr; }
  .ai-section .container { padding: 56px 22px; }
  .flag-item { width: 76px; }
  .flag-circle { width: 54px; height: 54px; font-size: 24px; }
  .polaroid-strip { height: auto; position: static; display: flex; overflow-x: auto; gap: 16px; padding-bottom: 10px; }
  .polaroid { position: static; transform: none !important; flex: 0 0 160px; }
  .stat-row { flex-wrap: wrap; gap: 20px 0; }
  .stat { flex: 0 0 50%; border-left: none; padding-left: 0; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 40px; flex-wrap: wrap; }
  .final-cta { padding: 64px 20px; }
  .container { padding: 0 20px; }
}

/* ==========================================================================
   SECONDARY-PAGE COMPONENTS
   Shared across about/creators/approach/platform/privacy-ai/results/faq/
   apply/contact so every interior page reads as part of the same system.
   ========================================================================== */

/* ---- page banner (replaces the homepage hero on interior pages) ---- */
.page-hero { padding: 80px 0 60px; text-align: center; }
.page-hero .eyebrow { justify-content: center; margin-bottom: 18px; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero .lede { margin: 0 auto; font-size: 1.15rem; }
.page-hero-media {
  margin: 56px auto 0; max-width: 980px; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 21/9;
}
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
/* About page banner: subject's face sits right-of-center in the source photo —
   without this, the default center crop clips her face off entirely on the
   narrower mobile aspect ratio. */
.page-hero-media.about-hero img { object-position: 68% center; }

/* ---- breadcrumb-style back link ---- */
.back-link {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px;
  font-weight: 700; color: var(--ink-soft); margin: 28px 0 0;
}
.back-link:hover { color: var(--ocean-deep); }

/* ---- numbered process list (Our Approach) ---- */
.process-list { max-width: 820px; margin: 0 auto; }
.process-row {
  display: grid; grid-template-columns: 90px 1fr; gap: 28px;
  padding: 38px 0; border-top: 1px solid var(--line);
}
.process-list .process-row:last-child { border-bottom: 1px solid var(--line); }
.process-num { font-family: var(--font-display); font-style: italic; font-size: 2rem; color: var(--rose); opacity: 0.75; }
.process-copy h3 { font-size: 1.4rem; margin-bottom: 8px; }
.process-copy p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; max-width: 56ch; }

/* ---- simple two/three-column feature list (reused across pages) ---- */
.simple-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 30px; max-width: 980px; margin: 0 auto; }
.simple-features.cols-2 { grid-template-columns: 1fr 1fr; max-width: 780px; }
.simple-feature { padding-top: 20px; border-top: 1px solid var(--line); }
.simple-feature h4 { font-family: var(--font-display); font-style: italic; color: var(--ocean-deep); font-size: 1.1rem; margin-bottom: 8px; font-weight: 500; }
.simple-feature p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* ---- editorial two-column page section (image + copy, reusable) ---- */
.page-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.page-split.reverse { direction: rtl; }
.page-split.reverse > * { direction: ltr; }
.page-split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 4/5; }
.page-split-media img { width: 100%; height: 100%; object-fit: cover; }
.page-split-copy .eyebrow { margin-bottom: 16px; }
.page-split-copy h2 { margin-bottom: 18px; }
.page-split-copy .lede { margin-bottom: 26px; }

/* ---- disclaimer / note strip ---- */
.note-strip {
  max-width: 780px; margin: 56px auto 0; padding: 20px 26px;
  border-left: 3px solid var(--champagne); background: rgba(198,164,104,0.07);
  font-size: 13px; color: var(--ink-soft); line-height: 1.6; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ---- FAQ accordion ---- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 0; font-family: var(--font-display); font-size: 1.15rem; color: var(--navy);
}
.faq-question .plus { font-size: 1.4rem; color: var(--rose); flex-shrink: 0; transition: transform 0.3s ease; font-weight: 300; }
.faq-item.open .faq-question .plus { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 0 26px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; max-width: 62ch; }

/* ---- flags reused on Creators page ---- */
.countries-note { max-width: 620px; margin: 40px auto 0; text-align: center; color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; }

/* ---- multi-step application form ---- */
.form-shell { max-width: 640px; margin: 0 auto; }
.form-progress { display: flex; gap: 8px; margin-bottom: 48px; }
.form-progress span { flex: 1; height: 3px; border-radius: 2px; background: var(--line); }
.form-progress span.done, .form-progress span.active { background: var(--rose); }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step-label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ocean-deep); margin-bottom: 10px; }
.form-step h2 { margin-bottom: 30px; font-size: 1.9rem; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.field .hint { font-weight: 400; color: var(--ink-soft); font-size: 12px; margin-left: 6px; }
.field input[type="text"], .field input[type="email"], .field input[type="url"],
.field input[type="number"], .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--white); font-family: var(--font-body);
  font-size: 14.5px; color: var(--navy); transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ocean); }
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice-card {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px;
  cursor: pointer; font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.choice-card input { margin-right: 8px; }
.choice-card.checked, .choice-card:has(input:checked) { border-color: var(--rose); color: var(--navy); background: rgba(226,63,115,0.04); }
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; }
.form-nav .btn-back { background: none; border: none; color: var(--ink-soft); font-weight: 700; font-size: 14px; padding: 10px; }
.form-nav .btn-back:hover { color: var(--navy); }
.form-success { text-align: center; padding: 40px 0; }
.form-success h2 { margin-bottom: 16px; }
.form-success p { color: var(--ink-soft); max-width: 44ch; margin: 0 auto; }

/* ---- contact page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; max-width: 980px; margin: 0 auto; }
.contact-channels { display: flex; flex-direction: column; gap: 28px; }
.contact-channel { padding-top: 18px; border-top: 1px solid var(--line); }
.contact-channel h4 { font-family: var(--font-display); font-style: italic; color: var(--ocean-deep); font-size: 1.05rem; margin-bottom: 6px; font-weight: 500; }
.contact-channel p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }
.contact-channel a { color: var(--navy); font-weight: 600; }

/* ---- results page big-number editorial grid ---- */
.big-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 900px; margin: 0 auto; text-align: center; }
.big-stat .num { font-family: var(--font-display); font-style: italic; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--ocean-deep); display: block; }
.big-stat .label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-soft); margin-top: 10px; display: block; }

@media (max-width: 1080px) {
  .page-split { grid-template-columns: 1fr; }
  .page-split.reverse { direction: ltr; }
  .simple-features { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .big-stats { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  .page-hero { padding: 50px 0 40px; }
  .process-row { grid-template-columns: 50px 1fr; padding: 28px 0; }
  .simple-features, .simple-features.cols-2 { grid-template-columns: 1fr; }
  .field-row, .choice-grid { grid-template-columns: 1fr; }
  .page-hero-media { aspect-ratio: 4/5; }
  .verified-row { scroll-snap-type: x mandatory; }
  .verified-card { flex: 0 0 82%; scroll-snap-align: start; }
}

/* ==========================================================================
   LEGAL PAGES — readable prose block
   ========================================================================== */
.legal-content { max-width: 740px; margin: 0 auto; }
.legal-content .updated { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 48px; display: block; }
.legal-content h2 {
  font-size: 1.5rem; margin-top: 52px; margin-bottom: 16px;
  padding-top: 28px; border-top: 1px solid var(--line);
}
.legal-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 { font-size: 1.1rem; margin-top: 28px; margin-bottom: 12px; color: var(--ocean-deep); font-style: italic; font-weight: 500; }
.legal-content p { color: var(--ink-soft); font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.legal-content ul { margin: 0 0 16px; padding-left: 22px; }
.legal-content li { color: var(--ink-soft); font-size: 15px; line-height: 1.75; margin-bottom: 8px; list-style: disc; }
.legal-content a { color: var(--ocean-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal-content strong { color: var(--navy); }

/* ==========================================================================
   VERIFIED RESULTS CAROUSEL — numbers-only, no identity, ready for real data
   ========================================================================== */
.verified-row { display: flex; gap: 22px; overflow-x: auto; padding: 6px 6px 16px; max-width: 1080px; margin: 0 auto; }
.verified-card {
  flex: 0 0 280px; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); padding: 28px; position: relative; overflow: hidden;
}
.verified-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--rose), var(--champagne));
}
.verified-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.platform-chip {
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ocean-deep); background: rgba(26,102,144,0.08); padding: 5px 12px; border-radius: 999px;
}
.verified-chip {
  font-size: 10.5px; font-weight: 700; color: var(--champagne); display: flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.verified-metric .big-num {
  font-family: var(--font-display); font-style: italic; font-size: 2.6rem; color: var(--navy); display: block;
}
.verified-metric .metric-label { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }
.verified-period {
  margin-top: 20px; padding-top: 16px; border-top: 1px dashed var(--line);
  font-size: 11.5px; color: var(--ink-soft); font-style: italic;
}

/* ==========================================================================
   RESULTS PAGE — category tabs, transformation flow, ownership ecosystem
   ========================================================================== */

/* ---- dual hero CTAs + trust line ---- */
.hero-trust-line {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-soft); margin: 26px 0 8px;
}
.hero-trust-line .dot { color: var(--line); font-weight: 400; }
.page-hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }

/* ---- category tabs ---- */
.category-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 0 auto 44px; max-width: 900px; }
.category-tab {
  padding: 12px 22px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--white); font-size: 13px; font-weight: 700; color: var(--ink-soft);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.category-tab.active { border-color: var(--rose); color: var(--navy); background: rgba(226,63,115,0.06); }
.category-panel { display: none; max-width: 900px; margin: 0 auto; }
.category-panel.active { display: block; }
.category-metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 40px; }
.category-metric { padding: 16px 0; border-top: 1px solid var(--line); font-size: 14.5px; color: var(--navy); font-weight: 600; }
.category-metric span { display: block; font-size: 12.5px; color: var(--ink-soft); font-weight: 400; margin-top: 3px; }

/* ---- before / after transformation ---- */
.transform-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: start; max-width: 900px; margin: 0 auto; }
.transform-col h3 { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; margin-bottom: 24px; text-align: center; }
.transform-col.before h3 { color: var(--ink-soft); }
.transform-col.after h3 { color: var(--rose); }
.transform-steps { display: flex; flex-direction: column; gap: 0; }
.transform-step {
  padding: 14px 18px; border-radius: var(--radius-sm); background: var(--white);
  border: 1px solid var(--line-soft); font-size: 13.5px; text-align: center; color: var(--ink-soft);
}
.transform-col.after .transform-step { color: var(--navy); font-weight: 600; border-color: rgba(226,63,115,0.25); }
.transform-arrow { text-align: center; color: var(--line); font-size: 14px; padding: 6px 0; }
.transform-divider { display: flex; align-items: center; justify-content: center; color: var(--champagne); font-size: 20px; padding-top: 40px; }

/* ---- ownership ecosystem diagram ---- */
.ecosystem-flow { display: flex; align-items: stretch; justify-content: center; gap: 18px; max-width: 980px; margin: 0 auto; flex-wrap: wrap; }
.ecosystem-stage {
  flex: 1; min-width: 220px; background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-card); padding: 26px 22px;
}
.ecosystem-stage.owned { border-color: rgba(226,63,115,0.3); background: rgba(226,63,115,0.03); }
.ecosystem-stage h4 { font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ocean-deep); margin-bottom: 14px; }
.ecosystem-stage.owned h4 { color: var(--rose); }
.ecosystem-stage ul { display: flex; flex-direction: column; gap: 8px; }
.ecosystem-stage li { font-size: 13.5px; color: var(--ink-soft); }
.ecosystem-connector { display: flex; align-items: center; justify-content: center; color: var(--line); font-size: 22px; padding: 0 4px; }

@media (max-width: 900px) {
  .transform-grid { grid-template-columns: 1fr; }
  .transform-divider { display: none; }
  .ecosystem-connector { transform: rotate(90deg); padding: 8px 0; }
}
@media (max-width: 760px) {
  .category-metric-grid { grid-template-columns: 1fr; }
  .category-tabs { gap: 8px; }
  .category-tab { padding: 10px 16px; font-size: 12px; }
}

/* ==========================================================================
   LANGUAGE SUGGESTION BANNER — injected via JS, not hardcoded per page
   ========================================================================== */
.lang-banner {
  background: var(--navy); color: var(--white);
  font-size: 13.5px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  padding: 12px 20px; text-align: center; flex-wrap: wrap;
  position: relative; z-index: 200;
}
.lang-banner .lang-banner-switch {
  background: var(--rose); color: var(--white); border: none;
  padding: 7px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
  white-space: nowrap;
}
.lang-banner .lang-banner-dismiss {
  background: none; border: none; color: rgba(255,255,255,0.6);
  font-size: 18px; line-height: 1; padding: 4px 8px; flex-shrink: 0;
}
.lang-banner .lang-banner-dismiss:hover { color: var(--white); }
@media (max-width: 600px) {
  .lang-banner { font-size: 12.5px; padding: 10px 16px; }
}
