:root {
      --brand: #ff6c4d;
      --brand-dark: #e85a38;
      --brand-soft: #fff5f0;
      --ink: #0f172a;
      --muted: #64748b;
      --line: #e2e8f0;
      --surface: #f8fafc;
      --max: min(100%, 72rem);
      --radius: 1rem;
      --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 12px 24px -4px rgba(15, 23, 42, 0.08);
    }
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Quicksand", "Segoe UI", Arial, sans-serif;
      font-weight: 500;
      color: var(--ink);
      background: #fff;
      line-height: 1.6;
    }
    h1, h2, h3 { font-family: "Roboto Slab", Georgia, serif; font-weight: 800; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      font-weight: 600;
      font-size: 0.875rem;
      padding: 0.5rem 1rem;
      border-radius: 999px;
      text-decoration: none;
      transition: transform 0.15s, box-shadow 0.15s;
    }
    .btn:active { transform: scale(0.98); }
    .btn-primary {
      background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
      color: #fff !important;
      box-shadow: 0 2px 8px rgba(255, 108, 77, 0.35);
    }
    .btn-primary:hover { filter: brightness(1.05); }
    .btn-ghost {
      background: #fff;
      color: var(--ink) !important;
      border: 1px solid var(--line);
    }
    .btn-ghost:hover { border-color: var(--brand); color: var(--brand-dark) !important; }
    .hero .btn-primary {
      background: #fff !important;
      color: #0f2747 !important;
      box-shadow: 0 4px 14px rgba(15, 39, 71, 0.12);
    }
    .hero .btn-ghost {
      background: rgba(255, 255, 255, 0.12) !important;
      border: 1px solid rgba(255, 255, 255, 0.45) !important;
      color: #fff !important;
    }
    .wrap { max-width: var(--max); margin: 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }
    .section-head { text-align: center; max-width: 46rem; margin: 0 auto 2.75rem; }
    .section-head h2 { margin: 0 0 0.75rem; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.03em; }
    .section-head p { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
    .eyebrow {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--brand-dark);
      margin-bottom: 0.5rem;
    }
    .product-grid {
      display: grid;
      gap: 1.35rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 640px) {
      .product-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 1024px) {
      .product-grid { grid-template-columns: repeat(3, 1fr); }
    }
    .product-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.45rem 1.45rem 1.55rem;
      background: #fff;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .product-card:hover {
      border-color: rgba(255, 108, 77, 0.35);
      box-shadow: 0 12px 32px -8px rgba(15, 23, 42, 0.12);
    }
    .product-icon-wrap {
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 0.9rem;
      background: linear-gradient(145deg, var(--brand-soft) 0%, #fff 70%);
      border: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      color: var(--brand-dark);
    }
    .product-icon {
      width: 1.85rem;
      height: 1.85rem;
      flex-shrink: 0;
    }
    .product-card h3 {
      margin: 0 0 0.5rem;
      font-size: 1.17rem;
      letter-spacing: -0.02em;
      line-height: 1.25;
      color: var(--ink);
    }
    .product-lede {
      margin: 0 0 0.65rem;
      font-size: 0.94rem;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.45;
    }
    .product-bullets {
      margin: 0 0 1.1rem;
      padding-left: 1.15rem;
      font-size: 0.875rem;
      color: var(--muted);
      line-height: 1.55;
      flex: 1;
    }
    .product-bullets li { margin-bottom: 0.4rem; }
    .product-bullets li:last-child { margin-bottom: 0; }
    .product-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: auto;
      padding-top: 0.25rem;
    }
    .product-card.note-only .product-links { justify-content: flex-start; }
    section.alt { background: var(--surface); padding: 4rem 0; }
    section#products { padding: 4rem 0 5rem; }
