:root {
      --bg: #f4ecdf;
      --ink: #1e2b24;
      --muted: #5d675e;
      --forest: #244738;
      --leaf: #5c8f66;
      --clay: #ead6be;
      --mist: rgba(255, 251, 244, 0.84);
      --line: rgba(36, 71, 56, 0.12);
      --shadow: 0 26px 64px rgba(45, 44, 31, 0.1);
      --radius: 26px;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: "Avenir Next", "Trebuchet MS", "Helvetica Neue", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at top left, rgba(234, 214, 190, 0.65), transparent 30%),
        radial-gradient(circle at right center, rgba(92, 143, 102, 0.18), transparent 24%),
        linear-gradient(180deg, #fbf7ef 0%, #f0e6d5 100%);
    }

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

    .shell {
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
      padding: 24px 0 56px;
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
    }

    .brand-logo {
      height: 120px;
      width: auto;
      display: block;
      flex-shrink: 0;
    }

    .mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: white;
      background: linear-gradient(135deg, var(--forest), var(--leaf));
    }

    .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .nav-links a {
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.58);
      color: var(--muted);
      border: 1px solid rgba(255,255,255,0.42);
    }

    .panel {
      background: var(--mist);
      border-radius: var(--radius);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .hero {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 22px;
      margin-bottom: 22px;
      padding: 30px;
    }

    .eyebrow {
      display: inline-block;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(234, 214, 190, 0.72);
      color: var(--forest);
      font-weight: 700;
      font-size: 0.84rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    h1 {
      margin: 18px 0 12px;
      font-family: "Iowan Old Style", "Palatino Linotype", serif;
      font-size: clamp(2.4rem, 4.4vw, 4rem);
      line-height: 1.04;
    }

    .lead {
      margin: 0;
      color: var(--muted);
      line-height: 1.78;
      max-width: 58ch;
    }

    .hero-side {
      padding: 24px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(36, 71, 56, 0.98), rgba(27, 53, 42, 0.98));
      color: white;
    }

    .hero-side h2 {
      margin: 8px 0 10px;
    }

    .hero-side p {
      margin: 0;
      color: rgba(255,255,255,0.78);
      line-height: 1.7;
    }

    .hero-side ul {
      padding-left: 18px;
      line-height: 1.75;
      color: rgba(255,255,255,0.86);
    }

    .layout {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 22px;
    }

    .section {
      padding: 28px;
      margin-bottom: 22px;
    }

    .section h2 {
      margin: 0 0 18px;
      font-size: 1.2rem;
    }

    .steps {
      display: grid;
      gap: 14px;
    }

    .step {
      padding: 18px;
      border-radius: 20px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.7);
    }

    .step strong {
      display: block;
      margin-bottom: 6px;
    }

    .step span {
      color: var(--muted);
      line-height: 1.7;
    }

    .options {
      display: grid;
      gap: 12px;
      margin: 18px 0;
    }

    .option {
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(36, 71, 56, 0.05);
      border: 1px solid rgba(36, 71, 56, 0.08);
      display: flex;
      justify-content: space-between;
      gap: 14px;
    }

    .option small {
      color: var(--muted);
      line-height: 1.6;
    }

    .tag {
      align-self: start;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(219, 234, 217, 0.82);
      color: var(--forest);
      font-weight: 800;
      white-space: nowrap;
    }

    .action-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 16px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 20px;
      border-radius: 18px;
      font-weight: 800;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--forest), var(--leaf));
      color: white;
    }

    .btn-soft {
      background: rgba(255,255,255,0.74);
      border: 1px solid var(--line);
      color: var(--forest);
    }

    .note {
      padding: 18px;
      border-radius: 18px;
      background: rgba(234, 214, 190, 0.42);
      color: var(--ink);
      line-height: 1.7;
    }

    .footer {
      margin-top: 24px;
      padding: 22px 24px;
      border-radius: 24px;
      background: rgba(36, 71, 56, 0.92);
      color: rgba(255,255,255,0.86);
      display: grid;
      gap: 8px;
      box-shadow: var(--shadow);
    }

    .footer-brand {
      font-weight: 800;
      color: #fff;
    }

    .footer-company,
    .footer-meta {
      display: grid;
      gap: 4px;
      line-height: 1.65;
    }

    .footer-company strong {
      color: #fff;
    }

    .footer a {
      color: #fff;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    @media (max-width: 940px) {
      .hero,
      .layout {
        grid-template-columns: 1fr;
      }
    }
