:root {
      --ink: #1c1b1b;
      --muted: #404a3a;
      --paper: #fcf8f8;
      --soft: #f6f3f2;
      --white: #ffffff;
      --primary: #266d00;
      --primary-2: #6ac043;
      --night: #12182e;
      --deep: #0a0e1a;
      --radius: 8px;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: Manrope, Inter, Segoe UI, Arial, sans-serif;
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; }

    .container {
      width: min(100% - 48px, 1200px);
      margin: 0 auto;
    }

    .nav {
      position: fixed;
      z-index: 50;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(18, 24, 46, 0.92);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(16px);
    }

    .nav-inner {
      width: min(100% - 48px, 1200px);
      min-height: 80px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .logo img {
      width: auto;
      height: 46px;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 38px;
    }

    .nav-links a {
      color: var(--white);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      transition: color 220ms ease;
    }

    .nav-links a:hover { color: var(--primary-2); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 13px 24px;
      border-radius: var(--radius);
      color: var(--white);
      background: var(--primary-2);
      font-weight: 900;
      transition: transform 220ms ease;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-2px); }

    .mobile-menu {
      display: none;
      position: relative;
    }

    .mobile-menu summary {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: var(--radius);
      color: var(--white);
      cursor: pointer;
      list-style: none;
      position: relative;
      z-index: 90;
    }

    .mobile-menu summary::-webkit-details-marker { display: none; }

    .menu-lines,
    .menu-lines::before,
    .menu-lines::after {
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
    }

    .menu-lines { position: relative; }

    .menu-lines::before,
    .menu-lines::after {
      content: "";
      position: absolute;
      left: 0;
    }

    .menu-lines::before { top: -7px; }
    .menu-lines::after { top: 7px; }

    .mobile-panel {
      position: fixed;
      top: 0;
      right: 0;
      z-index: 80;
      width: min(84vw, 340px);
      height: 100vh;
      display: grid;
      align-content: start;
      gap: 8px;
      padding: 88px 18px 24px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(18, 24, 46, 0.98);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    }

    .mobile-menu[open]::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: 70;
      background: rgba(0, 0, 0, 0.42);
      backdrop-filter: blur(3px);
    }

    .mobile-panel a {
      color: var(--white);
      padding: 10px 12px;
      border-radius: var(--radius);
      font-weight: 800;
    }

    .mobile-panel a:hover {
      color: var(--primary-2);
      background: rgba(255, 255, 255, 0.06);
    }

    .mobile-panel .mobile-cta {
      margin-top: 6px;
      color: var(--white);
      background: var(--primary-2);
      text-align: center;
    }

    .hero {
      padding: 120px 0 60px;
      background: linear-gradient(to bottom, var(--soft), var(--paper));
    }

    .eyebrow {
      display: block;
      margin-bottom: 14px;
      color: var(--primary);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    h1 {
      margin: 0 0 20px;
      font-size: clamp(2.7rem, 7vw, 5rem);
      line-height: 1.04;
      letter-spacing: -0.055em;
    }

    .hero p {
      max-width: 760px;
      margin: 0;
      color: var(--muted);
      font-size: 1.1rem;
    }

    .content {
      padding: 72px 0 96px;
    }

    .content-card {
      display: grid;
      gap: 22px;
      padding: 42px;
      border: 1px solid rgba(192, 202, 181, 0.45);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    }

    .content-card h2 {
      margin: 0;
      font-size: 1.8rem;
      line-height: 1.2;
    }

    .content-card p {
      margin: 0;
      color: var(--muted);
    }

    .content-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 12px;
    }

    .content-list span {
      padding: 16px;
      border-radius: var(--radius);
      color: var(--primary);
      background: rgba(106, 192, 67, 0.12);
      font-weight: 900;
    }

    .footer {
      background: var(--deep);
      color: var(--white);
      padding: 86px 0 42px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, 1fr);
      gap: 54px;
    }

    .footer h4,
    .footer h5 {
      margin: 0 0 18px;
      color: var(--white);
    }

    .footer p,
    .footer a {
      color: #cbd5e1;
    }

    .footer ul {
      display: grid;
      gap: 12px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer a {
      transition: color 220ms ease, transform 220ms ease;
    }

    .footer a:hover {
      color: var(--primary-2);
      transform: translateX(4px);
    }

    .socials {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .socials a {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border: 1px solid #334155;
      border-radius: 50%;
      color: var(--white);
      font-weight: 900;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      margin-top: 68px;
      padding-top: 28px;
      border-top: 1px solid #1e293b;
    }

    .footer-bottom p {
      margin: 0;
      color: #94a3b8;
      font-size: 0.88rem;
    }

    @media (max-width: 980px) {
      .container,
      .nav-inner {
        width: min(100% - 32px, 1200px);
      }

      .nav-inner { min-height: 70px; }

      .nav-links,
      .nav-cta { display: none; }

      .mobile-menu { display: block; }

      .hero { padding-top: 100px; }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .content-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 620px) {
      .logo img { height: 36px; }

      .content-card { padding: 26px; }

      .footer-bottom {
        align-items: stretch;
        flex-direction: column;
      }

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