:root {
    --cream: #F5EDE1;
    --dark: #1C1712;
    --darker: #120D0A;
    --amber: #E4A850;
    --terracotta: #C4633D;
    --teal: #5DCAA5;
    --font-display: Georgia, 'Iowan Old Style', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
  }

  a { color: inherit; }

  .eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.65;
  }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 2rem;
    background: rgba(28, 23, 18, 0.92);
    backdrop-filter: blur(8px);
    color: var(--cream);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }
  .nav-logo .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--amber);
  }
  .nav-links { display: flex; gap: 1.8rem; font-size: 0.9rem; }
  .nav-links a { text-decoration: none; opacity: 0.8; transition: opacity 0.2s; }
  .nav-links a:hover { opacity: 1; }

  /* HERO */
  .hero {
    position: relative;
    background: var(--dark);
    color: var(--cream);
    padding: 6rem 2rem 7rem;
    overflow: hidden;
    text-align: center;
  }
  .ring-wrap {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 640px; height: 640px;
    opacity: 0.9;
  }
  .ring-wrap svg { width: 100%; height: 100%; }
  .ring-bg { fill: none; stroke: rgba(245,237,225,0.06); stroke-width: 1; }
  .ring-progress {
    fill: none;
    stroke: url(#ringGradient);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-dasharray: 880;
    stroke-dashoffset: 880;
    animation: draw 2.4s cubic-bezier(0.65,0,0.35,1) forwards 0.3s;
  }
  @keyframes draw { to { stroke-dashoffset: 195; } }

  .hero-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.15;
    margin: 1.4rem 0 1.2rem;
  }
  .hero p.lead {
    font-size: 1.1rem;
    color: rgba(245,237,225,0.75);
    max-width: 480px;
    margin: 0 auto 2.2rem;
  }
  .badge-row { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 4px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn-primary { background: var(--amber); color: var(--darker); }
  .btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(245,237,225,0.3); }

  /* SECTIONS */
  section { padding: 5rem 2rem; }
  .section-inner { max-width: 880px; margin: 0 auto; }
  h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    margin: 0.6rem 0 2.5rem;
  }

  /* FEATURES */
  .features { background: var(--cream); }
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.2rem;
  }
  .feature {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }
  .feature-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--cream);
  }
  .feature h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.15rem;
  }
  .feature p { font-size: 0.92rem; opacity: 0.75; }

  /* SUPPORT / FAQ */
  .support { background: var(--darker); color: var(--cream); }
  .support h2 { color: var(--cream); }
  .faq-item {
    border-top: 1px solid rgba(245,237,225,0.14);
    padding: 1.4rem 0;
  }
  .faq-item:last-child { border-bottom: 1px solid rgba(245,237,225,0.14); }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.05rem;
    gap: 1rem;
  }
  .faq-q .plus {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 4px;
    border: 1px solid rgba(245,237,225,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.25s ease;
  }
  .faq-item.open .plus { transform: rotate(45deg); background: var(--amber); color: var(--darker); border-color: var(--amber); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-size: 0.94rem;
    color: rgba(245,237,225,0.72);
  }
  .faq-a-inner { padding-top: 0.9rem; max-width: 620px; }
  .faq-item.open .faq-a { max-height: 220px; }

  /* CONTACT */
  .contact {
    background: linear-gradient(135deg, var(--terracotta), var(--amber));
    color: var(--darker);
    text-align: center;
  }
  .contact h2 { color: var(--darker); }
  .contact p { max-width: 460px; margin: 0 auto 1.8rem; opacity: 0.85; }
  .contact .btn-primary { background: var(--darker); color: var(--cream); }

  footer {
    background: var(--dark);
    color: rgba(245,237,225,0.55);
    padding: 2.2rem 2rem;
    font-size: 0.82rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  footer a { text-decoration: none; opacity: 0.85; }
  footer a:hover { opacity: 1; }
  .footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }

  @media (prefers-reduced-motion: reduce) {
    .ring-progress { animation: none; stroke-dashoffset: 195; }
    html { scroll-behavior: auto; }
  }

  @media (max-width: 640px) {
    nav { padding: 1rem 1.2rem; }
    .nav-links { display: none; }
    section { padding: 3.5rem 1.2rem; }
    footer { flex-direction: column; text-align: center; justify-content: center; }
  }
