:root {
      --bg: #0c1117;
      --surface: #141b24;
      --border: #243042;
      --text: #e8eef5;
      --muted: #8b9cb3;
      --accent: #3d9cf5;
      --warm: #f59e0b;
      --max: 1120px;
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.65;
      font-size: 1.05rem;
    }
    a { color: var(--accent); text-decoration: none; }
    a:hover { text-decoration: underline; }
    .wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 0.65rem 1.2rem; border-radius: 8px; font-weight: 600;
      font-size: 0.95rem; border: none; cursor: pointer; transition: 0.15s;
    }
    .btn-primary { background: var(--accent); color: #06101c; }
    .btn-primary:hover { background: #5eb0ff; text-decoration: none; }
    .hero {
      padding: 4rem 0 3rem;
      background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(61, 156, 245, 0.18), transparent);
      border-bottom: 1px solid var(--border);
    }
    .hero-grid {
      display: grid;
      gap: 2.25rem;
      align-items: center;
    }
    .hero-copy { min-width: 0; }
    .hero-visual {
      overflow: hidden;
      border: 1px solid rgba(61, 156, 245, 0.28);
      border-radius: 16px;
      background: #081018;
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
    }
    .hero-visual img {
      display: block;
      width: 100%;
      height: auto;
    }
    .eyebrow {
      display: inline-block; font-size: 0.8rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.08em; color: var(--warm);
      margin-bottom: 0.75rem;
    }
    h1 {
      font-family: Georgia, "Times New Roman", Times, serif;
      font-weight: 400; font-size: clamp(2.3rem, 5vw, 3.15rem);
      line-height: 1.12; margin: 0 0 1rem; letter-spacing: -0.02em;
      max-width: 18ch;
    }
    .lead { color: var(--muted); font-size: 1.1rem; max-width: 42rem; margin: 0; }
    main section { padding: 3.5rem 0; }
    .content {
      display: grid;
      gap: 2rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 900px) {
      .hero-grid { grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr); }
      .content { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
    }
    .story p {
      color: var(--muted);
      margin: 0 0 1.15rem;
      max-width: 42rem;
    }
    .story strong { color: var(--text); }
    .trust-card, .cta-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.5rem;
    }
    .trust-card h2, .cta-card h2 {
      margin: 0 0 0.9rem;
      font-size: 1.15rem;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      font-weight: 700;
    }
    .trust-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .trust-list li {
      position: relative;
      padding: 0.6rem 0 0.6rem 1.5rem;
      border-bottom: 1px solid var(--border);
      color: var(--muted);
    }
    .trust-list li:last-child { border-bottom: none; }
    .trust-list li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: 700;
    }
    .quote {
      margin-top: 1.5rem;
      padding-top: 1.25rem;
      border-top: 1px solid var(--border);
    }
    .quote blockquote {
      margin: 0;
      color: var(--text);
      font-size: 1rem;
      line-height: 1.6;
      font-weight: 500;
    }
    .quote p {
      margin: 0.7rem 0 0;
      color: var(--muted);
      font-size: 0.9rem;
    }
    .cta-card p {
      margin: 0 0 1.25rem;
      color: var(--muted);
    }
    footer {
      padding: 2.5rem 0;
      color: var(--muted);
      font-size: 0.9rem;
      border-top: 1px solid var(--border);
    }
    .footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
    @media (max-width: 640px) {
      body { font-size: 1.15rem; line-height: 1.7; }
      .lead { font-size: 1.08rem; }
      .story p,
      .trust-list li,
      .cta-card p,
      .quote p,
      footer { font-size: 1.05rem; }
    }

.cta-card-spaced { margin-top: 1.25rem; }

