    :root {
      --black: #030303;
      --near-black: #080808;
      --charcoal: #141414;
      --paper: #f3f3f3;
      --white: #ffffff;
      --line-light: rgba(0, 0, 0, 0.13);
      --line-dark: rgba(255, 255, 255, 0.15);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 98px;
    }

    body {
      font-family: "IBM Plex Sans", Arial, sans-serif;
      background: var(--paper);
      color: var(--black);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

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

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

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

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible {
      outline: 2px solid currentColor;
      outline-offset: 5px;
    }

    [hidden] {
      display: none !important;
    }

    ::selection {
      background: #bdbdbd;
      color: #000;
    }

    .skip-link {
      position: fixed;
      top: 12px;
      left: 12px;
      z-index: 2000;
      padding: 14px 20px;
      background: #fff;
      color: #000;
      font-weight: 600;
      transform: translateY(-150%);
    }

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

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      width: 100%;
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 0 54px;
      color: var(--white);
      background: rgba(3, 3, 3, 0.88);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line-dark);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }

    .brand-mark {
      font-family: "Montserrat", sans-serif;
      font-size: 27px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.075em;
      color: #fff;
    }

    .brand-divider {
      width: 1px;
      height: 30px;
      background: rgba(255, 255, 255, 0.25);
    }

    .brand-sub {
      display: flex;
      flex-direction: column;
      gap: 3px;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 600;
    }

    .nav {
      display: flex;
      align-items: center;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      white-space: nowrap;
    }

    .nav-cta {
      padding: 12px 16px;
      border: 1px solid rgba(255, 255, 255, 0.45);
      color: #fff;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .nav-cta:hover {
      background: #fff;
      color: #000;
      border-color: #fff;
    }

    .hero {
      min-height: 100vh;
      position: relative;
      color: #fff;
      background:
        radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.1), transparent 29%),
        radial-gradient(circle at 22% 80%, rgba(255, 255, 255, 0.05), transparent 30%),
        linear-gradient(118deg, #030303 0%, #080808 46%, #161616 100%);
      padding: 154px 54px 54px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 66px 66px;
      mask-image: linear-gradient(to bottom, black 0%, black 65%, transparent 100%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.03fr 0.97fr;
      gap: 64px;
      align-items: center;
      min-height: calc(100vh - 220px);
    }

    .hero-inner > *,
    .split > *,
    .contact-inner > * {
      min-width: 0;
    }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 13px;
      margin-bottom: 30px;
      font-size: 11px;
      line-height: 1.6;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.17em;
      color: rgba(255, 255, 255, 0.72);
    }

    .eyebrow::before {
      content: "";
      flex-shrink: 0;
      width: 32px;
      height: 1px;
      background: rgba(255, 255, 255, 0.55);
    }

    .hero h1 {
      max-width: 900px;
      margin-bottom: 31px;
      font-size: clamp(48px, 6.3vw, 92px);
      line-height: 0.97;
      font-weight: 500;
      letter-spacing: -0.07em;
    }

    .hero h1 span {
      display: block;
      color: #bcbcbc;
    }

    .hero-copy {
      max-width: 720px;
      margin-bottom: 34px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 18px;
      line-height: 1.7;
      font-weight: 400;
    }

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

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 24px;
      border: 1px solid transparent;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .button-primary {
      background: #fff;
      color: #000;
    }

    .button-primary:hover {
      background: #d7d7d7;
    }

    .button-secondary {
      border-color: rgba(255, 255, 255, 0.4);
      color: #fff;
      background: transparent;
    }

    .button-secondary:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, 0.07);
    }

    .hero-status {
      margin-top: 22px;
      color: rgba(255, 255, 255, 0.65);
      font-size: 12px;
      line-height: 1.6;
    }

    .hero-visual {
      position: relative;
      height: 595px;
      border: 1px solid var(--line-dark);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
        rgba(255, 255, 255, 0.02);
      overflow: hidden;
      box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
    }

    .visual-topbar {
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 0 18px;
      border-bottom: 1px solid var(--line-dark);
      color: rgba(255, 255, 255, 0.7);
      font-size: 9px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      white-space: nowrap;
    }

    .visual-grid {
      position: absolute;
      inset: 48px 0 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 42px 42px;
    }

    .orbit {
      position: absolute;
      left: 50%;
      top: 47%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .orbit.one {
      width: 410px;
      height: 410px;
    }

    .orbit.two {
      width: 285px;
      height: 285px;
      border-style: dashed;
      opacity: 0.85;
    }

    .core {
      position: absolute;
      left: 50%;
      top: 47%;
      transform: translate(-50%, -50%);
      width: 164px;
      height: 164px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.3);
      background:
        radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02) 58%, rgba(0, 0, 0, 0.3));
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 86px rgba(255, 255, 255, 0.06);
      z-index: 2;
    }

    .core strong {
      display: block;
      text-align: center;
      font-size: 38px;
      font-weight: 600;
      letter-spacing: -0.075em;
    }

    .core span {
      display: block;
      margin-top: 7px;
      text-align: center;
      font-size: 9px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: rgba(255, 255, 255, 0.68);
    }

    .node {
      position: absolute;
      z-index: 3;
      width: 166px;
      padding: 15px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(8, 8, 8, 0.92);
    }

    .node small {
      display: block;
      margin-bottom: 8px;
      color: rgba(255, 255, 255, 0.64);
      font-size: 9px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .node strong {
      display: block;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.35;
      color: #fff;
    }

    .node-1 {
      top: 94px;
      left: 24px;
    }

    .node-2 {
      top: 94px;
      right: 24px;
    }

    .node-3 {
      left: 24px;
      bottom: 145px;
    }

    .node-4 {
      right: 24px;
      bottom: 145px;
    }

    .visual-caption {
      position: absolute;
      z-index: 4;
      left: 18px;
      right: 18px;
      bottom: 16px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--line-dark);
      border: 1px solid var(--line-dark);
    }

    .visual-caption div {
      min-height: 84px;
      padding: 13px;
      background: #111;
    }

    .visual-caption span {
      display: block;
      margin-bottom: 7px;
      color: rgba(255, 255, 255, 0.65);
      font-size: 9px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .visual-caption p {
      color: rgba(255, 255, 255, 0.78);
      font-size: 12px;
      line-height: 1.5;
    }

    .hero-strip {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      margin-top: 54px;
      border-top: 1px solid var(--line-dark);
      border-left: 1px solid var(--line-dark);
    }

    .hero-strip-item {
      min-height: 145px;
      padding: 24px;
      border-right: 1px solid var(--line-dark);
      border-bottom: 1px solid var(--line-dark);
    }

    .hero-strip-item span {
      display: block;
      margin-bottom: 14px;
      color: rgba(255, 255, 255, 0.63);
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }

    .hero-strip-item p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 14px;
      line-height: 1.6;
    }

    .section {
      padding: 112px 54px;
    }

    .section-light {
      background: var(--paper);
      color: var(--black);
      border-bottom: 1px solid var(--line-light);
    }

    .section-white {
      background: #fff;
      color: var(--black);
      border-bottom: 1px solid var(--line-light);
    }

    .section-dark {
      background: #070707;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .section-dark::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 58px 58px;
      pointer-events: none;
    }

    .section-inner {
      position: relative;
      z-index: 2;
    }

    .split {
      display: grid;
      grid-template-columns: 0.72fr 1.28fr;
      gap: 76px;
      align-items: start;
    }

    .section-kicker {
      font-size: 11px;
      line-height: 1.7;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.17em;
      color: #616161;
    }

    .section-dark .section-kicker,
    .contact-section .section-kicker {
      color: rgba(255, 255, 255, 0.66);
    }

    .section-title {
      max-width: 920px;
      margin-bottom: 31px;
      font-size: clamp(38px, 4.7vw, 72px);
      line-height: 1;
      font-weight: 500;
      letter-spacing: -0.06em;
    }

    .section-copy {
      max-width: 790px;
      color: #505050;
      font-size: 18px;
      line-height: 1.75;
      font-weight: 400;
    }

    .section-dark .section-copy,
    .contact-section .section-copy {
      color: rgba(255, 255, 255, 0.74);
    }

    .card-grid {
      margin-top: 58px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      border-top: 1px solid var(--line-light);
      border-left: 1px solid var(--line-light);
    }

    .card {
      min-height: 300px;
      padding: 26px;
      border-right: 1px solid var(--line-light);
      border-bottom: 1px solid var(--line-light);
      background: rgba(255, 255, 255, 0.35);
      transition: background 0.2s ease;
    }

    .card:hover {
      background: #fff;
    }

    .card span {
      display: block;
      margin-bottom: 48px;
      color: #646464;
      font-size: 10px;
      line-height: 1.6;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.13em;
    }

    .card h3 {
      margin-bottom: 14px;
      font-size: 23px;
      line-height: 1.15;
      font-weight: 500;
      letter-spacing: -0.04em;
    }

    .card p {
      color: #555;
      font-size: 15px;
      line-height: 1.66;
    }

    .panel {
      margin-top: 62px;
      border: 1px solid var(--line-dark);
      background: rgba(255, 255, 255, 0.025);
    }

    .panel-row {
      display: grid;
      grid-template-columns: 190px minmax(0, 1fr);
      border-bottom: 1px solid var(--line-dark);
    }

    .panel-row:last-child {
      border-bottom: none;
    }

    .panel-label {
      padding: 28px;
      border-right: 1px solid var(--line-dark);
      color: rgba(255, 255, 255, 0.66);
      font-size: 10px;
      line-height: 1.7;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .panel-content {
      padding: 28px;
    }

    .panel-content h3 {
      margin-bottom: 10px;
      font-size: 24px;
      line-height: 1.2;
      font-weight: 500;
      letter-spacing: -0.04em;
    }

    .panel-content p {
      max-width: 850px;
      color: rgba(255, 255, 255, 0.73);
      font-size: 15px;
      line-height: 1.7;
    }

    .note {
      margin-top: 34px;
      max-width: 900px;
      color: rgba(255, 255, 255, 0.67);
      font-size: 13px;
      line-height: 1.75;
      border-left: 1px solid rgba(255, 255, 255, 0.35);
      padding-left: 22px;
    }

    .note a,
    .form-note a {
      color: #fff;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .market-grid {
      margin-top: 64px;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 1px;
      background: var(--line-light);
      border: 1px solid var(--line-light);
    }

    .market-card {
      min-height: 390px;
      padding: 34px;
      background: #fff;
    }

    .market-card.dark {
      background: #0b0b0b;
      color: #fff;
    }

    .market-card span {
      display: block;
      margin-bottom: 64px;
      color: #646464;
      font-size: 10px;
      line-height: 1.7;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .market-card.dark span {
      color: rgba(255, 255, 255, 0.66);
    }

    .market-card h3 {
      max-width: 650px;
      margin-bottom: 18px;
      font-size: clamp(29px, 2.8vw, 44px);
      line-height: 1.07;
      font-weight: 500;
      letter-spacing: -0.05em;
    }

    .market-card p {
      color: #555;
      font-size: 16px;
      line-height: 1.72;
    }

    .market-card.dark p {
      color: rgba(255, 255, 255, 0.73);
    }

    .deployment-list {
      margin-top: 58px;
      border-top: 1px solid var(--line-dark);
    }

    .deployment-item {
      display: grid;
      grid-template-columns: 190px minmax(0, 1fr);
      gap: 32px;
      padding: 30px 0;
      border-bottom: 1px solid var(--line-dark);
    }

    .deployment-item span {
      color: rgba(255, 255, 255, 0.65);
      font-size: 10px;
      line-height: 1.7;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
    }

    .deployment-item h3 {
      margin-bottom: 10px;
      font-size: 25px;
      line-height: 1.2;
      font-weight: 500;
      letter-spacing: -0.04em;
    }

    .deployment-item p {
      color: rgba(255, 255, 255, 0.73);
      font-size: 15px;
      line-height: 1.7;
    }

    .credential-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      border-top: 1px solid var(--line-dark);
      border-bottom: 1px solid var(--line-dark);
      background: #030303;
    }

    .credential {
      min-height: 120px;
      padding: 26px 36px;
      border-right: 1px solid var(--line-dark);
      background: rgba(255, 255, 255, 0.02);
    }

    .credential:last-child {
      border-right: none;
    }

    .credential span {
      display: block;
      margin-bottom: 9px;
      color: rgba(255, 255, 255, 0.64);
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .credential strong {
      font-size: 15px;
      line-height: 1.5;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
    }

    .contact-section {
      padding: 112px 54px;
      background: #080808;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .contact-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.08), transparent 27%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: auto, 60px 60px, 60px 60px;
      pointer-events: none;
    }

    .contact-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 76px;
      align-items: start;
    }

    .contact-section .section-kicker {
      margin-bottom: 26px;
    }

    .contact-details {
      margin-top: 42px;
      border-top: 1px solid var(--line-dark);
      max-width: 560px;
    }

    .contact-detail {
      padding: 20px 0;
      border-bottom: 1px solid var(--line-dark);
    }

    .contact-detail span {
      display: block;
      margin-bottom: 6px;
      color: rgba(255, 255, 255, 0.64);
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
    }

    .contact-detail a,
    .contact-detail p {
      color: rgba(255, 255, 255, 0.82);
      font-size: 15px;
      line-height: 1.65;
      overflow-wrap: anywhere;
    }

    .contact-detail a:hover {
      color: #fff;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .form-card {
      border: 1px solid var(--line-dark);
      background: rgba(255, 255, 255, 0.035);
      backdrop-filter: blur(10px);
      padding: 34px;
    }

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

    .field {
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-width: 0;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      color: rgba(255, 255, 255, 0.74);
      font-size: 10px;
      line-height: 1.5;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-width: 0;
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 0;
      background: rgba(0, 0, 0, 0.35);
      color: #fff;
      padding: 14px;
      font-size: 16px;
      line-height: 1.5;
      color-scheme: dark;
      transition: border-color 0.2s ease, background 0.2s ease;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(255, 255, 255, 0.7);
      background: rgba(0, 0, 0, 0.48);
    }

    textarea {
      min-height: 150px;
      resize: vertical;
    }

    textarea::placeholder {
      color: rgba(255, 255, 255, 0.54);
    }

    option {
      background: #111;
      color: #fff;
    }

    .form-note {
      margin: 18px 0 24px;
      color: rgba(255, 255, 255, 0.66);
      font-size: 12px;
      line-height: 1.7;
    }

    .form-submit {
      width: 100%;
      min-height: 54px;
      padding: 15px;
      background: #fff;
      color: #000;
      border: none;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .form-submit:hover {
      background: #d7d7d7;
    }

    .form-submit:disabled {
      opacity: 0.65;
      cursor: wait;
    }

    .form-success,
    .form-error {
      margin-top: 24px;
      padding: 28px;
      border: 1px solid var(--line-dark);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        rgba(0, 0, 0, 0.26);
    }

    .form-success {
      border-left: 2px solid #fff;
    }

    .form-error {
      border-left: 2px solid #999;
    }

    .success-kicker {
      margin-bottom: 14px;
      color: rgba(255, 255, 255, 0.67);
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
    }

    .form-success h3 {
      margin-bottom: 12px;
      color: #fff;
      font-size: 28px;
      line-height: 1.1;
      font-weight: 500;
      letter-spacing: -0.04em;
    }

    .form-success p,
    .form-error p {
      color: rgba(255, 255, 255, 0.75);
      font-size: 14px;
      line-height: 1.7;
      overflow-wrap: anywhere;
    }

    .form-error strong {
      display: block;
      margin-bottom: 8px;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
    }

    .form-error a {
      color: #fff;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .form-card.submitted .form-grid,
    .form-card.submitted .form-note,
    .form-card.submitted .form-submit {
      display: none;
    }

    .form-card.submitted .form-success {
      margin-top: 0;
    }

    .footer {
      background: #030303;
      color: rgba(255, 255, 255, 0.7);
      padding: 52px 54px 34px;
      border-top: 1px solid var(--line-dark);
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr 0.9fr;
      gap: 44px;
      margin-bottom: 42px;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-logo {
      font-family: "Montserrat", sans-serif;
      color: #fff;
      font-size: 30px;
      font-weight: 900;
      letter-spacing: -0.075em;
      line-height: 1;
    }

    .footer-brand strong {
      color: #fff;
      font-size: 14px;
      font-weight: 600;
    }

    .footer-brand p {
      max-width: 360px;
      font-size: 13px;
      line-height: 1.7;
    }

    .footer-column h4 {
      margin-bottom: 17px;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
    }

    .footer-column a,
    .footer-column p {
      display: block;
      margin-bottom: 10px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 13px;
      line-height: 1.65;
      overflow-wrap: anywhere;
    }

    .footer-column a:hover {
      color: #fff;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 36px;
      padding-top: 26px;
      border-top: 1px solid var(--line-dark);
      font-size: 12px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.64);
    }

    .footer-disclaimer {
      max-width: 760px;
    }

    @media (min-width: 1700px) {
      .hero-inner,
      .hero-strip,
      .section > .split,
      .contact-inner,
      .footer-top,
      .footer-bottom {
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (max-width: 1080px) {
      .hero-inner,
      .split,
      .contact-inner {
        grid-template-columns: 1fr;
        gap: 42px;
      }

      .hero-visual {
        width: 100%;
        max-width: 760px;
      }

      .hero-strip,
      .credential-strip,
      .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

      .brand-sub {
        font-size: 8px;
      }

      .credential:nth-child(2) {
        border-right: none;
      }
    }

    @media (max-width: 820px) {
      .site-header {
        padding: 0 22px;
        gap: 14px;
      }

      .brand-sub,
      .brand-divider {
        display: none;
      }

      .brand-mark {
        font-size: 23px;
        letter-spacing: -0.065em;
      }

      .nav {
        font-size: 10px;
        letter-spacing: 0.08em;
      }

      .nav-cta {
        padding: 11px 12px;
      }

      .hero,
      .section,
      .contact-section {
        padding-left: 22px;
        padding-right: 22px;
      }

      .hero {
        padding-top: 126px;
      }

      .section,
      .contact-section {
        padding-top: 80px;
        padding-bottom: 80px;
      }

      .hero-copy {
        font-size: 17px;
      }

      .hero-visual {
        height: 520px;
      }

      .visual-caption {
        display: none;
      }

      .core,
      .orbit {
        top: 52%;
      }

      .node {
        width: 155px;
      }

      .node-1 {
        left: 24px;
        top: 90px;
      }

      .node-2 {
        right: 24px;
        top: 90px;
      }

      .node-3 {
        left: 24px;
        bottom: 42px;
      }

      .node-4 {
        right: 24px;
        bottom: 42px;
      }

      .card-grid,
      .market-grid,
      .footer-top,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .card {
        min-height: auto;
        padding: 30px;
      }

      .card span {
        margin-bottom: 28px;
      }

      .panel-row,
      .deployment-item {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .panel-label {
        border-right: none;
        border-bottom: 1px solid var(--line-dark);
        padding: 20px 28px;
      }

      .deployment-item > span {
        margin-bottom: 16px;
      }

      .credential {
        padding: 24px 22px;
        border-bottom: 1px solid var(--line-dark);
      }

      .footer {
        padding-left: 22px;
        padding-right: 22px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 20px;
      }
    }

    @media (max-width: 560px) {
      .site-header {
        height: 72px;
        padding: 0 16px;
        gap: 10px;
      }

      .brand-mark {
        font-size: 19px;
      }

      .nav {
        font-size: 9px;
        letter-spacing: 0.04em;
      }

      .nav-cta {
        padding: 12px 9px;
      }

      .hero h1,
      .section-title {
        letter-spacing: -0.055em;
      }

      .hero-actions {
        flex-direction: column;
      }

      .button {
        width: 100%;
      }

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

      .hero-strip-item {
        min-height: auto;
      }

      .credential {
        border-right: none;
      }

      .hero-visual {
        height: 470px;
      }

      .visual-topbar {
        font-size: 8px;
        letter-spacing: 0.08em;
        padding: 0 14px;
      }

      .orbit.one {
        width: 315px;
        height: 315px;
      }

      .orbit.two {
        width: 220px;
        height: 220px;
      }

      .core {
        width: 130px;
        height: 130px;
      }

      .core strong {
        font-size: 31px;
      }

      .node {
        padding: 12px;
        width: 118px;
      }

      .node small {
        font-size: 8px;
        letter-spacing: 0.1em;
      }

      .node strong {
        font-size: 12px;
      }

      .node-1,
      .node-3 {
        left: 12px;
      }

      .node-2,
      .node-4 {
        right: 12px;
      }

      .node-1,
      .node-2 {
        top: 82px;
      }

      .node-3,
      .node-4 {
        bottom: 38px;
      }

      .form-card,
      .market-card {
        padding: 24px;
      }

      .market-card {
        min-height: auto;
      }

      .market-card span {
        margin-bottom: 42px;
      }
    }

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

      *,
      *::before,
      *::after {
        transition: none !important;
      }
    }
