/* =========================================================
   Ale La — Landing Page
   Aesthetic: deep royal blue brand, cream paper, gold accents.
   Bold display serif x clean modern sans.
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;0,9..144,900;1,9..144,400;1,9..144,600&family=JetBrains+Mono:wght@400;500;600&display=swap");

:root {
  /* Brand — deep royal blue from Ale La logo */
  --blue-900: #0a1640;     /* near-black navy, used as ink */
  --blue-800: #0e2057;
  --blue-700: #173b8e;     /* core brand blue */
  --blue-600: #2553b0;
  --blue-500: #3a6dd4;
  --blue-100: #dbe5fb;     /* pale tint */
  --blue-50:  #ecf1fc;

  --cream-50:  #faf6ee;
  --cream-100: #f3ebd9;
  --cream-200: #e8dcc1;
  --cream-300: #d6c39a;

  --gold-400: #f0c179;
  --gold-500: #d9a13f;     /* primary warm accent */
  --gold-600: #b27d2a;

  --sun-500:  #ec6d3a;     /* energetic Caribbean sunset */
  --teal-500: #1d7873;
  --teal-600: #0e5752;

  --ink: var(--blue-900);
  --paper: var(--cream-50);

  /* Type */
  --display: "Fraunces", "Times New Roman", serif;
  --sans: "Bricolage Grotesque", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  /* Spacing scale */
  --container: min(1280px, 92vw);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --easing: cubic-bezier(.2,.7,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background-image:
    radial-gradient(1200px 600px at 92% -10%, rgba(217,161,63,.20), transparent 60%),
    radial-gradient(900px 520px at -10% 30%, rgba(23,59,142,.10), transparent 60%);
}

/* Subtle paper grain overlay everywhere */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.10  0 0 0 0 0.05  0 0 0 0 0.03  0 0 0 0.30 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }

/* ======================================
   Header / Nav
====================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  border-bottom: 1px solid rgba(10,22,64,.07);
}

.nav {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.01em;
}

.brand .mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand .mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(23,59,142,.18));
}
.brand .brand-word {
  font-feature-settings: "ss01";
}
/* Footer brand mark sits on dark navy — no extra treatment needed,
   the white triangle in the logo reads against the navy background. */

.nav-links {
  display: flex; gap: 28px;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 6px 2px;
  color: var(--blue-700);
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--sun-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--easing);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex; align-items: center; gap: 10px;
}

.lang-switch {
  position: relative;
}
.lang-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--cream-100);
  font-size: 14px; font-weight: 500;
  border: 1px solid rgba(10,22,64,.08);
  transition: background .25s var(--easing);
}
.lang-trigger:hover { background: var(--cream-200); }
.lang-trigger .globe { width: 16px; height: 16px; }
.lang-trigger .chev { transition: transform .25s var(--easing); }
.lang-switch[data-open="true"] .lang-trigger .chev { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  background: var(--paper);
  border: 1px solid rgba(10,22,64,.08);
  border-radius: var(--r-md);
  padding: 6px;
  box-shadow: 0 18px 40px rgba(10,22,64,.18);
  display: none;
  z-index: 60;
}
.lang-switch[data-open="true"] .lang-menu { display: block; animation: pop .2s var(--easing); }

.lang-menu button {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px; font-weight: 500;
  text-align: left;
}
.lang-menu button:hover { background: var(--cream-100); }
.lang-menu button[aria-current="true"] { background: var(--blue-900); color: var(--cream-50); }
.lang-menu .code {
  font-family: var(--mono); font-size: 11px;
  opacity: .55;
  text-transform: uppercase;
}
.lang-menu button[aria-current="true"] .code { opacity: .8; }

@keyframes pop {
  from { opacity: 0; transform: translateY(-4px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  letter-spacing: -.005em;
  transition: transform .25s var(--easing), background .25s var(--easing), box-shadow .25s var(--easing);
}
.btn-primary {
  background: var(--ink);
  color: var(--cream-50);
  box-shadow: 0 8px 18px rgba(10,22,64,.25);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(10,22,64,.32);
  background: #000;
}

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--cream-100);
  align-items: center; justify-content: center;
}

/* ======================================
   Hero
====================================== */

.hero {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 24px 0 80px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--blue-600);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--cream-100);
  border: 1px solid rgba(10,22,64,.06);
  margin-bottom: 22px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sun-500);
  box-shadow: 0 0 0 0 rgba(236,109,58,.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(236,109,58,.55); }
  50% { box-shadow: 0 0 0 10px rgba(236,109,58,0); }
}

.hero-h1 {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 96;
  font-size: clamp(48px, 7.5vw, 110px);
  line-height: .95;
  letter-spacing: -.025em;
  color: var(--ink);
}
.hero-h1 .block { display: block; }
.hero-h1 .ital {
  font-style: italic;
  font-weight: 400;
  color: var(--blue-700);
}
.hero-h1 .accent {
  background: linear-gradient(180deg, var(--gold-500) 0%, var(--sun-500) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* Rotating word badge — feature-sized */
.rotator {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: -.015em;
  color: var(--blue-700);
}
.rotator .arrow {
  display: inline-flex;
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center; justify-content: center;
  background: var(--cream-100);
  border: 1px solid rgba(10,22,64,.08);
  color: var(--blue-700);
  font-family: var(--sans);
  font-size: 22px;
  line-height: 1;
}
.rotator .pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--cream-50);
  overflow: hidden;
  min-width: 240px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -.01em;
  text-align: center;
  box-shadow:
    0 12px 30px rgba(23,59,142,.30),
    inset 0 1px 0 rgba(255,255,255,.12);
}
.rotator .pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 50% 0%, rgba(240,193,121,.22), transparent 60%);
  pointer-events: none;
}
.rotator .pill .word {
  display: inline-block;
  position: relative;
  z-index: 1;
  animation: wordSlide .5s var(--easing);
}
.rotator .rotator-tail {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--blue-700);
  letter-spacing: -.01em;
}
@keyframes wordSlide {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.rotator .pill .word.exiting {
  animation: wordSlideOut .4s var(--easing) forwards;
}
@keyframes wordSlideOut {
  to { transform: translateY(-120%); opacity: 0; }
}

.hero-sub {
  margin-top: 28px;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--blue-600);
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 36px;
}

/* App store badges */
.store-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 20px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--cream-50);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .3s var(--easing), background .3s var(--easing), box-shadow .3s var(--easing);
  box-shadow: 0 10px 28px rgba(10,22,64,.22);
  position: relative;
  overflow: hidden;
}
.store-btn:hover {
  transform: translateY(-2px) rotate(-.4deg);
  background: var(--blue-700);
  box-shadow: 0 16px 36px rgba(10,22,64,.32);
}
.store-btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.12) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform .8s var(--easing);
}
.store-btn:hover::after { transform: translateX(100%); }

.store-btn .ico { width: 28px; height: 28px; flex-shrink: 0; }
.store-btn .lbl { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-btn .lbl .small {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .7;
}
.store-btn .lbl .big {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.01em;
}

/* Hero stats strip */
.hero-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 36px;
  max-width: 520px;
  border-top: 1px solid rgba(10,22,64,.08);
  padding-top: 24px;
}
.hero-stats .stat .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -.02em;
  color: var(--ink);
}
.hero-stats .stat .lbl {
  font-size: 13px;
  color: var(--blue-600);
  margin-top: 2px;
}

/* Hero visual — animated SVG */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  margin-top: -24px;          /* lift visual into the empty space above */
  margin-right: -2vw;          /* allow it to spill a touch off-grid */
  display: grid;
  place-items: center;
}
.hero-visual .hero-svg {
  width: 110%;                 /* bleed slightly to feel less constrained */
  height: 110%;
  margin: -5%;
  filter: drop-shadow(0 30px 60px rgba(23,59,142,.10));
}

/* ======================================
   Stats + Actions Row
====================================== */

.stats-actions {
  width: var(--container);
  margin: 80px auto;
  padding: 64px 0;
  border-top: 1px solid rgba(10,22,64,.08);
  border-bottom: 1px solid rgba(10,22,64,.08);
}
.stats-actions .inner {
  text-align: center;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.stats-row .stat .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -.02em;
  color: var(--ink);
}
.stats-row .stat .lbl {
  font-size: 14px;
  color: var(--blue-600);
  margin-top: 6px;
  letter-spacing: .02em;
}
.actions-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 720px) {
  .stats-row { grid-template-columns: 1fr; gap: 20px; }
  .stats-actions { margin: 48px auto; padding: 40px 0; }
}

/* ======================================
   Section primitives
====================================== */

section { position: relative; z-index: 2; }

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 100px 0;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--sun-500);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.022em;
  max-width: 18ch;
}
.section-title .ital { font-style: italic; font-weight: 400; color: var(--blue-700); }
.section-sub {
  margin-top: 18px;
  font-size: 18px; line-height: 1.55;
  color: var(--blue-600);
  max-width: 60ch;
}

/* ======================================
   Apps section (Customer / Vendor / Driver)
====================================== */

.apps-section {
  background: var(--blue-900);
  color: var(--cream-50);
  margin: 80px 0;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  width: calc(var(--container));
  margin-left: auto;
  margin-right: auto;
}
.apps-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 500px at 10% -20%, rgba(212,154,63,.18), transparent 60%),
    radial-gradient(700px 500px at 110% 110%, rgba(29,120,115,.22), transparent 60%);
  pointer-events: none;
}
.apps-section .inner {
  width: min(1180px, 88%);
  margin: 0 auto;
  position: relative;
}
.apps-section .section-eyebrow { color: var(--gold-400); }
.apps-section .section-title { color: var(--cream-50); }
.apps-section .section-sub { color: var(--cream-200); }

.apps-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.app-card {
  position: relative;
  padding: 32px 28px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  transition: transform .5s var(--easing), border-color .5s var(--easing);
}
.app-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230,181,104,.4);
}
.app-card .glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s var(--easing);
  background: radial-gradient(400px 200px at var(--mx,50%) var(--my,0%), rgba(230,181,104,.18), transparent 60%);
}
.app-card:hover .glow { opacity: 1; }

.app-card .logo-tile {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  position: relative;
  background: var(--cream-50);
  box-shadow: 0 12px 24px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.5);
}
.app-card .logo-tile.tile-customer { background: linear-gradient(160deg, #fff, #efe6d3); }
.app-card .logo-tile.tile-vendor { background: linear-gradient(160deg, #ffffff, #d8e3f6); }
.app-card .logo-tile.tile-driver { background: linear-gradient(160deg, #fff, #e9efe2); }

.app-card .role {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold-400);
  margin-bottom: 6px;
}
.app-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.app-card p.desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--cream-200);
  margin-bottom: 24px;
}

.app-card .bullets {
  list-style: none;
  display: grid; gap: 10px;
  margin-bottom: 28px;
}
.app-card .bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--cream-100);
}
.app-card .bullets li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}

.app-card .stores {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.app-card .ministore {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 500;
  transition: background .25s var(--easing);
}
.app-card .ministore:hover { background: rgba(255,255,255,.12); }
.app-card .ministore svg { width: 14px; height: 14px; }

.app-card .register-btn {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-500), var(--sun-500));
  color: #0a1640;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: transform .25s var(--easing), box-shadow .25s var(--easing), filter .25s var(--easing);
  box-shadow: 0 4px 12px rgba(217, 161, 63, .25);
}
.app-card .register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 161, 63, .35);
  filter: brightness(1.08);
}

/* ======================================
   Services
====================================== */

.services-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
}

.services-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-tile {
  position: relative;
  padding: 28px 22px 24px;
  border-radius: 22px;
  background: var(--cream-100);
  border: 1px solid rgba(10,22,64,.06);
  overflow: hidden;
  transition: transform .4s var(--easing), background .4s var(--easing);
  isolation: isolate;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-tile:hover {
  transform: translateY(-4px);
}
.service-tile[data-tone="food"]:hover     { background: #f9e3d1; }
.service-tile[data-tone="grocery"]:hover  { background: #e3eed8; }
.service-tile[data-tone="taxi"]:hover     { background: #fdebb6; }
.service-tile[data-tone="parcel"]:hover   { background: #d9e6f1; }
.service-tile[data-tone="service"]:hover  { background: #efddd1; }
.service-tile[data-tone="pharmacy"]:hover { background: #e8d5f2; }
.service-tile[data-tone="commerce"]:hover { background: #fbe2d4; }

.service-tile .ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--cream-50);
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: transform .5s var(--easing);
}
.service-tile:hover .ico { transform: rotate(-6deg) scale(1.05); }
.service-tile .ico svg { width: 26px; height: 26px; }

.service-tile h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.service-tile p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--blue-600);
}

/* ======================================
   How it works
====================================== */

.how {
  background: var(--cream-100);
  margin: 0;
  padding: 100px 0;
  border-top: 1px solid rgba(10,22,64,.06);
  border-bottom: 1px solid rgba(10,22,64,.06);
}
.how .inner {
  width: var(--container);
  margin: 0 auto;
}
.how-steps {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.how-steps::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(10,22,64,.18) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  background: var(--paper);
  padding: 36px 28px;
  border-radius: 22px;
  border: 1px solid rgba(10,22,64,.06);
  box-shadow: 0 8px 22px rgba(10,22,64,.05);
}
.step .lottie-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(23,59,142,.06), rgba(217,161,63,.04));
  border-radius: 20px;
  border: 1px solid rgba(217,161,63,.2);
}
.step h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.step p {
  font-size: 14px; line-height: 1.55;
  color: var(--blue-600);
}

/* ======================================
   Big CTA
====================================== */

.cta {
  width: var(--container);
  margin: 100px auto;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700) 60%, var(--blue-600));
  color: var(--cream-50);
  border-radius: 32px;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 300px at 100% 0%, rgba(230,181,104,.25), transparent 70%),
    radial-gradient(500px 300px at 0% 100%, rgba(29,120,115,.25), transparent 70%);
  pointer-events: none;
}
.cta .inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.022em;
}
.cta h2 .ital { font-style: italic; font-weight: 400; color: var(--gold-400); }
.cta p { margin-top: 18px; font-size: 18px; color: var(--cream-200); max-width: 50ch; }

.cta .badges {
  display: flex; flex-direction: column; gap: 14px;
}
.cta .store-btn {
  background: var(--cream-50);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.cta .store-btn:hover { background: #fff; }

/* Big watermark wordmark in CTA */
.cta .watermark {
  position: absolute;
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: 280px;
  letter-spacing: -.04em;
  bottom: -90px;
  right: -30px;
  opacity: .06;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  color: var(--gold-400);
}

/* ======================================
   Footer
====================================== */

.footer {
  background: var(--blue-900);
  color: var(--cream-200);
  padding: 80px 0 36px;
  position: relative;
  z-index: 2;
}
.footer .inner {
  width: var(--container);
  margin: 0 auto;
}
.footer .top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer .brand-block .brand { color: var(--cream-50); margin-bottom: 14px; }
.footer .brand-block .brand .mark { background: var(--cream-50); }
.footer .brand-block .brand .mark svg { color: var(--blue-900); }
.footer .brand-block p { max-width: 38ch; line-height: 1.55; font-size: 14px; }

.footer h5 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gold-400);
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: grid; gap: 12px; }
.footer ul a { font-size: 14px; color: var(--cream-200); transition: color .25s var(--easing); }
.footer ul a:hover { color: var(--cream-50); }

.footer .bottom {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--cream-300);
}
.footer .wordmark {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(80px, 16vw, 220px);
  line-height: 1;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(250,246,238,.12);
  text-align: center;
  margin: 36px 0;
  user-select: none;
}

/* ======================================
   Reveal-on-scroll
====================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--easing), transform .9s var(--easing);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }

/* ======================================
   Cookies Modal
====================================== */

.cookies-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,22,64,.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
  padding: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: slideUp .4s var(--easing);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookies-content {
  background: var(--paper);
  border-radius: 28px;
  padding: 40px 32px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(10,22,64,.15);
  border: 1px solid rgba(10,22,64,.08);
}

.cookies-content h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.cookies-content > p {
  font-size: 14px;
  color: var(--blue-600);
  margin-bottom: 28px;
  line-height: 1.6;
}

.cookie-types {
  margin-bottom: 32px;
  border-top: 1px solid rgba(10,22,64,.08);
  border-bottom: 1px solid rgba(10,22,64,.08);
  padding: 24px 0;
}

.cookie-type {
  margin-bottom: 24px;
}

.cookie-type label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 8px;
}

.cookie-type label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--blue-700);
}

.cookie-type label input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-type label strong {
  font-weight: 600;
  color: var(--ink);
}

.badge {
  display: inline-block;
  font-size: 11px;
  padding: 4px 8px;
  background: rgba(23,59,142,.1);
  color: var(--blue-700);
  border-radius: 4px;
  margin-left: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.cookie-type p {
  font-size: 13px;
  color: var(--blue-600);
  margin: 0;
  margin-left: 32px;
  opacity: 0.8;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.btn-secondary {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(10,22,64,.2);
  color: var(--ink);
  border-radius: 12px;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  transition: all .3s ease;
}

.btn-secondary:hover {
  background: rgba(10,22,64,.05);
  border-color: rgba(10,22,64,.3);
}

/* ======================================
   Responsive
====================================== */

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 32px; padding: 32px 0 48px; }
  .hero-visual { max-width: 540px; margin: 0 auto; }
  .apps-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
  .cta { padding: 56px 36px; }
  .cta .inner { grid-template-columns: 1fr; }
  .footer .top { grid-template-columns: 1fr 1fr; }
  .services-head { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px 28px; }
  .footer .top { grid-template-columns: 1fr; }
  .footer .bottom { flex-direction: column; gap: 12px; text-align: center; }
}

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