/* =========================================================
   Palette tokens (from provided palette.css)
   ========================================================= */
:root {
  /* cream / surface */
  --whitesmoke-400: #f1f1ec;
  --whitesmoke-500: #f4f3ed;
  --whitesmoke-600: #f5f3ee;
  --linen-100: #f3f0ea;
  --gainsboro-100: #dedede;
  --gainsboro-200: #d9d9d9;
  --white-100: #ffffff;

  /* gold / khaki */
  --gold-100: #fdda28;
  --gold-200: #f2c200;
  --gold-700: #efc523;
  --gold-800: #f4c400;
  --gold-900: #efbf0e;
  --goldenrod-100: #e6b720;
  --goldenrod-300: #d4a100;
  --goldenrod-700: #e0b400;
  --darkgoldenrod-100: #bd8b2d;
  --olive-100: #806503;
  --khaki-200: #f9e363;

  /* navy / steel / slate */
  --midnightblue-100: #0c1257;
  --midnightblue-200: #000843;
  --darkslateblue-300: #202b4e;
  --darkslateblue-500: #031c46;
  --darkslateblue-600: #061a44;
  --darkslateblue-700: #0d1b4c;
  --darkslateblue-800: #1e2a5a;
  --steelblue-100: #1990c6;
  --steelblue-200: #136f99;
  --slategray: rgb(75, 117, 146);
  --lightseagreen: rgb(58, 168, 152);

  /* neutrals */
  --black-100: #121212;
  --dimgray-100: #555;
  --dimgray-200: #4b5563;
  --lightgray-100: #d1d5db;

  /* =========================================================
     Design tokens — re-derived from the palette
     ========================================================= */
  /* Navy is the dominant surface. "light" tokens are kept as names so
     the rest of the stylesheet doesn't need to change — they just map
     to navy shades now. */
  --bg: var(--midnightblue-100);
  --bg-elev: var(--darkslateblue-700);
  --bg-soft: var(--darkslateblue-300);
  --bg-light: var(--darkslateblue-500);       /* page surface */
  --bg-light-soft: var(--darkslateblue-700);  /* elevated cards */
  --bg-light-warm: var(--darkslateblue-600);  /* alt section */

  --ink: #ffffff;
  --ink-dim: rgba(255, 255, 255, 0.72);
  --ink-faint: rgba(255, 255, 255, 0.5);

  --ink-dark: #ffffff;                         /* now white — surfaces are navy */
  --ink-dark-dim: rgba(255, 255, 255, 0.72);
  --ink-dark-faint: rgba(255, 255, 255, 0.5);

  --accent: var(--gold-800);
  --accent-hover: var(--gold-100);
  --accent-deep: var(--gold-700);
  --accent-ink: var(--gold-100);
  --accent-soft: var(--khaki-200);

  --navy: var(--darkslateblue-500);
  --navy-deep: var(--midnightblue-100);
  --steel: var(--steelblue-200);

  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(255, 255, 255, 0.08);
  --line-dark-strong: rgba(255, 255, 255, 0.2);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --container-narrow: 860px;

  /* Fluid type scale — restrained, editorial */
  --step-eyebrow: clamp(0.68rem, 0.66rem + 0.1vw, 0.72rem);
  --step-lead: clamp(1.05rem, 1rem + 0.3vw, 1.18rem);
  --step-h2: clamp(2.1rem, 1.5rem + 2.6vw, 3.35rem);
  --step-h1: clamp(2.6rem, 1.6rem + 4.4vw, 5rem);
  --step-cta: clamp(2.4rem, 1.6rem + 3.4vw, 4rem);

  /* Depth — soft, layered, never glowy */
  --shadow-sm: 0 1px 2px rgba(3, 12, 40, 0.4);
  --shadow-md: 0 10px 30px -12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 28px 60px -24px rgba(0, 0, 0, 0.6);
  --shadow-product: 0 40px 70px -28px rgba(0, 0, 0, 0.62);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 720ms;

  /* Vertical section rhythm — fluid, consistent */
  --section-y: clamp(80px, 6vw + 40px, 140px);
  --section-y-lg: clamp(96px, 8vw + 40px, 168px);
}

* { box-sizing: border-box; }

/* Anything wired to open the offer */
.is-clickable { cursor: pointer; }
.is-clickable:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
  border-radius: 8px;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg-light);
  color: var(--ink-dark);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   Typography
   ========================================================= */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step-eyebrow);
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before {
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  width: 40px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--step-h2);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 32px;
  text-wrap: balance;
}
.section-title.center { text-align: center; margin-left: auto; margin-right: auto; max-width: 720px; }

.italic { font-style: italic; color: var(--accent); font-weight: 400; }

.lead {
  font-family: var(--font-body);
  font-size: var(--step-lead);
  line-height: 1.72;
  color: var(--ink-dim);
  max-width: 60ch;
  margin: 0 0 24px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform 300ms var(--ease), background 300ms var(--ease), box-shadow 300ms var(--ease);
  will-change: transform;
}
.btn--primary {
  background: linear-gradient(180deg, #f7cf3a 0%, var(--accent) 100%);
  color: var(--navy-deep);
  font-weight: 600;
  box-shadow:
    0 12px 28px -14px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 40px -16px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(247, 207, 58, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.btn--primary:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.btn--lg {
  padding: 22px 48px;
  font-size: 16px;
}
.btn__arrow {
  display: inline-block;
  transition: transform 300ms var(--ease);
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 94vh;
  min-height: 94dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 0 56px;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--ink);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(244, 196, 0, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(19, 144, 198, 0.10), transparent 65%);
  z-index: 0;
}
.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--step-h1);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 26px;
  color: var(--ink);
  text-wrap: balance;
}
.hero__sub {
  font-size: var(--step-lead);
  color: var(--ink-dim);
  max-width: 56ch;
  margin: 0 auto 44px;
  line-height: 1.65;
}
.hero__stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(24px, 5vw, 72px);
  margin-bottom: 48px;
}
.hero__kevin {
  margin: 0;
  text-align: center;
  flex: 0 1 280px;
}
.hero__kevin img {
  width: clamp(180px, 22vw, 300px);
  height: auto;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.55));
}
.hero__kevin figcaption {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.hero__products {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 40px);
  margin-bottom: 0;
  flex-wrap: nowrap;
}
.hero__product {
  margin: 0;
  text-align: center;
  max-width: 210px;
}
.hero__product img {
  width: clamp(160px, 20vw, 260px);
  height: auto;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.5));
  transition: transform 600ms var(--ease);
}
.hero__product--new img {
  filter:
    drop-shadow(0 34px 54px rgba(0, 0, 0, 0.5))
    drop-shadow(0 8px 30px rgba(244, 196, 0, 0.14));
}
.hero__product:hover img { transform: translateY(-6px) scale(1.02); }
.hero__product figcaption {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero__product--new figcaption { color: var(--accent); font-weight: 600; }
.hero__arrow {
  font-size: 28px;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 300;
}
.hero__scroll {
  margin-top: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--ink-faint), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* =========================================================
   STORY
   ========================================================= */
.story {
  padding: var(--section-y) 0;
  background: var(--bg-light);
  color: var(--ink-dark);
}
.story__inner {
  max-width: var(--container-narrow);
  text-align: left;
}
.story .section-title { color: var(--ink-dark); }
.story .lead { color: var(--ink-dark-dim); }
.story .lead:last-of-type { margin-bottom: 0; color: var(--ink-dark); }

/* =========================================================
   COMPARE
   ========================================================= */
.compare {
  padding: var(--section-y) 0;
  background: var(--bg-light-warm);
  color: var(--ink-dark);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.compare .section-title { color: var(--ink-dark); }
.compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}
.compare__card {
  position: relative;
  background: var(--bg-light-soft);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  padding: 40px;
  transition: transform 400ms var(--ease), border-color 400ms var(--ease), box-shadow 400ms var(--ease);
}
.compare__card:hover {
  transform: translateY(-4px);
  border-color: var(--line-dark-strong);
  box-shadow: var(--shadow-lg);
}
.compare__card--featured {
  border-color: rgba(244, 196, 0, 0.55);
  background:
    linear-gradient(180deg, rgba(244, 196, 0, 0.10), var(--bg-light-soft) 60%);
}
.compare__card--featured::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 24px;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(244, 196, 0, 0.16), transparent 45%);
  opacity: 0.7;
}
.compare__media {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.compare__media img {
  max-height: 100%;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}
.compare__card--featured .compare__media img {
  filter:
    drop-shadow(0 20px 40px rgba(244, 196, 0, 0.3))
    drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}
.compare__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 6px 12px;
  border: 1px solid var(--line-dark-strong);
  border-radius: 999px;
  margin-bottom: 16px;
}
.compare__tag--new {
  color: var(--accent);
  background: rgba(244, 196, 0, 0.15);
  border-color: rgba(244, 196, 0, 0.55);
  font-weight: 600;
}
.compare__card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: 0;
  margin: 0 0 12px;
  color: var(--ink-dark);
}
.compare__card p {
  color: var(--ink-dark-dim);
  margin: 0;
  font-size: 1rem;
}

/* =========================================================
   FOUNDER  (dark navy section — anchor of the page)
   ========================================================= */
.founder {
  padding: var(--section-y) 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(244, 196, 0, 0.14), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(19, 144, 198, 0.10), transparent 60%),
    linear-gradient(180deg, var(--darkslateblue-700) 0%, var(--midnightblue-100) 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.founder::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  pointer-events: none;
}
.founder__inner {
  max-width: var(--container-narrow);
  text-align: center;
  position: relative;
  z-index: 1;
}
.founder__inner .eyebrow,
.founder__inner .section-title,
.founder__inner .lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.founder__inner .section-title {
  font-style: italic;
  color: var(--ink);
  font-weight: 300;
}
.founder__inner .lead { color: var(--ink-dim); }

.founder__media {
  margin-top: 56px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
  background: var(--bg-elev);
  aspect-ratio: 16 / 9;
}
.founder__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   HIGHLIGHTS
   ========================================================= */
.highlights {
  padding: var(--section-y) 0;
  background: var(--bg-light);
  color: var(--ink-dark);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.highlights .section-title { color: var(--ink-dark); }
.highlights__grid {
  list-style: none;
  padding: 0;
  margin: 64px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.45);
}
.highlights__item {
  padding: 48px;
  background: var(--bg-light-soft);
  transition: background 400ms var(--ease), transform 400ms var(--ease);
}
.highlights__item:hover {
  background: var(--darkslateblue-800);
  transform: translateY(-2px);
}
.highlights__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 24px;
}
.highlights__item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0;
  margin: 0 0 12px;
  color: var(--ink-dark);
}
.highlights__item p {
  color: var(--ink-dark-dim);
  margin: 0;
  font-size: 0.98rem;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  padding: var(--section-y-lg) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
  color: var(--ink-dark);
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(244, 196, 0, 0.24), transparent 70%),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(19, 111, 153, 0.08), transparent 70%);
  z-index: 0;
}
.cta__inner { position: relative; z-index: 1; }
.cta__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--step-cta);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink-dark);
  text-wrap: balance;
}
.cta__sub {
  font-size: 1.2rem;
  color: var(--ink-dark-dim);
  margin: 0 0 48px;
}
.cta__fine {
  margin-top: 24px;
  font-size: 12px;
  color: var(--ink-dark-faint);
  letter-spacing: 0.05em;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--line-dark);
  background: var(--bg-light);
}
.footer__inner {
  text-align: center;
  font-size: 12px;
  color: var(--ink-dark-faint);
}

/* =========================================================
   Sticky CTA bar
   ========================================================= */
.stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(6, 15, 44, 0.85), rgba(0, 8, 40, 0.96));
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-top: 1px solid rgba(244, 196, 0, 0.35);
  box-shadow: 0 -12px 40px -18px rgba(0, 0, 0, 0.7);
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 480ms var(--ease), opacity 360ms var(--ease), visibility 0s linear 480ms;
}
.stickybar.is-shown {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform 480ms var(--ease), opacity 360ms var(--ease), visibility 0s;
}
.stickybar__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.stickybar__text {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.stickybar__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
}
.stickybar__sub {
  font-size: 0.82rem;
  color: var(--ink-dim);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.stickybar__btn {
  flex: 0 0 auto;
  padding: 14px 26px;
  font-size: 14px;
}
@media (max-width: 560px) {
  .stickybar__inner { gap: 12px; }
  .stickybar__lead { font-size: 1rem; }
  .stickybar__sub { display: none; }
  .stickybar__btn { padding: 13px 20px; font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .stickybar { transition: opacity 200ms linear, visibility 0s linear 200ms; transform: none; }
  .stickybar.is-shown { transition: opacity 200ms linear; }
}

/* =========================================================
   Yellow info banner
   ========================================================= */
.banner {
  background:
    radial-gradient(ellipse 70% 120% at 50% 0%, rgba(244, 196, 0, 0.08), transparent 70%),
    var(--midnightblue-200);
  color: var(--ink);
  padding: 72px 0;
  position: relative;
  border-top: 1px solid rgba(244, 196, 0, 0.28);
  border-bottom: 1px solid var(--line);
}
.banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.banner__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 auto 40px;
  color: var(--ink);
  max-width: 20ch;
  text-wrap: balance;
}
.banner__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 40px;
  text-align: left;
  max-width: 720px;
}
.banner__list li {
  font-size: 0.98rem;
  font-weight: 500;
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--ink-dim);
}
.banner__list li::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(244, 196, 0, 0.5);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4c400' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center / 13px no-repeat,
    rgba(244, 196, 0, 0.1);
}

/* =========================================================
   Trust badges row
   ========================================================= */
.badges {
  padding: 72px 0;
  background: var(--bg-light);
  color: var(--ink-dark);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.badges__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.badges__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.badges__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(244, 196, 0, 0.22), rgba(244, 196, 0, 0.06));
  border: 1px solid rgba(244, 196, 0, 0.55);
  color: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 300ms var(--ease), border-color 300ms var(--ease), box-shadow 300ms var(--ease);
}
.badges__item:hover .badges__icon {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 12px 24px -12px rgba(244, 196, 0, 0.6),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.badges__icon svg { width: 24px; height: 24px; }
.badges__label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.4;
}

/* =========================================================
   Founder portrait
   ========================================================= */
.founder__portrait {
  margin: 48px auto 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow:
    0 20px 50px -15px rgba(244, 196, 0, 0.35),
    0 0 0 6px rgba(244, 196, 0, 0.08);
}
.founder__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder__name {
  margin-top: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 400;
}
.founder__role {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 4px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 72px 0 48px;
  }
  .hero__title {
    font-size: 2.85rem;
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .hero__sub { font-size: 1.08rem; }
  .hero__sub { margin-bottom: 32px; }
  .hero__stage {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-bottom: 38px;
  }
  .hero__kevin { flex-basis: auto; }
  .hero__kevin img { width: min(58vw, 220px); }
  .hero__products {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr);
    width: 100%;
    max-width: 340px;
    gap: 10px;
  }
  .hero__product {
    max-width: none;
    min-width: 0;
  }
  .hero__product img {
    width: 100%;
    max-width: 140px;
    margin: 0 auto;
  }
  .hero__arrow {
    font-size: 20px;
    transform: none;
  }
  .story, .compare, .founder, .highlights { padding: 80px 0; }
  .cta { padding: 100px 0; }
  .section-title { font-size: 2.55rem; }
  .cta__title { font-size: 3.1rem; }
  .banner__title { font-size: 1.65rem; }
  .compare__grid { grid-template-columns: 1fr; gap: 16px; }
  .compare__card { padding: 28px; }
  .compare__media { height: 220px; }
  .highlights__grid { grid-template-columns: 1fr; }
  .highlights__item { padding: 32px; }
  .badges { padding: 48px 0; }
  .badges__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .banner { padding: 44px 0; }
}

@media (max-width: 480px) {
  .btn { padding: 16px 28px; font-size: 14px; }
  .btn--lg { padding: 18px 36px; font-size: 15px; }
  .hero__title { font-size: 2.2rem; }
  .section-title { font-size: 2.15rem; }
  .cta__title { font-size: 2.45rem; }
  .banner__title { font-size: 1.45rem; }
  .hero__kevin figcaption,
  .hero__product figcaption {
    letter-spacing: 0.16em;
  }
}

/* =========================================================
   SQUEEZE PAGE (rich) — 2-col hero + image cards + author
   ========================================================= */

/* Bigger CTA + ghost variant */
.btn--xl {
  padding: 24px 52px;
  font-size: 18px;
  font-weight: 700;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  font-weight: 600;
}
.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent-soft);
}
@media (max-width: 480px) {
  .btn--xl { padding: 20px 30px; font-size: 16px; width: 100%; }
}

/* Announcement strip */
.topstrip {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 11px 18px; text-align: center;
  font-size: 0.9rem; font-weight: 500; color: var(--ink);
  background: linear-gradient(90deg, rgba(244,196,0,0.14), rgba(244,196,0,0.30), rgba(244,196,0,0.14));
  border-bottom: 1px solid rgba(244, 196, 0, 0.4);
}
.topstrip strong { color: var(--accent-soft); }
.topstrip__dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--accent);
  animation: pulseDot 1.8s ease-out infinite; flex: 0 0 auto;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(244,196,0,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(244,196,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(244,196,0,0); }
}
@media (prefers-reduced-motion: reduce) { .topstrip__dot { animation: none; } }

/* ---------- HERO (2-column) ---------- */
.fhero {
  position: relative; overflow: hidden;
  padding: clamp(48px, 5vw, 84px) 0 clamp(56px, 6vw, 96px);
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--ink);
}
.fhero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 55% 60% at 78% 30%, rgba(244, 196, 0, 0.20), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(19, 144, 198, 0.12), transparent 65%);
}
.fhero__bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 70%);
}
.fhero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.fhero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.3rem, 1.4rem + 3.4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 6px 0 24px;
  color: var(--ink);
  text-wrap: balance;
}
.fhero__price { white-space: nowrap; }
.fhero__title .strike {
  position: relative; color: var(--ink-dim); font-style: italic;
}
.fhero__title .strike::after {
  content: ""; position: absolute; left: -3%; right: -3%; top: 52%;
  height: 3px; border-radius: 2px; background: #e5484d; transform: rotate(-6deg);
}
.fhero__sub {
  font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.16rem);
  line-height: 1.64; color: var(--ink-dim); max-width: 56ch; margin: 0 0 30px;
}
.fhero__sub strong { color: var(--ink); font-weight: 600; }
.fhero__cta { margin-bottom: 22px; }
.fhero__reassure { margin: 14px 0 0; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--ink-faint); }
.fhero__note {
  max-width: 52ch; margin: 0; font-size: 0.96rem; line-height: 1.6;
  color: var(--accent-soft); font-style: italic;
}

/* Hero visual — book cover + burst badge */
.fhero__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 340px;
}
.fhero__glow {
  position: absolute; inset: 8% 12%;
  background: radial-gradient(ellipse at center, rgba(244,196,0,0.35), transparent 68%);
  filter: blur(18px);
}
/* Real product image (book + phone audio player + headphones).
   Expects a TRANSPARENT cutout — no box/frame, just a soft product shadow
   so it floats on the navy hero. */
.fhero__product {
  position: relative; z-index: 1;
  width: clamp(280px, 34vw, 460px);
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55)) drop-shadow(0 6px 20px rgba(244,196,0,0.14));
  transition: transform 600ms var(--ease);
}
.fhero__visual:hover .fhero__product { transform: translateY(-6px) scale(1.015); }
/* Headphones icon inside the CTA button */
.btn__headphones { display: inline-flex; }
.btn__headphones svg { width: 20px; height: 20px; }
.fhero__burst {
  position: absolute; z-index: 2;
  top: 2%; right: 2%;
  width: clamp(96px, 11vw, 132px); height: clamp(96px, 11vw, 132px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--navy-deep);
  background: radial-gradient(circle at 50% 40%, #ffe884 0%, var(--accent) 70%);
  border-radius: 50%;
  box-shadow: 0 16px 34px -12px rgba(244,196,0,0.7), inset 0 2px 0 rgba(255,255,255,0.5);
  transform: rotate(10deg);
  animation: badgePop 3.2s ease-in-out infinite;
}
@keyframes badgePop {
  0%, 100% { transform: rotate(10deg) scale(1); }
  50% { transform: rotate(10deg) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) { .fhero__burst { animation: none; } }
.fhero__burst-was { font-size: 0.6rem; font-weight: 600; text-decoration: line-through; opacity: 0.75; }
.fhero__burst-free { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1; }
.fhero__burst-today { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

/* ---------- VALUE STRIP ---------- */
.valuestrip {
  background: var(--midnightblue-200);
  border-top: 1px solid rgba(244,196,0,0.25);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.valuestrip__inner {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 5vw, 64px); flex-wrap: wrap;
}
.valuestrip__item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.valuestrip__big {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.8rem, 1.2rem + 2vw, 2.8rem);
  color: var(--ink-dim); line-height: 1;
}
.valuestrip__item--free .valuestrip__big { color: var(--accent); font-weight: 600; }
.valuestrip__label { font-size: 0.82rem; color: var(--ink-faint); letter-spacing: 0.02em; }
.valuestrip__div { width: 1px; height: 40px; background: var(--line-strong); }

/* ---------- MORE (image cards) ---------- */
.more {
  padding: var(--section-y) 0;
  background: var(--bg-light); color: var(--ink-dark);
  border-top: 1px solid var(--line-dark);
}
.more__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.more__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--step-h2); line-height: 1.1; letter-spacing: -0.015em;
  color: var(--ink-dark); margin: 0 0 16px;
}
.more__intro { color: var(--ink-dark-dim); font-size: 1.05rem; margin: 0; }

.pcards {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 980px; margin: 0 auto;
}
.pcard {
  display: flex; flex-direction: column;
  background: var(--bg-light-soft);
  border: 1px solid var(--line-dark);
  border-radius: 22px; overflow: hidden;
  transition: transform 380ms var(--ease), border-color 380ms var(--ease), box-shadow 380ms var(--ease);
}
.pcard:hover {
  transform: translateY(-5px);
  border-color: var(--line-dark-strong);
  box-shadow: var(--shadow-lg);
}
.pcard--gin { border-color: rgba(244,196,0,0.5); }
.pcard__media {
  height: 230px; display: flex; align-items: center; justify-content: center;
  padding: 28px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(244,196,0,0.10), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
  border-bottom: 1px solid var(--line-dark);
}
.pcard__media img {
  max-height: 100%; width: auto;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,0.5));
  transition: transform 500ms var(--ease);
}
.pcard:hover .pcard__media img { transform: translateY(-4px) scale(1.03); }

/* GIN crest (no product photo) */
.pcard__media--crest {
  background:
    radial-gradient(ellipse 70% 70% at 50% 40%, rgba(244,196,0,0.18), transparent 70%),
    linear-gradient(180deg, var(--darkslateblue-800), var(--bg-light-soft));
}
.gin-crest {
  position: relative; width: 150px; height: 150px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--accent-soft); text-align: center;
}
.gin-crest__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(244,196,0,0.55);
  box-shadow: 0 0 0 8px rgba(244,196,0,0.06), inset 0 0 24px rgba(244,196,0,0.12);
}
.gin-crest__mono {
  font-family: var(--font-display); font-weight: 500;
  font-size: 2.6rem; letter-spacing: 0.08em; color: var(--accent);
  line-height: 1;
}
.gin-crest__sub {
  margin-top: 8px; font-size: 0.56rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-dim); max-width: 90px;
}

.pcard__body { padding: 28px 30px 32px; display: flex; flex-direction: column; flex: 1; }
.pcard__tag {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--accent); margin-bottom: 12px;
}
.pcard__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.6rem; line-height: 1.12; color: var(--ink-dark); margin: 0 0 10px;
}
.pcard__desc { color: var(--ink-dark-dim); font-size: 0.97rem; line-height: 1.6; margin: 0 0 24px; }
.pcard__btn { margin-top: auto; width: 100%; }
.pcard__btns { margin-top: auto; display: flex; gap: 12px; }
.pcard__btns .pcard__btn { margin-top: 0; flex: 1; padding-left: 18px; padding-right: 18px; }

/* ---------- AUTHOR ---------- */
.author {
  padding: var(--section-y) 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(244,196,0,0.12), transparent 60%),
    linear-gradient(180deg, var(--darkslateblue-700), var(--midnightblue-100));
  color: var(--ink);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.author__inner {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  align-items: center; gap: clamp(32px, 5vw, 64px);
  max-width: 980px; margin: 0 auto;
}
.author__portrait {
  justify-self: center;
  width: clamp(180px, 22vw, 260px);
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(244,196,0,0.4);
  box-shadow: 0 40px 70px -24px rgba(0,0,0,0.6), 0 0 0 6px rgba(244,196,0,0.06);
}
.author__portrait img { width: 100%; display: block; }
.author__title {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(2rem, 1.4rem + 2vw, 3rem); color: var(--ink); margin: 0 0 18px;
}
.author__lead { font-size: 1.08rem; line-height: 1.7; color: var(--ink-dim); margin: 0 0 28px; max-width: 54ch; }

/* ---------- RECLAIM ---------- */
.reclaim {
  padding: var(--section-y-lg) 0; text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--darkslateblue-700) 0%, var(--midnightblue-100) 100%);
  color: var(--ink); border-top: 1px solid var(--line);
}
.reclaim::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 45% at 50% 40%, rgba(244, 196, 0, 0.24), transparent 70%);
}
.reclaim__inner { position: relative; z-index: 1; }
.reclaim__title {
  font-family: var(--font-display); font-weight: 300;
  font-size: var(--step-cta); line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 18px; color: var(--ink); text-wrap: balance;
}
.reclaim__sub { font-size: 1.15rem; color: var(--ink-dim); margin: 0 0 40px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .fhero__inner { grid-template-columns: 1fr; text-align: center; }
  .fhero .eyebrow { justify-content: center; }
  .fhero__sub, .fhero__note { margin-left: auto; margin-right: auto; }
  .fhero__visual { order: -1; min-height: 0; margin-bottom: 8px; }
  .fhero__product { width: clamp(240px, 58vw, 340px); }
  .author__inner { grid-template-columns: 1fr; text-align: center; }
  .author__lead { margin-left: auto; margin-right: auto; }
  .author .eyebrow { justify-content: center; }
}

/* On phones: lift the CTA above the long paragraph so it's visible without
   scrolling. The copy column becomes a flex column and we reorder children:
   eyebrow → title → CTA → sub → note. */
@media (max-width: 680px) {
  .pcards { grid-template-columns: 1fr; }
  .valuestrip__div { display: none; }
  .valuestrip__inner { gap: 22px; }
  .topstrip { font-size: 0.8rem; }
  .pcard__media { height: 200px; }

  .fhero { padding-top: 20px; }
  .fhero__inner { gap: 18px; }
  .fhero__visual { margin-bottom: 0; }
  .fhero__product { width: clamp(190px, 52vw, 260px); }

  .fhero__copy { display: flex; flex-direction: column; }
  .fhero__copy .eyebrow  { order: 1; margin-bottom: 10px; }
  .fhero__title          { order: 2; margin: 0 0 18px; font-size: clamp(1.9rem, 6vw, 2.5rem); }
  .fhero__cta            { order: 3; margin-bottom: 16px; }
  .fhero__copy .affiliate-notice { order: 4; margin: 0 auto 14px; }
  .fhero__sub            { order: 5; margin-bottom: 18px; font-size: 1rem; }
  .fhero__note           { order: 6; }
}

/* =========================================================
   COMPLIANCE + EDUCATIONAL + CONSENT (Pinterest / FTC)
   ========================================================= */

/* Visible affiliate disclosure near the first CTA */
.affiliate-notice {
  max-width: 640px;
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-faint);
}
.affiliate-notice strong { color: var(--ink-dim); }
.affiliate-notice a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* Footer legal links */
.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-bottom: 18px;
}
.footer__links a {
  color: var(--ink-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.85rem;
}
.footer__links a:hover { color: var(--accent); }
.footer__inner p + p { margin-top: 12px; }

/* ---------- Educational section ---------- */
.learn {
  padding: var(--section-y) 0;
  background: var(--bg-light-warm);
  color: var(--ink-dark);
  border-top: 1px solid var(--line-dark);
}
.learn__head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.learn__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--step-h2); line-height: 1.1; letter-spacing: -0.015em;
  color: var(--ink-dark); margin: 0 0 16px;
}
.learn__intro { color: var(--ink-dark-dim); font-size: 1.05rem; margin: 0; }
.learn__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; max-width: 900px; margin: 0 auto;
}
.learn__card {
  background: var(--bg-light-soft);
  border: 1px solid var(--line-dark);
  border-radius: 18px; padding: 30px 32px;
  transition: transform 340ms var(--ease), border-color 340ms var(--ease);
}
.learn__card:hover { transform: translateY(-3px); border-color: var(--line-dark-strong); }
.learn__num {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 1.3rem; color: var(--accent); display: block; margin-bottom: 12px;
}
.learn__card h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.3rem; color: var(--ink-dark); margin: 0 0 10px;
}
.learn__card p { color: var(--ink-dark-dim); font-size: 0.97rem; line-height: 1.6; margin: 0; }
.learn__card strong { color: var(--ink-dark); font-weight: 600; }
.learn__note {
  max-width: 760px; margin: 36px auto 0;
  background: rgba(244, 196, 0, 0.07);
  border: 1px solid rgba(244, 196, 0, 0.3);
  border-radius: 14px; padding: 22px 28px;
}
.learn__note p { margin: 0; color: var(--ink-dark-dim); font-size: 0.98rem; }
.learn__note strong { color: var(--ink-dark); }

/* ---------- Cookie consent banner ---------- */
.consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  padding: 16px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  background: rgba(6, 15, 44, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(244, 196, 0, 0.35);
  box-shadow: 0 -12px 40px -18px rgba(0, 0, 0, 0.7);
}
.consent[hidden] { display: none; }
.consent__inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px 28px; flex-wrap: wrap;
}
.consent__text { margin: 0; font-size: 0.88rem; line-height: 1.55; color: var(--ink-dim); flex: 1 1 340px; }
.consent__text a { color: var(--accent); text-decoration: underline; }
.consent__actions { display: flex; gap: 10px; flex: 0 0 auto; }
.consent__btn {
  padding: 12px 24px; border-radius: 999px; font-family: var(--font-body);
  font-size: 14px; font-weight: 600; cursor: pointer; border: none;
  transition: transform 200ms var(--ease), background 200ms var(--ease), opacity 200ms var(--ease);
}
.consent__btn--accept {
  background: linear-gradient(180deg, #f7cf3a 0%, var(--accent) 100%);
  color: var(--navy-deep);
}
.consent__btn--accept:hover { transform: translateY(-1px); }
.consent__btn--ghost {
  background: transparent; color: var(--ink-dim);
  border: 1px solid var(--line-strong);
}
.consent__btn--ghost:hover { color: var(--ink); border-color: var(--ink-faint); }
@media (max-width: 560px) {
  .consent__inner { flex-direction: column; align-items: stretch; }
  .consent__actions { justify-content: stretch; }
  .consent__btn { flex: 1; }
}
@media (max-width: 680px) {
  .learn__grid { grid-template-columns: 1fr; }
}

