﻿:root {
      --bg: #f4f9fd;
      --surface: #ffffff;
      --surface-soft: #eaf4fb;
      --ink: #123a63;
      --muted: #4e6985;
      --line: rgba(16, 70, 128, 0.14);
      --accent: #104680;
      --accent-strong: #104680;
      --accent-soft: #daeefa;
      --shadow: 0 24px 70px rgba(16, 70, 128, 0.12);
      --radius-xl: 34px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --max: 1140px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      font-family: "Manrope", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at top right, rgba(218, 238, 250, 0.35), transparent 26%),
        radial-gradient(circle at bottom left, rgba(16, 70, 128, 0.08), transparent 28%),
        var(--bg);
      line-height: 1.6;
    }

    body.menu-open {
      overflow: hidden;
    }

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

    .container {
      width: min(var(--max), calc(100vw - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: fixed;
      top: 0;
      z-index: 20;
      width: 100%;
      backdrop-filter: none;
      background-color: rgba(255, 255, 255, 0);
      transition:
        background-color 120ms linear,
        box-shadow 120ms linear,
        backdrop-filter 120ms linear;
    }

    .site-header.is-scrolled {
      background-color: rgba(16, 70, 128, 0.7);
      backdrop-filter: blur(15px);
    }

    body.menu-open .site-header {
      background-color: var(--accent);
      backdrop-filter: none;
      box-shadow: 0 18px 40px rgba(16, 70, 128, 0.2);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      position: relative;
      transition: padding 160ms ease;
    }

    .brand {
      max-width: 260px;
      position: relative;
      z-index: 2;
      transform-origin: left center;
      transition: transform 160ms ease;
    }

    .brand img {
      display: block;
      width: 100%;
      height: auto;
      filter: none;
      box-shadow: none;
      transition: filter 120ms linear;
    }

    .site-header.is-scrolled .brand {
      transform: scale(0.64);
    }

    .site-header.is-scrolled .brand img,
    body.menu-open .brand img {
      filter: brightness(0) invert(1);
    }

    .nav-shell {
      flex: 1 1 auto;
      display: flex;
      justify-content: center;
      min-width: 0;
    }

    .nav-backdrop {
      display: none;
    }

    .nav {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 26px;
      color: var(--muted);
      font-size: 0.96rem;
      width: min(100%, 680px);
    }

    .nav-mobile-top {
      display: none;
    }

    .nav a {
      position: relative;
      padding-bottom: 4px;
      font-weight: bold;
      transition: color 120ms linear;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 2px;
      background: var(--accent-strong);
      transform: scaleX(0);
      transform-origin: left;
      transition:
        transform 180ms ease,
        background 120ms linear;
    }

    .nav a:hover::after,
    .nav a:focus-visible::after {
      transform: scaleX(1);
    }

    .site-header.is-scrolled .nav,
    .site-header.is-scrolled .nav a,
    body.menu-open .nav,
    body.menu-open .nav a {
      color: #fff;
    }

    .site-header.is-scrolled .nav a::after,
    body.menu-open .nav a::after {
      background: #fff;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      position: relative;
      z-index: 2;
      transform-origin: right center;
      transition: transform 160ms ease;
    }

    .site-header.is-scrolled .header-actions {
      transform: scale(0.8);
    }

    .header-cta {
      white-space: nowrap;
    }

    .site-header.is-scrolled .header-cta,
    body.menu-open .header-cta {
      background: #fff;
      color: var(--accent);
      box-shadow: none;
    }

    .nav-toggle,
    .nav-close {
      appearance: none;
      border: 1px solid transparent;
      cursor: pointer;
    }

    .nav-toggle {
      display: none;
      width: 52px;
      height: 52px;
      padding: 0;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      border-radius: 16px;
      border-color: rgba(16, 70, 128, 0.14);
      background: rgba(255, 255, 255, 0.84);
      color: var(--accent);
      transition:
        background 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
    }

    .nav-toggle span {
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition:
        transform 180ms ease,
        opacity 180ms ease;
    }

    .site-header.is-scrolled .nav-toggle,
    body.menu-open .nav-toggle {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.24);
      color: #fff;
    }

    .is-scrolled .header-inner{
      height:80px;
    }

    body.menu-open .nav-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    body.menu-open .nav-toggle span:nth-child(2) {
      opacity: 0;
    }

    body.menu-open .nav-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .nav-close {
      display: none;
      position: relative;
      width: 44px;
      height: 44px;
      padding: 0;
      border-radius: 14px;
      border-color: rgba(255, 255, 255, 0.24);
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
    }

    .nav-close span {
      position: absolute;
      inset: 50% auto auto 50%;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
    }

    .nav-close span:first-child {
      transform: translate(-50%, -50%) rotate(45deg);
    }

    .nav-close span:last-child {
      transform: translate(-50%, -50%) rotate(-45deg);
    }

    .nav-kicker,
    .btn.nav-cta {
      display: none;
    }

    .pill-link,
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 13px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 700;
      transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease,
        border-color 180ms ease;
    }

    .pill-link:hover,
    .btn:hover,
    .pill-link:focus-visible,
    .btn:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 18px 30px rgba(16, 70, 128, 0.14);
    }

    .pill-link {
      color: var(--muted);
      border-color: var(--line);
      background: rgba(255, 255, 255, 0.84);
    }

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

    .btn-primary:hover,
    .btn-primary:focus-visible {
      background: #0d3b6a;
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.9);
      border-color: var(--line);
      color: var(--ink);
    }

    .hero {
      position: relative;
      overflow: clip;
      padding: 150px 0 40px;
      background-color: var(--surface);
    }

    .hero-grid {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      flex-direction: row-reverse;
    }

    .hero-copy h1,
    .section-title,
    .cta-panel h2 {
      margin: 18px 0 18px;
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(3.2rem, 5vw, 5.3rem);
      line-height: 0.94;
      letter-spacing: -0.02em;
    }

    .hero-copy p {
      max-width: 60ch;
      margin: 0 0 26px;
      font-size: 1.08rem;
      color: var(--muted);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 26px;
    }

    .hero-blob {
      position: absolute;
      inset: 38px 32px 42px 72px;
      background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.42), transparent 28%),
        linear-gradient(145deg, #dceafb, #daeefa);
      border-radius: 38% 62% 44% 56% / 46% 48% 52% 54%;
      filter: drop-shadow(0 34px 55px rgba(16, 70, 128, 0.14));
      animation: blobFloat 8s ease-in-out infinite;
    }

    .hero-blob::before,
    .hero-blob::after {
      content: "";
      position: absolute;
      border: 2px solid rgba(16, 70, 128, 0.44);
      border-radius: 999px;
      opacity: 0.55;
    }

    .hero-blob::before {
      width: 152px;
      height: 152px;
      top: 54px;
      left: 48px;
      border-right-color: transparent;
      transform: rotate(-16deg);
    }

    .hero-blob::after {
      width: 208px;
      height: 128px;
      right: 50px;
      bottom: 42px;
      border-left-color: transparent;
      transform: rotate(16deg);
    }

    .section {
      padding: 48px 0;
    }

    .hero,
    .section,
    .cta-wrap {
      scroll-margin-top: 110px;
    }

    .hero-illus img {
      mix-blend-mode: multiply;
    }

    .section-intro {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 18px;
      align-items: end;
      margin-bottom: 28px;
    }

    .section-tag {
      display: inline-block;
      margin-bottom: 10px;
      color: var(--muted);
      font-size: 0.84rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .section-title {
      margin: 0;
      font-size: clamp(2.6rem, 4vw, 4rem);
    }

    .section-intro p {
      max-width: 34rem;
      margin: 0;
      color: var(--muted);
    }

    .snapshot-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      margin-top: 18px;
    }

    .snapshot {
      padding: 24px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.78);
      display: grid;
      grid-template-columns: 50px 1fr;
      align-items: center;
    }

    .snapshot strong {
      display: block;
      font-family: "Cormorant Garamond", serif;
      font-size: 2.5rem;
      line-height: 0.92;
      margin-bottom: 8px;
      text-align: center;
    }

    .snapshot span {
      color: var(--muted);
      font-weight: 600;
    }

    .split-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 5%;
      align-items: center;
    }

    .note {
      background:#FFF6C7;
      border-radius:10px;
      box-shadow:0 10px 30px rgba(0,0,0,0.08);
      overflow:hidden;
      transform: rotate(-3deg);
    }

    /* Header */
    .note-header{
      height: 45px;
      background: #F7E8A4;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #E5D48A;
      padding: 0 6%;
    }

    /* Holes */
    .hole {
      width:14px;
      height:14px;
      background:#D8C97A;
      border-radius:50%;
    }

    /* Content */
    .note-body {
      padding:40px 2%;
      min-height:500px;
      background-image: linear-gradient(#EDE2A8 1px, transparent 1px);
      background-size: 100% 32px;
    }

    .note-body, .note-body h3, .note-body p, .note-body li, .note-body .section-tag{
      color:#000!important;
    }

    .story-card h3,
    .card-headline {
      margin: 0 0 14px;
      font-family: "Cormorant Garamond", serif;
      font-size: 2.2rem;
      line-height: 1;
    }

    .story-card p,
    .story-card li {
      color: var(--muted);
    }

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

    .story-list li {
      position: relative;
      padding-left: 26px;
    }

    .story-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #000;
    }

    .story-card aside {
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid rgba(16, 70, 128, 0.12);
      color: var(--ink);
      font-weight: 700;
    }

    .paint-band {
      position: relative;
      margin: 18px 0;
      padding: 78px 0;
      background: linear-gradient(180deg, #d9e8f7, #daeefa);
      overflow: clip;
    }

    .paint-band::before,
    .paint-band::after {
      content: "";
      position: absolute;
      left: -3%;
      width: 106%;
      height: 82px;
      background: var(--bg);
      border-radius: 50%;
    }

    .paint-band::before {
      top: -52px;
    }

    .paint-band::after {
      bottom: -54px;
    }

    .paint-band .container {
      position: relative;
      z-index: 1;
    }

    .paint-band .section-intro p,
    .paint-band .section-tag {
      color: rgba(16, 70, 128, 0.76);
    }

    .benefit-grid,
    .knowledge-grid,
    .planner-grid,
    .faq-layout {
      display: grid;
      gap: 18px;
    }

    .benefit-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .benefit-card {
      padding: 28px;
      border-radius: 26px;
      background: #fff;
      text-align: center;
    }

    .benefit-card .kicker,
    .term-card .kicker,
    .planner-card .kicker {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 55px;
      height: 55px;
      border-radius: 14px;
      margin-bottom: 18px;
      background: rgba(218, 238, 250, 0.52);
      font-size: 2rem;
      font-weight: 800;
    }

    .benefit-card h3,
    .term-card h3,
    .planner-card h3,
    .support-card h3 {
      margin: 0 0 5px;
      font-size: 1.18rem;
      line-height: 1.25;
    }

    .benefit-card p,
    .term-card p,
    .planner-card p,
    .support-card p {
      margin: 0;
      color: var(--muted);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .step-card {
      position: relative;
      padding: 20px 25px;
      min-height: 250px;
      background: linear-gradient(145deg, rgba(16, 70, 128), rgba(98, 154, 191));
      clip-path: polygon(0 0, calc(100% - 44px) 0, 100% 50%, calc(100% - 44px) 100%, 0 100%);
      color: var(--bg);
    }

    .step-card:first-child {
      border-radius: 1.5em 0em 0 1.5em;
    }

    .step-card:not(:first-child) {
      padding-left: 70px;
      clip-path: polygon(
        0 0,
        calc(100% - 44px) 0,
        100% 50%,
        calc(100% - 44px) 100%,
        0 100%,
        44px 50%
      );
      border-radius: 0;
    }

    .step-card:last-child {
      padding-left: 70px;
      padding-right: 25px;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 44px 50%);
      border-radius: 0 1.5em 1.5em 0;
    }

    .step-card strong {
      display: block;
      margin-bottom: 14px;
      font-family: "Cormorant Garamond", serif;
      font-size: 4rem;
      line-height: 0.86;
      color: var(--bg);
    }

    .step-card h3 {
      margin: 0 0 10px;
      font-size: 1.28rem;
    }

    .step-card p {
      margin: 0;
      color: var(--bg);
    }

    .knowledge-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .term-card,
    .planner-card,
    .support-card,
    .faq-group {
      padding: 28px;
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(16, 70, 128, 0.08);
      box-shadow: var(--shadow);
    }

    .planner-grid {
      grid-template-columns: 1.05fr 1fr;
    }

    .planner-stack {
      display: grid;
      gap: 18px;
    }

    .list-grid {
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .list-grid li {
      padding: 14px 16px;
      border-radius: 16px;
      background: linear-gradient(180deg, #ffffff, #eff6fb);
      border: 1px solid rgba(16, 70, 128, 0.08);
      font-weight: 600;
      color: var(--ink);
    }

    .timeline-note {
      margin-top: 20px;
      padding: 20px;
      border-radius: 20px;
      background: linear-gradient(180deg, #f7fbff, #eef5fb);
      border: 1px solid rgba(16, 70, 128, 0.08);
    }

    .timeline-note h4,
    .legal-panel h3 {
      margin: 0 0 10px;
      font-size: 1.05rem;
    }

    .timeline-note ul,
    .legal-checklist,
    .footer-links {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .timeline-note li,
    .legal-checklist li {
      position: relative;
      padding-left: 22px;
      color: var(--muted);
    }

    .timeline-note li + li,
    .legal-checklist li + li {
      margin-top: 10px;
    }

    .timeline-note li::before,
    .legal-checklist li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.6em;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-strong);
    }

    .legal-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(290px, 0.95fr);
      gap: 22px;
    }

    .legal-panel {
      padding: 32px;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(16, 70, 128, 0.08);
      box-shadow: var(--shadow);
    }

    .legal-panel.highlight {
      background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.32), transparent 20%),
        linear-gradient(135deg, #e2eef9, #daeefa);
    }

    .faq-layout {
      grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
      align-items: start;
    }

    .faq-group {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border-bottom: 1px solid rgba(16, 70, 128, 0.1);
      padding-bottom: 12px;
    }

    .faq-item:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .faq-item summary {
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      font-weight: 700;
      padding: 4px 0;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      flex: 0 0 auto;
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--surface-soft);
      color: var(--ink);
      font-size: 1.2rem;
      line-height: 1;
    }

    .faq-item[open] summary::after {
      content: "-";
    }

    .faq-item p {
      margin: 10px 0 0;
      color: var(--muted);
      padding-right: 22px;
    }

    .support-card {
      position: sticky;
      top: 104px;
      background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.38), transparent 22%),
        linear-gradient(160deg, #edf5fc, #daeefa);
    }

    .support-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .support-badges span {
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(16, 70, 128, 0.08);
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--ink);
    }

    .cta-wrap {
      padding: 30px 0 62px;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      padding: 54px;
      border-radius: 40px;
      background: linear-gradient(145deg, #d8e8f8, #daeefa);
      box-shadow: 0 34px 60px rgba(16, 70, 128, 0.16);
      text-align: center;
    }

    .cta-panel::before,
    .cta-panel::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.18);
      filter: blur(6px);
    }

    .cta-panel::before {
      width: 280px;
      height: 280px;
      top: -120px;
      left: -40px;
    }

    .cta-panel::after {
      width: 220px;
      height: 220px;
      right: -60px;
      bottom: -100px;
    }

    .cta-panel h2 {
      position: relative;
      z-index: 1;
      max-width: 12ch;
      margin: 0 auto 16px;
    }

    .cta-panel p {
      position: relative;
      z-index: 1;
      max-width: 42rem;
      margin: 0 auto 24px;
      color: rgba(16, 70, 128, 0.82);
      font-size: 1.04rem;
    }

    .cta-actions {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    .site-footer {
      padding: 0 0 52px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.8fr 1fr;
      gap: 22px;
      padding-top: 24px;
      border-top: 1px solid rgba(16, 70, 128, 0.12);
    }

    .footer-card {
      padding: 22px 0 0;
    }

    .footer-card h3 {
      margin: 0 0 12px;
      font-size: 1rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .footer-card p,
    .footer-card li {
      margin: 0;
      color: var(--muted);
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-note {
      margin-top: 20px;
      color: rgba(78, 105, 133, 0.88);
      font-size: 0.92rem;
    }

    [data-reveal] {
      opacity: 1;
      transform: none;
    }

    @keyframes blobFloat {
      0%,
      100% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-12px) rotate(2deg);
      }
    }

    @media (max-width: 1080px) {
      .header-inner {
        gap: 16px;
      }

      .nav-toggle {
        display: inline-flex;
      }

      .nav-shell {
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 19;
      }

      .nav-shell.is-open {
        pointer-events: auto;
      }

      .nav-backdrop {
        display: block;
        position: absolute;
        inset: 0;
        border: 0;
        padding: 0;
        background: rgba(8, 28, 49, 0.34);
        opacity: 0;
        transition: opacity 180ms ease;
      }

      .nav-shell.is-open .nav-backdrop {
        opacity: 1;
      }

      .nav {
        position: absolute;
        top: 0;
        right: 0;
        width: min(86vw, 380px);
        height: 100vh;
        padding: 26px 28px 34px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
        background: linear-gradient(180deg, #104680 0%, #0b3561 100%);
        color: #fff;
        box-shadow: -24px 0 48px rgba(8, 28, 49, 0.24);
        transform: translateX(100%);
        transition: transform 220ms ease;
      }

      .nav-shell.is-open .nav {
        transform: translateX(0);
      }

      .nav-mobile-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 8px;
      }

      .nav-kicker {
        display: inline-block;
        font-size: 0.78rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.72);
      }

      .nav-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .nav a {
        width: 100%;
        padding: 0 0 14px;
        font-size: 1.08rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
      }

      .nav a::after {
        display: none;
      }

      .btn.nav-cta {
        display: inline-flex;
        width: 100%;
        margin-top: auto;
        padding: 14px 20px;
        background: #fff;
        color: var(--accent);
        border-bottom: 0;
      }

      .split-grid,
      .planner-grid,
      .legal-grid,
      .faq-layout,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .snapshot-grid,
      .benefit-grid,
      .process-grid,
      .knowledge-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .support-card {
        position: static;
      }
    }

    @media (min-width: 781px) {
      .hero-grid .hero-illus{
        width:40%;
      }

      .hero-grid .hero-copy{
        width:60%;
      }
    }

    @media (max-width: 780px) {
      .container {
        width: min(var(--max), calc(100vw - 28px));
      }

      .header-inner {
        gap: 12px;
      }

      .header-actions .pill-link {
        display: none;
      }

      .brand {
        max-width: 190px;
      }

      .header-cta {
        display: none;
      }

      .nav {
        width: min(88vw, 340px);
        padding: 22px 22px 28px;
      }

      .hero {
        padding-top: 100px;
      }

      .hero-copy, .section-title, .section-intro p {
        text-align: center;
      }

      .hero-actions {
        justify-content: center;
      }

      .hero-copy h1,
      .section-title,
      .cta-panel h2 {
        font-size: clamp(2.6rem, 14vw, 4.1rem);
      }

      .section-tag {
        width: 100%;
        text-align: center;
      }

      .hero-grid div, {
        width:100%;
      }

      .hero-blob {
        inset: 36px 18px 48px;
      }

      .snapshot-grid,
      .benefit-grid,
      .process-grid,
      .knowledge-grid,
      .list-grid {
        grid-template-columns: 1fr;
      }

      .story-card,
      .benefit-card,
      .step-card,
      .term-card,
      .planner-card,
      .support-card,
      .faq-group,
      .legal-panel,
      .cta-panel {
        padding: 24px 2%;
      }

      .step-card {
        padding: 24px 24px 56px;
        min-height: auto;
        clip-path: polygon(
          0 0,
          100% 0,
          100% calc(100% - 40px),
          50% 100%,
          0 calc(100% - 40px)
        );
      }

      .step-card:first-child {
        border-radius: 1.5em 1.5em 0 0;
      }

      .step-card:last-child {
        border-radius: 0 0 1.5em 1.5em;
      }

      .step-card:not(:first-child) {
        padding: 52px 24px 56px;
        clip-path: polygon(
          0 0,
          50% 28px,
          100% 0,
          100% calc(100% - 40px),
          50% 100%,
          0 calc(100% - 40px)
        );
      }

      .step-card:last-child {
        padding: 52px 24px 24px;
        clip-path: polygon(
          0 0,
          50% 28px,
          100% 0,
          100% 100%,
          0 100%
        );
      }

      .paint-band {
        padding: 62px 0;
      }

      .cta-panel {
        border-radius: 28px;
      }
    }
