/* ==========================================================================
   HolaGirona — landing stylesheet
   Implements design_handoff_holagirona_landing (hifi). Shared by /en/ /es/ /ca/.
   ========================================================================== */

:root {
  /* Colour */
  --cream: #F4EFE7;
  --surface: #ffffff;
  --ink: #1C1B1A;
  --ink-band: #141414;
  --sky: #4EAEE8;
  --brand-blue: #0075C6;
  --brand-blue-hover: #0a5f9e;
  --blue-on-tint: #0a6bab;
  --blue-on-dark: #8fd0f5;
  --orange: #E8934A;
  --yellow: #F2C14E;
  --orange-kicker: #a9741a;
  --green: #6FBF6A;
  --text-2: #5f5952;
  --text-3: #6f6960;
  --muted: #7a746c;
  --muted-2: #8a847c;
  --foot-muted: #9c978f;
  --foot-muted-2: #807b74;
  --hairline: rgba(28, 27, 26, 0.06);
  --hairline-band: rgba(28, 27, 26, 0.05);

  /* Type */
  --display: 'Fredoka', 'Trebuchet MS', sans-serif;
  --body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Space */
  --container: 1180px;
  --gutter: 28px;
  --section-y: clamp(64px, 9vw, 96px);
  --band-y: clamp(60px, 8.5vw, 90px);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-blue); text-decoration: none; }
a:hover { color: var(--brand-blue-hover); }

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

:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; }

/* visually hidden, still read by screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------- buttons  */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; color: #fff; box-shadow: 0 10px 24px rgba(28, 27, 26, .24); }

.btn-light {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(28, 27, 26, .12);
}
.btn-light:hover { color: var(--ink); box-shadow: 0 10px 24px rgba(28, 27, 26, .1); }

.btn-lg { font-size: 16px; padding: 16px 28px; }
.btn-md { font-size: 16px; padding: 15px 26px; }
.btn-sm { font-size: 14px; font-weight: 700; padding: 11px 20px; }

/* ------------------------------------------------------------------- nav  */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 231, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}

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

.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { color: var(--ink); }

/* Mosca de Sant Narcís — the brand symbol (assets/img/fly.svg).
   Dark-bodied variant on light backgrounds, white-bodied one on dark. */
.brand-mark {
  width: 38px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -.2px;
}
.brand-text span { color: var(--sky); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: #4b463f; font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--ink); }

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(28, 27, 26, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .6);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* language switcher */
.lang { position: relative; }

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(28, 27, 26, .12);
  background: transparent;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  color: #4b463f;
  cursor: pointer;
}
.lang-btn:hover { border-color: rgba(28, 27, 26, .28); }
.lang-btn .chev { font-size: 10px; transition: transform .2s ease; }
.lang-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--hairline);
  box-shadow: 0 18px 40px rgba(28, 27, 26, .16);
  padding: 6px;
  display: none;
  z-index: 60;
}
.lang-menu[data-open="true"] { display: block; }
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #4b463f;
  font-weight: 600;
  font-size: 15px;
}
.lang-menu a:hover { background: rgba(78, 174, 232, .1); color: var(--ink); }
.lang-menu a[aria-current="true"] { background: rgba(78, 174, 232, .16); color: var(--blue-on-tint); }

.flag {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(28, 27, 26, .08) inset;
}

/* ------------------------------------------------------------------ icons */
/* Lucide line icons, inlined as SVG so they take their colour from the
   surrounding rule (or an inline `color` on the tile). */

.icon { display: block; flex-shrink: 0; }

.icon-inline {
  display: inline-block;
  vertical-align: -2px;
  flex-shrink: 0;
}

.icon-heart { fill: currentColor; color: #E8634A; }

/* ------------------------------------------------------------------ hero  */

.hero { position: relative; }

.hero-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-blobs::before,
.hero-blobs::after { content: ''; position: absolute; border-radius: 50%; }
.hero-blobs::before {
  top: -120px;
  right: -80px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle at 30% 30%, rgba(242, 193, 78, .42), rgba(232, 147, 74, .18) 45%, transparent 70%);
}
.hero-blobs::after {
  bottom: -160px;
  left: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 50% 50%, rgba(78, 174, 232, .28), transparent 68%);
}

.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 76px) var(--gutter) clamp(56px, 7vw, 88px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 56px;
}

.hero-copy { flex: 1 1 440px; min-width: min(320px, 100%); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(78, 174, 232, .14);
  color: var(--blue-on-tint);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 15px;
  border-radius: 999px;
}

.hero-copy h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(38px, 6.4vw, 60px);
  line-height: 1.03;
  letter-spacing: -1px;
  margin: 22px 0 0;
  text-wrap: balance;
}
.hero-copy h1 em { font-style: normal; color: var(--sky); }

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 24px 0 0;
  max-width: 490px;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.availability {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 26px;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
}
.availability::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(111, 191, 106, .22);
  flex-shrink: 0;
}

/* app store badges */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.store-badge {
  display: inline-flex;
  border-radius: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(28, 27, 26, .18); }
.store-badge img { height: 50px; width: auto; display: block; }

.store-badges-hero { margin-top: 26px; }

.store-badges-early {
  justify-content: center;
  margin-top: 32px;
}
.store-badges-early .store-badge img { height: 58px; }

.early-note {
  margin-top: 16px;
  font-size: 14.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, .92);
}
.store-badges-early .store-badge:hover { box-shadow: 0 10px 24px rgba(120, 60, 10, .28); }

.hero-visual {
  flex: 1 1 360px;
  min-width: min(300px, 100%);
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-stage { position: relative; filter: drop-shadow(0 30px 60px rgba(28, 27, 26, .22)); }

.phone {
  background: #111;
  border-radius: 46px;
  padding: 11px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .08);
  position: relative;
}
.phone-hero { width: 296px; height: 640px; }
.phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 26px;
  background: #111;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: var(--cream);
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 12px 15px;
  box-shadow: 0 16px 34px rgba(28, 27, 26, .16);
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 4;
}
.float-card .tile {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.float-card .t { font-family: var(--display); font-weight: 600; font-size: 14px; }
.float-card .s { font-size: 12px; color: var(--muted-2); font-weight: 600; }

.float-a {
  top: 96px;
  left: -58px;
  animation: floaty 5s ease-in-out infinite;
}
.float-a .tile { background: rgba(232, 147, 74, .16); }

.float-b {
  bottom: 150px;
  right: -52px;
  animation: floaty2 6s ease-in-out infinite;
}
.float-b .tile { background: rgba(78, 174, 232, .16); font-size: 18px; }

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floaty2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* --------------------------------------------------------------- houses   */

.houses {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  opacity: .9;
}
.house { display: flex; flex-direction: column; align-items: center; }
.house .roof {
  width: 0;
  height: 0;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-bottom: 15px solid currentColor;
}
.house .body { width: 28px; height: 52px; background: currentColor; border-radius: 4px 4px 0 0; }

.houses-sm { gap: 9px; justify-content: flex-start; margin-top: 22px; }
.houses-sm .roof { border-left-width: 10px; border-right-width: 10px; border-bottom-width: 9px; }
.houses-sm .body { width: 16px; height: 30px; border-radius: 2px 2px 0 0; }

/* ---------------------------------------------------------- value strip   */

.value-strip {
  background: #fff;
  border-top: 1px solid var(--hairline-band);
  border-bottom: 1px solid var(--hairline-band);
}
.value-strip .container {
  padding-top: 44px;
  padding-bottom: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.value-item { flex: 1 1 240px; display: flex; gap: 15px; align-items: flex-start; }
.value-item .ico { display: flex; padding-top: 2px; }
.value-item h2 { font-family: var(--display); font-weight: 600; font-size: 18px; }
.value-item p { color: var(--text-3); font-size: 15px; margin-top: 3px; }

/* ------------------------------------------------------------ section UI  */

.kicker {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--sky);
}
.kicker-orange { color: var(--orange); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 15px;
  border-radius: 999px;
}
.pill-amiko { background: rgba(78, 174, 232, .18); color: var(--blue-on-dark); }
.pill-premium { background: rgba(242, 193, 78, .25); color: var(--orange-kicker); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto; }
.section-head h2,
.split-copy h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 46px);
  line-height: 1.06;
  letter-spacing: -.6px;
  margin: 14px 0 0;
}
.section-head p { font-size: 18px; color: var(--text-3); margin-top: 16px; }

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}
.split-reverse { flex-wrap: wrap-reverse; }
.split-copy { flex: 1 1 400px; min-width: min(320px, 100%); }
.split-copy p.lede { font-size: 18px; line-height: 1.6; color: var(--text-3); margin-top: 18px; max-width: 480px; }
.split-visual { flex: 1 1 380px; min-width: min(300px, 100%); display: flex; justify-content: center; gap: 20px; }

/* --------------------------------------------------------------- features */

.features { padding-top: var(--section-y); padding-bottom: 20px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 56px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 30px 28px;
  box-shadow: 0 2px 0 rgba(28, 27, 26, .02);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(28, 27, 26, .08); }
.feature-card .tile {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.feature-card h3 { font-family: var(--display); font-weight: 600; font-size: 21px; margin: 20px 0 8px; }
.feature-card p { color: var(--text-3); font-size: 15.5px; line-height: 1.55; }

/* ------------------------------------------------------------------ amiko */

.amiko {
  margin-top: var(--section-y);
  background: var(--ink-band);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.amiko::before {
  content: '';
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 400px;
  background: radial-gradient(circle, rgba(78, 174, 232, .35), transparent 62%);
  pointer-events: none;
}
.amiko .container { position: relative; padding-top: var(--band-y); padding-bottom: var(--band-y); }
.amiko .split-copy p.lede { color: #c5c1bb; }

.phone-amiko {
  width: 284px;
  height: 614px;
  background: #000;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
  border: 1px solid rgba(255, 255, 255, .08);
}
.phone-amiko::before { background: #000; }
.phone-amiko .phone-screen { background: #000; }

.amiko-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.amiko-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 18px;
  padding: 18px 20px;
}
.amiko-card .ico { display: flex; color: var(--blue-on-dark); }
.amiko-card h3 { font-family: var(--display); font-weight: 600; font-size: 17px; margin-top: 10px; }
.amiko-card p { color: #a7a39d; font-size: 14px; margin-top: 4px; }

/* -------------------------------------------------------------- community */

.community { padding-top: var(--section-y); padding-bottom: var(--section-y); }

.checklist { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; list-style: none; }
.checklist li { display: flex; align-items: center; gap: 14px; font-size: 16.5px; font-weight: 600; color: #3f3a34; }
.checklist li::before {
  content: '✓';
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(78, 174, 232, .16);
  color: var(--blue-on-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

.phone-tilt { width: 236px; height: 510px; border-radius: 40px; padding: 9px; box-shadow: 0 26px 54px rgba(28, 27, 26, .2); }
.phone-tilt::before { display: none; }
.phone-tilt .phone-screen { border-radius: 32px; }
.tilt-l { transform: translateY(-14px) rotate(-3deg); }
.tilt-r { transform: translateY(14px) rotate(3deg); }

/* ------------------------------------------------------------ social band */

.social-band {
  background: #fff;
  border-top: 1px solid var(--hairline-band);
  border-bottom: 1px solid var(--hairline-band);
}
.social-band .container { padding-top: var(--band-y); padding-bottom: var(--band-y); }
.phone-social { width: 230px; height: 496px; box-shadow: 0 26px 54px rgba(28, 27, 26, .18); }
.social-l { transform: rotate(-2deg); }
.social-r { transform: translateY(24px) rotate(2deg); }

/* ----------------------------------------------------------------- premium */

.premium { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.premium-card {
  background: linear-gradient(160deg, #ffffff, #fbf6ee);
  border: 1px solid rgba(28, 27, 26, .07);
  border-radius: 22px;
  padding: 28px 24px;
}
.premium-card .ico { display: flex; color: var(--orange-kicker); }
.premium-card h3 { font-family: var(--display); font-weight: 600; font-size: 19px; margin: 16px 0 7px; }
.premium-card p { color: var(--text-3); font-size: 14.5px; line-height: 1.5; }

/* ------------------------------------------------------------ early access */

.early { padding-top: 20px; padding-bottom: 100px; }

.early-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  padding: clamp(40px, 6vw, 64px) clamp(22px, 4vw, 40px);
  text-align: center;
  box-shadow: 0 30px 60px rgba(232, 147, 74, .28);
}
.early-card::before,
.early-card::after { content: ''; position: absolute; border-radius: 50%; pointer-events: none; }
.early-card::before { top: -80px; right: -40px; width: 320px; height: 320px; background: rgba(255, 255, 255, .16); }
.early-card::after { bottom: -110px; left: -60px; width: 300px; height: 300px; background: rgba(255, 255, 255, .12); }

.early-inner { position: relative; max-width: 560px; margin: 0 auto; }

.early-badge {
  display: inline-block;
  background: rgba(28, 27, 26, .85);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .6px;
  padding: 8px 16px;
  border-radius: 999px;
}
.early-inner h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 46px);
  line-height: 1.05;
  letter-spacing: -.6px;
  color: #fff;
  margin: 22px 0 0;
  text-shadow: 0 2px 14px rgba(120, 60, 10, .18);
}
.early-inner .lede {
  font-size: 18px;
  color: rgba(255, 255, 255, .92);
  margin-top: 14px;
  font-weight: 600;
}

.early-form { margin-top: 30px; }
.field {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: #fff;
  padding: 10px;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(120, 60, 10, .18);
  max-width: 520px;
  margin: 0 auto;
}
.field input[type="email"] {
  flex: 1 1 200px;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 18px;
  color: var(--ink);
  min-width: 0;
}
.field input::placeholder { color: #a49e96; }
.field .btn { padding: 14px 28px; }
.field .btn[disabled] { opacity: .7; cursor: not-allowed; transform: none; }

.consent-line {
  color: rgba(255, 255, 255, .9);
  font-size: 13.5px;
  margin-top: 16px;
  font-weight: 600;
}
.consent-line a { color: #fff; text-decoration: underline; }
.consent-line a:hover { color: #fff; }

.form-error {
  display: none;
  margin-top: 14px;
  background: rgba(255, 255, 255, .95);
  color: #b3261e;
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 18px;
  border-radius: 14px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.form-error[data-visible="true"] { display: block; }

.early-success {
  display: none;
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  margin-top: 30px;
  box-shadow: 0 20px 40px rgba(120, 60, 10, .2);
}
.early-success[data-visible="true"] { display: block; }
.early-success .ico { display: flex; justify-content: center; color: #4a9a45; }
.early-success h3 { font-family: var(--display); font-weight: 600; font-size: 24px; margin-top: 8px; }
.early-success p { color: var(--text-3); margin-top: 6px; font-size: 16px; }

.spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ------------------------------------------------------------------ footer */

.site-footer { background: var(--ink-band); color: #cfcbc5; }
.site-footer .container { padding-top: 64px; padding-bottom: 30px; }

.footer-top { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.footer-brand { max-width: 320px; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand:hover { color: #fff; }
.footer-brand .brand { gap: 12px; }
.footer-brand p { margin-top: 16px; font-size: 15px; line-height: 1.6; color: var(--foot-muted); }

.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-cols h2 { font-family: var(--display); font-weight: 600; color: #fff; font-size: 16px; margin-bottom: 14px; }
.footer-cols ul { list-style: none; display: flex; flex-direction: column; gap: 11px; font-size: 15px; }
.footer-cols a { color: var(--foot-muted); }
.footer-cols a:hover { color: #fff; }

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--foot-muted-2);
}
.footer-bottom a { color: #b7b2ab; }
.footer-bottom a:hover { color: #fff; }

/* ---------------------------------------------------------- cookie banner */

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 90;
  width: min(760px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(28, 27, 26, .22);
  padding: 22px 24px;
  display: none;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner[data-visible="true"] { display: flex; }
.cookie-banner p { flex: 1 1 320px; font-size: 14.5px; line-height: 1.55; color: var(--text-2); }
.cookie-banner p strong { font-family: var(--display); font-weight: 600; font-size: 16px; color: var(--ink); display: block; margin-bottom: 4px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { font-size: 14px; padding: 12px 20px; }

/* ------------------------------------------------------------- responsive */

@media (max-width: 980px) {
  .split, .split-reverse { gap: 40px; }
  .amiko-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { text-align: center; }
  .hero-copy { flex-basis: 100%; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .cta-row, .availability, .store-badges-hero { justify-content: center; }
  .eyebrow { margin: 0 auto; }
  .split-copy { text-align: center; }
  .split-copy .lede { margin-left: auto; margin-right: auto; }
  .split-copy .kicker, .split-copy .pill { display: inline-flex; }
  .checklist li { text-align: left; }
  .checklist { max-width: 460px; margin-left: auto; margin-right: auto; }
  .amiko-card { text-align: left; }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(244, 239, 231, .98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--hairline);
    padding: 8px 20px 18px;
  }
  .nav-links[data-open="true"] { display: flex; }
  .nav-links a { padding: 14px 8px; font-size: 16px; border-bottom: 1px solid var(--hairline); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-inner { position: relative; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn-cta { display: none; }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; }
  .float-a { left: -14px; top: 60px; }
  .float-b { right: -10px; bottom: 120px; }
  .amiko-grid { grid-template-columns: 1fr; }
  .split-visual { gap: 12px; }
  .phone-tilt, .phone-social { width: 168px; height: 364px; border-radius: 30px; padding: 7px; }
  .phone-tilt .phone-screen, .phone-social .phone-screen { border-radius: 24px; }
  .houses { gap: 9px; }
  .house .roof { border-left-width: 12px; border-right-width: 12px; border-bottom-width: 11px; }
  .house .body { width: 20px; height: 38px; }
  .footer-cols { gap: 36px; }
  .early { padding-bottom: 72px; }
}

@media (max-width: 420px) {
  .phone-hero { width: 260px; height: 562px; }
  .float-card { padding: 10px 12px; }
  .float-card .tile { width: 32px; height: 32px; font-size: 16px; }
}

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