/* ============================================================
   COVE → SIMP  |  Digital Minimal Brutal
   ============================================================ */

:root {
  --bg:        #262626;
  --bg-2:      #1a1a1a;
  --bg-3:      #000000;
  --bg-light:  #F5F3EE;
  --fg:        #ffffff;
  --fg-dk:     #000000;
  --accent:    #FDFE00;
  --accent-2:  #c8c800;
  --muted:     rgba(255, 255, 255, 0.50);
  --muted-dk:  #5a5a54;
  --border:    rgba(255, 255, 255, 0.08);
  --border-lt: #e2dfd8;

  --font:  'Space Grotesk', system-ui, -apple-system, sans-serif;
  --wrap:  1200px;
  --gap:   7rem;
  --r:     0.875rem;
  --r-lg:  1.5rem;
  --ease:  180ms ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Subtle grain texture — no external file */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

/* Hidden SVG defs — must be in the document for clip-path url() */
.blob-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: min(var(--wrap), 100% - 3rem);
  margin-inline: auto;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(24, 24, 24, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

.site-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
  font-family: var(--font);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 100px;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    background-color var(--ease);
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-header {
  background: var(--accent);
  color: var(--fg-dk);
  padding: 0.55rem 1.2rem;
  font-size: 0.875rem;
}
.btn-header:hover { background: var(--accent-2); }

.btn-primary {
  background: var(--accent);
  color: var(--fg-dk);
  padding: 1rem 2.25rem;
  font-size: 1.125rem;
  border-radius: var(--r);
  box-shadow: 0 0 40px rgba(253, 254, 0, 0.22);
}
.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 0 64px rgba(253, 254, 0, 0.40);
}

.btn-xl {
  font-size: 1.375rem;
  padding: 1.125rem 3rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-block: 5rem 6rem;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(253, 254, 0, 0.35);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: clamp(3.5rem, 7.5vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.accent-text {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.hero-support {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.link-ghost {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  transition: color var(--ease);
}
.link-ghost:hover { color: var(--fg); }

/* ============================================================
   BLOB MEDIA  (Option A — SVG clipPath)
   ============================================================ */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Yellow glow behind blob */
.blob-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 254, 0, 0.20) 0%, transparent 62%);
  pointer-events: none;
  animation: glow-breathe 4.5s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.65; transform: scale(1);    }
  50%       { opacity: 1;    transform: scale(1.10); }
}

/* Yellow background blob (no clip) */
.blob-bg {
  position: absolute;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  background: var(--accent);
  border-radius: 50%;
  animation: blob-float 7s ease-in-out infinite;
}

/* Hero image - full size, no constraints */
.hero-img {
  position: relative;
  width: 100%;
  max-width: 500px;
  animation: blob-float 7s ease-in-out infinite;
}

@keyframes blob-float {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-14px); }
}

.blob-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

/* CSS sparkle decorations on dark hero — no white-background image issues */
.sparkle {
  position: absolute;
  color: var(--accent);
  font-style: normal;
  pointer-events: none;
  line-height: 1;
  text-shadow: 0 0 16px rgba(253, 254, 0, 0.6);
}

.sparkle--a {
  font-size: 2.5rem;
  top: 4%;
  right: 3%;
  animation: spark-float 5s ease-in-out infinite;
}

.sparkle--b {
  font-size: 1.5rem;
  bottom: 10%;
  left: 0%;
  animation: spark-float 6.5s ease-in-out infinite reverse;
}

.sparkle--c {
  font-size: 1rem;
  top: 30%;
  right: -2%;
  animation: spark-float 4s ease-in-out infinite 1s;
}

@keyframes spark-float {
  0%, 100% { transform: translateY(0) rotate(0deg);   opacity: 0.8; }
  50%       { transform: translateY(-10px) rotate(20deg); opacity: 1;   }
}

/* ============================================================
   ANNOUNCEMENT STRIP
   ============================================================ */
.strip {
  background: var(--accent);
  color: var(--fg-dk);
  padding-block: 0.875rem;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
}

.strip strong { font-weight: 700; }

.strip a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--ease);
}
.strip a:hover { opacity: 0.65; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits {
  background: var(--bg-light);
  padding-block: var(--gap);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--fg-dk);
  margin-bottom: 3rem;
}

.section-title--light {
  color: var(--fg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: #ffffff;
  border: 1.5px solid var(--border-lt);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem 2rem;
  transition: transform var(--ease), box-shadow var(--ease);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
}

.benefit-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg-dk);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9375rem;
  color: var(--muted-dk);
  line-height: 1.6;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--bg);
  padding-block: var(--gap);
}

.accordion {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--fg);
  text-align: left;
  transition: background var(--ease);
}

.accordion-trigger:hover,
.accordion-trigger[aria-expanded="true"] {
  background: var(--bg-2);
}

.acc-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--ease), background var(--ease);
}

.acc-icon::after {
  content: '+';
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  color: var(--fg);
  transition: color var(--ease);
}

.accordion-trigger[aria-expanded="true"] .acc-icon {
  transform: rotate(45deg);
  background: var(--accent);
}

.accordion-trigger[aria-expanded="true"] .acc-icon::after {
  color: var(--fg-dk);
}

.accordion-panel {
  padding: 1.5rem 2rem 1.75rem 2rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.72;
}

.accordion-panel[hidden] { display: none; }

.accordion-panel a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--bg-3);
  padding-block: 9rem;
  text-align: center;
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta-pre {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.02em;
}

.cta-headline {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #000000;
  padding-block: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity var(--ease);
}
.footer-link:hover { opacity: 0.7; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .blob-media,
  .blob-glow,
  .sparkle {
    animation: none;
  }

  .btn,
  .benefit-card,
  .accordion-trigger,
  .acc-icon {
    transition: none;
  }
}

/* ============================================================
   RESPONSIVE — 960px (tablet)
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-copy  { order: 1; }
  .hero-media {
    order: 2;
    max-width: 380px;
    width: 100%;
    margin-inline: auto;
  }
}

/* ============================================================
   RESPONSIVE — 768px (mobile)
   ============================================================ */
@media (max-width: 768px) {
  :root { --gap: 4.5rem; }

  .hero {
    padding-block: 3rem 4rem;
    min-height: auto;
    align-items: flex-start;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefit-card {
    padding: 1.75rem 1.5rem;
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
    column-gap: 1.25rem;
    align-items: start;
  }

  .benefit-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 0;
    grid-row: 1 / 3;
  }

  .benefit-card h3 { align-self: end; }
  .benefit-card p  { align-self: start; }

  .accordion-trigger {
    padding: 1.25rem 1.25rem;
    font-size: 1rem;
  }

  .accordion-panel {
    padding: 0 1.25rem 1.375rem;
  }

  .final-cta { padding-block: 5rem; }

  .btn-xl {
    font-size: 1.125rem;
    padding: 1rem 2rem;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }
}

/* ============================================================
   RESPONSIVE — 480px (small mobile)
   ============================================================ */
@media (max-width: 480px) {
  .hero-headline { font-size: 3.25rem; }

  .hero-actions {
    width: 100%;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .sparkle--b,
  .sparkle--c { display: none; }
}
