:root {
      --bg: #ffffff;
      --bg-sub: #f5f6f6;
      --brand: #262a29;
      --accent: #65d6b1;
      --blue: #8eb5ff;
      --yellow: #ffe9a3;
      --pink: #f5a5ea;
      --ink: #242827;
      --muted: #606765;
      --line: #e1e4e3;
      --white: #ffffff;
      --max: 1080px;
      --shadow: 0 18px 50px rgba(38, 42, 41, 0.08);
      --spectrum: linear-gradient(90deg, var(--accent), var(--blue), var(--yellow), var(--pink));
      --logo: url("../images/vsta-wordmark.webp");
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--bg);
      font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 16px;
      line-height: 1.8;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

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

    a, button, summary {
      cursor: pointer;
    }

    a:focus-visible, button:focus-visible, summary:focus-visible {
      outline: 3px solid rgba(142, 181, 255, 0.55);
      outline-offset: 4px;
    }

    .scroll-progress {
      position: fixed;
      z-index: 100;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--spectrum);
      background-size: 200% 100%;
      transform: scaleX(1);
      transform-origin: left;
      animation: spectrum-slide 4s linear infinite;
    }

    .container {
      width: min(var(--max), calc(100% - 64px));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      z-index: 90;
      top: 0;
      height: 72px;
      display: flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(18px) saturate(150%);
      border-bottom: 1px solid var(--line);
    }

    .site-header::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: -1px;
      left: 0;
      height: 1px;
      background: var(--spectrum);
      opacity: .35;
      transform-origin: left;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .wordmark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: "Noto Sans JP", sans-serif;
      font-size: 19px;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--brand);
    }

    .brand-mark-frame {
      width: 138px;
      height: 42px;
      display: grid;
      place-items: center;
      overflow: hidden;
      background: transparent;
    }

    .brand-mark {
      width: 132px;
      height: 38px;
      background: var(--logo) center/cover no-repeat;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 28px;
      color: #344742;
      font-size: 13px;
      font-weight: 500;
    }

    .desktop-nav a {
      transition: color 180ms ease;
    }

    .desktop-nav a:hover {
      color: var(--accent);
    }

    .mobile-nav {
      display: none;
    }

    .button {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      min-height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 24px;
      border: 1px solid transparent;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.3;
      transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease, transform 260ms cubic-bezier(.22,1,.36,1), box-shadow 260ms ease;
    }

    .button::after {
      content: "";
      position: absolute;
      z-index: -1;
      inset: -2px;
      background: var(--spectrum);
      transform: translateX(-105%);
      transition: transform 420ms cubic-bezier(.22,1,.36,1);
    }

    .button:hover::after { transform: translateX(0); }
    .button:hover { color: var(--brand); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(38,42,41,.15); }

    .button-primary {
      color: var(--white);
      background: var(--brand);
    }

    .button-primary:hover,
    .button-primary:active,
    .button-primary:focus-visible,
    .button-primary:visited {
      color: var(--white) !important;
      background: var(--brand);
    }

    .button-secondary {
      color: var(--brand);
      background: transparent;
      border-color: #9db6af;
    }

    .button-secondary:hover {
      background: var(--bg-sub);
      border-color: var(--brand);
    }

    .button-small {
      min-height: 40px;
      padding-inline: 18px;
      color: var(--white) !important;
      background: var(--brand);
    }

    .button-small:hover {
      background: var(--brand);
    }

    h1, h2, h3 {
      margin: 0;
      color: var(--brand);
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 700;
      letter-spacing: -0.035em;
    }

    h2 {
      font-size: clamp(28px, 2.7vw, 36px);
      line-height: 1.4;
    }

    .lead {
      max-width: 720px;
      margin: 20px 0 0;
      color: #40524d;
      line-height: 2;
    }

    .hero {
      position: relative;
      min-height: 640px;
      display: flex;
      align-items: center;
      overflow: hidden;
      isolation: isolate;
      background:
        radial-gradient(circle at 74% 24%, rgba(142,181,255,.16), transparent 24%),
        radial-gradient(circle at 88% 72%, rgba(245,165,234,.13), transparent 22%),
        #fff;
    }

    .hero::before {
      content: "";
      position: absolute;
      z-index: -2;
      inset: 0 0 0 50%;
      background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
      background-size: 80px 80px;
      opacity: 0.62;
      mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 100%);
    }

    .hero-copy {
      position: relative;
      z-index: 3;
      max-width: 700px;
      padding-block: 96px;
    }

    .hero h1 {
      max-width: 680px;
      font-size: clamp(42px, 4.6vw, 62px);
      line-height: 1.42;
    }

    .hero-line {
      display: block;
      overflow: hidden;
    }

    .hero-line > span {
      display: inline-block;
    }

    .hero-line:nth-child(3) > span {
      color: transparent;
      background: var(--spectrum);
      background-size: 240% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      animation: spectrum-slide 4s linear infinite;
    }

    .hv { position: absolute; z-index: 2; width: min(520px,47vw); aspect-ratio: 1; top: 50%; right: max(1vw,calc((100vw - var(--max))/2 - 44px)); transform: translateY(-50%); pointer-events: none; }
    .hv svg { width: 100%; height: 100%; overflow: visible; }
    .sr { transform: rotate(-8deg); transform-origin: 245px 200px; }
    .so, .sm ellipse, .sl ellipse, .sa { fill: none; vector-effect: non-scaling-stroke; }
    .so { fill: rgba(255,255,255,.32); stroke: rgba(38,42,41,.3); stroke-width: 1.3; }
    .sm ellipse, .sl ellipse { stroke: rgba(38,42,41,.16); stroke-width: 1; }
    .sm ellipse:nth-child(odd), .sl ellipse:nth-child(even) { stroke: rgba(142,181,255,.28); }
    .sa { stroke: url(#v); stroke-width: 1.9; stroke-linecap: round; }
    .sx { stroke-dasharray: 125 820; animation: sf 12s linear infinite; }
    .sy { stroke-dasharray: 95 700; animation: sf 16s linear infinite reverse; }

    .hero .subcopy {
      max-width: 620px;
      margin: 28px 0 0;
      color: #40524d;
      font-size: 16px;
      line-height: 2;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      margin-top: 38px;
    }

    .hero-note {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-top: 28px;
      color: var(--muted);
      font-size: 12px;
    }

    .hero-note::before {
      content: "";
      width: 8px;
      height: 8px;
      border: 2px solid var(--accent);
      border-radius: 50%;
    }

    .section {
      padding-block: 96px;
    }

    .scope {
      border-top: 1px solid var(--line);
    }

    .scope-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-top: 54px;
    }

    .scope-card {
      position: relative;
      min-height: 220px;
      padding: 26px 20px 24px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
      box-shadow: var(--shadow);
      transition: transform 340ms cubic-bezier(.22,1,.36,1), box-shadow 340ms ease, border-color 340ms ease;
    }

    .scope-card:hover {
      border-color: rgba(142,181,255,.7);
      box-shadow: 0 24px 60px rgba(38,42,41,.13);
    }

    .scope-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      margin-bottom: 28px;
      background: linear-gradient(135deg,rgba(101,214,177,.16),rgba(142,181,255,.11) 50%,rgba(245,165,234,.13));
      border: 1px solid rgba(38,42,41,.1);
      border-radius: 14px;
    }

    .scope-icon svg {
      width: 27px;
      height: 27px;
    }

    .scope-card h3 {
      font-size: 17px;
      line-height: 1.5;
    }

    .scope-card p {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.8;
    }

    .problem {
      background: var(--bg-sub);
    }

    .problem .scope-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .problem .scope-card {
      min-height: 240px;
      box-shadow: none;
    }

    .problem-conclusion {
      display: grid;
      justify-items: center;
      gap: 16px;
      margin: 46px auto -26px;
      color: var(--brand);
      text-align: center;
      font-size: 18px;
      font-weight: 600;
      line-height: 1.8;
    }

    .motion-arrow {
      position: relative;
      width: 38px;
      height: 58px;
    }

    .motion-arrow::before {
      content: "";
      position: absolute;
      left: calc(50% - 1px);
      width: 2px;
      height: 42px;
      background: var(--spectrum);
      transform-origin: top;
      animation: arrow-rush 1.4s cubic-bezier(.55,.055,.675,.19) infinite;
    }

    .motion-arrow::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 7px;
      width: 13px;
      height: 13px;
      border-right: 2px solid var(--pink);
      border-bottom: 2px solid var(--pink);
      transform: translateX(-50%) rotate(45deg);
      animation: arrow-head 1.4s ease-in infinite;
    }

    .results {
      background: var(--bg-sub);
    }

    .results-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 48px;
    }

    .text-link {
      color: var(--brand);
      font-size: 14px;
      font-weight: 600;
      text-decoration: underline;
      text-decoration-color: rgba(23, 166, 115, 0.5);
      text-underline-offset: 5px;
      transition: color 180ms ease;
    }

    .text-link:hover {
      color: var(--accent);
    }

    .metrics {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 48px;
    }

    .metric-card {
      position: relative;
      min-height: 172px;
      padding: 30px 24px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
      overflow: hidden;
      transition: transform 340ms cubic-bezier(.22,1,.36,1), box-shadow 340ms ease;
    }

    .metric-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--spectrum);
      background-size: 240% 100%;
      animation: spectrum-slide 7s linear infinite;
    }

    .metric-card:nth-child(2)::before { animation-delay: -1.4s; }
    .metric-card:nth-child(3)::before { animation-delay: -2.8s; }
    .metric-card:nth-child(4)::before { animation-delay: -4.2s; }
    .metric-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

    .metric-value {
      display: block;
      color: var(--brand);
      font-family: "Noto Sans JP", sans-serif;
      font-size: clamp(34px, 4vw, 48px);
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -0.045em;
    }

    .metric-card:nth-child(2) .metric-value {
      font-size: clamp(30px, 3.2vw, 40px);
      white-space: nowrap;
    }

    .metric-label {
      display: block;
      margin-top: 18px;
      color: #334540;
      font-size: 14px;
    }

    .metric-source {
      display: inline-block;
      margin-bottom: 16px;
      padding: 4px 8px;
      color: var(--muted);
      background: var(--bg-sub);
      border-radius: 99px;
      font-size: 11px;
    }

    .disclaimer {
      margin: 22px 0 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.8;
    }

    .voice {
      border-top: 1px solid var(--line);
    }

    .voice-placeholder {
      min-height: 220px;
      display: grid;
      place-items: center;
      margin-top: 42px;
      padding: 40px;
      text-align: center;
      background: var(--bg-sub);
      border: 1px solid var(--line);
      border-radius: 8px;
    }

    .voice-placeholder strong {
      display: block;
      color: var(--brand);
      font-family: "Noto Sans JP", sans-serif;
      font-size: clamp(24px, 3vw, 32px);
      line-height: 1.4;
    }

    .voice-placeholder span {
      display: block;
      margin-top: 12px;
      color: var(--muted);
      font-size: 13px;
    }

    .business {
      color: rgba(255,255,255,.78);
      background: var(--brand);
      overflow: hidden;
    }

    .business-copy p { color: rgba(255,255,255,.68); }
    .business h2,
    .business .text-link { color: #fff; }
    .business .button-primary { color: #fff !important; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); box-shadow: inset 0 0 0 1px rgba(101,214,177,.12); }
    .business .button-primary:hover { color: #fff !important; background: rgba(255,255,255,.12); border-color: #fff; }
    .business .button-primary::after { opacity: .38; }

    .business-grid {
      display: grid;
      grid-template-columns: 1.45fr 0.8fr;
      gap: 72px;
      align-items: center;
    }

    .business-copy {
      max-width: 650px;
    }

    .business-copy p {
      margin: 24px 0 0;
      color: rgba(255,255,255,.72);
      line-height: 2;
    }

    .business-actions {
      display: flex;
      align-items: center;
      gap: 22px;
      margin-top: 34px;
    }

    .flow-visual {
      position: relative;
      height: 300px;
      display: grid;
      place-items: center;
      background: #1d211f;
      border-radius: 8px;
      overflow: hidden;
    }

    .flow-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    .flow-line {
      position: relative;
      width: 74%;
      height: 2px;
      background: rgba(255, 255, 255, 0.42);
      overflow: visible;
    }

    .flow-line::before {
      content: "";
      position: absolute;
      inset: 0;
      background: var(--spectrum);
      transform: scaleX(0);
      transform-origin: left;
      animation: data-flow 3.4s cubic-bezier(.65,0,.35,1) infinite;
    }

    .flow-node {
      position: absolute;
      top: 50%;
      width: 13px;
      height: 13px;
      background: var(--accent);
      border: 3px solid var(--brand);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 0 1px rgba(255,255,255,0.65);
      animation: node-pulse 2.2s ease-in-out infinite;
    }

    .flow-node:nth-child(1) { left: 0; }
    .flow-node:nth-child(2) { left: 34%; }
    .flow-node:nth-child(3) { left: 67%; }
    .flow-node:nth-child(4) { left: 100%; }
    .flow-node:nth-child(2) { animation-delay: .28s; }
    .flow-node:nth-child(3) { animation-delay: .56s; }
    .flow-node:nth-child(4) { animation-delay: .84s; }

    [data-reveal] {
      opacity: 0;
      transform: translateY(52px);
      transition: opacity 850ms cubic-bezier(.22,1,.36,1), transform 850ms cubic-bezier(.22,1,.36,1);
      transition-delay: var(--delay, 0ms);
    }

    [data-reveal].is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes spectrum-slide { to { background-position: 200% 0; } }
    @keyframes sf { to { stroke-dashoffset: -950; } }
    @keyframes arrow-rush { 0%,22% { opacity: 0; transform: scaleY(0); } 72% { opacity: 1; transform: scaleY(1); } 100% { opacity: 0; transform: translateY(15px) scaleY(.35); } }
    @keyframes arrow-head { 0%,45% { opacity: .25; transform: translate(-50%,-8px) rotate(45deg); } 82% { opacity: 1; transform: translate(-50%,3px) rotate(45deg); } 100% { opacity: 0; transform: translate(-50%,10px) rotate(45deg); } }
    @keyframes data-flow { 0% { transform: scaleX(0); transform-origin: left; } 48% { transform: scaleX(1); transform-origin: left; } 52% { transform: scaleX(1); transform-origin: right; } 100% { transform: scaleX(0); transform-origin: right; } }
    @keyframes node-pulse { 0%,100% { box-shadow: 0 0 0 1px rgba(255,255,255,.65),0 0 0 0 rgba(101,214,177,.45); } 50% { box-shadow: 0 0 0 1px rgba(255,255,255,.65),0 0 0 12px rgba(101,214,177,0); } }

    .flow-labels {
      position: absolute;
      width: 78%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      top: calc(50% + 28px);
      color: rgba(255,255,255,0.88);
      font-family: "Noto Sans JP", sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-align: center;
    }

    .revenue-signal {
      position: absolute;
      top: 22%;
      right: 8%;
      height: 52px;
      display: flex;
      align-items: end;
      gap: 4px;
      color: #fff;
    }

    .revenue-signal b { margin-right: 5px; font-size: 11px; line-height: 1; letter-spacing: .08em; }
    .revenue-signal i { width: 6px; background: var(--accent); border-radius: 4px 4px 0 0; }
    .revenue-signal i:nth-child(2) { height: 10px; }
    .revenue-signal i:nth-child(3) { height: 20px; background: var(--blue); }
    .revenue-signal i:nth-child(4) { height: 34px; background: var(--pink); }
    .revenue-signal::after { content: "↗"; margin-left: 2px; color: var(--pink); font-size: 22px; }

    .company {
      padding-top: 80px;
    }

    .company-grid {
      display: grid;
      grid-template-columns: 0.75fr 1.35fr;
      gap: 92px;
      align-items: start;
    }

    .company-list {
      margin: 0;
      border-top: 1px solid var(--line);
    }

    .company-row {
      display: grid;
      grid-template-columns: 150px 1fr;
      gap: 24px;
      margin: 0;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
    }

    .company-row dt {
      color: var(--muted);
      font-size: 13px;
    }

    .company-row dd {
      margin: 0;
      color: #334540;
      font-size: 14px;
    }

    .company-link {
      margin-top: 26px;
    }

    .contact { color: var(--brand); background: radial-gradient(circle at 12% 12%,rgba(101,214,177,.18),transparent 30%),radial-gradient(circle at 88% 80%,rgba(245,165,234,.16),transparent 32%),var(--bg-sub); }

    .contact h2 {
      max-width: 720px;
      color: var(--brand);
      font-size: clamp(30px, 3.4vw, 42px);
    }

    .contact-lead {
      max-width: 660px;
      margin: 22px 0 0;
      color: var(--muted);
    }

    .topics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 42px;
    }

    .topic {
      padding: 24px;
      background: rgba(255,255,255,.76);
      border: 1px solid var(--line);
      border-radius: 8px;
      box-shadow: 0 14px 36px rgba(38,42,41,.05);
    }

    .topic strong {
      display: block;
      font-size: 16px;
      font-weight: 600;
    }

    .topic span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 13px;
    }

    .contact-actions {
      display: flex;
      align-items: center;
      gap: 22px;
      margin-top: 40px;
    }

    .contact-meta {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.8;
    }

    .site-footer {
      padding-block: 46px;
      color: rgba(255,255,255,0.72);
      background: var(--brand);
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .footer-wordmark {
      color: var(--white);
      font-family: "Noto Sans JP", sans-serif;
      font-size: 18px;
      font-weight: 700;
    }

    .footer-nav {
      display: flex;
      gap: 22px;
      font-size: 12px;
    }

    .footer-nav a:hover {
      color: var(--white);
    }

    .copyright {
      margin: 26px 0 0;
      color: rgba(255,255,255,0.44);
      font-family: "Noto Sans JP", sans-serif;
      font-size: 11px;
      letter-spacing: 0.04em;
    }

    @media (max-width: 900px) {
      .container {
        width: min(100% - 48px, 720px);
      }

      .site-header {
        background: rgba(255,255,255,.96);
        backdrop-filter: none;
      }

      .desktop-nav {
        display: none;
      }

      .hv {
        display: none;
      }

      .mobile-nav {
        display: block;
        position: relative;
      }

      .mobile-nav summary {
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
        list-style: none;
        color: transparent;
        border: 1px solid var(--line);
        border-radius: 6px;
      }

      .mobile-nav summary::-webkit-details-marker {
        display: none;
      }

      .mobile-nav summary::before,
      .mobile-nav summary::after {
        content: "";
        position: absolute;
        width: 18px;
        height: 1px;
        background: var(--brand);
      }

      .mobile-nav summary::before { transform: translateY(-4px); }
      .mobile-nav summary::after { transform: translateY(4px); }

      .mobile-menu {
        position: absolute;
        z-index: 10;
        width: 250px;
        top: 48px;
        right: 0;
        display: grid;
        gap: 6px;
        padding: 14px;
        color: var(--ink);
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
      }

      .mobile-menu a {
        padding: 10px 12px;
        border-radius: 5px;
        font-size: 13px;
      }

      .mobile-menu a:hover {
        background: var(--bg-sub);
      }

      .scope-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .problem .scope-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .metrics {
        grid-template-columns: repeat(2, 1fr);
      }

      .business-grid {
        grid-template-columns: 1fr;
        gap: 42px;
      }

      .flow-visual {
        height: 220px;
      }

      .company-grid {
        grid-template-columns: 1fr;
        gap: 42px;
      }

      .topics {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: calc(100% - 48px);
      }

      .site-header {
        height: 60px;
      }

      .wordmark {
        gap: 6px;
        font-size: 14px;
      }

      .brand-mark-frame { width: 112px; height: 34px; }
      .brand-mark { width: 108px; height: 32px; }

      .hero {
        min-height: 560px;
      }

      .hero::before {
        inset: 0;
        background-size: 54px 54px;
        opacity: .3;
      }

      .hero-copy {
        padding-block: 72px 150px;
      }

      .hero h1 {
        font-size: 27px;
        line-height: 1.55;
      }

      .hero .subcopy {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.95;
      }

      .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
      }

      .button {
        width: 100%;
      }

      .section {
        padding-block: 64px;
      }

      h2 {
        font-size: 25px;
      }

      .lead {
        font-size: 14px;
        line-height: 1.95;
      }

      .scope-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 36px;
      }

      .problem .scope-grid {
        grid-template-columns: 1fr;
      }

      .scope-card {
        min-height: 0;
        padding: 22px;
      }

      .scope-icon {
        margin-bottom: 18px;
      }

      .results-head {
        display: block;
      }

      .results-head .text-link {
        display: inline-block;
        margin-top: 20px;
      }

      .metrics {
        gap: 12px;
        margin-top: 34px;
      }

      .metric-card {
        min-height: 144px;
        padding: 24px 16px;
      }

      .metric-value {
        font-size: 32px;
        line-height: 1.25;
      }

      .metric-label {
        margin-top: 12px;
        font-size: 12px;
      }

      .business-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .flow-visual {
        order: -1;
        height: 140px;
      }

      .flow-labels {
        font-size: 8px;
      }

      .company-row {
        grid-template-columns: 92px 1fr;
        gap: 14px;
        padding: 16px 0;
      }

      .company-row dd {
        font-size: 13px;
      }

      .contact h2 {
        font-size: 27px;
      }

      .contact-lead {
        font-size: 14px;
      }

      .contact-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .footer-top {
        align-items: flex-start;
        flex-direction: column;
      }

      .footer-nav {
        display: grid;
        gap: 12px;
      }
    }

    @media (max-width: 380px) {
      .container { width: calc(100% - 28px); }
      .hero h1 { font-size: 25px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
      }

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

      .sa { animation: none !important; }

      .hero-line > span {
        transform: none !important;
      }
    }
