@layer reset, tokens, base, components, pages, utilities, motion;

@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: clip;
    scrollbar-color: rgb(124 92 255 / 0.55) var(--ink-950);
    scrollbar-width: thin;
    text-size-adjust: 100%;
  }

  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: var(--ink-950);
  }

  ::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgb(124 92 255 / 0.55);
  }

  body,
  h1,
  h2,
  h3,
  p,
  figure,
  blockquote,
  dl,
  dd {
    margin: 0;
  }

  ul,
  ol {
    margin: 0;
    padding: 0;
  }

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

  button,
  input,
  textarea,
  select {
    font: inherit;
  }

  button,
  a {
    -webkit-tap-highlight-color: transparent;
  }
}

@layer tokens {
  :root {
    color-scheme: dark;
    --ink-950: #08060d;
    --ink-925: #0b0712;
    --ink-900: #100b19;
    --ink-850: #151020;
    --ink-800: #1c1428;
    --ivory-100: #fffaf4;
    --ivory-200: #f7f0e9;
    --ivory-300: #ded6d1;
    --muted: #aca3ad;
    --muted-strong: #c9c0ca;
    --violet: #7c5cff;
    --violet-light: #aa8cff;
    --cyan: #36e0f0;
    --coral: #ff5d7d;
    --electric-blue: #4f8cff;
    --copper: #d6a85f;
    --line: rgb(255 255 255 / 0.12);
    --line-strong: rgb(255 255 255 / 0.2);
    --shadow: 0 30px 90px rgb(0 0 0 / 0.42);
    --shell: min(100% - 40px, 1240px);
    --header-height: 82px;
    --radius-sm: 7px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
    --font-sans: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial,
      sans-serif;
    --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
      serif;
  }
}

@layer base {
  html {
    background: var(--ink-950);
  }

  body {
    min-width: 320px;
    overflow-x: clip;
    background:
      radial-gradient(circle at 18% 5%, rgb(124 92 255 / 0.12), transparent 30rem),
      linear-gradient(180deg, var(--ink-925), var(--ink-950));
    color: var(--ivory-200);
    font-family: var(--font-sans);
    font-size: clamp(0.98rem, 0.94rem + 0.18vw, 1.08rem);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
  }

  ::selection {
    background: var(--cyan);
    color: var(--ink-950);
  }

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

  button {
    border: 0;
    cursor: pointer;
  }

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

  .shell {
    width: var(--shell);
    margin-inline: auto;
  }

  .section {
    position: relative;
    padding-block: clamp(5rem, 9vw, 9rem);
  }

  .skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    transform: translateY(-160%);
    border-radius: var(--radius-sm);
    background: var(--ivory-100);
    color: var(--ink-950);
    font-weight: 800;
  }

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

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

  .eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
    color: var(--cyan);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.19em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .display-title,
  .hero-title {
    max-width: 15ch;
    color: var(--ivory-100);
    font-family: var(--font-display);
    font-size: clamp(3.1rem, 7vw, 7.2rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.94;
  }

  .display-title--compact {
    max-width: 17ch;
    font-size: clamp(2.7rem, 5.3vw, 5.3rem);
  }

  .display-title--subpage {
    max-width: 14ch;
    font-size: clamp(3.4rem, 7.1vw, 7.7rem);
  }

  .lead,
  .hero-lead,
  .section-heading > p,
  .editorial-copy > p,
  .meaning-copy > p,
  .subpage-hero__grid > div:first-child > p:last-child {
    max-width: 66ch;
    color: var(--muted-strong);
    font-size: clamp(1.08rem, 0.98rem + 0.55vw, 1.48rem);
    line-height: 1.62;
  }

  .button {
    position: relative;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 21px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.015em;
    line-height: 1.25;
    isolation: isolate;
    transition:
      color 240ms var(--ease),
      border-color 240ms var(--ease),
      transform 240ms var(--ease),
      box-shadow 240ms var(--ease);
  }

  .button::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(110deg, var(--violet), var(--electric-blue), var(--cyan));
    content: "";
    transition: transform 360ms var(--ease);
  }

  .button svg,
  .text-link svg,
  .sale-ribbon svg,
  .potential-row > svg,
  .contact-action > svg {
    width: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
  }

  .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgb(54 224 240 / 0.15);
  }

  .button--primary {
    color: white;
  }

  .button--primary::after,
  .button--light::after {
    position: absolute;
    z-index: -1;
    inset: 1px;
    border-radius: calc(var(--radius-sm) - 1px);
    background: linear-gradient(90deg, rgb(255 255 255 / 0.08), transparent);
    content: "";
  }

  .button--ghost {
    border-color: var(--line-strong);
    background: rgb(255 255 255 / 0.025);
    color: var(--ivory-200);
  }

  .button--ghost::before {
    transform: translateY(102%);
  }

  .button--ghost:hover {
    border-color: var(--cyan);
    color: white;
  }

  .button--ghost:hover::before {
    transform: translateY(0);
  }

  .button--light {
    color: var(--ink-950);
  }

  .button--light::before {
    background: var(--ivory-100);
  }

  .button--mini {
    min-height: 42px;
    padding: 10px 15px;
    font-size: 0.78rem;
  }

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

  .text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ivory-100);
    font-size: 0.89rem;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: var(--cyan);
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
    transition:
      color 200ms ease,
      text-decoration-color 200ms ease;
  }

  .text-link:hover {
    color: var(--cyan);
    text-decoration-color: var(--coral);
  }
}

@layer components {
  .scroll-progress {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    pointer-events: none;
  }

  .scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--violet), var(--cyan), var(--coral));
  }

  .sale-ribbon {
    position: relative;
    z-index: 80;
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
    background:
      linear-gradient(90deg, rgb(124 92 255 / 0.2), rgb(54 224 240 / 0.1)),
      var(--ink-950);
  }

  .sale-ribbon a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
  }

  .sale-ribbon svg {
    width: 15px;
  }

  .live-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 18px var(--cyan);
  }

  .site-header {
    position: sticky;
    z-index: 70;
    top: 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.09);
    background: rgb(11 7 18 / 0.8);
    backdrop-filter: blur(18px) saturate(140%);
  }

  .header-inner {
    display: flex;
    width: var(--shell);
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-inline: auto;
  }

  .wordmark {
    display: inline-flex;
    width: max-content;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    color: var(--ivory-100);
  }

  .wordmark__mark {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgb(54 224 240 / 0.46);
    border-radius: 13px;
    background:
      radial-gradient(circle at 72% 20%, rgb(255 93 125 / 0.28), transparent 28%),
      linear-gradient(145deg, rgb(124 92 255 / 0.3), rgb(54 224 240 / 0.1)),
      var(--ink-900);
    box-shadow:
      inset 0 0 0 1px rgb(255 255 255 / 0.04),
      0 0 25px rgb(54 224 240 / 0.11);
    color: var(--ivory-100);
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 0 16px rgb(54 224 240 / 0.35);
  }

  .wordmark__mark::after {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 10px rgb(255 93 125 / 0.8);
    content: "";
  }

  .wordmark__name {
    color: var(--ivory-100);
    font-family: var(--font-sans);
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1;
    text-shadow: 0 1px 16px rgb(0 0 0 / 0.55);
  }

  .wordmark__name span {
    color: var(--cyan);
    font-weight: 700;
  }

  .wordmark:hover .wordmark__mark {
    border-color: rgb(54 224 240 / 0.75);
    box-shadow:
      inset 0 0 0 1px rgb(255 255 255 / 0.06),
      0 0 30px rgb(54 224 240 / 0.18);
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.3vw, 32px);
  }

  .desktop-nav a {
    position: relative;
    color: var(--muted-strong);
    font-size: 0.79rem;
    font-weight: 700;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    background: linear-gradient(90deg, var(--violet), var(--cyan));
    content: "";
    transition: transform 240ms var(--ease);
  }

  .desktop-nav a:hover,
  .desktop-nav a[aria-current="page"] {
    color: var(--ivory-100);
  }

  .desktop-nav a:hover::after,
  .desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .language-switcher {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 3px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgb(255 255 255 / 0.025);
  }

  .language-switcher a {
    display: grid;
    min-width: 38px;
    min-height: 34px;
    place-items: center;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 800;
  }

  .language-switcher a:hover {
    color: white;
  }

  .language-switcher a[aria-current="page"] {
    background: var(--ivory-100);
    color: var(--ink-950);
  }

  .motion-toggle,
  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgb(255 255 255 / 0.035);
    color: var(--ivory-200);
  }

  .motion-toggle svg,
  .menu-toggle svg {
    width: 18px;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-width: 1.6;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100vh - 118px);
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: rgb(11 7 18 / 0.98);
    box-shadow: var(--shadow);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu > nav,
  .mobile-menu__footer {
    width: var(--shell);
    margin-inline: auto;
  }

  .mobile-menu > nav {
    display: grid;
    padding-block: 20px;
  }

  .mobile-menu > nav a {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 1.55rem;
  }

  .mobile-menu > nav svg {
    width: 20px;
    fill: none;
    stroke: var(--cyan);
  }

  .mobile-menu__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    padding-block: 20px 28px;
    color: var(--muted-strong);
    font-size: 0.84rem;
  }

  .mesh {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .mesh::before,
  .mesh::after {
    position: absolute;
    width: 52vw;
    height: 52vw;
    border-radius: 44% 56% 68% 32% / 55% 42% 58% 45%;
    content: "";
    filter: blur(2px);
    opacity: 0.23;
  }

  .mesh::before {
    top: -30vw;
    left: -10vw;
    background:
      radial-gradient(circle at 55% 48%, rgb(124 92 255 / 0.7), transparent 62%),
      conic-gradient(from 180deg, transparent, rgb(255 93 125 / 0.3), transparent);
  }

  .mesh::after {
    right: -20vw;
    bottom: -25vw;
    background:
      radial-gradient(circle at 44% 40%, rgb(54 224 240 / 0.58), transparent 58%),
      conic-gradient(from 40deg, transparent, rgb(79 140 255 / 0.25), transparent);
  }

  .cursor-aurora {
    position: absolute;
    z-index: 0;
    width: 520px;
    height: 520px;
    transform: translate3d(var(--pointer-x, 66vw), var(--pointer-y, 18vh), 0)
      translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgb(54 224 240 / 0.12), transparent 68%);
    pointer-events: none;
  }

  .section-heading {
    margin-bottom: clamp(2.8rem, 5vw, 5rem);
  }

  .section-heading--wide {
    max-width: 920px;
  }

  .section-heading--wide > p:last-child {
    margin-top: 1.6rem;
  }

  .section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: end;
    gap: clamp(30px, 6vw, 90px);
  }

  .section-heading--split > p {
    color: var(--muted-strong);
  }

  .contact-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 30px;
  }

  .contact-rail__item {
    display: grid;
    min-width: min(100%, 260px);
    grid-template-columns: 1fr 40px;
    padding: 12px 12px 12px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgb(255 255 255 / 0.032);
  }

  .contact-rail__item > span {
    grid-column: 1;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .contact-rail__item > a {
    grid-column: 1;
    color: var(--ivory-100);
    font-size: 0.9rem;
    font-weight: 750;
  }

  .copy-button {
    display: grid;
    grid-row: 1 / span 2;
    grid-column: 2;
    width: 36px;
    height: 36px;
    place-items: center;
    align-self: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--cyan);
  }

  .copy-button svg,
  .copy-text-button svg,
  .contact-panel__icon svg,
  .scope-card__status svg,
  .check-list svg,
  .timeline-step li svg,
  .buyer-checklist svg,
  .editorial-policy svg {
    width: 18px;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
  }

  .copy-toast {
    position: fixed;
    z-index: 300;
    right: 20px;
    bottom: 20px;
    max-width: min(360px, calc(100vw - 40px));
    padding: 12px 16px;
    transform: translateY(30px);
    border: 1px solid var(--cyan);
    border-radius: var(--radius-sm);
    background: var(--ink-800);
    box-shadow: var(--shadow);
    color: var(--ivory-100);
    font-size: 0.84rem;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 220ms ease,
      transform 220ms var(--ease);
  }

  .copy-toast.is-visible {
    transform: translateY(0);
    opacity: 1;
  }

  .independence-notice {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 16px;
    margin-top: clamp(2.8rem, 6vw, 5rem);
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-left: 3px solid var(--coral);
    background: linear-gradient(90deg, rgb(255 93 125 / 0.07), transparent);
    color: var(--muted-strong);
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .independence-notice__mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--coral);
    border-radius: 50%;
    color: var(--coral);
    font-family: var(--font-display);
    font-size: 1.3rem;
  }

  .breadcrumb {
    margin-bottom: clamp(3rem, 7vw, 6rem);
  }

  .breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    list-style: none;
  }

  .breadcrumb li + li::before {
    margin-right: 10px;
    color: var(--violet-light);
    content: "/";
  }

  .breadcrumb a:hover {
    color: var(--cyan);
  }

  .final-cta {
    min-height: 610px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-top: 1px solid var(--line);
    background:
      linear-gradient(135deg, rgb(124 92 255 / 0.24), transparent 48%),
      linear-gradient(305deg, rgb(255 93 125 / 0.15), transparent 52%),
      var(--ink-900);
  }

  .final-cta::after {
    position: absolute;
    inset: 8%;
    border: 1px solid rgb(255 255 255 / 0.08);
    content: "";
    clip-path: polygon(0 0, 72% 0, 100% 30%, 100% 100%, 30% 100%, 0 70%);
  }

  .final-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
  }

  .final-cta__inner .eyebrow,
  .final-cta__inner .button-row {
    justify-content: center;
  }

  .final-cta__inner h2 {
    margin-inline: auto;
  }

  .final-cta__inner > p:not(.eyebrow) {
    max-width: 680px;
    margin: 1.8rem auto 2.2rem;
    color: var(--muted-strong);
  }

  .ambient-orb {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid rgb(255 255 255 / 0.13);
    border-radius: 50%;
    background: radial-gradient(circle, rgb(54 224 240 / 0.12), transparent 68%);
  }

  .ambient-orb--one {
    top: -130px;
    right: 4%;
  }

  .ambient-orb--two {
    bottom: -180px;
    left: 7%;
    background: radial-gradient(circle, rgb(255 93 125 / 0.13), transparent 66%);
  }

  .site-footer {
    position: relative;
    padding-block: 4.5rem 2rem;
    border-top: 1px solid var(--line);
    background:
      radial-gradient(circle at 85% 15%, rgb(124 92 255 / 0.1), transparent 25rem),
      #09060e;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 0.75fr);
    gap: clamp(28px, 4vw, 70px);
    padding-bottom: 3.6rem;
  }

  .footer-brand p {
    max-width: 360px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 0.86rem;
  }

  .footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
  }

  .footer-column h2 {
    margin-bottom: 8px;
    color: var(--cyan);
    font-size: 0.67rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .footer-column a {
    color: var(--muted-strong);
    font-size: 0.84rem;
  }

  .footer-column a:hover {
    color: var(--ivory-100);
  }

  .footer-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding-top: 1.7rem;
    border-top: 1px solid var(--line);
  }

  .footer-bottom > div:first-child {
    display: grid;
    gap: 5px;
  }

  .footer-bottom strong {
    color: var(--ivory-100);
    font-size: 0.8rem;
  }

  .footer-bottom span {
    color: var(--muted);
    font-size: 0.72rem;
  }
}

@layer pages {
  .hero {
    min-height: calc(100svh - 118px);
    display: grid;
    align-items: center;
    overflow: hidden;
    padding-block: clamp(4rem, 8vw, 8rem) 3rem;
    border-bottom: 1px solid var(--line);
  }

  .hero::before {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgb(255 255 255 / 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgb(255 255 255 / 0.025) 1px, transparent 1px);
    background-size: 68px 68px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 88%);
    pointer-events: none;
  }

  .hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
    align-items: center;
    gap: clamp(38px, 7vw, 105px);
  }

  .sale-eyebrow span {
    width: 28px;
    height: 1px;
    background: var(--cyan);
    box-shadow: 0 0 14px var(--cyan);
  }

  .hero-title {
    max-width: 9ch;
    font-size: clamp(4.1rem, 8.8vw, 9rem);
  }

  .hero-lead {
    max-width: 620px;
    margin-top: 2rem;
  }

  .price-line {
    margin-block: 1.2rem 2rem;
    color: var(--ivory-100);
    font-size: 0.95rem;
    font-weight: 800;
  }

  .hero-visual {
    position: relative;
    transform-style: preserve-3d;
  }

  .hero-visual__frame {
    position: relative;
    aspect-ratio: 0.82;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.22);
    border-radius: 160px 20px 160px 20px;
    background: var(--ink-800);
    box-shadow: var(--shadow);
  }

  .hero-visual__frame::before {
    position: absolute;
    z-index: 4;
    inset: 17px;
    border: 1px solid rgb(255 255 255 / 0.23);
    border-radius: 145px 12px 145px 12px;
    content: "";
    pointer-events: none;
  }

  .hero-visual__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.02);
  }

  .hero-visual__wash {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, transparent 35%, rgb(8 6 13 / 0.9)),
      linear-gradient(120deg, rgb(124 92 255 / 0.16), rgb(54 224 240 / 0.08));
  }

  .hero-visual__orbit {
    position: absolute;
    top: 7%;
    right: 4%;
    width: 170px;
    height: 170px;
    border: 1px solid rgb(54 224 240 / 0.6);
    border-radius: 50%;
  }

  .hero-visual__orbit::before,
  .hero-visual__orbit::after {
    position: absolute;
    inset: 18px;
    border: 1px solid rgb(255 255 255 / 0.24);
    border-radius: 50%;
    content: "";
  }

  .hero-visual__orbit::after {
    inset: 52px;
    background: rgb(124 92 255 / 0.25);
    box-shadow: 0 0 35px rgb(124 92 255 / 0.45);
  }

  .hero-visual__orbit span {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 17px var(--coral);
  }

  .hero-visual__orbit span:nth-child(1) {
    top: -4px;
    left: 50%;
  }

  .hero-visual__orbit span:nth-child(2) {
    right: 10px;
    bottom: 28px;
  }

  .hero-visual__orbit span:nth-child(3) {
    bottom: 19px;
    left: 8px;
  }

  .holo-label {
    position: absolute;
    z-index: 5;
    right: 28px;
    bottom: 32px;
    left: 28px;
    display: grid;
    padding: 20px;
    border-top: 1px solid rgb(255 255 255 / 0.26);
    background: linear-gradient(90deg, rgb(8 6 13 / 0.72), transparent);
    backdrop-filter: blur(7px);
  }

  .holo-label span {
    color: var(--cyan);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.17em;
  }

  .holo-label strong {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 4vw, 4.4rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .holo-label small {
    color: var(--muted-strong);
  }

  .hero-visual figcaption,
  .editorial-photo figcaption {
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.5;
  }

  .fact-rail {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(3rem, 7vw, 6rem);
    border-block: 1px solid var(--line);
  }

  .fact-rail > div {
    display: flex;
    min-height: 96px;
    align-items: center;
    gap: 14px;
    padding-inline: clamp(12px, 3vw, 34px);
    border-right: 1px solid var(--line);
  }

  .fact-rail > div:last-child {
    border-right: 0;
  }

  .fact-rail strong {
    color: var(--ivory-100);
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 500;
  }

  .fact-rail span {
    color: var(--muted);
    font-size: 0.75rem;
    text-transform: uppercase;
  }

  .intro-section {
    background: linear-gradient(180deg, var(--ink-950), var(--ink-900));
  }

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

  .strength-card {
    position: relative;
    min-height: 340px;
    padding: clamp(24px, 4vw, 48px);
    overflow: hidden;
    border-right: 1px solid var(--line);
    background: rgb(255 255 255 / 0.015);
    transform-style: preserve-3d;
  }

  .strength-card:last-child {
    border-right: 0;
  }

  .strength-card::after {
    position: absolute;
    right: -90px;
    bottom: -100px;
    width: 220px;
    height: 220px;
    border: 1px solid var(--card-accent, var(--violet));
    border-radius: 50%;
    content: "";
    opacity: 0.4;
    transition:
      transform 600ms var(--ease),
      background 600ms var(--ease);
  }

  .strength-card:nth-child(2) {
    --card-accent: var(--cyan);
  }

  .strength-card:nth-child(3) {
    --card-accent: var(--coral);
  }

  .strength-card:hover::after {
    transform: scale(1.35);
    background: rgb(124 92 255 / 0.08);
  }

  .card-index {
    color: var(--cyan);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
  }

  .strength-card h3 {
    max-width: 10ch;
    margin-block: 5.5rem 1.4rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 500;
    line-height: 1;
  }

  .strength-card p {
    position: relative;
    z-index: 2;
    color: var(--muted-strong);
    font-size: 0.9rem;
  }

  .belgium-section {
    overflow: hidden;
    background:
      radial-gradient(circle at 10% 70%, rgb(79 140 255 / 0.11), transparent 30rem),
      var(--ink-900);
  }

  .editorial-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(45px, 9vw, 140px);
  }

  .editorial-grid--reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.8fr);
  }

  .editorial-photo {
    position: relative;
  }

  .editorial-photo::before {
    position: absolute;
    z-index: 2;
    top: -16px;
    right: -16px;
    width: 46%;
    aspect-ratio: 1;
    border-top: 1px solid var(--cyan);
    border-right: 1px solid var(--cyan);
    content: "";
  }

  .editorial-photo--tall picture {
    display: block;
    aspect-ratio: 0.74;
    overflow: hidden;
    border-radius: 140px 12px 12px 12px;
  }

  .editorial-photo__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .editorial-copy > p {
    margin-block: 2rem;
  }

  .meaning-section {
    overflow: hidden;
    background:
      radial-gradient(circle at 75% 20%, rgb(255 93 125 / 0.1), transparent 27rem),
      var(--ink-950);
  }

  .meaning-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(50px, 9vw, 140px);
  }

  .meaning-orbit {
    position: relative;
    display: grid;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .meaning-orbit::before,
  .meaning-orbit::after {
    position: absolute;
    inset: 14%;
    border: 1px dashed rgb(54 224 240 / 0.32);
    border-radius: 50%;
    content: "";
  }

  .meaning-orbit::after {
    inset: 31%;
    border-style: solid;
    border-color: rgb(255 93 125 / 0.4);
  }

  .meaning-orbit__core {
    display: grid;
    width: 33%;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet), var(--coral));
    box-shadow: 0 0 80px rgb(124 92 255 / 0.45);
    font-family: var(--font-display);
    font-size: clamp(4rem, 9vw, 8rem);
  }

  .orbit-word {
    position: absolute;
    padding: 5px 10px;
    border: 1px solid var(--line);
    background: var(--ink-950);
    color: var(--muted-strong);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .orbit-word--one {
    top: 9%;
    left: 44%;
  }

  .orbit-word--two {
    top: 46%;
    right: -4%;
  }

  .orbit-word--three {
    bottom: 7%;
    left: 47%;
  }

  .orbit-word--four {
    top: 47%;
    left: -6%;
  }

  .meaning-copy > p {
    margin-block: 1.7rem;
  }

  .caution-copy {
    padding-left: 18px;
    border-left: 2px solid var(--coral);
    color: var(--muted-strong) !important;
    font-size: 0.91rem !important;
  }

  .potential-section {
    background: linear-gradient(180deg, var(--ink-900), #120c1c);
  }

  .potential-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
    align-items: start;
    gap: clamp(35px, 7vw, 90px);
  }

  .potential-list {
    display: grid;
  }

  .potential-row {
    display: grid;
    min-height: 160px;
    grid-template-columns: 52px 1fr 24px;
    align-items: start;
    gap: 18px;
    padding-block: 26px;
    border-top: 1px solid var(--line);
  }

  .potential-row > span {
    color: var(--cyan);
    font-size: 0.71rem;
    font-weight: 800;
  }

  .potential-row h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 500;
    line-height: 1;
  }

  .potential-row p {
    margin-block: 0.8rem 0.4rem;
    color: var(--muted-strong);
    font-size: 0.9rem;
  }

  .potential-row small {
    display: block;
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .potential-row > svg {
    margin-top: 8px;
    color: var(--coral);
    transition: transform 260ms var(--ease);
  }

  .potential-row:hover > svg {
    transform: translateX(7px);
  }

  .potential-list > .button {
    justify-self: start;
    margin-top: 25px;
  }

  .editorial-photo--event {
    position: sticky;
    top: 118px;
  }

  .editorial-photo--event picture {
    display: block;
    aspect-ratio: 0.72;
    overflow: hidden;
    border-radius: 14px 140px 14px 14px;
  }

  .process-section {
    background: var(--ink-950);
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-block: 1px solid var(--line);
    list-style: none;
  }

  .process-grid li {
    min-height: 270px;
    padding: 28px;
    border-right: 1px solid var(--line);
  }

  .process-grid li:last-child {
    border-right: 0;
  }

  .process-grid span {
    color: var(--cyan);
    font-size: 0.68rem;
    font-weight: 800;
  }

  .process-grid h3 {
    margin-block: 4.2rem 1rem;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
  }

  .process-grid p {
    color: var(--muted);
    font-size: 0.82rem;
  }

  .process-link {
    margin-top: 28px;
  }

  .subpage-hero {
    min-height: 720px;
    display: grid;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, var(--ink-925), var(--ink-900));
  }

  .subpage-hero::after {
    position: absolute;
    right: 5%;
    bottom: -20%;
    width: 44vw;
    aspect-ratio: 1;
    border: 1px solid rgb(255 255 255 / 0.08);
    border-radius: 50%;
    content: "";
  }

  .mesh--subpage::before {
    top: -40vw;
  }

  .subpage-hero .shell {
    position: relative;
    z-index: 2;
  }

  .subpage-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.45fr);
    align-items: end;
    gap: clamp(40px, 8vw, 120px);
  }

  .subpage-hero__grid .lead {
    margin-top: 2rem;
  }

  .pronunciation-card,
  .price-card,
  .possibility-count,
  .plain-status-card {
    position: relative;
    display: grid;
    min-height: 220px;
    align-content: end;
    padding: 26px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    background:
      linear-gradient(145deg, rgb(124 92 255 / 0.18), transparent 70%),
      rgb(255 255 255 / 0.025);
  }

  .pronunciation-card::after,
  .price-card::after,
  .possibility-count::after,
  .plain-status-card::after {
    position: absolute;
    top: -80px;
    right: -70px;
    width: 170px;
    height: 170px;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    content: "";
    opacity: 0.55;
  }

  .pronunciation-card span,
  .price-card span,
  .plain-status-card strong {
    color: var(--cyan);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
  }

  .pronunciation-card strong,
  .price-card strong,
  .plain-status-card span {
    margin-block: 6px;
    color: var(--ivory-100);
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.5vw, 3rem);
    font-weight: 500;
  }

  .pronunciation-card small,
  .price-card small,
  .possibility-count small,
  .plain-status-card small {
    color: var(--muted);
    line-height: 1.45;
  }

  .possibility-count strong {
    color: var(--ivory-100);
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 8vw, 7rem);
    font-weight: 500;
    line-height: 0.85;
  }

  .possibility-count span {
    margin-block: 16px 4px;
    color: var(--cyan);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .name-summary {
    background: var(--ink-950);
  }

  .meaning-layer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
  }

  .meaning-layer {
    min-height: 360px;
    padding: 34px;
    border-right: 1px solid var(--line);
    background: linear-gradient(180deg, rgb(255 255 255 / 0.025), transparent);
  }

  .meaning-layer:last-child {
    border-right: 0;
  }

  .meaning-layer > span {
    color: var(--cyan);
    font-size: 0.69rem;
    font-weight: 800;
  }

  .meaning-layer h2 {
    margin-block: 5rem 1.3rem;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
  }

  .meaning-layer p {
    color: var(--muted-strong);
    font-size: 0.86rem;
  }

  .origin-section {
    background:
      radial-gradient(circle at 80% 20%, rgb(54 224 240 / 0.08), transparent 32rem),
      var(--ink-900);
  }

  .origin-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
    align-items: start;
    gap: clamp(45px, 9vw, 130px);
  }

  .origin-grid > div:first-child > p:last-child {
    margin-top: 2rem;
    color: var(--muted-strong);
  }

  .check-list,
  .buyer-checklist ul,
  .editorial-policy ul {
    display: grid;
    list-style: none;
  }

  .check-list li,
  .buyer-checklist li,
  .editorial-policy li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 14px;
    padding-block: 18px;
    border-bottom: 1px solid var(--line);
    color: var(--muted-strong);
  }

  .check-list svg,
  .buyer-checklist svg,
  .editorial-policy svg {
    margin-top: 4px;
    color: var(--cyan);
  }

  .brand-value-section {
    background: var(--ink-950);
  }

  .metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-block: 1px solid var(--line);
  }

  .metric-grid > div {
    display: grid;
    min-height: 180px;
    place-content: center;
    border-right: 1px solid var(--line);
    text-align: center;
  }

  .metric-grid > div:last-child {
    border-right: 0;
  }

  .metric-grid strong {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1;
  }

  .metric-grid span {
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .source-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    margin-top: 55px;
    padding: 30px;
    border: 1px solid var(--line);
    background: linear-gradient(90deg, rgb(124 92 255 / 0.08), transparent);
  }

  .source-card > div:first-child {
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    border: 1px solid var(--violet);
    border-radius: 50%;
    color: var(--cyan);
    font-size: 1.8rem;
  }

  .source-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
  }

  .source-card p {
    max-width: 720px;
    margin-block: 10px 16px;
    color: var(--muted);
  }

  .possibilities-intro {
    padding-block: 4rem;
    background: var(--ink-950);
  }

  .possibility-photo-band {
    position: relative;
    margin-top: 4rem;
  }

  .possibility-photo-band picture {
    display: block;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px 110px 12px 12px;
  }

  .possibility-photo-band::after {
    position: absolute;
    inset: 0 0 1.9rem;
    background:
      linear-gradient(180deg, transparent 45%, rgb(8 6 13 / 0.72)),
      linear-gradient(90deg, rgb(124 92 255 / 0.16), transparent 50%);
    content: "";
    pointer-events: none;
  }

  .possibility-photo-band figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.68rem;
  }

  .split-statement {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 60px;
    padding-block: 2rem;
    border-block: 1px solid var(--line);
  }

  .split-statement h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 500;
  }

  .split-statement p {
    color: var(--muted-strong);
  }

  .use-cases {
    background: var(--ink-900);
  }

  .use-case {
    --use-accent: var(--violet);
    position: relative;
    display: grid;
    grid-template-columns: 95px 1fr;
    gap: clamp(25px, 5vw, 70px);
    padding-block: clamp(3rem, 7vw, 6rem);
    border-top: 1px solid var(--line);
  }

  .use-case--coral {
    --use-accent: var(--coral);
  }

  .use-case--gold {
    --use-accent: var(--copper);
  }

  .use-case--cyan {
    --use-accent: var(--cyan);
  }

  .use-case--blue {
    --use-accent: var(--electric-blue);
  }

  .use-case__number {
    color: var(--use-accent);
    font-size: 0.72rem;
    font-weight: 800;
  }

  .use-case__body h2 {
    max-width: 17ch;
    color: var(--ivory-100);
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 5vw, 5rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 0.98;
  }

  .use-case__fit {
    max-width: 840px;
    margin-block: 1.6rem 2.6rem;
    color: var(--muted-strong);
    font-size: 1.08rem;
  }

  .use-case__columns {
    display: grid;
    max-width: 900px;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
  }

  .use-case__columns h3 {
    margin-block: 0 10px;
    color: var(--use-accent);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .use-case__columns h3:not(:first-child) {
    margin-top: 22px;
  }

  .use-case__columns ul {
    display: grid;
    gap: 7px;
    padding-left: 18px;
    color: var(--muted-strong);
    font-size: 0.86rem;
  }

  .use-case__columns p {
    color: var(--muted-strong);
    font-size: 0.86rem;
  }

  .risk-note {
    padding-left: 14px;
    border-left: 2px solid var(--use-accent);
  }

  .use-case__signal {
    position: absolute;
    top: 50%;
    right: 0;
    width: 100px;
    height: 100px;
    transform: translateY(-50%);
    border: 1px solid var(--use-accent);
    border-radius: 50%;
    opacity: 0.22;
  }

  .decision-section {
    background: var(--ink-950);
  }

  .decision-table {
    overflow: hidden;
    border: 1px solid var(--line);
  }

  .decision-table table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
  }

  .decision-table tr {
    border-bottom: 1px solid var(--line);
  }

  .decision-table tr:last-child {
    border-bottom: 0;
  }

  .decision-table td,
  .decision-table th {
    width: 23%;
    padding: 18px 22px;
    border-right: 1px solid var(--line);
    font-size: 0.82rem;
    font-weight: 400;
    text-align: left;
  }

  .decision-table th {
    width: 31%;
    color: var(--ivory-100);
    font-weight: 800;
  }

  .decision-table td {
    color: var(--muted);
  }

  .next-step-card {
    display: grid;
    grid-template-columns: minmax(240px, 0.55fr) 1fr;
    align-items: center;
    gap: clamp(35px, 8vw, 100px);
    margin-top: 60px;
    padding: clamp(30px, 5vw, 65px);
    border: 1px solid var(--line);
    background:
      linear-gradient(130deg, rgb(124 92 255 / 0.14), transparent 55%),
      var(--ink-900);
  }

  .next-step-card__visual {
    position: relative;
    display: grid;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .next-step-card__visual span {
    font-family: var(--font-display);
    font-size: clamp(5rem, 10vw, 9rem);
  }

  .next-step-card__visual i {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 18px var(--cyan);
  }

  .next-step-card__visual i:nth-of-type(1) {
    top: 5%;
    left: 48%;
  }

  .next-step-card__visual i:nth-of-type(2) {
    right: 10%;
    bottom: 22%;
    background: var(--coral);
  }

  .next-step-card__visual i:nth-of-type(3) {
    bottom: 16%;
    left: 8%;
    background: var(--violet);
  }

  .next-step-card h2,
  .price-explainer h2,
  .direct-contact-grid h2 {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 4vw, 4.3rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1;
  }

  .next-step-card p {
    margin-block: 1.4rem 2rem;
    color: var(--muted-strong);
  }

  .acquisition-scope {
    background: var(--ink-950);
  }

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

  .scope-card {
    min-height: 420px;
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid var(--line);
  }

  .scope-card--included {
    background: linear-gradient(145deg, rgb(54 224 240 / 0.1), transparent 62%);
  }

  .scope-card--excluded {
    background: linear-gradient(145deg, rgb(255 93 125 / 0.09), transparent 62%);
  }

  .scope-card__status {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid currentcolor;
    border-radius: 50%;
    color: var(--cyan);
  }

  .scope-card--excluded .scope-card__status {
    color: var(--coral);
  }

  .scope-card h3 {
    margin-block: 5rem 1.5rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 3.6rem);
    font-weight: 500;
    line-height: 1;
  }

  .scope-card ul {
    display: grid;
    gap: 12px;
    padding-left: 19px;
    color: var(--muted-strong);
  }

  .scope-card p {
    color: var(--muted-strong);
  }

  .price-explainer {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    padding-block: 40px;
    border-block: 1px solid var(--line);
  }

  .price-explainer__label {
    display: grid;
    width: 90px;
    height: 90px;
    place-items: center;
    border: 1px solid var(--violet);
    border-radius: 50%;
    background: rgb(124 92 255 / 0.08);
    color: var(--cyan);
    font-family: var(--font-display);
    font-size: 2.7rem;
  }

  .price-explainer p {
    max-width: 850px;
    margin-top: 14px;
    color: var(--muted-strong);
  }

  .term-section {
    background: var(--ink-900);
  }

  .term-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--line);
  }

  .term-grid article {
    min-height: 310px;
    padding: clamp(28px, 4vw, 48px);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .term-grid article:nth-child(2n) {
    border-right: 0;
  }

  .term-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .term-grid span {
    color: var(--cyan);
    font-size: 0.69rem;
    font-weight: 800;
  }

  .term-grid h2 {
    margin-block: 3.8rem 1.1rem;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 500;
  }

  .term-grid p {
    color: var(--muted-strong);
    font-size: 0.9rem;
  }

  .direct-contact-section {
    background: var(--ink-950);
  }

  .direct-contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
    gap: clamp(40px, 8vw, 120px);
  }

  .direct-contact-grid > div:first-child > p:not(.eyebrow) {
    margin-block: 1.7rem;
    color: var(--muted-strong);
  }

  .contact-action-stack {
    display: grid;
    gap: 12px;
  }

  .contact-action {
    display: grid;
    grid-template-columns: 44px 1fr 24px;
    align-items: center;
    gap: 16px;
    min-height: 132px;
    padding: 22px;
    border: 1px solid var(--line);
    background: linear-gradient(90deg, rgb(124 92 255 / 0.08), transparent);
  }

  .contact-action--phone {
    background: linear-gradient(90deg, rgb(54 224 240 / 0.07), transparent);
  }

  .contact-action > svg:first-child {
    width: 28px;
    color: var(--cyan);
  }

  .contact-action span {
    display: grid;
  }

  .contact-action small {
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .contact-action strong {
    color: var(--ivory-100);
    font-size: 1.25rem;
  }

  .contact-action em {
    color: var(--muted-strong);
    font-size: 0.76rem;
    font-style: normal;
  }

  .contact-action-stack > p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 0.76rem;
  }

  .contact-action-stack .contact-rail {
    margin-top: 0;
  }

  .legal-callout {
    padding-block: 4rem;
    background: var(--ink-900);
  }

  .legal-callout h2 {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 500;
  }

  .legal-callout .independence-notice {
    margin-top: 20px;
  }

  .transfer-timeline {
    background: var(--ink-950);
  }

  .transfer-timeline > .shell > ol {
    list-style: none;
  }

  .timeline-step {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: clamp(30px, 7vw, 100px);
    padding-block: clamp(3.4rem, 7vw, 6rem);
    border-top: 1px solid var(--line);
  }

  .timeline-step__number {
    color: var(--cyan);
    font-family: var(--font-display);
    font-size: 3.5rem;
  }

  .timeline-step__body h2 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 5rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 0.95;
  }

  .timeline-step__body > p {
    max-width: 800px;
    margin-block: 1.6rem;
    color: var(--muted-strong);
    font-size: 1.06rem;
  }

  .timeline-step__body ul {
    display: grid;
    list-style: none;
  }

  .timeline-step__body li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    max-width: 780px;
    padding-block: 10px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.83rem;
  }

  .timeline-step__body li svg {
    color: var(--coral);
  }

  .timing-note {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 34px;
    border: 1px solid var(--line);
    background: linear-gradient(90deg, rgb(255 93 125 / 0.08), transparent);
  }

  .timing-note > span {
    color: var(--coral);
    font-family: var(--font-display);
    font-size: 3rem;
  }

  .timing-note h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
  }

  .timing-note p {
    margin-top: 9px;
    color: var(--muted-strong);
  }

  .buyer-checklist {
    margin-top: 40px;
    padding: clamp(28px, 5vw, 55px);
    border: 1px solid var(--line);
    background: var(--ink-900);
  }

  .buyer-checklist > h2 {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: 500;
  }

  .buyer-checklist ul {
    margin-block: 22px 28px;
  }

  .contact-page {
    background: var(--ink-950);
  }

  .contact-page__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .contact-panel {
    min-height: 620px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid var(--line);
    transform-style: preserve-3d;
  }

  .contact-panel--email {
    background:
      radial-gradient(circle at 90% 10%, rgb(124 92 255 / 0.2), transparent 19rem),
      var(--ink-900);
  }

  .contact-panel--phone {
    background:
      radial-gradient(circle at 90% 10%, rgb(54 224 240 / 0.17), transparent 19rem),
      var(--ink-900);
  }

  .contact-panel__icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    margin-bottom: auto;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--cyan);
  }

  .contact-panel__icon svg {
    width: 25px;
  }

  .contact-panel .eyebrow {
    margin-top: 70px;
  }

  .contact-panel h2 {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 4vw, 3.8rem);
    font-weight: 500;
  }

  .contact-panel__value {
    margin-block: 8px 20px;
    color: var(--cyan);
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-weight: 800;
  }

  .contact-panel > p:not(.eyebrow) {
    margin-bottom: 24px;
    color: var(--muted-strong);
  }

  .copy-text-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    margin-top: 15px;
    padding: 8px 0;
    background: transparent;
    color: var(--muted-strong);
    font-size: 0.75rem;
    font-weight: 750;
  }

  .contact-prep {
    background: var(--ink-900);
  }

  .contact-prep ol {
    list-style: none;
  }

  .contact-prep ol li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding-block: 17px;
    border-bottom: 1px solid var(--line);
    color: var(--muted-strong);
  }

  .contact-prep ol span {
    color: var(--cyan);
    font-size: 0.7rem;
    font-weight: 800;
  }

  .two-note-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 75px;
  }

  .two-note-grid article {
    padding: 34px;
    border: 1px solid var(--line);
  }

  .two-note-grid h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
  }

  .two-note-grid p {
    margin-top: 13px;
    color: var(--muted);
  }

  .sources-page,
  .policy-page,
  .legal-page {
    background: var(--ink-950);
  }

  .editorial-policy {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 60px;
    padding: clamp(28px, 5vw, 55px);
    border: 1px solid var(--line);
    background: linear-gradient(120deg, rgb(54 224 240 / 0.06), transparent);
  }

  .editorial-policy h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
  }

  .source-groups {
    display: grid;
    gap: 65px;
    margin-top: 75px;
  }

  .source-group > h2,
  .photo-sources > h2 {
    margin-bottom: 22px;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 500;
  }

  .source-group > div {
    border-top: 1px solid var(--line);
  }

  .source-group article {
    display: grid;
    grid-template-columns: 1fr 50px;
    align-items: center;
    gap: 20px;
    padding-block: 21px;
    border-bottom: 1px solid var(--line);
  }

  .source-group h3 {
    color: var(--ivory-100);
    font-size: 0.92rem;
  }

  .source-group p {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.79rem;
  }

  .source-group a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--cyan);
  }

  .photo-sources {
    margin-top: 75px;
  }

  .photo-sources > div {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--line);
  }

  .photo-sources a {
    display: grid;
    min-height: 180px;
    align-content: end;
    padding: 20px;
    border-right: 1px solid var(--line);
    background: linear-gradient(180deg, transparent, rgb(124 92 255 / 0.05));
  }

  .photo-sources a:last-child {
    border-right: 0;
  }

  .photo-sources strong {
    color: var(--ivory-100);
    font-size: 0.78rem;
  }

  .photo-sources span {
    color: var(--muted);
    font-size: 0.7rem;
  }

  .photo-sources em {
    margin-top: 14px;
    color: var(--cyan);
    font-style: normal;
  }

  .photo-sources > p,
  .source-disclaimer {
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.78rem;
  }

  .source-disclaimer {
    padding-left: 15px;
    border-left: 2px solid var(--coral);
  }

  .policy-grid {
    display: grid;
    gap: 0;
  }

  .policy-grid > article {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
    padding-block: 32px;
    border-top: 1px solid var(--line);
  }

  .policy-grid > article > span {
    color: var(--cyan);
    font-size: 0.7rem;
    font-weight: 800;
  }

  .policy-grid > article h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
  }

  .policy-grid > article p {
    max-width: 850px;
    margin-top: 9px;
    color: var(--muted-strong);
  }

  .cookie-note {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
    margin-top: 45px;
    padding: 35px;
    border: 1px solid var(--line);
    background: linear-gradient(100deg, rgb(54 224 240 / 0.08), transparent);
  }

  .cookie-note > div:first-child {
    color: var(--cyan);
    font-size: 3.5rem;
  }

  .cookie-note h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 500;
  }

  .cookie-note p {
    margin-block: 10px;
    color: var(--muted-strong);
  }

  .cookie-note small {
    color: var(--muted);
  }

  .legal-lead {
    padding: clamp(30px, 5vw, 55px);
    border: 1px solid var(--coral);
    background: linear-gradient(100deg, rgb(255 93 125 / 0.1), transparent);
  }

  .legal-lead h2 {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: 500;
  }

  .legal-lead p {
    max-width: 900px;
    margin-top: 18px;
    color: var(--muted-strong);
  }

  .legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
    border: 1px solid var(--line);
  }

  .legal-grid article {
    min-height: 340px;
    padding: 35px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .legal-grid article:nth-child(2n) {
    border-right: 0;
  }

  .legal-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .legal-grid span {
    color: var(--cyan);
    font-size: 0.7rem;
    font-weight: 800;
  }

  .legal-grid h2 {
    margin-block: 4rem 1rem;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 500;
  }

  .legal-grid p {
    color: var(--muted-strong);
    font-size: 0.87rem;
  }

  .not-found {
    position: relative;
    min-height: 760px;
    display: grid;
    place-items: center;
    overflow: hidden;
  }

  .not-found__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
  }

  .not-found__content .eyebrow,
  .not-found__content .button-row {
    justify-content: center;
  }

  .not-found__content h1 {
    margin-inline: auto;
  }

  .not-found__content > p:not(.eyebrow) {
    max-width: 650px;
    margin: 1.8rem auto 2.4rem;
    color: var(--muted-strong);
  }

  .not-found__orbit {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 180px;
    color: rgb(255 255 255 / 0.06);
    font-family: var(--font-display);
    font-size: 25rem;
    line-height: 1;
  }

  .not-found__orbit i {
    position: absolute;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translateX(-50%);
    border: 1px solid var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 80px rgb(54 224 240 / 0.15);
  }
}

@layer motion {
  .js.reveal-ready [data-reveal] {
    transform: translateY(34px);
    opacity: 0;
    transition:
      opacity 760ms var(--ease),
      transform 760ms var(--ease);
  }

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

  .typewriter-caret {
    display: inline-block;
    width: 0.06em;
    height: 0.82em;
    margin-left: 0.06em;
    transform: translateY(0.06em);
    background: var(--cyan);
    box-shadow: 0 0 16px rgb(54 224 240 / 0.7);
    animation: caret-blink 850ms steps(1) infinite;
  }

  .hero-visual__orbit {
    animation: slow-spin 18s linear infinite;
  }

  .hero-visual__orbit::before {
    animation: slow-spin 10s linear infinite reverse;
  }

  .meaning-orbit::before {
    animation: slow-spin 24s linear infinite;
  }

  .meaning-orbit::after {
    animation: slow-spin 13s linear infinite reverse;
  }

  .ambient-orb--one {
    animation: float-one 9s var(--ease) infinite alternate;
  }

  .ambient-orb--two {
    animation: float-two 11s var(--ease) infinite alternate;
  }

  .mesh::before {
    animation: mesh-drift 16s var(--ease) infinite alternate;
  }

  .mesh::after {
    animation: mesh-drift 20s var(--ease) infinite alternate-reverse;
  }

  .next-step-card__visual i {
    animation: signal-pulse 2.3s ease-in-out infinite;
  }

  .next-step-card__visual i:nth-of-type(2) {
    animation-delay: -0.8s;
  }

  .next-step-card__visual i:nth-of-type(3) {
    animation-delay: -1.5s;
  }

  .motion-paused *,
  .motion-paused *::before,
  .motion-paused *::after {
    animation-play-state: paused !important;
    transition-duration: 0.001ms !important;
  }

  @keyframes caret-blink {
    50% {
      opacity: 0;
    }
  }

  @keyframes slow-spin {
    to {
      transform: rotate(1turn);
    }
  }

  @keyframes float-one {
    to {
      transform: translate3d(-35px, 45px, 0) scale(1.08);
    }
  }

  @keyframes float-two {
    to {
      transform: translate3d(45px, -35px, 0) scale(0.92);
    }
  }

  @keyframes mesh-drift {
    to {
      transform: translate3d(6vw, 3vw, 0) rotate(12deg);
    }
  }

  @keyframes signal-pulse {
    50% {
      transform: scale(1.8);
      opacity: 0.45;
    }
  }
}

@layer utilities {
  @media (max-width: 1120px) {
    :root {
      --shell: min(100% - 32px, 980px);
    }

    .desktop-nav,
    .header-actions > .button--mini {
      display: none;
    }

    .menu-toggle {
      display: grid;
    }

    .hero__grid {
      grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.7fr);
      gap: 45px;
    }

    .hero-visual__frame {
      border-radius: 110px 14px 110px 14px;
    }

    .footer-top {
      grid-template-columns: 1.2fr repeat(3, 0.7fr);
      gap: 30px;
    }

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

    .meaning-layer:nth-child(2) {
      border-right: 0;
    }

    .meaning-layer:nth-child(-n + 2) {
      border-bottom: 1px solid var(--line);
    }

    .photo-sources > div {
      grid-template-columns: repeat(3, 1fr);
    }

    .photo-sources a:nth-child(3) {
      border-right: 0;
    }

    .photo-sources a:nth-child(-n + 3) {
      border-bottom: 1px solid var(--line);
    }
  }

  @media (max-width: 820px) {
    :root {
      --shell: min(100% - 28px, 720px);
    }

    .section {
      padding-block: 5rem;
    }

    .hero {
      min-height: auto;
    }

    .hero__grid,
    .editorial-grid,
    .editorial-grid--reverse,
    .meaning-grid,
    .potential-layout,
    .subpage-hero__grid,
    .origin-grid,
    .next-step-card,
    .direct-contact-grid,
    .contact-prep .origin-grid {
      grid-template-columns: 1fr;
    }

    .hero-visual {
      max-width: 620px;
    }

    .hero-visual__frame {
      aspect-ratio: 1.12;
      border-radius: 100px 14px 100px 14px;
    }

    .fact-rail {
      margin-top: 3rem;
    }

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

    .strength-card,
    .process-grid li {
      min-height: auto;
      border-right: 0;
      border-bottom: 1px solid var(--line);
    }

    .strength-card:last-child,
    .process-grid li:last-child {
      border-bottom: 0;
    }

    .strength-card h3,
    .process-grid h3 {
      margin-top: 2.8rem;
    }

    .editorial-grid--reverse > .editorial-photo {
      grid-row: 2;
    }

    .meaning-orbit {
      width: min(100%, 540px);
    }

    .section-heading--split {
      grid-template-columns: 1fr;
      align-items: start;
    }

    .editorial-photo--event {
      position: relative;
      top: auto;
      max-width: 540px;
    }

    .subpage-hero {
      min-height: auto;
    }

    .subpage-hero__grid {
      align-items: start;
    }

    .pronunciation-card,
    .price-card,
    .possibility-count,
    .plain-status-card {
      min-height: 180px;
    }

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

    .metric-grid > div:nth-child(2) {
      border-right: 0;
    }

    .metric-grid > div:nth-child(-n + 2) {
      border-bottom: 1px solid var(--line);
    }

    .split-statement {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .use-case {
      grid-template-columns: 50px 1fr;
    }

    .use-case__signal {
      display: none;
    }

    .scope-grid,
    .term-grid,
    .contact-page__grid,
    .two-note-grid,
    .legal-grid {
      grid-template-columns: 1fr;
    }

    .term-grid article,
    .legal-grid article {
      border-right: 0;
      border-bottom: 1px solid var(--line) !important;
    }

    .term-grid article:last-child,
    .legal-grid article:last-child {
      border-bottom: 0 !important;
    }

    .timeline-step {
      grid-template-columns: 80px 1fr;
      gap: 25px;
    }

    .contact-panel {
      min-height: 560px;
    }

    .editorial-policy {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .footer-top {
      grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
      grid-column: 1 / -1;
      margin-bottom: 15px;
    }
  }

  @media (max-width: 620px) {
    :root {
      --shell: min(100% - 24px, 560px);
      --header-height: 72px;
    }

    body {
      font-size: 0.98rem;
    }

    .sale-ribbon a {
      letter-spacing: 0.05em;
    }

    .header-inner > .wordmark {
      width: max-content;
      gap: 8px;
    }

    .wordmark__mark {
      width: 36px;
      height: 36px;
      flex-basis: 36px;
      border-radius: 11px;
      font-size: 1.4rem;
    }

    .wordmark__name {
      font-size: 1.14rem;
    }

    .header-actions > .language-switcher--compact,
    .motion-toggle {
      display: none;
    }

    .display-title,
    .display-title--compact,
    .display-title--subpage {
      font-size: clamp(2.65rem, 13vw, 4.5rem);
    }

    .hero-title {
      font-size: clamp(3.75rem, 17vw, 6.4rem);
    }

    .hero__grid {
      gap: 50px;
    }

    .button-row {
      align-items: stretch;
    }

    .button-row .button {
      width: 100%;
    }

    .hero-visual__frame {
      aspect-ratio: 0.84;
      border-radius: 85px 12px 85px 12px;
    }

    .hero-visual__orbit {
      width: 125px;
      height: 125px;
    }

    .holo-label {
      right: 20px;
      bottom: 22px;
      left: 20px;
      padding: 16px;
    }

    .fact-rail {
      grid-template-columns: 1fr;
    }

    .fact-rail > div {
      min-height: 72px;
      border-right: 0;
      border-bottom: 1px solid var(--line);
    }

    .fact-rail > div:last-child {
      border-bottom: 0;
    }

    .fact-rail strong {
      font-size: 2rem;
    }

    .editorial-photo--tall picture {
      border-radius: 80px 10px 10px 10px;
    }

    .meaning-orbit {
      width: calc(100% - 8px);
    }

    .orbit-word {
      font-size: 0.55rem;
    }

    .meaning-layer-grid,
    .metric-grid {
      grid-template-columns: 1fr;
    }

    .meaning-layer,
    .metric-grid > div {
      border-right: 0 !important;
      border-bottom: 1px solid var(--line);
    }

    .meaning-layer:last-child,
    .metric-grid > div:last-child {
      border-bottom: 0;
    }

    .source-card {
      grid-template-columns: 1fr;
    }

    .use-case {
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .use-case__columns {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .decision-table {
      overflow-x: auto;
    }

    .next-step-card__visual {
      width: min(100%, 320px);
    }

    .price-explainer {
      grid-template-columns: 1fr;
    }

    .timeline-step {
      grid-template-columns: 1fr;
    }

    .timeline-step__number {
      font-size: 2rem;
    }

    .timing-note,
    .cookie-note {
      grid-template-columns: 1fr;
    }

    .contact-action {
      grid-template-columns: 36px 1fr 18px;
      padding: 18px;
    }

    .contact-action strong {
      font-size: 1rem;
      overflow-wrap: anywhere;
    }

    .contact-panel {
      min-height: 520px;
    }

    .contact-panel__value {
      overflow-wrap: anywhere;
    }

    .photo-sources > div {
      grid-template-columns: 1fr;
    }

    .photo-sources a {
      min-height: 130px;
      border-right: 0;
      border-bottom: 1px solid var(--line);
    }

    .photo-sources a:last-child {
      border-bottom: 0;
    }

    .policy-grid > article {
      grid-template-columns: 44px 1fr;
      gap: 12px;
    }

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

    .footer-column:last-child {
      grid-column: 1 / -1;
    }

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

    .final-cta {
      min-height: 580px;
    }

    .not-found__orbit {
      gap: 20px;
      font-size: 12rem;
    }
  }

  @media (max-width: 370px) {
    .button {
      padding-inline: 14px;
    }

    .contact-rail__item {
      min-width: 100%;
    }

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

    .footer-column:last-child {
      grid-column: auto;
    }
  }

  @media (hover: none), (pointer: coarse) {
    .cursor-aurora {
      display: none;
    }
  }

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

    *,
    *::before,
    *::after {
      scroll-behavior: auto !important;
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
    }

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

    .typewriter-caret {
      display: none;
    }
  }
}
