    :root {
      --bg-main: #f6f2ea;
      --bg-alt: #f1efea;
      --text-main: #1f2a33;
      --text-soft: #4f5e69;
      --line: #d9d6cf;
      --accent: #5f7382;
      --accent-hover: #526574;
      --white: #ffffff;
      --radius: 10px;
      --container: 1040px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      color: var(--text-main);
      background-color: var(--bg-main);
      line-height: 1.6;
      position: relative;
      text-rendering: optimizeLegibility;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.045;
      background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.22) 0.5px, transparent 0.7px),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.18) 0.5px, transparent 0.7px);
      background-size: 3px 3px, 4px 4px;
      z-index: 1;
    }

    .container {
      width: min(100% - 3rem, var(--container));
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    header {
      border-bottom: 1px solid var(--line);
      background: rgba(246, 242, 234, 0.92);
      backdrop-filter: blur(2px);
      position: sticky;
      top: 0;
      z-index: 5;
    }

    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
      gap: 1rem;
    }

    .brand {
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-decoration: none;
      color: var(--text-main);
    }

    nav {
      display: flex;
      gap: 1.3rem;
      flex-wrap: wrap;
    }

    nav a,
    .footer-links a {
      color: var(--text-soft);
      text-decoration: none;
      font-size: 0.95rem;
    }

    nav a:hover,
    .footer-links a:hover {
      color: var(--text-main);
    }

    main section {
      padding: 5.2rem 0;
      border-bottom: 1px solid var(--line);
    }

    section.alt {
      background: var(--bg-alt);
    }

    h1,
    h2 {
      margin: 0 0 1rem;
      line-height: 1.15;
      letter-spacing: -0.01em;
    }

    h1 {
      font-size: clamp(2rem, 4.8vw, 3.6rem);
      max-width: 22ch;
    }

    .hero-title-static {
      display: block;
    }

    .type-rotator {
      display: inline-grid;
      position: relative;
      min-width: 9ch;
      min-height: 1.15em;
      color: var(--accent);
    }

    .type-rotator .word {
      grid-area: 1 / 1;
      overflow: hidden;
      white-space: nowrap;
      width: 0;
      opacity: 0;
      border-right: 1px solid transparent;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      animation: caret-blink 0.8s step-end infinite;
    }

    .type-rotator .word:nth-child(1) {
      animation: type-cycle-1 14s steps(var(--chars), end) infinite, caret-blink 0.8s step-end infinite;
    }

    .type-rotator .word:nth-child(2) {
      animation: type-cycle-2 14s steps(var(--chars), end) infinite, caret-blink 0.8s step-end infinite;
    }

    .type-rotator .word:nth-child(3) {
      animation: type-cycle-3 14s steps(var(--chars), end) infinite, caret-blink 0.8s step-end infinite;
    }

    .type-rotator .word:nth-child(4) {
      animation: type-cycle-4 14s steps(var(--chars), end) infinite, caret-blink 0.8s step-end infinite;
    }

    .type-rotator .w7 {
      --chars: 7;
      --width: 7ch;
    }

    .type-rotator .w8 {
      --chars: 8;
      --width: 8ch;
    }

    .type-rotator .w9 {
      --chars: 9;
      --width: 9ch;
    }

    @keyframes type-cycle-1 {
      0% {
        opacity: 1;
        border-right-color: currentColor;
        width: 0;
      }
      7.1429% {
        opacity: 1;
        border-right-color: currentColor;
        width: var(--width);
      }
      21.4286% {
        opacity: 1;
        border-right-color: currentColor;
        width: var(--width);
      }
      24% {
        opacity: 1;
        border-right-color: currentColor;
        width: 0;
      }
      25%,
      100% {
        opacity: 0;
        border-right-color: transparent;
        width: 0;
      }
    }

    @keyframes type-cycle-2 {
      0%,
      24% {
        opacity: 0;
        border-right-color: transparent;
        width: 0;
      }
      25% {
        opacity: 1;
        border-right-color: currentColor;
        width: 0;
      }
      32.1429% {
        opacity: 1;
        border-right-color: currentColor;
        width: var(--width);
      }
      46.4286% {
        opacity: 1;
        border-right-color: currentColor;
        width: var(--width);
      }
      49% {
        opacity: 1;
        border-right-color: currentColor;
        width: 0;
      }
      50%,
      100% {
        opacity: 0;
        border-right-color: transparent;
        width: 0;
      }
    }

    @keyframes type-cycle-3 {
      0%,
      49% {
        opacity: 0;
        border-right-color: transparent;
        width: 0;
      }
      50% {
        opacity: 1;
        border-right-color: currentColor;
        width: 0;
      }
      57.1429% {
        opacity: 1;
        border-right-color: currentColor;
        width: var(--width);
      }
      71.4286% {
        opacity: 1;
        border-right-color: currentColor;
        width: var(--width);
      }
      74% {
        opacity: 1;
        border-right-color: currentColor;
        width: 0;
      }
      75%,
      100% {
        opacity: 0;
        border-right-color: transparent;
        width: 0;
      }
    }

    @keyframes type-cycle-4 {
      0%,
      74% {
        opacity: 0;
        border-right-color: transparent;
        width: 0;
      }
      75% {
        opacity: 1;
        border-right-color: currentColor;
        width: 0;
      }
      82.1429% {
        opacity: 1;
        border-right-color: currentColor;
        width: var(--width);
      }
      96.4286% {
        opacity: 1;
        border-right-color: currentColor;
        width: var(--width);
      }
      99% {
        opacity: 1;
        border-right-color: currentColor;
        width: 0;
      }
      100% {
        opacity: 0;
        border-right-color: transparent;
        width: 0;
      }
    }

    @keyframes caret-blink {
      0%,
      49% {
        border-color: currentColor;
      }
      50%,
      100% {
        border-color: transparent;
      }
    }

    h2 {
      font-size: clamp(1.45rem, 3vw, 2.1rem);
      max-width: 24ch;
    }

    p {
      margin: 0;
      max-width: 66ch;
      color: var(--text-soft);
      font-size: 1.06rem;
    }

    .hero p {
      margin-top: 1rem;
      font-size: 1.12rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid transparent;
      border-radius: var(--radius);
      padding: 0.78rem 1.2rem;
      text-decoration: none;
      font-weight: 500;
      font-size: 1rem;
      transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
      cursor: pointer;
      min-height: 52px;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--accent);
      color: var(--white);
    }

    .btn-primary:hover {
      background: var(--accent-hover);
    }

    .btn-soft {
      background: transparent;
      border-color: var(--accent);
      color: var(--accent);
    }

    .btn-soft:hover {
      background: rgba(95, 115, 130, 0.08);
    }

    .hero-cta {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .trust-line {
      font-size: 0.92rem;
      color: #63727d;
    }

    .hero-placeholder {
      margin-top: 2.5rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #e6e8e7;
      aspect-ratio: 16 / 8;
      display: grid;
      place-items: center;
      color: #5e6d78;
      text-align: center;
      padding: 1rem;
      font-size: 0.98rem;
    }

    .section-copy {
      display: grid;
      gap: 1rem;
    }

    ul {
      margin: 1rem 0 0;
      padding-left: 1.1rem;
      max-width: 70ch;
      color: var(--text-soft);
      font-size: 1.02rem;
    }

    li + li {
      margin-top: 0.58rem;
    }

    .soft-cta-wrap {
      display: grid;
      gap: 1rem;
      justify-items: start;
    }

    .email-wrap {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }

    .email-wrap h2,
    .email-wrap p {
      margin-left: auto;
      margin-right: auto;
    }

    form {
      margin-top: 1.6rem;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 0.8rem;
      align-items: center;
    }

    input[type="email"] {
      min-height: 52px;
      border: 1px solid #c7c9c4;
      border-radius: var(--radius);
      padding: 0 0.95rem;
      font-size: 1rem;
      width: 100%;
      background: #fcfbf8;
      color: var(--text-main);
    }

    input::placeholder {
      color: #88949c;
    }

    .privacy-note {
      margin-top: 0.85rem;
      font-size: 0.88rem;
      color: #6f7b84;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    :focus-visible {
      outline: 2px solid #6f8798;
      outline-offset: 2px;
    }

    footer {
      padding: 2rem 0 2.4rem;
      background: var(--bg-main);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      align-items: center;
      flex-wrap: wrap;
      color: #66737d;
      font-size: 0.9rem;
    }

    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 2rem, var(--container));
      }

      main section {
        padding: 4.2rem 0;
      }

      form {
        grid-template-columns: 1fr;
      }

      .btn,
      input[type="email"] {
        width: 100%;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .type-rotator .word {
        animation: none;
        border-right: 0;
        width: auto;
        opacity: 0;
      }

      .type-rotator .word:first-child {
        opacity: 1;
      }
    }
