@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ===== tokens/typography.css ===== */
/* ============================================================
   CrewPlanet — Typography Tokens
   Source: lib/config/app_typography.dart
   Font: Poppins (via Google Fonts CDN — request originals if possible)
   ============================================================ */



:root {
  /* ── Font Families ──────────────────────────────────────── */
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ── Font Sizes ─────────────────────────────────────────── */
  --text-xs:   11px;   /* labelSmall */
  --text-sm:   12px;   /* caption */
  --text-base: 14px;   /* body-medium, button-medium, label */
  --text-md:   16px;   /* body-large, button-large, labelLarge */
  --text-lg:   18px;   /* headingSmall, titleLarge */
  --text-xl:   20px;   /* headingMedium, headlineSmall */
  --text-2xl:  24px;   /* headingLarge */
  --text-3xl:  28px;   /* headlineMedium */
  --text-4xl:  32px;   /* headlineLarge, hero "Where to?" */

  /* ── Font Weights ───────────────────────────────────────── */
  --font-regular:   400;
  --font-medium:    500;
  --font-semibold:  600;
  --font-bold:      700;
  --font-extrabold: 800;

  /* ── Line Heights ───────────────────────────────────────── */
  --leading-tight:   1.2;
  --leading-snug:    1.35;
  --leading-normal:  1.5;
  --leading-relaxed: 1.625;

  /* ── Letter Spacing ─────────────────────────────────────── */
  --tracking-tight:  -0.5px;
  --tracking-normal: 0;
  --tracking-wide:   0.5px;
  --tracking-wider:  1.2px;   /* Avatar initials */
}

/* ── Semantic Text Roles ────────────────────────────────── */
:root {
  /* Headings */
  --type-heading-xl-size:   var(--text-4xl);
  --type-heading-xl-weight: var(--font-extrabold);
  --type-heading-xl-leading: var(--leading-tight);

  --type-heading-lg-size:   var(--text-2xl);
  --type-heading-lg-weight: var(--font-bold);
  --type-heading-lg-leading: var(--leading-snug);

  --type-heading-md-size:   var(--text-xl);
  --type-heading-md-weight: var(--font-semibold);

  --type-heading-sm-size:   var(--text-lg);
  --type-heading-sm-weight: var(--font-semibold);

  /* Body */
  --type-body-lg-size:   var(--text-md);
  --type-body-lg-weight: var(--font-regular);

  --type-body-md-size:   var(--text-base);
  --type-body-md-weight: var(--font-regular);

  /* Labels & Captions */
  --type-label-lg-size:   var(--text-md);
  --type-label-lg-weight: var(--font-medium);

  --type-label-md-size:   var(--text-base);
  --type-label-md-weight: var(--font-medium);

  --type-label-sm-size:   var(--text-sm);
  --type-label-sm-weight: var(--font-medium);

  --type-caption-size:   var(--text-sm);
  --type-caption-weight: var(--font-regular);

  /* Buttons */
  --type-button-lg-size:   var(--text-md);
  --type-button-lg-weight: var(--font-semibold);

  --type-button-md-size:   var(--text-base);
  --type-button-md-weight: var(--font-semibold);
}

/* ===== tokens/colors.css ===== */
/* ============================================================
   CrewPlanet — Color Tokens
   Source: lib/config/app_colors.dart + lib/config/theme_colors.dart
   ============================================================ */

:root {
  /* ── Brand ─────────────────────────────────────────────── */
  --color-primary:        #9500FF;   /* Electric purple — main accent */
  --color-primary-deep:   #590074;   /* Deep purple — role highlights, gradient end */
  --color-ui-dark:        #2E2A47;   /* Dark purple-gray — headers / dark UI panels */

  /* Primary tints (opacity variants on white) */
  --color-primary-tint-05: rgba(149, 0, 255, 0.05);
  --color-primary-tint-10: rgba(149, 0, 255, 0.10);
  --color-primary-tint-20: rgba(149, 0, 255, 0.20);
  --color-primary-tint-30: rgba(149, 0, 255, 0.30);

  /* ── Backgrounds ────────────────────────────────────────── */
  --color-bg:            #FAFBFC;   /* App scaffold — soft white w/ blue hint */
  --color-bg-light:      #F5F7FA;   /* Soft blue-gray — subtle backgrounds */
  --color-surface:       #FFFFFF;   /* Elevated surfaces (cards, sheets) */

  /* ── Text ───────────────────────────────────────────────── */
  --color-text-primary:   #1C1C1E;  /* Rich black */
  --color-text-secondary: #6C757D;  /* Cool gray */
  --color-text-on-dark:   #FFFFFF;  /* Text over dark / accent backgrounds */
  --color-text-on-accent: #FFFFFF;  /* Text over primary accent */

  /* ── Borders & Dividers ─────────────────────────────────── */
  --color-border:   #E5E7EB;
  --color-divider:  #E0E0E0;

  /* ── Semantic / State ───────────────────────────────────── */
  --color-success: #28C76F;  /* Emerald green */
  --color-error:   #FF4444;  /* Red accent */
  --color-warning: #FF9800;  /* Orange */
  --color-info:    #2196F3;  /* Blue */

  /* ── Status Badges ──────────────────────────────────────── */
  --color-status-online:  #28C76F;  /* Same as success */
  --color-status-busy:    #FF9800;  /* Same as warning */
  --color-status-offline: #9E9E9E;  /* Gray */

  /* ── Shadows ────────────────────────────────────────────── */
  --color-shadow:       rgba(0, 0, 0, 0.10);  /* 10% black */
  --color-shadow-light: rgba(0, 0, 0, 0.05);  /* 5% black — card default */
}

/* ===== tokens/spacing.css ===== */
/* ============================================================
   CrewPlanet — Spacing & Layout Tokens
   Source: lib/config/spacing.dart + lib/config/ui_constants.dart
   ============================================================ */

:root {
  /* ── Base Spacing Scale ─────────────────────────────────── */
  --space-0:   0px;
  --space-xxs: 2px;
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;   /* Standard / default spacing */
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* ── Semantic Spacing ───────────────────────────────────── */
  --space-card-padding:    16px;
  --space-card-margin:     12px;
  --space-screen-padding:  16px;   /* Mobile default */
  --space-list-gap:        12px;
  --space-section-gap:     24px;
  --space-icon-text:       8px;

  /* ── Border Radii ───────────────────────────────────────── */
  --radius-xs:      4px;
  --radius-sm:      8px;
  --radius-md:      12px;   /* Standard — buttons, cards, inputs */
  --radius-lg:      16px;
  --radius-xl:      20px;
  --radius-pill:    999px;  /* Fully pill — chips, status badges */
  --radius-circle:  50%;    /* Avatars, status dots */

  /* ── Component Sizing ───────────────────────────────────── */
  --size-btn-sm:      36px;
  --size-btn-md:      48px;   /* Standard button height */
  --size-btn-lg:      56px;
  --size-input:       56px;
  --size-appbar:      56px;
  --size-bottom-nav:  60px;
  --size-icon-sm:     16px;
  --size-icon-md:     20px;
  --size-icon-base:   24px;
  --size-icon-lg:     28px;
  --size-icon-xl:     32px;
  --size-icon-fab:    48px;

  /* ── Avatar Sizes ───────────────────────────────────────── */
  --avatar-xs:      32px;
  --avatar-sm:      40px;
  --avatar-md:      56px;
  --avatar-lg:      64px;
  --avatar-xl:      72px;
  --avatar-profile: 120px;

  /* ── Responsive Breakpoints ─────────────────────────────── */
  --bp-mobile:  600px;   /* < 600px = mobile */
  --bp-tablet:  1024px;  /* 600–1023px = tablet */
  --bp-desktop: 1440px;  /* 1024–1439px = desktop */

  /* ── Max Widths ─────────────────────────────────────────── */
  --max-content: 1200px;
  --max-form:     600px;
  --max-dialog:   500px;
  --max-card:     600px;

  /* ── Elevation / Z-Index ────────────────────────────────── */
  --z-base:    0;  /* @kind other */
  --z-card:    1;  /* @kind other */
  --z-sticky:  10;  /* @kind other */
  --z-nav:     20;  /* @kind other */
  --z-overlay: 30;  /* @kind other */
  --z-modal:   40;  /* @kind other */
  --z-toast:   50;  /* @kind other */
}

/* ===== tokens/effects.css ===== */
/* ============================================================
   CrewPlanet — Effects Tokens
   Source: lib/config/animation_config.dart + lib/config/ui_constants.dart
   ============================================================ */

:root {
  /* ── Shadows ────────────────────────────────────────────── */
  --shadow-none:   none;
  --shadow-xs:     0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm:     0 2px 4px rgba(0, 0, 0, 0.05);     /* Dividers / subtle lift */
  --shadow-card:   0 2px 10px rgba(0, 0, 0, 0.05);    /* AppCard default */
  --shadow-md:     0 4px 16px rgba(0, 0, 0, 0.08);    /* Hover / popovers */
  --shadow-lg:     0 8px 24px rgba(0, 0, 0, 0.10);    /* Modals / dialogs */
  --shadow-xl:     0 12px 40px rgba(0, 0, 0, 0.12);   /* Drawers */

  /* Primary-colored shadows (used on primary buttons on hover) */
  --shadow-primary-sm: 0 2px 8px  rgba(149, 0, 255, 0.20);
  --shadow-primary-md: 0 4px 12px rgba(149, 0, 255, 0.30);

  /* ── Transitions ────────────────────────────────────────── */
  --duration-instant: 0ms;    /* @kind other */
  --duration-fast:    150ms;  /* @kind other */
  --duration-normal:  200ms;  /* @kind other */
  --duration-medium:  300ms;  /* @kind other */
  --duration-slow:    500ms;  /* @kind other */

  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);    /* @kind other */
  --ease-in:     cubic-bezier(0.4, 0.0, 1, 1);      /* @kind other */
  --ease-inout:  cubic-bezier(0.4, 0.0, 0.2, 1);    /* @kind other */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1); /* @kind other */

  --transition-fast:   all var(--duration-fast)   var(--ease-out);  /* @kind other */
  --transition-normal: all var(--duration-normal) var(--ease-out);  /* @kind other */
  --transition-medium: all var(--duration-medium) var(--ease-out);  /* @kind other */

  /* ── Opacity Levels ─────────────────────────────────────── */
  --opacity-disabled: 0.38;  /* @kind other */
  --opacity-muted:    0.50;  /* @kind other */
  --opacity-medium:   0.70;  /* @kind other */
  --opacity-high:     0.87;  /* @kind other */
  --opacity-full:     1.00;  /* @kind other */
}

/* ===== tokens/base.css ===== */
/* ============================================================
   CrewPlanet — Base / Reset
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
  background-color: var(--color-bg);
}

img, video, svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-primary);
}

/* ===== landing.css ===== */
/* ============================================================
   CrewPlanet — Landing Page styles
   Builds on the design system tokens (../styles.css)
   ============================================================ */

:root {
  --accent: var(--color-primary);          /* tweakable */
  --accent-deep: var(--color-primary-deep);
  --grad: linear-gradient(135deg, var(--accent), var(--accent-deep));
  --accent-tint-08: color-mix(in srgb, var(--accent) 8%, transparent);
  --accent-tint-12: color-mix(in srgb, var(--accent) 12%, transparent);
  --shell: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
}

.material-symbols-rounded {
  display: inline-block;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  font-size: 24px;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

html { scroll-behavior: smooth; }
body {
  background: var(--color-bg);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

.shell {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── Typographic helpers ─────────────────────────────────── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-tint-08);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}
.kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

h1, h2, h3 { letter-spacing: -0.5px; text-wrap: balance; line-height: 1.1; }
.lede { color: var(--color-text-secondary); font-size: 18px; line-height: 1.6; text-wrap: pretty; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 26px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: var(--transition-fast);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { box-shadow: var(--shadow-primary-md); transform: translateY(-1px); }
/* Signature CrewPlanet invert: white/purple -> purple/white */
.btn-outline {
  background: #fff;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-ghost { color: var(--color-text-primary); height: auto; padding: 8px 4px; font-weight: 500; }
.btn-ghost:hover { color: var(--accent); }

/* ── App store badges ────────────────────────────────────── */
.stores { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--color-text-primary);
  color: #fff;
  height: 56px;
  padding: 0 20px 0 18px;
  border-radius: 14px;
  transition: var(--transition-fast);
}
.store-badge:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-badge svg { width: 24px; height: 24px; fill: #fff; flex: none; }
.store-badge .sb-text { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge .sb-small { font-size: 10px; font-weight: 400; letter-spacing: 0.3px; opacity: 0.85; }
.store-badge .sb-big { font-size: 17px; font-weight: 600; letter-spacing: -0.2px; }

/* ── Top nav ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: color-mix(in srgb, var(--color-bg) 82%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration-normal), background var(--duration-normal);
}
.nav.scrolled { border-bottom-color: var(--color-border); background: color-mix(in srgb, var(--color-surface) 88%, transparent); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 38px; height: 38px; }
.brand .name { font-size: 21px; font-weight: 700; letter-spacing: -0.5px; color: var(--color-text-primary); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--color-text-secondary); font-weight: 500; font-size: 15px; transition: color var(--duration-fast); }
.nav-links a:hover { color: var(--color-text-primary); text-decoration: none; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn { height: 44px; padding: 0 20px; font-size: 15px; }
@media (max-width: 860px) { .nav-links { display: none; } }

/* ── Section scaffolding ─────────────────────────────────── */
section { position: relative; }
.section-head { max-width: 680px; margin-inline: auto; text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(30px, 4vw, 42px); font-weight: 800; margin: 18px 0 16px; }
.section-head .lede { margin-inline: auto; }

/* ── HERO (shared) ───────────────────────────────────────── */
.hero { padding-top: clamp(48px, 7vw, 88px); padding-bottom: clamp(56px, 8vw, 104px); }
.hero h1 { font-size: clamp(40px, 6.2vw, 72px); font-weight: 800; }
.hero h1 .accentword { color: var(--accent); }
.hero .lede { max-width: 540px; margin-top: 22px; font-size: clamp(17px, 1.6vw, 20px); }
.hero-actions { margin-top: 34px; }
.trust { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.trust .faces { display: flex; }
.trust .faces .face {
  width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid var(--color-bg);
  margin-left: -11px; display: grid; place-items: center; color: #fff; font-weight: 600; font-size: 13px;
}
.trust .faces .face:first-child { margin-left: 0; }
.trust .trust-text { font-size: 14px; color: var(--color-text-secondary); line-height: 1.35; }
.trust .trust-text b { color: var(--color-text-primary); font-weight: 600; }

/* glow backdrop behind phones */
.glow {
  position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0; pointer-events: none;
  background: radial-gradient(circle, var(--accent-tint-12), transparent 70%);
}

/* Direction A — split */
.hero[data-variant="a"] .hero-b { display: none; }
.hero[data-variant="b"] .hero-a { display: none; }

.hero-a .hero-grid {
  display: grid; grid-template-columns: 1fr 0.92fr; gap: 48px; align-items: center;
}
.hero-a .hero-art { position: relative; display: grid; place-items: center; min-height: 560px; }
.hero-a .glow { width: 520px; height: 520px; top: 4%; left: 8%; }
.hero-a .floating-card {
  position: absolute; z-index: 3; background: var(--color-surface); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 13px 15px; display: flex; align-items: center; gap: 11px;
}
.hero-a .fc-nearby { top: 12%; right: 0; }
.hero-a .fc-deal { bottom: 13%; left: 0; }
.fc-icon { width: 40px; height: 40px; border-radius: 11px; background: var(--accent-tint-12); color: var(--accent); display: grid; place-items: center; }
.fc-icon .material-symbols-rounded { font-size: 22px; }
.fc-title { font-size: 14px; font-weight: 600; }
.fc-sub { font-size: 12px; color: var(--color-text-secondary); }

/* Direction B — centered showcase */
.hero-b { text-align: center; }
.hero-b .hero-copy { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; }
.hero-b .hero-actions, .hero-b .stores { justify-content: center; }
.hero-b .trust { justify-content: center; }
.hero-b .phone-row {
  position: relative; display: flex; justify-content: center; align-items: flex-end;
  gap: 0; margin-top: 64px; min-height: 600px;
}
.hero-b .glow { width: 760px; height: 480px; top: 8%; left: 50%; transform: translateX(-50%); border-radius: 50%; }
.hero-b .phone-row .phone { position: relative; z-index: 2; }
.hero-b .phone-row .phone.side { transform: scale(0.86); z-index: 1; }
.hero-b .phone-row .phone.left { margin-right: -42px; }
.hero-b .phone-row .phone.right { margin-left: -42px; }

/* ── Phone frame ─────────────────────────────────────────── */
.phone {
  width: 286px; flex: none;
  border-radius: 42px;
  background: #fff;
  padding: 11px;
  box-shadow: 0 30px 70px -28px rgba(46,42,71,0.45), 0 4px 14px rgba(0,0,0,0.08);
  border: 1px solid var(--color-border);
}
.phone .screen {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: var(--color-bg);
  height: 580px;
}
.phone .notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 104px; height: 26px; background: #1c1c1e; border-radius: 999px; z-index: 20;
}
.scrn { position: absolute; inset: 0; display: flex; flex-direction: column; font-size: 12px; }

/* shared in-app atoms */
.app-status { height: 38px; flex: none; }
.app-pad { padding: 0 14px; }
.sec-row { display: flex; align-items: center; justify-content: space-between; margin: 16px 14px 9px; }
.sec-row h4 { font-size: 14px; font-weight: 700; letter-spacing: -0.2px; }
.sec-row .seeall { font-size: 11px; font-weight: 600; color: var(--accent); }

.app-card { background: #fff; border-radius: 12px; box-shadow: var(--shadow-card); }
.chip { display: inline-flex; align-items: center; font-size: 9.5px; font-weight: 600; padding: 4px 8px; border-radius: 999px; }
.chip-food { background: #FFF1E6; color: #E07B16; }
.chip-transport { background: #E9EEFF; color: #3A5BD9; }
.chip-lounge { background: var(--accent-tint-12); color: var(--accent); }
.chip-well { background: #E4F8EE; color: #1FA463; }

/* Home screen */
.home-hero { position: relative; height: 196px; flex: none; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; padding: 14px; }
.home-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.home-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.66)); }
.home-hero .hh-content { position: relative; z-index: 2; }
.home-hero .hh-title { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; }
.home-search {
  position: relative; z-index: 2; margin-top: 12px; background: #fff; border-radius: 12px;
  height: 38px; display: flex; align-items: center; gap: 8px; padding: 0 12px; color: var(--color-text-secondary);
  box-shadow: var(--shadow-md); font-size: 11px;
}
.home-search .material-symbols-rounded { font-size: 17px; color: var(--accent); }
.crew-row { display: flex; gap: 13px; padding: 2px 14px 4px; }
.crew { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.ring { width: 46px; height: 46px; border-radius: 50%; padding: 2px; background: var(--grad); position: relative; }
.ring .inner { width: 100%; height: 100%; border-radius: 50%; background: #fff; display: grid; place-items: center; font-weight: 700; font-size: 13px; color: var(--color-text-primary); }
.ring .stat { position: absolute; right: 1px; bottom: 1px; width: 11px; height: 11px; border-radius: 50%; border: 2px solid #fff; }
.net-card .ring { width: 52px; height: 52px; }
.net-card .ring .inner { font-size: 15px; }
.crew .nm { font-size: 9.5px; color: var(--color-text-secondary); }
.tip-cards { display: flex; gap: 10px; padding: 0 14px; overflow: hidden; }
.tip-card { flex: 1 0 0; padding: 11px; }
.tip-card .tt { font-size: 11.5px; font-weight: 600; margin: 7px 0 8px; line-height: 1.25; }
.tip-card .tm { font-size: 9.5px; color: var(--color-text-secondary); }
.deal-cards { display: flex; gap: 10px; padding: 0 14px; overflow: hidden; }
.deal-card { flex: 1 0 0; border-radius: 12px; background: var(--grad); color: #fff; padding: 11px; min-height: 92px; display: flex; flex-direction: column; }
.deal-card .dl { font-size: 9px; opacity: 0.85; font-weight: 600; }
.deal-card .dt { font-size: 11.5px; font-weight: 600; margin-top: 3px; line-height: 1.2; }
.deal-card .dp { font-size: 24px; font-weight: 800; margin-top: auto; }

/* Tips / Network shared search */
.app-title { font-size: 17px; font-weight: 700; margin: 14px 14px 10px; }
.app-search { margin: 0 14px; background: var(--color-bg-light); border-radius: 12px; height: 36px; display: flex; align-items: center; gap: 8px; padding: 0 12px; color: var(--color-text-secondary); font-size: 11px; }
.app-search .material-symbols-rounded { font-size: 17px; }
.filter-row { display: flex; gap: 7px; padding: 11px 14px; overflow: hidden; }
.filter { font-size: 10px; font-weight: 600; padding: 6px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--color-border); color: var(--color-text-secondary); flex: none; }
.filter.on { background: var(--accent); color: #fff; border-color: var(--accent); }
.tip-list { display: flex; flex-direction: column; gap: 10px; padding: 0 14px; }
.tip-item { padding: 12px; }
.tip-item .top { display: flex; justify-content: space-between; align-items: flex-start; }
.tip-item .heart { color: var(--color-text-secondary); font-size: 16px; }
.tip-item .ti-title { font-size: 12.5px; font-weight: 600; margin: 8px 0 9px; }
.tip-item .ti-meta { display: flex; justify-content: space-between; align-items: center; font-size: 10px; color: var(--color-text-secondary); }
.tip-item .ti-loc { display: flex; align-items: center; gap: 4px; }
.tip-item .ti-loc .material-symbols-rounded { font-size: 13px; color: var(--accent); }

/* Network grid */
.net-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 14px; }
.net-card { padding: 13px 10px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.net-card .nm { font-size: 12px; font-weight: 700; margin-top: 4px; }
.net-card .role { font-size: 9.5px; color: var(--color-text-secondary); }
.net-card .airline { font-size: 9px; font-weight: 600; padding: 3px 8px; border-radius: 999px; background: var(--accent-tint-12); color: var(--accent); margin-top: 2px; }
.net-card .pres { display: flex; align-items: center; gap: 4px; font-size: 9px; color: var(--color-text-secondary); margin-top: 2px; }
.net-card .pres .d { width: 6px; height: 6px; border-radius: 50%; }

/* bottom nav */
.app-bottomnav { margin-top: auto; height: 52px; flex: none; background: #fff; border-top: 1px solid var(--color-border); display: flex; align-items: center; justify-content: space-around; box-shadow: 0 -2px 8px rgba(0,0,0,0.04); }
.app-bottomnav .bi { display: flex; flex-direction: column; align-items: center; gap: 2px; color: var(--color-status-offline); font-size: 8.5px; font-weight: 500; }
.app-bottomnav .bi .material-symbols-rounded { font-size: 21px; }
.app-bottomnav .bi.on { color: var(--accent); }
.app-bottomnav .bi.on .material-symbols-rounded { background: var(--accent-tint-12); border-radius: 999px; padding: 2px 12px; }

/* ── Features ────────────────────────────────────────────── */
.features { padding-block: clamp(64px, 9vw, 112px); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  background: var(--color-surface); border-radius: var(--radius-lg); padding: 30px 26px;
  box-shadow: var(--shadow-card); transition: var(--transition-normal); border: 1px solid transparent;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent-tint-12); }
.feature .ficon { width: 54px; height: 54px; border-radius: 15px; background: var(--accent-tint-08); color: var(--accent); display: grid; place-items: center; margin-bottom: 20px; }
.feature .ficon .material-symbols-rounded { font-size: 28px; }
.feature h3 { font-size: 20px; font-weight: 600; margin-bottom: 9px; letter-spacing: -0.3px; }
.feature p { color: var(--color-text-secondary); font-size: 15px; line-height: 1.55; text-wrap: pretty; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .feature-grid { grid-template-columns: 1fr; } }

/* ── Showcase (alternating) ──────────────────────────────── */
.showcase { padding-block: clamp(48px, 7vw, 96px); background: var(--color-bg-light); }
.show-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.show-row + .show-row { margin-top: clamp(64px, 9vw, 120px); }
.show-row:nth-child(even) .show-art { order: -1; }
.show-art { position: relative; display: grid; place-items: center; }
.show-art .glow { width: 420px; height: 420px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.show-copy .kicker { margin-bottom: 18px; }
.show-copy h3 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; margin-bottom: 16px; }
.show-copy p { color: var(--color-text-secondary); font-size: 17px; line-height: 1.6; max-width: 440px; text-wrap: pretty; }
.show-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 13px; }
.show-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; }
.show-list li .material-symbols-rounded { color: var(--accent); font-size: 22px; background: var(--accent-tint-08); border-radius: 50%; padding: 5px; }
@media (max-width: 820px) {
  .show-row { grid-template-columns: 1fr; gap: 40px; }
  .show-row:nth-child(even) .show-art { order: 0; }
  .show-art { order: -1; }
}

/* ── CTA band ────────────────────────────────────────────── */
.cta-wrap { padding-block: clamp(56px, 8vw, 104px); }
.cta {
  position: relative; overflow: hidden; background: var(--grad); color: #fff;
  border-radius: 32px; padding: clamp(44px, 6vw, 76px); text-align: center;
  box-shadow: 0 30px 70px -30px var(--accent-deep);
}
.cta::before, .cta::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.10); }
.cta::before { width: 360px; height: 360px; top: -160px; right: -90px; }
.cta::after { width: 280px; height: 280px; bottom: -150px; left: -80px; }
.cta .inner { position: relative; z-index: 2; max-width: 640px; margin-inline: auto; }
.cta h2 { font-size: clamp(30px, 4.2vw, 46px); font-weight: 800; margin-bottom: 16px; }
.cta p { font-size: 18px; opacity: 0.92; margin-bottom: 32px; line-height: 1.55; }
.cta .stores { justify-content: center; }
.cta .store-badge { background: #fff; color: var(--color-text-primary); }
.cta .store-badge svg { fill: var(--color-text-primary); }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--color-surface); border-top: 1px solid var(--color-border); padding-block: 64px 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.footer .brand { margin-bottom: 16px; }
.footer .f-tag { color: var(--color-text-secondary); font-size: 15px; line-height: 1.6; max-width: 300px; margin-bottom: 22px; }
.footer h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--color-text-primary); margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { color: var(--color-text-secondary); font-size: 15px; font-weight: 500; }
.footer ul a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--color-border); }
.footer-bottom .copy { font-size: 13px; color: var(--color-text-secondary); }
.footer-bottom .legal { display: flex; gap: 22px; }
.footer-bottom .legal a { font-size: 13px; color: var(--color-text-secondary); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ── Reveal animation (transform-only slide; content is always opaque) ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal.in { animation: revealIn 0.65s var(--ease-out) both; }
}
@keyframes revealIn {
  from { transform: translateY(26px); }
  to   { transform: none; }
}

/* ── Responsive hero ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-a .hero-grid { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .hero-a .hero-actions, .hero-a .stores, .hero-a .trust { justify-content: center; }
  .hero-a .lede { margin-inline: auto; }
  .hero-a .hero-art { min-height: 520px; margin-top: 24px; }
  .hero-b .phone-row .phone.side { display: none; }
}
@media (max-width: 520px) {
  .hero-a .floating-card { display: none; }
}

/* ── Legal / document pages ──────────────────────────────── */
.doc-nav { border-bottom: 1px solid var(--color-border); background: var(--color-surface); }
.doc-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.doc-wrap { max-width: 760px; margin: 0 auto; padding: 48px var(--gutter) 88px; }
.doc-back { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--accent); margin-bottom: 26px; }
.doc-back:hover { text-decoration: none; opacity: 0.8; }
.doc-wrap h1 { font-size: clamp(32px, 5vw, 46px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px; }
.doc-meta { color: var(--color-text-secondary); font-size: 14px; margin-bottom: 40px; }
.doc-wrap h2 { font-size: 22px; font-weight: 700; margin: 40px 0 12px; letter-spacing: -0.3px; color: var(--color-text-primary); }
.doc-wrap h3 { font-size: 17px; font-weight: 600; margin: 24px 0 8px; color: var(--color-text-primary); }
.doc-wrap p, .doc-wrap li { color: var(--color-text-secondary); font-size: 16px; line-height: 1.7; }
.doc-wrap p { margin-bottom: 14px; }
.doc-wrap ul { margin: 0 0 16px; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.doc-wrap a { color: var(--accent); font-weight: 500; }
.doc-wrap strong { color: var(--color-text-primary); font-weight: 600; }
.doc-table { width: 100%; border-collapse: collapse; margin: 6px 0 22px; }
.doc-table th, .doc-table td { text-align: left; padding: 10px 13px; border: 1px solid var(--color-border); font-size: 14px; color: var(--color-text-secondary); vertical-align: top; }
.doc-table th { background: var(--color-bg-light); color: var(--color-text-primary); font-weight: 600; }
.doc-note { background: var(--accent-tint-08); border-radius: var(--radius-md); padding: 16px 18px; margin: 8px 0 22px; }
.doc-note p { margin: 0; font-size: 14px; }

/* ── Cookie consent banner ───────────────────────────────── */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: var(--z-toast);
  max-width: 560px; margin: 0 auto; background: var(--color-ui-dark); color: #fff;
  border-radius: 16px; padding: 20px 22px; box-shadow: var(--shadow-xl);
  display: flex; flex-direction: column; gap: 14px;
}
.cookie-bar.hidden { display: none; }
.cookie-bar p { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.85); margin: 0; }
.cookie-bar a { color: #fff; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { height: 42px; padding: 0 22px; font-size: 14px; }
.cookie-actions .btn-accept { background: #fff; color: var(--color-ui-dark); }
.cookie-actions .btn-accept:hover { background: var(--accent); color: #fff; }
.cookie-actions .btn-decline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.cookie-actions .btn-decline:hover { background: rgba(255,255,255,0.12); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { padding-block: clamp(56px, 8vw, 104px); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition-fast); }
.faq-item[open] { border-color: var(--accent-tint-30); box-shadow: var(--shadow-card); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 18px; font-weight: 600; color: var(--color-text-primary); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-icon { flex: none; width: 22px; height: 22px; color: var(--accent); transition: transform var(--duration-normal) var(--ease-out); }
.faq-item[open] summary .q-icon { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; }
.faq-item .faq-body p { color: var(--color-text-secondary); font-size: 16px; line-height: 1.65; margin: 0; text-wrap: pretty; }
.faq-item .faq-body p + p { margin-top: 12px; }

/* ===================== Language switcher (EN | NL) ===================== */
.lang-switch { display: inline-flex; gap: 2px; align-items: center; border: 1px solid var(--color-border); border-radius: var(--radius-pill); padding: 3px; background: var(--color-surface); }
.lang-switch a { display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 28px; padding: 0 8px; font-size: 13px; font-weight: 600; color: var(--color-text-secondary); border-radius: var(--radius-pill); text-decoration: none; line-height: 1; transition: color var(--duration-normal) var(--ease-out), background var(--duration-normal) var(--ease-out); }
.lang-switch a.is-active { background: var(--accent); color: #fff; }
.lang-switch a:not(.is-active):hover { color: var(--accent); }
.lang-switch-footer { flex: none; }
