:root {
    --teal: #2F5E5E;
    --slate: #5A6A85;
    --warm: #F5F1EB;
	--light-orange: #C8A97E;
    --burnt: #C75C3E;
    --red: #A14F4A;
    --charcoal: #2B2B2B;
    --off-white: #FDFCFA;
    --border: #E0DDD8;
  }



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

  body {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    background: var(--off-white);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* Animated grain texture overlay */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='3.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.4;
    z-index: 9999;
  }

  /* Typography */
  .mono {
    font-family: 'IBM Plex Mono', monospace;
  }

  /* Header */
  header {
    position: sticky;
    top: 0;
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    animation: slideDown 0.6s ease-out;
  }

  @keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    /*font-size: 20px;
    font-weight: 700;*/
    color: var(--charcoal);
    letter-spacing: -0.01em;
  }
  
  .logo-img {
  height: 30px;
  width: auto;
  display: block;
}

  .product-img {
  height: 175px;
  width: auto;
  display: block;
  padding: 10px 0;

}
  .nav-cta {
    display: inline-block;
    padding: 10px 24px;
    background: var(--teal);
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--teal);
  }

  .nav-cta:hover {
    background: transparent;
    color: var(--teal);
  }

  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* Hero Section */
  .hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
  }

  /* Geometric background elements */
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.08;
    z-index: 0;
  }

  .hero-bg-block {
    position: absolute;
    animation: float 20s ease-in-out infinite;
  }

  .block-1 {
    width: 300px;
    height: 300px;
    background: var(--teal);
    top: 10%;
    right: 5%;
    animation-delay: 0s;
  }

  .block-2 {
    width: 200px;
    height: 200px;
    background: var(--slate);
    bottom: 15%;
    left: 8%;
    animation-delay: -5s;
  }

  .block-3 {
    width: 150px;
    height: 150px;
    background: var(--light-orange);
    top: 50%;
    left: 15%;
    animation-delay: -10s;
  }

  @keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(-10px, -40px) rotate(-3deg); }
    75% { transform: translate(15px, -25px) rotate(4deg); }
  }

  .hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }

  @keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .hero-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--burnt);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
  }

  .hero-headline {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
  }

  .hero-subline {
    font-size: 20px;
    font-weight: 400;
    color: #666;
    max-width: 720px;
    margin-bottom: 48px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.5s both;
  }

  .hero-cta {
    display: inline-block;
    padding: 18px 40px;
    background: var(--teal);
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--teal);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.6s both;
  }

  .hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.4s ease;
  }

  .hero-cta:hover::before {
    left: 100%;
  }

  .hero-cta:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(43,43,43,0.2);
  }

  .hero-note {
    margin-top: 16px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: #999;
    animation: fadeInUp 0.8s ease-out 0.7s both;
  }

  /* Divider */
  .section-divider {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
  }

  .divider-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #AAA;
  }

  /* Products Section */
  .products {
    padding: 100px 0;
    background: var(--warm);
    position: relative;
  }

  .section-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .section-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--burnt);
    margin-bottom: 16px;
  }

  .section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }

  .section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 680px;
    margin: 0 auto;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
  }

  .product-card {
    background: white;
    border: 1px solid var(--border);
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--light-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .product-card:nth-child(2)::before {
    background: var(--teal);
  }

  .product-card:nth-child(3)::before {
    background: var(--slate);
  }

  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    border-color: transparent;
  }

  .product-card:hover::before {
    transform: scaleX(1);
  }

  .product-icon {
    width: 48px;
    height: 48px;
    background: var(--light-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
  }

  .product-card:nth-child(2) .product-icon {
    background: var(--teal);
  }

  .product-card:nth-child(3) .product-icon {
    background: var(--slate);
  }

  .product-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }

  .product-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .product-price {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
  }

  .product-note {
    font-size: 12px;
    color: #999;
    margin-bottom: 24px;
  }

  .product-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 2px solid var(--charcoal);
    transition: all 0.3s ease;
  }

  .product-link:hover {
    color: var(--burnt);
    border-color: var(--burnt);
  }

  /* About Section */
  .about {
    padding: 120px 0;
    background: white;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }

  .about-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--burnt);
    margin-bottom: 24px;
  }

  .about-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 28px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  .about-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .about-content strong {
    color: var(--charcoal);
    font-weight: 600;
  }

  .about-signature {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: #999;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }

  /* Stats Section */
  .stats {
    padding: 60px 0;
    background: var(--charcoal);
    color: white;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }

  .stat-item {
    text-align: center;
  }

  .stat-value {
    font-size: 56px;
    font-weight: 700;
    color: var(--burnt);
    margin-bottom: 8px;
    font-family: 'IBM Plex Mono', monospace;
  }

  .stat-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

.insights {
  padding: 80px 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.insight-card {
  border: 1px solid rgba(0,0,0,0.08);
  padding: 20px;
  background: rgba(255,255,255,0.6);
}

.insight-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  opacity: 0.6;
}

.insight-text {
  font-size: 14px;
  line-height: 1.6;
}

.insights-note {
  margin-top: 40px;
  font-size: 12px;
  opacity: 0.6;
}


/* ========================================
   OPT-IN PAGE ADDITIONS
======================================== */

  /* PAGE-SPECIFIC OVERRIDES */

  .optin-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  /* Left panel — copy */
  .optin-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 72px 80px 72px;
    position: relative;
    z-index: 1;
  }

  /* Right panel — form */
  .optin-right {
    background: var(--warm);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 72px 80px 72px;
    position: relative;
  }

  .optin-right::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='4' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
  }

  /* Geometric bg accent */
  .optin-bg-accent {
    position: absolute;
    width: 320px;
    height: 320px;
    background: var(--teal);
    opacity: 0.04;
    top: -60px;
    right: -60px;
    animation: float 22s ease-in-out infinite;
    z-index: 0;
  }

  .optin-bg-accent-2 {
    position: absolute;
    width: 180px;
    height: 180px;
    background: var(--burnt);
    opacity: 0.05;
    bottom: 80px;
    left: 40px;
    animation: float 18s ease-in-out infinite;
    animation-delay: -8s;
    z-index: 0;
  }

  /* Eyebrow */
  .optin-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--burnt);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInUp 0.7s ease-out 0.2s forwards;
  }

  /* H1 */
  .optin-h1 {
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--charcoal);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInUp 0.7s ease-out 0.35s forwards;
  }

  .optin-h1 em {
    font-style: normal;
    color: var(--teal);
  }

  /* Subhead */
  .optin-subhead {
    font-size: 17px;
    line-height: 1.75;
    color: #666;
    max-width: 480px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.7s ease-out 0.45s forwards;
  }

  /* What you get list */
  .optin-checklist {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
    opacity: 0;
    animation: fadeInUp 0.7s ease-out 0.55s forwards;
  }

  .optin-checklist li {
    font-size: 15px;
    color: var(--charcoal);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
  }

  .optin-checklist li:first-child {
    border-top: 1px solid var(--border);
  }

  .check-mark {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--teal);
    font-weight: 600;
    margin-top: 3px;
    flex-shrink: 0;
    letter-spacing: 0.05em;
  }

  /* Proof strip */
  .optin-proof {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: #aaa;
    letter-spacing: 0.06em;
    opacity: 0;
    animation: fadeInUp 0.7s ease-out 0.65s forwards;
  }

  /* ── FORM PANEL ─────────────────────────────────────────── */

  .form-label-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.7s ease-out 0.4s forwards;
  }

  .form-heading {
    font-size: 26px;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.015em;
    line-height: 1.25;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeInUp 0.7s ease-out 0.5s forwards;
  }

  .form-subtext {
    font-size: 14px;
    color: #888;
    line-height: 1.65;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeInUp 0.7s ease-out 0.55s forwards;
  }
 

  .form-micro-note {
    margin-top: 16px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: #bbb;
    text-align: center;
    letter-spacing: 0.04em;
  }

  /* ── WHAT HAPPENS NEXT ──────────────────────────────────── */

  .next-steps {
    padding: 80px 0;
    background: var(--charcoal);
  }

  .next-steps-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .next-steps-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 48px;
    text-align: center;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
  }

  .step-item {
    background: var(--charcoal);
    padding: 40px 36px;
    position: relative;
  }

  .step-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: var(--burnt);
    letter-spacing: 0.12em;
    margin-bottom: 16px;
  }

  .step-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }

  .step-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
  }

  /* ── BOTTOM CTA STRIP ───────────────────────────────────── */

  .bottom-strip {
    padding: 48px 0;
    background: var(--teal);
    text-align: center;
  }

  .bottom-strip-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: rgba(245, 241, 235, 0.7);
    letter-spacing: 0.06em;
    margin-bottom: 20px;
  }

  .bottom-strip-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--warm);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(245,241,235,0.4);
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
  }

  .bottom-strip-link:hover {
    border-color: var(--warm);
  }

  /* ── RESPONSIVE ─────────────────────────────────────────── */

  @media (max-width: 968px) {
    .optin-hero {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    .optin-left {
      padding: 100px 32px 48px;
    }

    .optin-right {
      border-left: none;
      border-top: 1px solid var(--border);
      padding: 48px 32px 80px;
    }

    .steps-grid {
      grid-template-columns: 1fr;
    }

    .next-steps-inner {
      padding: 0 24px;
    }
  }


  /* Footer */
  footer {
    padding: 60px 0 40px;
    background: var(--warm);
    border-top: 1px solid var(--border);
  }

  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }

  .footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--charcoal);
  }

  .footer-links {
    display: flex;
    gap: 32px;
  }

  .footer-link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-link:hover {
    color: var(--burnt);
  }

  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: #999;
  }

  .footer-note {
    font-size: 12px;
    color: #999;
  }


.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

  /* Responsive */
  @media (max-width: 968px) {
    .hero-headline { font-size: 52px; }
    .product-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .stats-grid { grid-template-columns: 1fr; gap: 40px; }
    .header-inner { padding: 16px 24px; }
    .container { padding: 0 24px; }
  }

  @media (max-width: 640px) {
    .hero-headline { font-size: 38px; }
    .section-title { font-size: 36px; }
    .about-title { font-size: 32px; }
  }