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

    :focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

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

    :root {
      --black: #FAF8F5;
      --dark: #F2EDE6;
      --card: #EAE3DA;
      --accent: #E8721A;
      --accent-dark: #C45E0E;
      --text: #1C1410;
      --heading: #2D1F14;
      --muted: #8A7D72;
      --border: #DDD5C8;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 2rem;
      background: rgba(250, 248, 245, 0.88);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 0.08em;
      color: var(--accent);
      text-decoration: none;
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--accent);
      color: #fff;
      font-size: 0.85rem;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      border: none;
      cursor: pointer;
      padding: 0.55rem 1.2rem;
      border-radius: 6px;
      transition: background 0.2s;
    }

    .nav-cta:hover { background: var(--accent-dark); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 2rem 4rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(232, 114, 26, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-eyebrow {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 14vw, 10rem);
      line-height: 0.9;
      letter-spacing: 0.03em;
      color: var(--heading);
      margin-bottom: 1.5rem;
    }

    .hero-title span { color: var(--accent); }

    .hero-sub {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      color: var(--muted);
      max-width: 480px;
      margin: 0 auto 2.5rem;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--accent);
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      padding: 0.9rem 2.2rem;
      border-radius: 8px;
      transition: background 0.2s, transform 0.15s;
    }

    .btn-primary:hover {
      background: var(--accent-dark);
      transform: translateY(-2px);
    }

    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      color: var(--muted);
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .hero-scroll::after {
      content: '';
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--muted), transparent);
    }

    /* ── PRODUCT ── */
    .product {
      padding: 6rem 2rem;
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 4rem;
      align-items: start;
    }

    .product-gallery { position: sticky; top: 2rem; }

    .product-image {
      position: relative;
      aspect-ratio: 4/3;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--card);
    }

    .gallery-track {
      display: flex;
      width: 100%;
      height: 100%;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .gallery-track::-webkit-scrollbar { display: none; }

    .gallery-slide {
      flex: 0 0 100%;
      width: 100%;
      height: 100%;
      object-fit: cover;
      scroll-snap-align: center;
      display: block;
      user-select: none;
      -webkit-user-drag: none;
    }

    .product-gallery { display: flex; flex-direction: column; gap: 0.75rem; }

    .thumb-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.6rem;
    }

    .thumb {
      padding: 0;
      margin: 0;
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 1 / 1;
      background: var(--card);
      transition: border-color 0.15s ease;
    }

    .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .thumb:hover { border-color: var(--accent); }
    .thumb.active { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }

    .product-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: var(--accent);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.35rem 0.8rem;
      border-radius: 4px;
    }

    .product-content { display: flex; flex-direction: column; gap: 1.5rem; }

    .section-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .product-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 3.8rem);
      line-height: 1;
      letter-spacing: 0.02em;
      color: var(--heading);
    }

    .product-desc {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.75;
    }

    .spec-list {
      display: flex;
      flex-direction: column;
      border-top: 1px solid var(--border);
      margin-top: 0.5rem;
    }

    .spec-item {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 1.5rem;
      padding: 0.7rem 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.88rem;
    }

    .spec-label {
      color: var(--muted);
      font-size: 0.8rem;
      white-space: nowrap;
    }

    .price-block {
      display: flex;
      align-items: baseline;
      gap: 0.75rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }

    .price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.8rem;
      color: var(--accent);
      line-height: 1;
    }

    .price-note {
      font-size: 0.8rem;
      color: var(--muted);
    }
    .spec-value { color: var(--text); font-weight: 500; text-align: right; }

    /* ── PLAN: what's inside + buy ── */
    .whats-inside {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      margin-top: 0.25rem;
    }
    .whats-inside li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.9rem;
      color: var(--text);
      line-height: 1.5;
    }
    .whats-inside li svg { color: var(--accent); flex-shrink: 0; margin-top: 0.15rem; }

    .buy-row { display: flex; flex-direction: column; gap: 0.6rem; padding-top: 0.5rem; }

    .btn-buy {
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      background: var(--accent);
      color: #fff;
      font-size: 1.05rem;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      text-decoration: none;
      border: none;
      cursor: pointer;
      padding: 1rem 2rem;
      border-radius: 8px;
      min-height: 48px;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-buy:hover { background: var(--accent-dark); transform: translateY(-2px); }
    .btn-buy[aria-disabled="true"] { opacity: 0.6; cursor: not-allowed; transform: none; pointer-events: none; }

    .buy-note { font-size: 0.78rem; color: var(--muted); text-align: center; line-height: 1.5; }

    /* ── SECONDARY: built-for-you (demoted physical) ── */
    .secondary-offer {
      max-width: 720px;
      margin: 0 auto;
      background: var(--dark);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 2rem 1.75rem;
      text-align: center;
    }
    .secondary-offer h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.6rem, 4vw, 2.2rem);
      letter-spacing: 0.02em;
      color: var(--heading);
      margin-bottom: 0.5rem;
    }
    .secondary-offer p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }
    .secondary-offer .price-inline { color: var(--accent); font-weight: 600; }

    /* ── WHY ── */
    .why {
      background: var(--dark);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 5rem 2rem;
      text-align: center;
    }

    .why-inner { max-width: 900px; margin: 0 auto; }

    .why-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      letter-spacing: 0.03em;
      color: var(--heading);
      margin-bottom: 3rem;
    }

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

    .pillar {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }

    .pillar-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: rgba(232, 114, 26, 0.15);
      border: 1px solid rgba(232, 114, 26, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .pillar-icon svg { color: var(--accent); }

    .pillar h3 {
      font-weight: 600;
      font-size: 0.95rem;
    }

    .pillar p {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ── CTA ── */
    .cta-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 7vw, 5rem);
      line-height: 1;
      color: var(--heading);
      margin-bottom: 1rem;
    }

    .cta-sub {
      color: var(--muted);
      font-size: 1rem;
      margin-bottom: 2.5rem;
      max-width: 420px;
      margin-left: auto;
      margin-right: auto;
    }


    /* ── TRUST ROW ── */
    .trust-row {
      display: flex;
      flex-wrap: nowrap;
      justify-content: center;
      gap: 1.25rem;
      padding-top: 1.25rem;
    }

    .trust-item {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.82rem;
      color: var(--muted);
      white-space: nowrap;
    }

    .trust-item svg { color: var(--accent); flex-shrink: 0; }

    /* ── ABOUT ── */
    .about {
      padding: 5rem 2rem;
      text-align: center;
      border-bottom: 1px solid var(--border);
    }

    .about-inner { max-width: 640px; margin: 0 auto; }

    .about .section-label { display: block; margin-bottom: 0.75rem; }

    .about-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      letter-spacing: 0.03em;
      color: var(--heading);
      margin-bottom: 1.25rem;
    }

    .about-text {
      font-size: 1.05rem;
      color: var(--muted);
      line-height: 1.8;
    }

    /* ── STEPS ── */
    .steps {
      padding: 5rem 2rem;
      text-align: center;
    }

    .steps-inner { max-width: 900px; margin: 0 auto; }

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

    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }

    .step-num {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--accent);
      color: #fff;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      line-height: 1;
    }

    .step h3 { font-weight: 600; font-size: 0.95rem; }
    .step p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

    /* ── FAQ ── */
    .faq {
      padding: 5rem 2rem;
      background: var(--dark);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .faq-inner { max-width: 720px; margin: 0 auto; }

    .faq-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      letter-spacing: 0.03em;
      color: var(--heading);
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .faq-item { border-bottom: 1px solid var(--border); }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 1.1rem 0;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--text);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary::after {
      content: '+';
      color: var(--accent);
      font-size: 1.4rem;
      line-height: 1;
      flex-shrink: 0;
    }

    .faq-item[open] summary::after { content: '–'; }

    .faq-item p {
      padding: 0 0 1.2rem;
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ── FOOTNOTE REFS ── */
    .fn-ref {
      color: var(--accent);
      font-weight: 600;
      font-size: 0.7em;
      vertical-align: super;
    }

    .avail-note {
      font-size: 0.85rem;
      color: var(--muted);
      margin-top: -0.5rem;
    }

    /* ── FOOTNOTES ── */
    .footnotes {
      border-top: 1px solid var(--border);
      padding: 2.5rem 2rem 1rem;
    }

    .footnotes-inner { max-width: 700px; margin: 0 auto; }

    .footnotes-title {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.9rem;
      margin-top: 1.75rem;
    }

    .footnotes-title:first-child { margin-top: 0; }

    .footnote {
      font-size: 0.78rem;
      line-height: 1.6;
      color: var(--muted);
      margin-bottom: 0.6rem;
    }

    .footnote sup { color: var(--accent); font-weight: 600; }

    .footnote-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

    .footnote-list li {
      font-size: 0.78rem;
      line-height: 1.6;
      color: var(--muted);
      padding-left: 1rem;
      position: relative;
    }

    .footnote-list li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--accent);
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--border);
      padding: 2rem;
      text-align: center;
      color: var(--muted);
      font-size: 0.8rem;
    }

    footer span { color: var(--accent); }

    /* ── CONTACT FORM ── */
    .contact-section {
      padding: 7rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .contact-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232, 114, 26, 0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .contact-inner {
      max-width: 480px;
      margin: 0 auto;
      position: relative;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      margin-top: 2rem;
      text-align: left;
    }

    .form-field input,
    .form-field textarea {
      width: 100%;
      background: var(--dark);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 0.85rem 1rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      color: var(--text);
      transition: border-color 0.2s;
      outline: none;
      resize: none;
    }

    .form-field input::placeholder,
    .form-field textarea::placeholder { color: var(--muted); }

    .form-field input:focus,
    .form-field textarea:focus { border-color: var(--accent); }

    .form-note {
      margin-top: 0.85rem;
      font-size: 0.78rem;
      color: var(--muted);
      text-align: center;
      line-height: 1.5;
    }

    .form-submit {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      background: var(--accent);
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      border: none;
      cursor: pointer;
      padding: 0.9rem 2rem;
      border-radius: 8px;
      transition: background 0.2s, transform 0.15s;
      margin-top: 0.25rem;
    }

    .form-submit:hover { background: var(--accent-dark); transform: translateY(-2px); }
    .form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

    .form-success {
      font-size: 1rem;
      color: var(--text);
      padding: 2rem;
      background: var(--dark);
      border-radius: 12px;
      border: 1px solid var(--border);
      margin-top: 1.5rem;
    }

    .form-error {
      font-size: 0.82rem;
      color: var(--accent-dark);
      margin-top: 0.25rem;
      text-align: center;
    }

    /* ── RESPONSIVE ── */
    /* Stack the product layout before two columns get cramped */
    @media (max-width: 880px) {
      .product { grid-template-columns: 1fr; }
      .product-gallery { position: static; }
    }

    @media (max-width: 700px) {
      nav { padding: 1rem 1.25rem; }

      .product {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 4rem 1.25rem;
      }

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

      .why { padding: 4rem 1.25rem; }
      .about { padding: 4rem 1.25rem; }
      .steps { padding: 4rem 1.25rem; }
      .steps-grid { grid-template-columns: 1fr; }
      .faq { padding: 4rem 1.25rem; }
      .contact-section { padding: 5rem 1.25rem; }
      .footnotes { padding: 2.5rem 1.25rem 1rem; }

      .trust-row { gap: 0.6rem; justify-content: center; }
      .trust-item { font-size: 0.68rem; gap: 0.25rem; }
      .trust-item svg { width: 12px; height: 12px; }
    }

/* ── STOREFRONT GRID (home) ── */
.shop { padding: 5rem 2rem 6rem; max-width: 1120px; margin: 0 auto; }
.shop-head { text-align: center; margin-bottom: 3rem; }
.shop-title { font-family:'Bebas Neue',sans-serif; font-size: clamp(2rem,5vw,3.5rem); letter-spacing:0.03em; color:var(--heading); }
.shop-sub { color: var(--muted); font-size: 0.95rem; margin-top: 0.6rem; max-width: 520px; margin-left:auto; margin-right:auto; }
.store-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 1.75rem; align-items: stretch; }
.product-card { display:flex; flex-direction:column; background:var(--dark); border:1px solid var(--border); border-radius:14px; overflow:hidden; text-decoration:none; color:inherit; transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease; }
.product-card:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 10px 26px rgba(28,20,16,0.09); }
.card-media { position:relative; }
.product-card-img { aspect-ratio: 4/3; width:100%; object-fit:cover; background:var(--card); display:block; }
.product-card-badge { position:absolute; top:0.8rem; left:0.8rem; background:var(--accent); color:#fff; font-size:0.68rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; padding:0.3rem 0.7rem; border-radius:4px; }
.product-card-body { padding:1.25rem 1.3rem 1.5rem; display:flex; flex-direction:column; gap:0.55rem; flex:1; }
.product-card-title { font-family:'Bebas Neue',sans-serif; font-size:1.65rem; letter-spacing:0.02em; color:var(--heading); line-height:1.05; }
.product-card-desc { font-size:0.88rem; color:var(--muted); line-height:1.6; flex:1; }
.product-card-foot { display:flex; align-items:center; justify-content:space-between; margin-top:0.6rem; padding-top:0.9rem; border-top:1px solid var(--border); }
.product-card-price { font-family:'Bebas Neue',sans-serif; font-size:1.7rem; color:var(--accent); line-height:1; }
.product-card-cta { font-size:0.85rem; font-weight:600; color:var(--accent); display:inline-flex; align-items:center; gap:0.35rem; }
/* coming-soon placeholder card (no fake products) */
.product-card.soon { background:var(--card); border-style:dashed; cursor:default; align-items:center; justify-content:center; text-align:center; padding:2.75rem 1.5rem; }
.product-card.soon:hover { transform:none; border-color:var(--border); box-shadow:none; }
.product-card.soon h3 { font-family:'Bebas Neue',sans-serif; font-size:1.5rem; color:var(--heading); letter-spacing:0.02em; margin-bottom:0.5rem; }
.product-card.soon p { font-size:0.85rem; color:var(--muted); line-height:1.6; }
.product-card.soon a { color:var(--accent); font-weight:600; text-decoration:none; }
.product-card.soon a:hover { text-decoration:underline; }

/* nav link (secondary, next to CTA) */
.nav-links { display:flex; align-items:center; gap:1.25rem; }
.nav-link { font-size:0.85rem; font-weight:600; color:var(--text); text-decoration:none; }
.nav-link:hover { color:var(--accent); }

/* slim "questions about this plan" block on a product page */
.plan-questions { max-width:640px; margin:0 auto; text-align:center; padding:4.5rem 2rem; }
.plan-questions h2 { font-family:'Bebas Neue',sans-serif; font-size:clamp(1.8rem,4vw,2.6rem); letter-spacing:0.02em; color:var(--heading); margin-bottom:0.75rem; }
.plan-questions p { color:var(--muted); font-size:0.95rem; line-height:1.7; }
.plan-questions a { color:var(--accent); font-weight:600; text-decoration:none; }
.plan-questions a:hover { text-decoration:underline; }

