/* GENERATED from src/css/ by scripts/build.mjs — edit the partials, not this file. */
/* ==========================================================================
   Suntic design system
   Premium iOS marketing system: clear product imagery, quiet surfaces,
   precise spacing, and restrained sun/violet accents.
   ========================================================================== */

:root {
  /* Light surfaces */
  --paper: #fbf8ff;
  --paper-2: #ffffff;
  --paper-sink: #f4f2fd;   /* lavender section band */
  --paper-warm: #fff6e9;
  --paper-violet: #eef0fd; /* soft violet (testimonials) */
  --lavender: #f4f2fd;

  /* Ink + text */
  --ink: #1a1b22;
  --ink-2: #4c4546;
  --muted: #6c6769;        /* AA: ~5.2:1 on --paper */
  --label: #595d74;        /* eyebrow / overline label — ~6.2:1 on --paper */
  --line: rgba(26, 27, 34, 0.08);
  --line-2: rgba(26, 27, 34, 0.14);

  /* Brand accents */
  --violet: #8458f0;
  --violet-deep: #5b35c4;
  --violet-soft: #eee8ff;
  --sun: #ee9a3a;
  --sun-deep: #b55b00;
  --sun-soft: #fff0d8;
  --rose: #e2563c;
  --green: #4fa86a;

  /* Rainbow spectrum (linear, for seams/accents) + conic for the brand mark */
  --brand-grad: linear-gradient(90deg, #4fa86a, #e8b931, #ee9a3a, #e2563c, #8458f0);
  --logo-grad: conic-gradient(from 90deg, #4fa86a, #9ac54f, #e8b931, #ee9a3a, #e2563c, #8458f0, #4fa86a);
  --uv-low: #4fa86a;
  --uv-mod: #e8b931;
  --uv-high: #ee9a3a;
  --uv-vhigh: #e2563c;
  --uv-extreme: #8458f0;
  --uv-ramp: linear-gradient(90deg, #4fa86a, #9ac54f 18%, #e8b931 38%, #ee9a3a 56%, #e2563c 76%, #c0392b 88%, #8458f0 100%);

  /* Lucide "check" as a mask (https://lucide.dev) — recoloured via currentColor on the chip. */
  --ico-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 10px 30px -24px rgba(26, 27, 34, 0.45);
  --shadow: 0 30px 70px -50px rgba(26, 27, 34, 0.5);
  --shadow-lg: 0 40px 90px -54px rgba(26, 27, 34, 0.5);
  --shadow-brand: 0 16px 40px -22px rgba(26, 27, 34, 0.45);

  --maxw: 1200px;
  --maxw-text: 760px;
  --gutter: clamp(20px, 4vw, 56px);

  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "Plus Jakarta Sans", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
/* Inline Lucide icons sit on the text baseline nicely; in flex/grid chips this is ignored. */
svg.ico { vertical-align: middle; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--ink); color: var(--paper); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0;
  font-weight: 800;
  color: var(--ink);
  text-wrap: balance;
}

:focus-visible {
  outline: 3px solid rgba(132, 88, 240, 0.5);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap.narrow { max-width: var(--maxw-text); }
.section { padding-block: clamp(64px, 9vw, 118px); }
.section--tight { padding-block: clamp(34px, 5vw, 66px); }
.section--sink { background: var(--paper-sink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--label);
  max-width: 100%;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--sun);
}
.eyebrow--bare::before { display: none; }
.lead {
  color: var(--ink-2);
  font-size: 20px;
  line-height: 1.55;
  max-width: 56ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 15px;
  letter-spacing: 0;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn--primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: #2c2d36;
}
.btn--ghost {
  color: var(--ink);
  background: var(--paper-2);
  border-color: var(--line-2);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  color: var(--ink);
}
.btn--sm {
  min-height: 38px;
  padding: 8px 16px;
  font-size: 14px;
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 255, 0.72);
  backdrop-filter: saturate(1.1) blur(16px);
  border-bottom: 1px solid rgba(26, 27, 34, 0.07);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.topbar.is-stuck {
  background: rgba(251, 248, 255, 0.92);
  border-bottom-color: var(--line-2);
  box-shadow: 0 18px 40px -34px rgba(26, 27, 34, 0.4);
}
.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 20px;
  letter-spacing: 0;
  color: var(--ink);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 15px;
  color: var(--muted);
  transition: background 0.16s ease, color 0.16s ease;
}
.nav-link:hover {
  background: #fff;
  color: var(--ink);
}

/* UV spectrum ruler */
.uv-ruler {
  --mark: 78%;
  position: relative;
}
.uv-ruler__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.uv-ruler__cap {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
}
.uv-ruler__bands {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}
.uv-band {
  position: relative;
  border-radius: var(--radius-xs);
  padding: 12px;
  color: #fff;
  min-height: 62px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.uv-band b {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.1;
}
.uv-band .rng {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  opacity: 0.9;
}
.uv-band--low { background: var(--uv-low); color: #031c0e; }
.uv-band--mod { background: var(--uv-mod); color: #332600; }
.uv-band--high { background: var(--uv-high); color: #351d00; }
.uv-band--vhigh { background: var(--uv-vhigh); }
.uv-band--extreme { background: var(--uv-extreme); }
.uv-ruler__marker {
  position: absolute;
  top: -14px;
  left: var(--mark);
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.uv-ruler__chip {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0;
  color: #fff;
  background: var(--ink);
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.uv-ruler__needle {
  width: 2px;
  height: 16px;
  background: #fff;
  margin-top: 2px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.16);
}
.uv-ruler--animate .uv-ruler__marker {
  animation: ruler-settle 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes ruler-settle {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.hero-ruler {
  position: relative;
  z-index: 1;
  margin-top: clamp(4px, 1.6vw, 20px);
}

/* Feature rows */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}
.feature--reverse .feature-media { order: 2; }
.feature h2 {
  font-size: 42px;
  line-height: 1.08;
  margin-top: 16px;
}
.feature p.lead { margin-top: 18px; }
.feature-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 13px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 550;
  color: var(--ink-2);
}
.feature-list .check {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sun-soft);
  color: var(--sun-deep);
  font-size: 0; /* collapse the literal ✓; the icon is drawn below */
  margin-top: 2px;
}
.feature-list .check::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  -webkit-mask: var(--ico-check) center / 13px no-repeat;
  mask: var(--ico-check) center / 13px no-repeat;
}
.feature-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}
.feature-media::before {
  content: "";
  position: absolute;
  inset: 8% 14%;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(243, 239, 255, 0.76));
  border: 1px solid var(--line);
  transform: rotate(4deg);
}

/* Section heads */
.section-head {
  max-width: 690px;
  margin-bottom: clamp(38px, 6vw, 66px);
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.section-head.center .eyebrow {
  justify-content: center;
}
.section-head.center .lead {
  margin-inline: auto;
}
.section-head h2 {
  font-size: 48px;
  line-height: 1.08;
  margin-top: 16px;
}
.section-head .lead { margin-top: 16px; }

/* Reusable grids and cards */
.fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Two-up variant: exactly two cells, no empty trailing column. Collapses to
   one column via the shared .fgrid mobile rule (responsive.css). */
.fgrid--2 { grid-template-columns: repeat(2, 1fr); }
.fcard {
  display: flex;
  flex-direction: column;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.fcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-2);
}
/* Primary (dark/ink) contact card — makes "Email us" the obvious first action */
.fcard--ink {
  background: var(--ink);
  border-color: transparent;
  color: var(--paper);
}
.fcard--ink:hover { border-color: transparent; }
.fcard--ink h3 { color: var(--paper); }
.fcard--ink p { color: rgba(251, 248, 255, 0.7); }
.fcard--ink .fic { background: rgba(251, 248, 255, 0.1); color: var(--paper); }
.fcard .fic {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--sun-soft);
  color: var(--sun-deep); /* icon hue (currentColor) */
  margin-bottom: 18px;
}
.fcard .fic--sun { background: var(--sun-soft); color: var(--sun-deep); }
.fcard .fic--violet { background: var(--violet-soft); color: var(--violet); }
.fcard .fic--green { background: rgba(79, 168, 106, 0.14); color: #3f8a57; }
.fcard h3 {
  font-size: 20px;
  font-weight: 650;
}
.fcard p {
  color: var(--muted);
  margin: 9px 0 22px;
  font-size: 15px;
  line-height: 1.55;
}
.fcard a {
  color: var(--violet-deep);
  font-weight: 700;
}
.fcard a:hover { text-decoration: underline; }
/* Card actions pinned to the bottom edge so the row of cards reads evenly */
.card-btn,
.card-link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
}
.card-btn {
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: var(--shadow);
}
.card-link { color: var(--violet-deep); }
.card-link:hover { text-decoration: none; }
.card-link svg { transition: transform 0.2s ease; }
.card-link:hover svg { transform: translateX(3px); }

.cards, .stats, .outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review, .stat, .outcome {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.review h3, .outcome h3 {
  font-size: 19px;
  font-weight: 650;
}
.review p, .outcome p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
}
.stars { color: var(--sun); letter-spacing: 0; font-size: 15px; }
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}
.review-author img {
  width: 38px;
  height: 38px;
  border-radius: 999px;
}
.review-author b {
  font-size: 14px;
  font-weight: 650;
}
.review-author small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 550;
}
.stat .num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--violet-deep);
  line-height: 1;
}
.stat .label {
  color: var(--muted);
  font-weight: 550;
  margin-top: 10px;
  font-size: 15px;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 650;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}

/* CTA and footer */
/* Warm, light "sunrise" CTA panel — stays within the all-light Aurora theme
   (no dark section backgrounds). Warm cream into a faint lavender, with a soft
   sun glow top-left and a whisper of violet bottom-right. */
.cta {
  position: relative;
  overflow: clip;
  color: var(--ink);
  text-align: center;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: clamp(44px, 7vw, 84px) var(--gutter);
  background:
    radial-gradient(130% 150% at 12% -20%, rgba(238, 154, 58, 0.22), transparent 55%),
    radial-gradient(120% 160% at 100% 120%, rgba(132, 88, 240, 0.10), transparent 55%),
    linear-gradient(135deg, var(--paper-warm) 0%, var(--paper-2) 52%, var(--lavender) 100%);
  box-shadow: var(--shadow-sm);
}
.cta > * { position: relative; }
.cta h2 {
  color: var(--ink);
  font-size: 44px;
  line-height: 1.1;
}
.cta p {
  margin: 14px auto 0;
  max-width: 46ch;
  font-size: 18px;
  color: var(--ink-2);
}
.cta .appstore-badge { margin-top: 28px; }

.footer {
  position: relative;
  background: var(--lavender);
  color: var(--ink-2);
  padding-block: clamp(54px, 7vw, 84px) 40px;
  margin-top: clamp(64px, 9vw, 110px);
  border-top: 1px solid var(--line);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-grad);
}
.footer .brand { color: var(--ink); }

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .uv-ruler--animate .uv-ruler__marker { animation: none; }
  html { scroll-behavior: auto; }
}

/* Responsive — global chrome + shared utilities (foundation, header, feature
   rows, card grids, UV ruler). Home .lp-* breakpoints live in home/responsive.css.
   TODO: co-locate these overrides into each component's partial. */
@media (max-width: 920px) {
  .feature {
    grid-template-columns: 1fr;
  }
  .feature-list {
    text-align: left;
    max-width: 440px;
    margin-inline: auto;
  }
  .fgrid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding-block: 58px; }
  .lead { font-size: 18px; }
  .section-head h2,
  .feature h2,
  .cta h2 {
    font-size: 34px;
  }
  .uv-ruler__bands { gap: 3px; }
  .uv-band {
    padding: 9px 8px;
    min-height: 56px;
  }
  .uv-band b { font-size: 12px; }
  .uv-band .rng { font-size: 11px; }
  .uv-ruler__chip {
    font-size: 11px;
    padding: 4px 9px;
  }
}
/* ==========================================================================
   "Aurora" landing-page sections (home) — Plus Jakarta Sans
   ========================================================================== */
.lp-h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 14px 0 0;
}
.lp-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.lp-head .eyebrow { justify-content: center; }
.lp-head .lead { margin: 16px auto 0; }

/* Hero */
.lp-hero { position: relative; overflow: clip; }
.lp-hero::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle at 58% 42%, rgba(245, 224, 168, 0.4), rgba(222, 225, 253, 0.5) 48%, transparent 74%);
  filter: blur(8px);
  pointer-events: none;
}
.lp-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding-block: clamp(48px, 8vw, 100px) clamp(36px, 6vw, 64px);
}
.lp-hero__copy { max-width: 560px; }
.lp-hero__title {
  margin: 22px 0 0;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.lp-hero__copy .lead { margin-top: 22px; max-width: 32ch; }
.lp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 32px;
}
.lp-free { font-size: 14px; color: var(--muted); }
.lp-hero__media { display: flex; justify-content: center; }
.lp-hero__phone {
  width: clamp(280px, 40vw, 460px);
  height: auto;
  filter: drop-shadow(0 40px 60px rgba(26, 27, 34, 0.22));
  animation: lpFloat 7s ease-in-out infinite;
}
@keyframes lpFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Interactive UV chart */
.uvchart {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(26px, 4vw, 50px);
  box-shadow: var(--shadow);
}
.uvchart__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.uvchart__intro { max-width: 560px; }
.uvchart__kicker {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.uvchart__title {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.uvchart__readout { text-align: right; min-width: 200px; }
.uvchart__at { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.uvchart__big {
  display: flex;
  align-items: baseline;
  gap: 10px;
  justify-content: flex-end;
}
.uvchart__uv {
  font-size: clamp(40px, 6vw, 58px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.uvchart__level { font-size: 18px; font-weight: 700; }
.uvchart__burn { font-size: 14px; color: var(--ink-2); margin-top: 6px; }
.uvchart__bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 14px;
}
.uvchart__bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 150px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.uvchart__fill {
  width: 100%;
  max-width: 30px;
  height: var(--h);
  border-radius: 7px;
  background: rgba(26, 27, 34, 0.1);
  transition: height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.25s ease, box-shadow 0.25s ease;
}
.uvchart__bar:hover .uvchart__fill { background: rgba(26, 27, 34, 0.2); }
.uvchart__bar.is-active .uvchart__fill {
  background: var(--c);
  box-shadow: 0 10px 24px -6px var(--c);
}
.uvchart__ramp {
  height: 8px;
  border-radius: 999px;
  background: var(--uv-ramp);
  margin-bottom: 12px;
  opacity: 0.9;
}
.uvchart__scale {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.uvchart__hint {
  font-size: 14px;
  color: var(--muted);
  margin: 18px 0 0;
  text-align: center;
}

/* Problem */
.lp-problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.lp-problem__copy .lead { margin-top: 18px; max-width: 42ch; }
.lp-problem__cards { display: flex; flex-direction: column; gap: 14px; }
.lp-mini {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 24px;
}
.lp-mini__ic {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.lp-tone--green .lp-mini__ic { background: rgba(79, 168, 106, 0.14); color: #3f8a57; }
.lp-tone--sun .lp-mini__ic { background: rgba(238, 154, 58, 0.16); color: var(--sun-deep); }
.lp-tone--violet .lp-mini__ic { background: rgba(132, 88, 240, 0.14); color: var(--violet); }
.lp-mini__t { font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.lp-mini p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.5; }

/* Feature 3-up */
.lp-feat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-fcard {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px 30px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lp-fcard__t { font-weight: 700; font-size: 21px; margin-bottom: 8px; }
.lp-fcard p { color: var(--ink-2); font-size: 15px; margin: 0 0 26px; line-height: 1.55; }
/* Constrain the device renders by a uniform HEIGHT (not width): the three
   source crops have different aspect ratios, so a shared max-width rendered
   them at wildly different sizes. Equal height + bottom alignment keeps the
   phones visually consistent and flush to the card's bottom edge. */
.lp-fcard__media {
  margin-top: auto;
  height: clamp(290px, 30vw, 360px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.lp-fcard__media img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
}

/* Split rows */
.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(36px, 5vw, 80px);
}
.lp-split__media { display: flex; justify-content: center; }
.lp-split__phone {
  width: clamp(240px, 32vw, 380px);
  height: auto;
  filter: drop-shadow(0 34px 50px rgba(26, 27, 34, 0.2));
  animation: lpFloat 8s ease-in-out infinite;
}
.lp-split__copy .lead { margin-top: 18px; max-width: 44ch; }
.lp-split--reverse .lp-split__media { order: 2; }

.lp-checks {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}
.lp-checks li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink); }
.lp-check {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(79, 168, 106, 0.15);
  color: var(--green);
  font-size: 0; /* collapse the literal ✓; the icon is drawn below */
  margin-top: 1px;
}
.lp-check::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  -webkit-mask: var(--ico-check) center / 13px no-repeat;
  mask: var(--ico-check) center / 13px no-repeat;
}

/* Steps */
.lp-steps__head { max-width: 560px; margin-bottom: clamp(36px, 5vw, 56px); }
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lp-step {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 26px;
}
.lp-step__n { font-size: 15px; font-weight: 800; margin-bottom: 16px; }
.lp-num--green { color: var(--uv-low); }
.lp-num--mod { color: var(--uv-mod); }
.lp-num--high { color: var(--uv-high); }
.lp-num--violet { color: var(--uv-extreme); }
.lp-step__t { font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.lp-step p { color: var(--ink-2); font-size: 15px; margin: 0; line-height: 1.55; }

/* What changes */
.lp-changes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lp-change {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px 30px;
}
.lp-change__big { font-size: 38px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 12px; }
.lp-text--green { color: var(--green); }
.lp-text--rose { color: var(--rose); }
.lp-text--sun { color: var(--sun); }
.lp-change__sub { font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.lp-change p { color: var(--ink-2); font-size: 15px; margin: 0; line-height: 1.55; }

/* Testimonials (placeholder copy) */
.lp-quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.lp-quote {
  margin: 0;
  background: var(--paper-violet);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3vw, 40px);
}
.lp-quote blockquote {
  margin: 0 0 24px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.lp-quote figcaption { display: flex; align-items: center; gap: 14px; }
.lp-quote__av {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #8458f0, #e2563c 55%, #ee9a3a);
}
.lp-quote__who { display: flex; flex-direction: column; }
.lp-quote__who b { font-size: 15px; font-weight: 700; }
.lp-quote__who small { font-size: 14px; color: var(--muted); }

/* Final CTA */
.lp-cta {
  position: relative;
  overflow: clip;
  padding-block: clamp(64px, 9vw, 120px);
}
.lp-cta::before {
  content: "";
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  height: 420px;
  background: radial-gradient(ellipse at 50% 0, rgba(222, 225, 253, 0.55), rgba(245, 224, 168, 0.22) 55%, transparent 72%);
  pointer-events: none;
}
.lp-cta__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.lp-cta__title {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.lp-cta__copy .lead { margin-top: 18px; max-width: 40ch; }
.lp-cta__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 30px;
}
.lp-cta__media { display: flex; justify-content: center; }
.lp-cta__media img {
  width: clamp(220px, 30vw, 340px);
  height: auto;
  filter: drop-shadow(0 34px 50px rgba(26, 27, 34, 0.2));
  animation: lpFloat 7s ease-in-out infinite;
}

/* Sticky mobile download bar */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: saturate(1.3) blur(18px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -18px 38px -30px rgba(20, 19, 18, 0.48);
  transform: translateY(130%);
  visibility: hidden;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s;
}
.sticky-cta.is-visible {
  transform: none;
  visibility: visible;
}
.sticky-cta__icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.sticky-cta__txt {
  flex: 1;
  min-width: 0;
  line-height: 1.25;
}
.sticky-cta__name {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 15px;
  color: var(--ink);
}
.sticky-cta__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0;
  color: var(--muted);
}
.sticky-cta__btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow-brand);
}
.sticky-cta__btn:active { transform: scale(0.97); }
@media (min-width: 621px) {
  .sticky-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-hero__phone,
  .lp-split__phone,
  .lp-cta__media img { animation: none; }
}

/* Landing responsive */
@media (max-width: 980px) {
  .lp-hero__grid { grid-template-columns: 1fr; }
  .lp-hero__media { order: -1; }
  .lp-hero__phone { width: min(340px, 70vw); }
  .lp-problem { grid-template-columns: 1fr; }
  .lp-feat { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .lp-split { grid-template-columns: 1fr; }
  .lp-split__media { order: -1 !important; }
  .lp-steps { grid-template-columns: repeat(2, 1fr); }
  .lp-changes { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .lp-quotes { grid-template-columns: 1fr; }
  .lp-cta__grid { grid-template-columns: 1fr; }
  .lp-cta__media { order: -1; }
}
@media (max-width: 620px) {
  .uvchart__head { flex-direction: column; align-items: flex-start; }
  .uvchart__readout { text-align: left; }
  .uvchart__big { justify-content: flex-start; }
  .uvchart__scale span:nth-child(2),
  .uvchart__scale span:nth-child(4),
  .uvchart__scale span:nth-child(6) { display: none; }
  .lp-steps { grid-template-columns: 1fr; }
}
