:root {
      --navy-950: #020713;
      --navy-900: #050c1b;
      --navy-850: #081124;
      --navy-800: #0b162d;
      --navy-700: #122447;
      --line: rgba(133, 173, 255, 0.17);
      --line-strong: rgba(99, 203, 255, 0.36);
      --text: #f2f7ff;
      --muted: #9eacc4;
      --muted-bright: #c0ccde;
      --blue: #337cff;
      --blue-bright: #5c9cff;
      --cyan: #39ddff;
      --cyan-soft: #9defff;
      --white: #ffffff;
      --radius: 18px;
      --radius-small: 12px;
      --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
      --content: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--navy-950);
    }

    body {
      margin: 0;
      color: var(--text);
      background:
        radial-gradient(circle at 78% 4%, rgba(25, 104, 255, 0.14), transparent 30rem),
        radial-gradient(circle at 12% 32%, rgba(0, 209, 255, 0.07), transparent 26rem),
        var(--navy-950);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    body::before {
      position: fixed;
      z-index: -1;
      inset: 0;
      content: "";
      pointer-events: none;
      opacity: 0.32;
      background-image:
        linear-gradient(rgba(90, 138, 220, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90, 138, 220, 0.035) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(to bottom, black, transparent 78%);
    }

    a {
      color: inherit;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    .skip {
      position: fixed;
      z-index: 1000;
      top: 12px;
      left: 12px;
      padding: 10px 16px;
      color: var(--navy-950);
      background: var(--cyan);
      border-radius: 8px;
      font-weight: 800;
      text-decoration: none;
      transform: translateY(-160%);
      transition: transform 160ms ease;
    }

    .skip:focus {
      transform: translateY(0);
    }

    .shell {
      width: min(calc(100% - 40px), var(--content));
      margin-inline: auto;
    }

    .site-header {
      position: relative;
      z-index: 20;
      border-bottom: 1px solid var(--line);
      background: rgba(2, 7, 19, 0.83);
      backdrop-filter: blur(18px);
    }

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

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      color: var(--white);
      font-size: 1.04rem;
      font-weight: 760;
      letter-spacing: -0.025em;
      text-decoration: none;
      white-space: nowrap;
    }

    .logo-mark {
      width: 32px;
      height: 32px;
      flex: 0 0 32px;
    }

    .site-nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .site-nav a {
      color: var(--muted-bright);
      font-size: 0.88rem;
      font-weight: 650;
      text-decoration: none;
      transition: color 160ms ease;
    }

    .site-nav a:hover,
    .site-nav a:focus-visible {
      color: var(--white);
    }

    .site-nav .nav-cta {
      padding: 10px 16px;
      color: var(--white);
      border: 1px solid rgba(79, 193, 255, 0.45);
      border-radius: 9px;
      background: rgba(39, 121, 255, 0.12);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 88px 0 72px;
      border-bottom: 1px solid var(--line);
    }

    .hero::before {
      position: absolute;
      inset: 0;
      content: "";
      pointer-events: none;
      background:
        radial-gradient(circle at 67% 44%, rgba(48, 115, 255, 0.18), transparent 25rem),
        linear-gradient(120deg, transparent 35%, rgba(53, 220, 255, 0.035), transparent 67%);
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 0.93fr) minmax(520px, 1.15fr);
      align-items: center;
      gap: 50px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 23px;
      color: var(--cyan-soft);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.105em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      width: 7px;
      height: 7px;
      content: "";
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 16px rgba(57, 221, 255, 0.75);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 680px;
      margin-bottom: 24px;
      font-size: clamp(3rem, 5.3vw, 5.35rem);
      line-height: 0.99;
      letter-spacing: -0.064em;
    }

    .accent-text {
      color: var(--cyan-soft);
    }

    .hero-copy {
      max-width: 620px;
      margin-bottom: 32px;
      color: var(--muted-bright);
      font-size: clamp(1.03rem, 1.5vw, 1.17rem);
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
    }

    .button {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 20px;
      border: 1px solid transparent;
      border-radius: 10px;
      font-size: 0.91rem;
      font-weight: 760;
      text-decoration: none;
      transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
    }

    .button:hover,
    .button:focus-visible {
      transform: translateY(-2px);
    }

    .button-primary {
      color: var(--white);
      border-color: rgba(109, 211, 255, 0.5);
      background: linear-gradient(135deg, #195de8, #278dff);
      box-shadow: 0 12px 34px rgba(28, 105, 255, 0.24);
    }

    .button-secondary {
      color: var(--muted-bright);
      border-color: var(--line);
      background: rgba(10, 24, 49, 0.58);
    }

    .arrow {
      font-size: 1.12em;
      line-height: 1;
    }

    .hero-note {
      margin: 22px 0 0;
      color: var(--muted);
      font-size: 0.82rem;
    }

    .hero-visual {
      position: relative;
      min-width: 0;
    }

    .hero-visual::before {
      position: absolute;
      inset: 10% 6%;
      content: "";
      border-radius: 50%;
      background: rgba(24, 113, 255, 0.2);
      filter: blur(70px);
    }

    .hero-art {
      position: relative;
      width: 100%;
      filter: drop-shadow(0 36px 50px rgba(0, 0, 0, 0.35));
    }

    .signal-bar {
      border-bottom: 1px solid var(--line);
      background: rgba(6, 15, 33, 0.72);
    }

    .signal-inner {
      min-height: 80px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      align-items: center;
    }

    .signal-item {
      min-height: 38px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding-inline: 22px;
      border-left: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.82rem;
    }

    .signal-item:last-child {
      border-right: 1px solid var(--line);
    }

    .signal-index {
      color: var(--cyan);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: 0.7rem;
    }

    .signal-item strong {
      display: block;
      color: var(--text);
      font-weight: 690;
    }

    .section {
      padding: 112px 0;
    }

    .section-line {
      border-bottom: 1px solid var(--line);
    }

    .section-heading {
      max-width: 720px;
      margin-bottom: 54px;
    }

    .section-kicker {
      margin-bottom: 14px;
      color: var(--blue-bright);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: 0.73rem;
      font-weight: 760;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    h2 {
      margin-bottom: 18px;
      font-size: clamp(2.1rem, 4vw, 3.55rem);
      line-height: 1.08;
      letter-spacing: -0.048em;
    }

    .section-heading > p:last-child {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 1.04rem;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .process-step {
      position: relative;
      min-height: 285px;
      padding: 34px 32px;
      border-left: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(13, 28, 56, 0.38), rgba(5, 13, 29, 0.2));
    }

    .process-step:last-child {
      border-right: 1px solid var(--line);
    }

    .step-number {
      display: inline-flex;
      width: 33px;
      height: 33px;
      align-items: center;
      justify-content: center;
      margin-bottom: 48px;
      color: var(--cyan);
      border: 1px solid var(--line-strong);
      border-radius: 8px;
      background: rgba(35, 128, 255, 0.08);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: 0.72rem;
      font-weight: 800;
    }

    .process-step h3 {
      margin-bottom: 12px;
      font-size: 1.18rem;
      letter-spacing: -0.025em;
    }

    .process-step p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .samples {
      background:
        linear-gradient(180deg, rgba(9, 20, 43, 0.5), transparent),
        var(--navy-950);
    }

    .sample-disclosure {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      max-width: 760px;
      margin: -26px 0 38px;
      padding: 14px 16px;
      color: var(--muted-bright);
      border: 1px solid var(--line);
      border-radius: 10px;
      background: rgba(17, 39, 75, 0.28);
      font-size: 0.82rem;
    }

    .sample-disclosure::before {
      flex: 0 0 auto;
      width: 7px;
      height: 7px;
      margin-top: 7px;
      content: "";
      border-radius: 50%;
      background: var(--blue-bright);
      box-shadow: 0 0 12px rgba(92, 156, 255, 0.65);
    }

    .work-grid {
      display: grid;
      grid-template-columns: 1.35fr 0.65fr;
      gap: 20px;
    }

    .work-stack {
      display: grid;
      gap: 20px;
    }

    .work-card {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--navy-850);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    }

    .work-image {
      overflow: hidden;
      background: #0b1428;
    }

    .work-image img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .work-card.desktop .work-image {
      aspect-ratio: 1.44 / 1;
    }

    .work-card.desktop .work-image img {
      height: 100%;
    }

    .work-card.mobile .work-image {
      max-height: 520px;
      background: linear-gradient(135deg, #0c1730, #111f3c);
    }

    .work-card.mobile .work-image img {
      width: min(68%, 315px);
      margin: 24px auto 0;
      border: 7px solid #17223a;
      border-bottom: 0;
      border-radius: 25px 25px 0 0;
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    }

    .work-card.postcard {
      grid-column: 1 / -1;
    }

    .work-card.postcard .work-image {
      aspect-ratio: 3.02 / 1;
    }

    .work-card.postcard .work-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .work-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 16px 18px;
      border-top: 1px solid var(--line);
    }

    .work-meta strong {
      font-size: 0.91rem;
      letter-spacing: -0.015em;
    }

    .example-tag {
      flex: 0 0 auto;
      color: var(--cyan-soft);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: 0.64rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }

    .platform-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 80px;
      align-items: start;
    }

    .platform-intro {
      position: sticky;
      top: 42px;
    }

    .platform-intro p {
      color: var(--muted);
    }

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

    .feature {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 18px;
      padding: 25px 0;
      border-bottom: 1px solid var(--line);
    }

    .feature-icon {
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--cyan);
      border: 1px solid var(--line-strong);
      border-radius: 9px;
      background: rgba(30, 114, 255, 0.08);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: 0.75rem;
      font-weight: 800;
    }

    .feature h3 {
      margin-bottom: 6px;
      font-size: 1rem;
    }

    .feature p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 0.89rem;
    }

    .offer-wrap {
      position: relative;
      overflow: hidden;
      padding: 62px;
      border: 1px solid var(--line-strong);
      border-radius: 24px;
      background:
        radial-gradient(circle at 85% 18%, rgba(41, 117, 255, 0.24), transparent 25rem),
        linear-gradient(135deg, rgba(13, 31, 66, 0.92), rgba(5, 14, 31, 0.96));
      box-shadow: var(--shadow);
    }

    .offer-wrap::before {
      position: absolute;
      top: 0;
      right: 10%;
      left: 10%;
      height: 1px;
      content: "";
      background: linear-gradient(90deg, transparent, var(--cyan), transparent);
      box-shadow: 0 0 22px rgba(57, 221, 255, 0.75);
    }

    .offer-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 65px;
      align-items: center;
    }

    .offer-grid h2 {
      max-width: 680px;
      margin-bottom: 16px;
    }

    .offer-copy {
      max-width: 680px;
      margin-bottom: 0;
      color: var(--muted-bright);
    }

    .price-block {
      min-width: 270px;
      padding-left: 46px;
      border-left: 1px solid var(--line);
    }

    .price-label {
      margin-bottom: 5px;
      color: var(--muted);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: 0.69rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .price {
      margin-bottom: 5px;
      color: var(--white);
      font-size: clamp(2.55rem, 4vw, 4rem);
      font-weight: 790;
      line-height: 1;
      letter-spacing: -0.06em;
      white-space: nowrap;
    }

    .price-details {
      margin-bottom: 22px;
      color: var(--muted);
      font-size: 0.82rem;
    }

    .activation-note {
      margin-top: 22px;
      padding-top: 20px;
      color: var(--muted);
      border-top: 1px solid var(--line);
      font-size: 0.82rem;
    }

    .activation-note strong {
      color: var(--muted-bright);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 0.7fr 1.3fr;
      gap: 80px;
      align-items: start;
    }

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

    details {
      border-bottom: 1px solid var(--line);
    }

    summary {
      position: relative;
      padding: 24px 44px 24px 0;
      cursor: pointer;
      color: var(--text);
      font-weight: 690;
      list-style: none;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      position: absolute;
      top: 21px;
      right: 3px;
      width: 27px;
      height: 27px;
      display: grid;
      place-items: center;
      content: "+";
      color: var(--cyan);
      border: 1px solid var(--line);
      border-radius: 7px;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-weight: 500;
    }

    details[open] summary::after {
      content: "–";
    }

    details p {
      max-width: 720px;
      padding: 0 48px 24px 0;
      margin-bottom: 0;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .contact-strip {
      padding: 40px 0;
      border-top: 1px solid var(--line);
      background: rgba(9, 22, 46, 0.48);
    }

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

    .contact-inner h2 {
      margin-bottom: 5px;
      font-size: clamp(1.55rem, 3vw, 2.25rem);
    }

    .contact-inner p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .email-link {
      white-space: nowrap;
    }

    .site-footer {
      padding: 54px 0 34px;
      border-top: 1px solid var(--line);
      background: #020611;
    }

    .footer-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 42px;
      padding-bottom: 36px;
    }

    .footer-brand p {
      max-width: 370px;
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 0.82rem;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(2, minmax(150px, 1fr));
      gap: 10px 36px;
    }

    .footer-links a {
      color: var(--muted-bright);
      font-size: 0.8rem;
      text-decoration: none;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: var(--cyan-soft);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding-top: 25px;
      color: #718099;
      border-top: 1px solid var(--line);
      font-size: 0.72rem;
    }

    :focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 4px;
    }

    @media (max-width: 1040px) {
      .hero {
        padding-top: 68px;
      }

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

      .hero-copy {
        max-width: 760px;
      }

      .hero-visual {
        width: min(100%, 760px);
        margin-inline: auto;
      }

      .platform-grid,
      .faq-layout {
        gap: 48px;
      }

      .offer-wrap {
        padding: 48px;
      }

      .offer-grid {
        gap: 40px;
      }
    }

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

      .header-inner {
        min-height: 70px;
      }

      .site-nav a:not(.nav-cta) {
        display: none;
      }

      .hero {
        padding: 58px 0 48px;
      }

      h1 {
        font-size: clamp(2.8rem, 13vw, 4.2rem);
      }

      .signal-inner {
        grid-template-columns: 1fr;
        padding: 12px 0;
      }

      .signal-item,
      .signal-item:last-child {
        min-height: 50px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
      }

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

      .section {
        padding: 78px 0;
      }

      .section-heading {
        margin-bottom: 38px;
      }

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

      .process-step {
        min-height: auto;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
      }

      .process-step:last-child {
        border-bottom: 0;
      }

      .step-number {
        margin-bottom: 30px;
      }

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

      .work-card.postcard {
        grid-column: auto;
      }

      .work-card.postcard .work-image {
        aspect-ratio: auto;
      }

      .work-card.postcard .work-image img {
        height: auto;
      }

      .platform-grid,
      .faq-layout {
        grid-template-columns: 1fr;
      }

      .platform-intro {
        position: static;
      }

      .offer-wrap {
        padding: 35px 25px;
      }

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

      .price-block {
        padding: 30px 0 0;
        border-top: 1px solid var(--line);
        border-left: 0;
      }

      .contact-inner,
      .footer-top,
      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }

      .footer-links {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .brand {
        font-size: 0.94rem;
      }

      .site-nav .nav-cta {
        padding: 9px 12px;
        font-size: 0.78rem;
      }

      .hero-grid {
        gap: 36px;
      }

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

      .button {
        width: 100%;
      }

      .work-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
      }

      .footer-links {
        grid-template-columns: 1fr;
      }
    }


/* ---------------------------------------------------------------------------
   Compatibility layer — the legal/policy pages (terms, privacy, billing,
   fulfillment, contact, 404) keep their original, legally-reviewed markup and
   class names. These rules render that markup in the new design system using
   the tokens above, so the whole site is visually consistent without touching
   a word of the reviewed copy.
   --------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--content); margin: 0 auto; padding: 0 28px; }
main section { padding: 72px 0; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: .88rem; }
.lead { font-size: 1.12rem; color: var(--muted-bright); max-width: 660px; }
.eyebrow { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-transform: uppercase;
  letter-spacing: .18em; font-size: .72rem; color: var(--cyan); margin: 0 0 1em; }
.section-head { max-width: 720px; margin: 0 auto 40px; }
.section-head.center { text-align: center; }

.prose-head { padding: 64px 0 40px; background: var(--navy-850); border-bottom: 1px solid var(--line); }
.prose-head .container { max-width: 776px; }
.prose { max-width: 776px; margin: 0 auto; padding: 48px 28px 88px; color: var(--muted-bright); line-height: 1.75; }
.prose h2 { font-size: 1.4rem; margin-top: 2em; color: var(--text); }
.prose h3 { font-size: 1.06rem; margin-top: 1.5em; color: var(--text); }
.prose ul, .prose ol { padding-left: 1.2em; }
.prose li { margin: .4em 0; }
.prose strong { color: var(--text); }
.updated { color: var(--muted); font-size: .88rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.toc { background: var(--navy-800); border: 1px solid var(--line); border-radius: var(--radius-small);
  padding: 18px 24px; margin: 0 auto 8px; max-width: 780px; }
.toc ul { margin: .3em 0 0; }

.card { background: var(--navy-800); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); }
.card h3 { margin-top: 0; }
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.notice { border: 1px solid var(--line); border-left: 2px solid var(--cyan); background: var(--navy-800);
  border-radius: var(--radius-small); padding: 16px 20px; margin: 22px 0; color: var(--muted-bright); }
.contact-card { max-width: 620px; margin: 0 auto; text-align: center; }
.email-big { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.25rem; font-weight: 600; word-break: break-word; }

.btn { display: inline-block; text-decoration: none; font-weight: 600; font-size: .96rem; padding: .8em 1.5em;
  border-radius: 999px; border: 1px solid transparent; transition: background .15s, border-color .15s, color .15s; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-bright); color: #fff; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan-soft); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

@media (max-width: 900px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  main section { padding: 56px 0; }
}

.footer-legal-line { margin: 16px 0 0; max-width: 900px; color: var(--muted);
  font-size: .78rem; line-height: 1.65; }
.footer-entity { font-style: normal; }
.email-big a { text-decoration: none; }
.email-big a:hover { text-decoration: underline; }
