/* ============ SpinField™ Disc — ocean & gold ============ */
:root {
  --cream:    #f0f7f7;   /* foam white (light sections) */
  --cream-2:  #e6f1f1;
  --sand:     #d8eaeb;   /* pale aqua (benefits) */
  --paper:    #fdffff;
  --ink:      #10262b;   /* deep teal ink */
  --ink-soft: #47646c;
  --charcoal: #0b303b;   /* deep ocean (dark sections) */
  --charcoal-2:#0e3945;
  --green:    #16564e;
  --navy:     #113947;   /* deep sea (testimonials) */
  --navy-2:   #0a2531;
  --tan:      #d99a2b;   /* sunflower gold */
  --tan-soft: #edc775;   /* soft gold */
  --disp: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --maxw: 1120px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--cream); line-height: 1.7; font-weight: 300; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5 { font-family: var(--disp); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; }
img { max-width: 100%; display: block; }

/* ---------- Pills / buttons ---------- */
.pill { display: inline-block; padding: 13px 30px; border-radius: 999px; font-family: var(--disp); font-size: .82rem; font-weight: 600; letter-spacing: .3px; text-decoration: none; cursor: pointer; border: 1px solid transparent; transition: all .25s ease; }
.pill--solid { background: var(--ink); color: var(--cream); }
.pill--solid:hover { background: var(--tan); color: #10262b; }
.pill--light { background: rgba(255,255,255,.92); color: #10262b; }
.pill--light:hover { background: #fff; }
.pill--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.pill--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.pill--lg { padding: 16px 40px; font-size: .92rem; }

/* ---------- Nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 22px 0; transition: background .35s, box-shadow .35s, padding .35s; }
.nav.is-scrolled { background: rgba(8,37,48,.93); backdrop-filter: blur(10px); box-shadow: 0 1px 20px rgba(0,0,0,.25); padding: 13px 0; }
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; }
.nav__brand { font-family: var(--disp); font-size: 1.15rem; font-weight: 700; letter-spacing: .3px; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 11px; }
.nav__mark { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--tan-soft); background: radial-gradient(circle,var(--tan-soft) 0%,transparent 64%); }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { color: rgba(255,255,255,.82); text-decoration: none; font-size: .8rem; letter-spacing: .8px; font-weight: 400; transition: color .2s; position: relative; }
.nav__links a:not(.nav__cta):hover, .nav__links a.is-active { color: var(--tan-soft); }
.nav__links a.is-active:not(.nav__cta)::after { content:""; position:absolute; left:0; right:0; bottom:-6px; height:1px; background: var(--tan); }
.nav__cta { color: var(--cream) !important; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; padding: 120px 28px 90px; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(4,25,33,.5) 0%, rgba(4,25,33,.28) 40%, rgba(4,25,33,.68) 100%); }
.hero__content { position: relative; z-index: 2; max-width: 820px; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: .72rem; color: var(--tan-soft); margin-bottom: 24px; }
.hero__title { font-size: clamp(2.8rem, 8vw, 5.6rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 18px; text-shadow: 0 2px 40px rgba(0,0,0,.4); }
.hero__subtitle { font-size: clamp(1.1rem, 2.6vw, 1.6rem); font-weight: 300; color: rgba(255,255,255,.92); margin-bottom: 40px; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.65); font-size: 1.4rem; text-decoration: none; z-index: 2; animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,10px)} }

/* ---------- Sections ---------- */
.section { padding: 110px 28px; }
.section--cream { background: var(--cream); color: var(--ink); }
.section--sand { background: var(--sand); color: var(--ink); }
.section--charcoal { background: var(--charcoal); color: rgba(255,255,255,.88); }
.section--navy { background: linear-gradient(165deg,var(--navy),var(--navy-2)); color: rgba(255,255,255,.9); }
.section--charcoal h2,.section--charcoal h3,.section--charcoal h4,.section--navy h2,.section--navy h3,.section--navy h4 { color: #fff; }
.section--charcoal .section__num,.section--navy .section__num,.section--charcoal .section__lead,.section--navy .section__lead { color: var(--tan-soft); }

.section__head { max-width: var(--maxw); margin: 0 auto 54px; text-align: center; }
.section__num { display: block; font-family: var(--disp); font-size: .82rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--tan); margin-bottom: 16px; }
.section__head h2 { font-size: clamp(2rem,5vw,3.2rem); margin-bottom: 14px; }
.section__lead { font-weight: 300; font-size: 1.2rem; color: var(--ink-soft); max-width: 640px; margin: 0 auto; }
.section__body { max-width: var(--maxw); margin: 0 auto; font-size: 1.06rem; }
.section__body.narrow { max-width: 740px; }
.section__body p { margin-bottom: 1.3em; }
.section__body h3 { font-size: 1.4rem; margin: 1.7em 0 .5em; }

/* split (science) */
.section__split { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.section__col h2 { font-size: clamp(1.8rem,4vw,2.8rem); margin: 14px 0 18px; }
.section__col h3 { font-size: 1.25rem; margin: 1.4em 0 .4em; color: var(--tan-soft); }
.section__col p { margin-bottom: 1em; color: rgba(255,255,255,.8); }
.section__media img { border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.4); }

.pullquote { font-family: var(--disp); font-weight: 600; font-size: 1.7rem; line-height: 1.35; color: var(--tan); text-align: center; margin-bottom: 1.4em; }
.feature-list { list-style: none; margin-bottom: 1.6em; }
.feature-list li { position: relative; padding: 13px 0 13px 32px; border-bottom: 1px solid rgba(0,0,0,.08); }
.feature-list li::before { content:"✦"; position:absolute; left:2px; top:13px; color: var(--tan); }
.section--charcoal .feature-list li { border-bottom-color: rgba(255,255,255,.12); }
.closing-line { font-family: var(--disp); font-weight: 500; font-size: 1.3rem; text-align: center; margin-top: 1em; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 1em 0 1.6em; }
.chips li { background: rgba(217,154,43,.14); border: 1px solid rgba(217,154,43,.4); color: var(--ink); padding: 8px 18px; border-radius: 999px; font-size: .9rem; }
.section--charcoal .chips li, .section--navy .chips li { color: #fff; }

/* full-width video band */
.band { position: relative; min-height: 56vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; padding: 80px 28px; }
.band__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.band__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg,rgba(43,28,4,.42),rgba(30,20,3,.55)); }
.band__content { position: relative; z-index: 2; max-width: 720px; }
.band__content h2 { font-size: clamp(1.8rem,4.5vw,3rem); margin-bottom: 16px; }
.band__content p { font-weight: 300; font-size: 1.15rem; color: rgba(255,255,255,.93); }

/* steps */
.steps { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step { background: var(--paper); border: 1px solid rgba(0,0,0,.06); border-radius: 16px; padding: 40px 30px; text-align: center; box-shadow: 0 12px 36px rgba(10,40,50,.06); transition: transform .3s, box-shadow .3s; }
.step:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(10,40,50,.12); }
.step__num { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--tan); color: var(--tan); font-family: var(--disp); font-size: 1.4rem; font-weight: 600; margin-bottom: 20px; }
.step h4 { font-size: 1.25rem; margin-bottom: 12px; }
.step p { color: var(--ink-soft); font-size: .98rem; }

/* benefits */
.benefits { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.benefit { background: rgba(255,255,255,.5); border: 1px solid rgba(16,38,43,.1); border-radius: 16px; padding: 32px 28px; transition: background .3s, transform .3s; }
.benefit:hover { background: rgba(255,255,255,.85); transform: translateY(-4px); }
.benefit h4 { font-size: 1.2rem; margin-bottom: 10px; }
.benefit p { color: var(--ink-soft); font-size: .96rem; }

/* placeholders */
.placeholder-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.placeholder { border: 1px dashed rgba(255,255,255,.3); border-radius: 14px; padding: 48px 20px; text-align: center; color: rgba(255,255,255,.55); }
.placeholder span { display: block; font-family: var(--disp); font-size: 2rem; color: var(--tan-soft); margin-bottom: 8px; }
.placeholder-grid--light .placeholder { border-color: rgba(16,38,43,.25); color: var(--ink-soft); }
.placeholder-grid--light .placeholder span { color: var(--tan); }

/* experiences / forms */
.comment-form { background: rgba(255,255,255,.05); border: 1px solid rgba(237,199,117,.2); border-radius: 16px; padding: 34px; }
.comment-form h3 { margin-bottom: 20px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .78rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; color: var(--tan-soft); }
.field input, .field textarea { width: 100%; padding: 12px 14px; font-family: var(--body); font-size: 1rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); border-radius: 8px; color: #fff; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--tan); }
.form-note { font-size: .82rem; color: rgba(255,255,255,.5); margin-top: 14px; font-style: italic; }

/* CTA band */
.cta { background: var(--charcoal-2); color: #fff; padding: 100px 28px; text-align: center; }
.cta__inner { max-width: 640px; margin: 0 auto; }
.cta h2 { font-size: clamp(2rem,5vw,3rem); margin-bottom: 14px; }
.cta p { font-weight: 300; font-size: 1.15rem; color: rgba(255,255,255,.8); margin-bottom: 32px; }

/* footer */
.footer { background: var(--charcoal); color: rgba(255,255,255,.6); padding: 72px 28px 48px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; }
.footer__wordmark { font-family: var(--disp); font-weight: 800; font-size: clamp(1.8rem,6vw,3.4rem); letter-spacing: .04em; color: #fff; text-align: center; margin-bottom: 48px; }
.footer__row { display: flex; gap: 60px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.footer__col h5 { font-family: var(--disp); font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--tan-soft); margin-bottom: 14px; }
.footer__col p { font-size: .92rem; margin-bottom: 6px; }
.footer__col a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer__col a:hover { color: var(--tan-soft); }
.footer__disclaimer { max-width: 760px; margin: 0 auto 22px; text-align: center; font-size: .8rem; line-height: 1.7; }
.footer__copy { text-align: center; font-size: .78rem; color: rgba(255,255,255,.35); }

/* reveal */
.section__head,.section__body,.section__split,.step,.benefit,.placeholder { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal-in { opacity: 1 !important; transform: none !important; }

/* responsive */
@media (max-width: 880px) {
  .section__split { grid-template-columns: 1fr; gap: 36px; }
  .steps, .benefits, .placeholder-grid { grid-template-columns: 1fr; }
  .nav__toggle { display: block; }
  .nav__links { position: fixed; inset: 0 -100% 0 auto; height: 100vh; width: 76%; max-width: 330px; background: rgba(6,30,39,.98); flex-direction: column; align-items: flex-start; gap: 0; padding: 100px 36px; transition: right .35s; }
  .nav__links.is-open { right: 0; }
  .nav__links a { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); width: 100%; font-size: .95rem; }
  .nav__cta { margin-top: 18px; border:0; }
  .nav__toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .nav__toggle.is-open span:nth-child(2){opacity:0}
  .nav__toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
}

/* ---------- science detail ---------- */
.science-detail { margin-top: 44px; }
.science-detail h3 { color: var(--tan-soft); }
.science-detail p { color: rgba(255,255,255,.82); }
.fine-print { font-size: .84rem; color: rgba(255,255,255,.55); border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; margin-top: 2em; }

/* ---------- nature metaphor cards ---------- */
.naturecards { max-width: var(--maxw); margin: 56px auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.naturecard { background: var(--paper); border: 1px solid rgba(0,0,0,.06); border-radius: 14px; padding: 28px 24px; box-shadow: 0 10px 30px rgba(10,40,50,.05); }
.naturecard h4 { font-size: 1.15rem; margin-bottom: 10px; color: var(--tan); }
.naturecard p { color: var(--ink-soft); font-size: .95rem; }
.naturecard { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
@media (max-width: 880px) { .naturecards { grid-template-columns: 1fr; } }

/* ---------- history timeline flavor ---------- */
.history-note { font-family: var(--disp); font-weight: 500; font-size: 1.05rem; color: var(--tan-soft); letter-spacing: .5px; text-transform: uppercase; font-size: .8rem; margin-bottom: .6em; }

/* ---------- shop preview ---------- */
.shop-preview { max-width: 880px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.shop-card { background: var(--paper); border: 1px solid rgba(16,38,43,.1); border-radius: 16px; padding: 44px 32px; text-align: center; box-shadow: 0 12px 36px rgba(10,40,50,.07); opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.shop-card__img { width: 150px; height: 150px; margin: 0 auto 22px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, var(--cream-2), var(--sand) 70%); border: 1px solid rgba(16,38,43,.12); display: flex; align-items: center; justify-content: center; color: var(--ink-soft); font-size: .8rem; }
.shop-card h4 { font-size: 1.25rem; margin-bottom: 8px; }
.shop-card p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 18px; }
.shop-card .pill { pointer-events: none; opacity: .55; }
@media (max-width: 880px) { .shop-preview { grid-template-columns: 1fr; } }
.shop-preview--full { max-width: var(--maxw); grid-template-columns: repeat(3,1fr); }
.shop-card__price { font-family: var(--disp); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin: 6px 0 16px; }
.shop-card__price span { font-size: .8rem; font-weight: 400; color: var(--ink-soft); margin-left: 4px; }
.cart-form { margin: 0; }
.cart-btn:disabled { opacity: .5; cursor: not-allowed; }
.shop-cartbar { max-width: var(--maxw); margin: 44px auto 0; text-align: center; }
.shop-secure { font-size: .85rem; color: var(--ink-soft); margin-top: 14px; }
@media (max-width: 880px) { .shop-preview--full { grid-template-columns: 1fr; } }

/* ---------- testimonial gallery ---------- */
.testimonial-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tcard { background: rgba(255,255,255,.05); border: 1px solid rgba(237,199,117,.18); border-radius: 14px; overflow: hidden; opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.tcard video { width: 100%; aspect-ratio: 16/9; display: block; background: #04191f; }
.tcard figcaption { padding: 12px 16px; font-size: .9rem; color: rgba(255,255,255,.85); font-family: var(--disp); letter-spacing: .3px; }
.testimonial-note { max-width: 760px; margin: 44px auto 0; text-align: center; font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.7; }
@media (max-width: 880px) { .testimonial-grid { grid-template-columns: 1fr; } }
