
    :root {
      --cream:  #FAF9F0;
      --forest: #1A3C2F;
      --amber:  #F2A60D;
      --terra:  #C8553D;
      --dark:   #111111;
      --mid:    #666666;
      --border: rgba(0,0,0,0.08);
      --radius: 20px;
      --tr:     0.3s ease;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Space Grotesk', sans-serif;
      background: var(--cream); color: var(--dark);
      line-height: 1.6; overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }

    /* PRELOADER */
    #preloader {
      position: fixed; inset: 0; background: var(--forest);
      display: flex; align-items: center; justify-content: center;
      z-index: 9999; transition: opacity 0.6s ease;
    }
    #preloader.hidden { opacity: 0; pointer-events: none; }
    .pre-logo {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.8rem; font-weight: 700; color: var(--amber);
      letter-spacing: -1px;
      animation: pulse 1s ease infinite alternate;
    }
    @keyframes pulse { from { opacity: 0.4; } to { opacity: 1; } }

    /* HEADER */
    .site-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      height: 68px; padding: 0 2.5rem;
      display: flex; align-items: center; justify-content: space-between;
      transition: background var(--tr), box-shadow var(--tr);
    }
    .site-header.scrolled {
      background: rgba(250,249,240,0.96);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    }
    .logo {
      font-size: 1.2rem; font-weight: 700; letter-spacing: -0.5px; color: var(--dark);
    }
    .logo span { color: var(--terra); }

    .header-right { display: flex; align-items: center; gap: 2rem; }
    .header-nav { display: flex; gap: 2rem; align-items: center; }
    .header-nav a {
      font-size: 0.88rem; font-weight: 500; color: var(--mid);
      transition: color var(--tr);
    }
    .header-nav a:hover { color: var(--dark); }

    .lang-switcher { display: flex; background: rgba(0,0,0,0.06); border-radius: 50px; padding: 3px; }
    .lang-btn {
      padding: 5px 12px; border-radius: 50px;
      border: none; background: transparent;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.78rem; font-weight: 600; color: var(--mid);
      cursor: pointer; transition: all var(--tr);
    }
    .lang-btn.active { background: var(--dark); color: white; }

    .nav-cta {
      padding: 8px 20px; background: var(--terra); color: white;
      border-radius: 50px; font-size: 0.85rem; font-weight: 600;
      transition: all var(--tr);
    }
    .nav-cta:hover { background: #a83d28; transform: translateY(-1px); }

    .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
    .nav-toggle span { width: 22px; height: 2px; background: var(--dark); display: block; }

    /* HERO */
    .hero {
      min-height: 100vh; position: relative; overflow: hidden;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: 120px 2rem 0;
      background: var(--cream);
    }
    .hero-blob {
      position: absolute; pointer-events: none;
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(26,60,47,0.07) 0%, transparent 70%);
      top: 50%; left: 50%; transform: translate(-50%, -55%);
    }
    .hero-content { position: relative; z-index: 1; max-width: 860px; }

    .hero-kicker {
      display: inline-block;
      background: rgba(26,60,47,0.08); border: 1px solid rgba(26,60,47,0.15);
      color: var(--forest); font-size: 0.75rem; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      padding: 6px 16px; border-radius: 50px; margin-bottom: 1.8rem;
    }
    .hero h1 {
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 700; line-height: 1.0;
      letter-spacing: -2.5px; margin-bottom: 1.5rem; color: var(--dark);
    }
    .hero h1 em { color: var(--terra); font-style: normal; }
    .hero-sub {
      font-size: 1.05rem; color: var(--mid);
      max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.75;
    }
    .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }
    .btn-terra {
      padding: 14px 30px; background: var(--terra); color: white;
      border: 2px solid var(--terra); border-radius: 50px;
      font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.95rem;
      cursor: pointer; transition: all var(--tr);
    }
    .btn-terra:hover { background: #a83d28; border-color: #a83d28; transform: translateY(-2px); }
    .btn-outline {
      padding: 14px 30px; background: transparent; color: var(--dark);
      border: 2px solid var(--border); border-radius: 50px;
      font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.95rem;
      cursor: pointer; transition: all var(--tr);
    }
    .btn-outline:hover { border-color: rgba(0,0,0,0.2); }

    /* MARQUEE TICKER */
    .ticker-wrap {
      position: absolute; bottom: 0; left: 0; right: 0;
      overflow: hidden; background: var(--forest); padding: 14px 0;
    }
    .ticker {
      display: flex; gap: 4rem;
      width: max-content;
      animation: marquee 20s linear infinite;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .ticker-item {
      color: var(--amber); font-weight: 700; font-size: 0.85rem;
      letter-spacing: 3px; text-transform: uppercase; white-space: nowrap;
      display: flex; align-items: center; gap: 0.8rem;
    }
    .ticker-dot { width: 5px; height: 5px; background: rgba(242,166,13,0.4); border-radius: 50%; }

    /* SECTIONS */
    .section { padding: 90px 2rem; }
    .section-inner { max-width: 1100px; margin: 0 auto; }

    .section-eyebrow {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--terra); margin-bottom: 0.8rem;
    }
    .section-title {
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 700; line-height: 1.1;
      letter-spacing: -1.5px; margin-bottom: 1rem;
    }
    .section-sub {
      font-size: 1rem; color: var(--mid);
      max-width: 500px; margin: 0 auto 3.5rem; line-height: 1.7;
    }
    .text-center { text-align: center; }

    /* BENTO SERVICES */
    .services { background: var(--cream); }
    .bento-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .bento-card {
      border-radius: var(--radius); padding: 2.2rem;
      opacity: 0; transform: translateY(20px);
      transition: transform var(--tr);
    }
    .bento-card.visible { animation: fadeUp 0.5s forwards; }
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
    .bento-card.wide { grid-column: span 2; }
    .bento-card.play { background: var(--forest); color: white; }
    .bento-card.stream { background: #FFF4DC; }
    .bento-card.fitness { background: #FFF0ED; }
    .bento-card.learn { background: var(--dark); color: white; }

    .bento-icon {
      width: 52px; height: 52px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 1.5rem;
    }
    .play .bento-icon { background: rgba(242,166,13,0.2); color: var(--amber); }
    .stream .bento-icon { background: rgba(200,85,61,0.1); color: var(--terra); }
    .fitness .bento-icon { background: rgba(200,85,61,0.12); color: var(--terra); }
    .learn .bento-icon { background: rgba(242,166,13,0.15); color: var(--amber); }

    .bento-card h3 {
      font-size: 1.2rem; font-weight: 700; margin-bottom: 0.6rem; letter-spacing: -0.5px;
    }
    .bento-card.play h3, .bento-card.learn h3 { color: white; }
    .bento-card.stream h3, .bento-card.fitness h3 { color: var(--dark); }

    .bento-card p { font-size: 0.9rem; line-height: 1.65; }
    .bento-card.play p { color: rgba(255,255,255,0.65); }
    .bento-card.learn p { color: rgba(255,255,255,0.55); }
    .bento-card.stream p, .bento-card.fitness p { color: var(--mid); }

    .bento-tag {
      display: inline-block; margin-top: 1.2rem;
      font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    }
    .play .bento-tag { color: var(--amber); }
    .stream .bento-tag { color: var(--terra); }
    .fitness .bento-tag { color: var(--terra); }
    .learn .bento-tag { color: var(--amber); }

    /* PLANS */
    .plans { background: var(--forest); }
    .plans .section-eyebrow { color: var(--amber); }
    .plans .section-title { color: white; }
    .plans .section-title em { color: var(--amber); font-style: normal; }
    .plans .section-sub { color: rgba(255,255,255,0.55); }

    .plans-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 24px; padding: 2.5rem;
      max-width: 600px; margin: 0 auto;
    }
    .plans-perks { list-style: none; margin: 1.5rem 0 2rem; }
    .plans-perks li {
      display: flex; align-items: center; gap: 12px;
      padding: 10px 0; font-size: 0.95rem; color: rgba(255,255,255,0.75);
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .plans-perks li:last-child { border-bottom: none; }
    .plans-perks li i { color: var(--amber); width: 18px; flex-shrink: 0; }

    .email-form { display: flex; }
    .email-form input {
      flex: 1; padding: 13px 18px;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
      border-right: none; border-radius: 50px 0 0 50px;
      color: white; font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem;
      outline: none; transition: border var(--tr);
    }
    .email-form input::placeholder { color: rgba(255,255,255,0.35); }
    .email-form input:focus { border-color: rgba(242,166,13,0.5); }
    .email-form button {
      padding: 13px 24px; background: var(--amber); color: var(--dark);
      border: none; border-radius: 0 50px 50px 0;
      font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.9rem;
      cursor: pointer; transition: background var(--tr);
    }
    .email-form button:hover { background: #dA9300; }
    #subscribe-thanks { display: none; margin-top: 1rem; color: var(--amber); font-weight: 600; font-size: 0.9rem; }

    /* FAQ */
    .faq { background: var(--cream); }
    .faq-list { max-width: 680px; margin: 0 auto; }
    .faq-item {
      border: 1px solid var(--border); border-radius: var(--radius);
      margin-bottom: 0.8rem; overflow: hidden; transition: border-color var(--tr);
      background: white;
    }
    .faq-item[open] { border-color: rgba(200,85,61,0.3); }
    .faq-item summary {
      padding: 1.1rem 1.4rem; font-weight: 600; font-size: 0.97rem;
      cursor: pointer; list-style: none;
      display: flex; justify-content: space-between; align-items: center;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
      font-size: 0.75rem; color: var(--terra); flex-shrink: 0;
    }
    .faq-item[open] summary::after { content: '\f068'; }
    .faq-answer { padding: 0 1.4rem 1.2rem; color: var(--mid); font-size: 0.93rem; line-height: 1.7; }

    /* FOOTER */
    .site-footer {
      background: var(--dark); color: rgba(255,255,255,0.5);
      padding: 3rem 2.5rem; text-align: center;
    }
    .footer-logo { font-size: 1.3rem; font-weight: 700; color: white; margin-bottom: 0.4rem; }
    .footer-logo span { color: var(--amber); }
    .footer-tagline { font-size: 0.85rem; margin-bottom: 1.5rem; }
    .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem 2rem; margin-bottom: 1.5rem; }
    .footer-links a { font-size: 0.82rem; transition: color var(--tr); }
    .footer-links a:hover { color: var(--amber); }
    .footer-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 0 auto 1.5rem; }
    .footer-legal { font-size: 0.76rem; color: rgba(255,255,255,0.2); max-width: 700px; margin: 0 auto; line-height: 1.6; }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .header-nav { display: none; flex-direction: column; gap: 0;
        position: fixed; top: 68px; left: 0; right: 0;
        background: rgba(250,249,240,0.98); backdrop-filter: blur(10px);
        padding: 1rem 0; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
      .header-nav.open { display: flex; }
      .header-nav a, .nav-cta { padding: 0.8rem 2rem; border-radius: 0; background: transparent; color: var(--dark); }
      .nav-toggle { display: flex; }
      .bento-grid { grid-template-columns: 1fr; }
      .bento-card.wide { grid-column: span 1; }
      .hero-blob { width: 300px; height: 300px; }
    }
    @media (max-width: 480px) {
      .email-form { flex-direction: column; }
      .email-form input { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: none; border-radius: 50px 50px 0 0; }
      .email-form button { border-radius: 0 0 50px 50px; }
      .hero-btns { flex-direction: column; align-items: center; }
    }
  
/* Footer contact line (added by _to_php.py) */
.footer-contact { font-size: 0.82rem; opacity: 0.75; margin-bottom: 0.5rem; }
.footer-contact a { text-decoration: underline; }
