:root {
      --bg: #f4f1e8;
      --ink: #111812;
      --muted: #687268;
      --dark: #09100c;
      --dark-2: #111b15;
      --panel: #fffdf6;
      --line: rgba(17, 24, 18, 0.13);
      --line-dark: rgba(223, 255, 221, 0.14);
      --green: #3fe360;
      --green-soft: rgba(63, 227, 96, 0.16);
      --amber: #e1ac48;
      --red: #e9604a;
      --blue: #57c9ff;
      --max: 1220px;
      --shadow: 0 26px 70px rgba(17, 24, 18, 0.14);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      font-family: "Sora", "Segoe UI", sans-serif;
      background:
        linear-gradient(rgba(17, 24, 18, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 24, 18, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 12% 12%, rgba(63, 227, 96, 0.18), transparent 28rem),
        radial-gradient(circle at 90% 22%, rgba(225, 172, 72, 0.18), transparent 26rem),
        var(--bg);
      background-size: 42px 42px, 42px 42px, auto, auto, auto;
      line-height: 1.5;
      overflow-x: hidden;
    }

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

    button,
    input,
    textarea {
      font: inherit;
    }

    svg,
    canvas {
      display: block;
    }

    .mono {
      font-family: "IBM Plex Mono", monospace;
    }

    .container {
      width: min(calc(100% - 2rem), var(--max));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      padding: 0.75rem 0;
    }

    .nav-shell {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 1rem;
      padding: 0.65rem;
      border: 1px solid var(--line-dark);
      border-radius: 8px;
      background: rgba(9, 16, 12, 0.9);
      color: #f5fff4;
      box-shadow: 0 18px 46px rgba(9, 16, 12, 0.16);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      min-width: 0;
    }

    .brand-mark {
      width: 2.7rem;
      height: 2.7rem;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 8px;
      color: var(--green);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(63, 227, 96, 0.08)),
        #101a14;
      border: 1px solid rgba(223, 255, 221, 0.16);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .brand-mark svg {
      width: 1.35rem;
      height: 1.35rem;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .brand-copy {
      display: grid;
      line-height: 1.05;
    }

    .brand-copy strong {
      font-size: 1rem;
      letter-spacing: -0.02em;
    }

    .brand-copy span {
      margin-top: 0.25rem;
      color: rgba(245, 255, 244, 0.58);
      font-size: 0.69rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      justify-self: end;
      gap: 0.25rem;
      min-width: 0;
    }

    .nav-links a {
      display: inline-flex;
      align-items: center;
      min-height: 2.45rem;
      padding: 0.58rem 0.72rem;
      border-radius: 8px;
      color: rgba(245, 255, 244, 0.72);
      font-family: "IBM Plex Mono", monospace;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav-links a:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.06);
    }

    .nav-toggle {
      display: none;
      justify-self: end;
      width: 2.55rem;
      height: 2.55rem;
      padding: 0;
      border: 1px solid var(--line-dark);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      cursor: pointer;
    }

    .nav-toggle svg {
      width: 1.2rem;
      height: 1.2rem;
      margin: auto;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 2.9rem;
      padding: 0.82rem 1rem;
      border: 0;
      border-radius: 8px;
      font-weight: 800;
      cursor: pointer;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

    .button:hover {
      transform: translateY(-1px);
    }

    .button-primary {
      color: #071009;
      background: var(--green);
      box-shadow: 0 14px 28px rgba(63, 227, 96, 0.2);
    }

    .button-dark {
      color: #fff;
      background: var(--dark);
      box-shadow: 0 16px 34px rgba(9, 16, 12, 0.16);
    }

    .button-ghost {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid var(--line-dark);
    }

    main {
      padding-bottom: 4rem;
    }

    section {
      padding: 4.8rem 0;
      scroll-margin-top: 6rem;
    }

    .nav-shell,
    .hero-shell,
    .hero-copy,
    .hero-side,
    .route-card,
    .section-head,
    .info-card,
    .tunnel-copy,
    .wormhole-stage,
    .dashboard-shell,
    .console,
    .dashboard-rail,
    .rail-panel,
    .deploy-card,
    .faq-shell,
    .faq-intro,
    .faq-list,
    .faq-item,
    .cta-panel {
      min-width: 0;
    }

    h1,
    h2,
    h3,
    p,
    strong,
    span,
    a {
      overflow-wrap: break-word;
    }

    .hero {
      padding: clamp(1.2rem, 2.5vw, 2rem) 0 4.6rem;
    }

    .hero-shell {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
      min-height: 570px;
      overflow: hidden;
      border: 1px solid rgba(223, 255, 221, 0.12);
      border-radius: 8px;
      background:
        radial-gradient(circle at 18% 22%, rgba(63, 227, 96, 0.13), transparent 30rem),
        radial-gradient(circle at 86% 18%, rgba(87, 201, 255, 0.07), transparent 28rem),
        linear-gradient(135deg, #07100a 0%, #101a14 58%, #20291e 100%);
      color: #fff;
      box-shadow: 0 28px 80px rgba(9, 16, 12, 0.2);
    }

    .hero-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(245, 255, 244, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(245, 255, 244, 0.035) 1px, transparent 1px);
      background-size: 66px 66px;
      mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.68), transparent 84%);
      pointer-events: none;
    }

    .hero-shell::after {
      content: "";
      position: absolute;
      right: 1.35rem;
      bottom: 1.35rem;
      left: 1.35rem;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(63, 227, 96, 0.34), transparent);
      pointer-events: none;
    }

    .hero-copy {
      position: relative;
      z-index: 1;
      display: grid;
      align-content: center;
      padding: clamp(1.6rem, 4.7vw, 4.4rem);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      width: fit-content;
      margin-bottom: 1rem;
      color: var(--green);
      font-family: "IBM Plex Mono", monospace;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 0.65rem;
      height: 0.65rem;
      border-radius: 50%;
      background: currentColor;
      box-shadow: 0 0 0 7px rgba(63, 227, 96, 0.13);
    }

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

    h1 {
      max-width: none;
      font-size: clamp(3.35rem, 6.1vw, 5.65rem);
      line-height: 0.94;
      letter-spacing: -0.045em;
    }

    .hero-lead {
      max-width: 35rem;
      margin-top: 1.35rem;
      color: rgba(245, 255, 244, 0.74);
      font-size: clamp(1.02rem, 1.35vw, 1.22rem);
      line-height: 1.58;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.75rem;
    }

    .hero-side {
      position: relative;
      z-index: 1;
      display: grid;
      align-content: center;
      padding: clamp(1rem, 2.2vw, 1.8rem);
    }

    .route-card {
      display: grid;
      align-content: space-between;
      align-self: center;
      padding: 0;
      border: 0;
      border-radius: 8px;
      background: transparent;
      box-shadow: none;
    }

    .route-map {
      position: relative;
      display: grid;
      align-content: stretch;
      min-height: 410px;
      overflow: hidden;
      padding: clamp(1.05rem, 2vw, 1.35rem);
      border: 1px solid rgba(223, 255, 221, 0.14);
      border-radius: 8px;
      background:
        radial-gradient(circle at 16% 22%, rgba(63, 227, 96, 0.14), transparent 13rem),
        radial-gradient(circle at 88% 20%, rgba(225, 172, 72, 0.1), transparent 14rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.024)),
        rgba(7, 14, 9, 0.32);
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
    }

    .route-map::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(245, 255, 244, 0.032) 1px, transparent 1px),
        linear-gradient(180deg, rgba(245, 255, 244, 0.032) 1px, transparent 1px);
      background-size: 42px 42px;
      pointer-events: none;
    }

    .diagram-board {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-rows: auto auto;
      align-content: center;
      gap: 0.95rem;
      min-height: 100%;
    }

    .diagram-top {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
      gap: 0.75rem;
      align-items: center;
    }

    .mail-node {
      display: grid;
      gap: 0.45rem;
      min-height: 6.5rem;
      padding: 0.85rem;
      border: 1px solid var(--line-dark);
      border-radius: 8px;
      background: rgba(7, 14, 9, 0.72);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .node-label,
    .diagram-status span,
    .mail-step span {
      color: rgba(245, 255, 244, 0.56);
      font-family: "IBM Plex Mono", monospace;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.11em;
      text-transform: uppercase;
    }

    .mail-node strong {
      font-size: 1rem;
      line-height: 1.1;
    }

    .node-lines {
      display: grid;
      gap: 0.3rem;
      margin-top: auto;
    }

    .node-lines i {
      display: block;
      height: 0.42rem;
      border-radius: 999px;
      background: rgba(245, 255, 244, 0.13);
    }

    .node-lines i:first-child {
      width: 82%;
    }

    .node-lines i:last-child {
      width: 58%;
    }

    .mail-link {
      position: relative;
      display: grid;
      place-items: center;
      min-width: 4rem;
      min-height: 6.5rem;
    }

    .mail-link::before {
      content: "";
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--green), rgba(63, 227, 96, 0.18), var(--amber));
    }

    .mail-link::after {
      content: "";
      position: absolute;
      width: 1.1rem;
      height: 1.1rem;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 8px rgba(63, 227, 96, 0.14), 0 0 26px rgba(63, 227, 96, 0.5);
    }

    .mail-flow-card {
      align-self: center;
      display: grid;
      gap: 0.75rem;
      padding: 1rem;
      border: 1px solid rgba(63, 227, 96, 0.2);
      border-radius: 8px;
      background: rgba(7, 14, 9, 0.62);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

    .mail-flow-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
    }

    .mail-flow-head strong {
      font-size: 1rem;
    }

    .mail-badge {
      display: inline-flex;
      align-items: center;
      min-height: 1.65rem;
      padding: 0.28rem 0.48rem;
      border-radius: 999px;
      color: #071009;
      background: var(--green);
      font-size: 0.68rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .mail-step-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.5rem;
    }

    .mail-step {
      display: grid;
      gap: 0.3rem;
      min-height: 4.8rem;
      align-content: end;
      padding: 0.65rem;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid var(--line-dark);
    }

    .mail-step strong {
      font-size: 0.88rem;
      line-height: 1.1;
    }

    .diagram-status {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 0.75rem;
      border: 1px solid var(--line-dark);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.08);
    }

    .diagram-status strong {
      font-size: 0.9rem;
    }

    .sales-snapshot {
      display: grid;
      gap: 0.95rem;
    }

    .snapshot-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.85rem;
    }

    .snapshot-metric {
      position: relative;
      display: grid;
      gap: 0.42rem;
      min-height: 8.25rem;
      align-content: start;
      overflow: hidden;
      padding: 1rem 1rem 1rem 1.1rem;
      border: 1px solid var(--line-dark);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.064);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .snapshot-metric::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 3px;
      background: linear-gradient(180deg, var(--green), rgba(63, 227, 96, 0.08));
    }

    .snapshot-metric span {
      color: rgba(245, 255, 244, 0.58);
      font-family: "IBM Plex Mono", monospace;
      font-size: 0.68rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .snapshot-metric strong {
      font-size: clamp(1.18rem, 2vw, 1.55rem);
      line-height: 1.02;
      letter-spacing: -0.035em;
    }

    .snapshot-metric p {
      color: rgba(245, 255, 244, 0.64);
      font-size: 0.78rem;
      font-weight: 650;
      line-height: 1.5;
    }

    .snapshot-note {
      padding: 0.95rem 1rem;
      border: 1px solid rgba(63, 227, 96, 0.22);
      border-radius: 8px;
      background:
        linear-gradient(90deg, rgba(63, 227, 96, 0.12), rgba(63, 227, 96, 0.045));
    }

    .snapshot-note p {
      color: rgba(245, 255, 244, 0.78);
      font-size: 0.86rem;
      font-weight: 700;
      line-height: 1.45;
    }

    .section-head {
      display: grid;
      gap: 0.75rem;
      max-width: 760px;
      margin-bottom: 1.7rem;
    }

    .section-head.center {
      max-width: 850px;
      margin-inline: auto;
      text-align: center;
      justify-items: center;
    }

    h2 {
      font-size: clamp(2.2rem, 5vw, 5rem);
      line-height: 0.92;
      letter-spacing: -0.065em;
    }

    .section-head p {
      color: var(--muted);
      font-size: 1.05rem;
      max-width: 42rem;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.9rem;
    }

    .info-card {
      position: relative;
      display: grid;
      min-height: 250px;
      align-content: space-between;
      padding: 1rem;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 253, 246, 0.86);
      box-shadow: 0 16px 38px rgba(17, 24, 18, 0.07);
    }

    .info-card::before {
      content: attr(data-index);
      color: rgba(17, 24, 18, 0.09);
      font-size: 5rem;
      font-weight: 800;
      line-height: 0.8;
      letter-spacing: -0.08em;
    }

    .info-card h3 {
      font-size: 1.18rem;
      line-height: 1.1;
    }

    .info-card p {
      margin-top: 0.55rem;
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 600;
    }

    .tunnel-section {
      overflow: hidden;
      color: #fff;
      background:
        radial-gradient(circle at 50% 50%, rgba(63, 227, 96, 0.14), transparent 32rem),
        linear-gradient(180deg, #08100b, #101812);
    }

    .tunnel-grid {
      display: grid;
      grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
      gap: 1.2rem;
      align-items: stretch;
    }

    .tunnel-section .section-head p {
      color: rgba(245, 255, 244, 0.68);
    }

    .tunnel-copy {
      display: grid;
      align-content: space-between;
      gap: 1.2rem;
      padding: clamp(1.2rem, 3vw, 2rem);
      border: 1px solid var(--line-dark);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.045);
    }

    .tunnel-stats {
      display: grid;
      gap: 0.75rem;
    }

    .tunnel-stat {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.8rem;
      align-items: center;
      padding: 0.85rem;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid var(--line-dark);
    }

    .stat-light {
      width: 0.82rem;
      height: 0.82rem;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 8px rgba(63, 227, 96, 0.12);
    }

    .stat-light.amber {
      background: var(--amber);
      box-shadow: 0 0 0 8px rgba(225, 172, 72, 0.12);
    }

    .tunnel-stat .stat-light.amber {
      background: var(--green);
      box-shadow: 0 0 0 8px rgba(63, 227, 96, 0.12);
    }

    .tunnel-stat strong {
      display: block;
    }

    .tunnel-stat span {
      color: rgba(245, 255, 244, 0.62);
      font-size: 0.82rem;
      font-weight: 650;
    }

    .wormhole-stage {
      position: relative;
      min-height: 620px;
      overflow: hidden;
      border: 1px solid var(--line-dark);
      border-radius: 8px;
      background: #050806;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    }

    #mailWormholeCanvas {
      width: 100%;
      height: 100%;
      min-height: 620px;
    }

    .tunnel-label {
      position: absolute;
      z-index: 2;
      display: grid;
      gap: 0.15rem;
      min-width: 12rem;
      padding: 0.85rem;
      border: 1px solid var(--line-dark);
      border-radius: 8px;
      background: rgba(8, 13, 10, 0.78);
    }

    .tunnel-label span {
      color: rgba(245, 255, 244, 0.55);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .tunnel-label strong {
      font-size: 0.95rem;
    }

    .label-shore {
      left: 1rem;
      bottom: 1rem;
    }

    .label-vessel {
      top: 1rem;
      right: 1rem;
    }

    .dashboard-section {
      background:
        linear-gradient(180deg, rgba(255, 253, 246, 0.5), rgba(255, 253, 246, 0.86)),
        var(--bg);
    }

    .dashboard-shell {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
      gap: 1rem;
      padding: 1rem;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--dark);
      color: #fff;
      box-shadow: var(--shadow);
    }

    .console {
      overflow: hidden;
      border: 1px solid var(--line-dark);
      border-radius: 8px;
      background: #0c130f;
    }

    .console-head {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.85rem;
      border-bottom: 1px solid var(--line-dark);
      color: rgba(245, 255, 244, 0.72);
      font-family: "IBM Plex Mono", monospace;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.05em;
    }

    .trace-list {
      display: grid;
      gap: 0.65rem;
      padding: 0.85rem;
    }

    .trace-row {
      display: grid;
      grid-template-columns: 8rem 1fr auto;
      gap: 0.9rem;
      align-items: center;
      min-height: 3.6rem;
      padding: 0.75rem;
      border: 1px solid var(--line-dark);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.04);
    }

    .trace-time {
      color: var(--green);
      font-family: "IBM Plex Mono", monospace;
      font-size: 0.78rem;
      font-weight: 700;
    }

    .trace-row p {
      color: rgba(245, 255, 244, 0.78);
      font-size: 0.92rem;
      font-weight: 650;
    }

    .verified {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 1.8rem;
      padding: 0.35rem 0.55rem;
      border-radius: 999px;
      color: #071009;
      background: var(--green);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .dashboard-rail {
      display: grid;
      gap: 1rem;
    }

    .rail-panel {
      padding: 1rem;
      border: 1px solid var(--line-dark);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.055);
    }

    .rail-panel h3 {
      margin-bottom: 1rem;
      font-size: 1rem;
    }

    .path-list,
    .endpoint-list {
      display: grid;
      gap: 0.6rem;
    }

    .path-item,
    .endpoint-item {
      display: flex;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 0.7rem;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.07);
      color: rgba(245, 255, 244, 0.72);
      font-size: 0.84rem;
      font-weight: 700;
    }

    .path-item strong,
    .endpoint-item strong {
      color: #fff;
    }

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

    .audience-section {
      padding-top: 0;
    }

    .system-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.2rem;
      padding: 1.05rem 1.2rem;
      border: 1px solid var(--line-dark);
      border-radius: 8px;
      color: #fff;
      background:
        radial-gradient(circle at 14% 50%, rgba(63, 227, 96, 0.16), transparent 18rem),
        linear-gradient(135deg, #09100c, #182318);
      box-shadow: 0 18px 44px rgba(9, 16, 12, 0.16);
    }

    .system-strip-copy {
      min-width: 0;
      max-width: 30rem;
    }

    .system-strip-copy p {
      color: rgba(245, 255, 244, 0.74);
      font-size: clamp(1rem, 1.8vw, 1.25rem);
      font-weight: 750;
    }

    .system-sides {
      display: grid;
      grid-template-columns: repeat(2, minmax(190px, 1fr));
      gap: 0.65rem;
      min-width: min(100%, 520px);
    }

    .system-side {
      display: grid;
      gap: 0.28rem;
      padding: 0.8rem;
      border-radius: 8px;
      color: rgba(245, 255, 244, 0.86);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid var(--line-dark);
    }

    .system-side span {
      color: var(--green);
      font-family: "IBM Plex Mono", monospace;
      font-size: 0.68rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .system-side strong {
      font-size: 1rem;
    }

    .system-side p {
      color: rgba(245, 255, 244, 0.62);
      font-size: 0.86rem;
      font-weight: 650;
    }

    .deploy-card {
      position: relative;
      min-height: 340px;
      padding: 1.1rem;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--panel);
      box-shadow: 0 16px 40px rgba(17, 24, 18, 0.08);
    }

    .deploy-card.dark {
      color: #fff;
      background:
        radial-gradient(circle at 85% 12%, rgba(63, 227, 96, 0.18), transparent 18rem),
        var(--dark);
      border-color: var(--line-dark);
    }

    .deploy-tag {
      display: inline-flex;
      margin-bottom: 4.6rem;
      padding: 0.42rem 0.6rem;
      border-radius: 999px;
      color: #0b160e;
      background: var(--green);
      font-family: "IBM Plex Mono", monospace;
      font-size: 0.7rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .deploy-card.dark .deploy-tag {
      background: var(--amber);
    }

    .deploy-card h3 {
      max-width: 18rem;
      font-size: clamp(1.6rem, 3vw, 2.5rem);
      line-height: 0.98;
      letter-spacing: -0.045em;
    }

    .deploy-card p {
      max-width: 34rem;
      margin-top: 0.8rem;
      color: var(--muted);
      font-weight: 650;
    }

    .deploy-card.dark p {
      color: rgba(245, 255, 244, 0.67);
    }

    .cta {
      padding-top: 0;
    }

    .cta-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 1rem;
      align-items: center;
      padding: clamp(1.2rem, 3vw, 2rem);
      border-radius: 8px;
      color: #fff;
      background:
        repeating-linear-gradient(90deg, rgba(245, 255, 244, 0.06) 0 1px, transparent 1px 76px),
        linear-gradient(135deg, #09100c, #182318);
      box-shadow: var(--shadow);
    }

    .cta-panel p {
      max-width: 35rem;
      margin-top: 0.7rem;
      color: rgba(245, 255, 244, 0.68);
    }

    .contact-section {
      padding-top: 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
      gap: 1rem;
      align-items: stretch;
    }

    .contact-panel,
    .form-panel {
      min-width: 0;
      overflow: hidden;
      border-radius: 8px;
      border: 1px solid var(--line);
      box-shadow: 0 16px 42px rgba(17, 24, 18, 0.08);
    }

    .contact-panel {
      display: grid;
      align-content: space-between;
      gap: 2rem;
      padding: clamp(1.2rem, 3vw, 2rem);
      color: #fff;
      background:
        radial-gradient(circle at 86% 12%, rgba(63, 227, 96, 0.18), transparent 18rem),
        linear-gradient(135deg, #09100c, #182318);
      border-color: var(--line-dark);
    }

    .contact-panel .section-head {
      margin-bottom: 0;
    }

    .contact-panel .section-head p {
      color: rgba(245, 255, 244, 0.68);
    }

    .contact-cues {
      display: grid;
      gap: 0.75rem;
    }

    .contact-cue {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.75rem;
      align-items: start;
      padding: 0.85rem;
      border: 1px solid var(--line-dark);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.06);
    }

    .cue-mark {
      width: 0.78rem;
      height: 0.78rem;
      margin-top: 0.35rem;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 7px rgba(63, 227, 96, 0.12);
    }

    .contact-cue strong {
      display: block;
      margin-bottom: 0.15rem;
    }

    .contact-cue span {
      color: rgba(245, 255, 244, 0.62);
      font-size: 0.9rem;
      font-weight: 650;
    }

    .form-panel {
      padding: clamp(1.1rem, 3vw, 1.7rem);
      background: rgba(255, 253, 246, 0.9);
    }

    .faq-section {
      padding-top: 3.6rem;
    }

    .faq-shell {
      display: grid;
      grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
      gap: clamp(1rem, 3vw, 2rem);
      align-items: start;
      overflow: hidden;
      border: 1px solid var(--line-dark);
      border-radius: 8px;
      background:
        radial-gradient(circle at 18% 18%, rgba(63, 227, 96, 0.16), transparent 24rem),
        radial-gradient(circle at 88% 6%, rgba(225, 172, 72, 0.12), transparent 22rem),
        linear-gradient(135deg, #08100b 0%, #111b15 58%, #20291e 100%);
      color: #f5fff4;
      padding: clamp(1.1rem, 3.8vw, 2rem);
      box-shadow: 0 26px 70px rgba(9, 16, 12, 0.18);
    }

    .faq-intro {
      position: sticky;
      top: 7rem;
      display: grid;
      gap: 1rem;
    }

    .faq-intro h2 {
      max-width: 10ch;
      font-size: clamp(2.45rem, 4.6vw, 4.85rem);
      line-height: 0.95;
      letter-spacing: -0.05em;
    }

    .faq-intro p {
      max-width: 34rem;
      color: rgba(245, 255, 244, 0.7);
      font-size: 1rem;
      font-weight: 650;
    }

    .faq-list {
      display: grid;
      gap: 0.7rem;
    }

    .faq-item {
      border: 1px solid rgba(223, 255, 221, 0.14);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.055);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
    }

    .faq-item summary {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      min-height: 4.1rem;
      padding: 1rem 3.2rem 1rem 1rem;
      color: #fff;
      font-size: clamp(1rem, 1.4vw, 1.15rem);
      font-weight: 800;
      cursor: pointer;
      list-style: none;
    }

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

    .faq-item summary::after {
      content: "+";
      position: absolute;
      right: 1rem;
      top: 50%;
      display: grid;
      width: 1.65rem;
      height: 1.65rem;
      place-items: center;
      border-radius: 999px;
      background: var(--green);
      color: #071009;
      font-family: "IBM Plex Mono", monospace;
      font-weight: 900;
      transform: translateY(-50%);
    }

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

    .faq-item p {
      padding: 0 1rem 1.05rem;
      color: rgba(245, 255, 244, 0.68);
      font-size: 0.96rem;
      font-weight: 650;
      line-height: 1.65;
    }

    .form-head {
      display: grid;
      gap: 0.35rem;
      margin-bottom: 1rem;
    }

    .form-head h3 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .form-head p {
      color: var(--muted);
      font-weight: 650;
    }

    form {
      display: grid;
      gap: 0.9rem;
    }

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

    label {
      display: grid;
      gap: 0.4rem;
      color: var(--ink);
      font-size: 0.88rem;
      font-weight: 800;
    }

    input,
    textarea {
      width: 100%;
      min-width: 0;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.68);
      color: var(--ink);
      padding: 0.9rem 0.95rem;
      outline: none;
      transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

    input:focus,
    textarea:focus {
      border-color: rgba(24, 132, 49, 0.42);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(63, 227, 96, 0.12);
    }

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

    .provider-pop {
      position: fixed;
      right: clamp(1rem, 3vw, 1.5rem);
      bottom: clamp(1rem, 3vw, 1.5rem);
      z-index: 80;
      width: min(25rem, calc(100vw - 2rem));
      padding: 1rem;
      border: 1px solid rgba(223, 255, 221, 0.14);
      border-radius: 8px;
      background: rgba(9, 16, 12, 0.96);
      color: rgba(245, 255, 244, 0.74);
      box-shadow: 0 28px 70px rgba(9, 16, 12, 0.32);
      opacity: 0;
      transform: translateY(0.9rem);
      transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .provider-pop.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .provider-pop[hidden] {
      display: none;
    }

    .provider-pop-close {
      position: absolute;
      top: 0.7rem;
      right: 0.7rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      border: 1px solid rgba(223, 255, 221, 0.14);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.06);
      color: rgba(245, 255, 244, 0.74);
      cursor: pointer;
    }

    .provider-pop-close:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
    }

    .provider-pop-close svg {
      width: 1rem;
      height: 1rem;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
    }

    .provider-pop-copy {
      display: grid;
      gap: 0.45rem;
      padding-right: 2.1rem;
    }

    .provider-pop-copy strong {
      color: #fff;
      font-size: 1rem;
      line-height: 1.15;
    }

    .provider-pop-copy p {
      font-size: 0.9rem;
      font-weight: 650;
      line-height: 1.45;
    }

    .provider-pop-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      margin-top: 0.85rem;
    }

    .provider-pop-actions .button {
      min-height: 2.45rem;
      padding: 0.7rem 0.85rem;
      font-size: 0.85rem;
    }

    .footer {
      padding: 0 0 2rem;
    }

    .footer-shell {
      overflow: hidden;
      border-radius: 8px;
      color: rgba(245, 255, 244, 0.7);
      background: var(--dark);
      border: 1px solid var(--line-dark);
      box-shadow: 0 20px 54px rgba(9, 16, 12, 0.16);
    }

    .footer-main {
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(150px, 0.55fr));
      gap: 1.5rem;
      padding: clamp(1.2rem, 3vw, 2rem);
    }

    .footer-brand {
      display: grid;
      align-content: start;
      gap: 1rem;
    }

    .footer-brand .brand {
      width: fit-content;
    }

    .footer-brand p {
      max-width: 30rem;
      color: rgba(245, 255, 244, 0.64);
      font-size: 0.95rem;
      font-weight: 650;
    }

    .footer-column {
      display: grid;
      align-content: start;
      gap: 0.55rem;
    }

    .footer-column h3 {
      margin-bottom: 0.2rem;
      color: #fff;
      font-family: "IBM Plex Mono", monospace;
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .footer-links {
      display: grid;
      gap: 0.5rem;
    }

    .footer-links a,
    .footer-links span {
      width: fit-content;
      color: rgba(245, 255, 244, 0.66);
      font-size: 0.92rem;
      font-weight: 650;
    }

    .footer-links a:hover {
      color: var(--green);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.95rem clamp(1.2rem, 3vw, 2rem);
      border-top: 1px solid var(--line-dark);
      background: rgba(255, 255, 255, 0.035);
      color: rgba(245, 255, 244, 0.54);
      font-size: 0.85rem;
      font-weight: 650;
    }

    @media (max-width: 1060px) {
      .hero-shell,
      .tunnel-grid,
      .dashboard-shell,
      .system-strip,
      .faq-shell,
      .contact-grid,
      .cta-panel {
        grid-template-columns: 1fr;
      }

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

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

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

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

    @media (max-width: 720px) {
      .site-header {
        padding: 0.55rem 0;
      }

      .nav-shell {
        grid-template-columns: minmax(0, 1fr) auto;
      }

      .brand-copy span {
        display: none;
      }

      .nav-toggle {
        display: grid;
      }

      .nav-links {
        display: none;
        justify-self: stretch;
        justify-content: center;
        border-top: 1px solid var(--line-dark);
        padding-top: 0.55rem;
      }

      .nav-shell.is-open .nav-links {
        display: grid;
      }

      .nav-links a {
        justify-content: center;
      }

      section {
        padding: 3.2rem 0;
      }

      .hero {
        padding-top: 1rem;
      }

      .hero-shell {
        width: 100%;
      }

      .hero-copy,
      .hero-side {
        overflow: hidden;
        padding: 1rem;
      }

      .route-card {
        width: 100%;
        padding: 0;
      }

      h1 {
        font-size: clamp(2.75rem, 13vw, 3.35rem);
        line-height: 0.96;
        letter-spacing: -0.04em;
        max-width: none;
      }

      .hero-lead {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.52;
      }

      h2 {
        font-size: clamp(2.3rem, 11vw, 3.2rem);
        line-height: 0.95;
        letter-spacing: -0.05em;
      }

      .hero-actions,
      .button {
        width: 100%;
      }

      .cards,
      .trace-row,
      .form-row {
        grid-template-columns: 1fr;
      }

      .route-map {
        width: 100%;
        min-height: auto;
        padding: 0.85rem;
      }

      .diagram-top,
      .mail-step-grid,
      .snapshot-grid {
        grid-template-columns: 1fr;
      }

      .mail-link {
        min-height: 2.8rem;
      }

      .mail-link::before {
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, var(--green), rgba(63, 227, 96, 0.18), var(--amber));
      }

      .diagram-status {
        align-items: flex-start;
        flex-direction: column;
      }

      .snapshot-metric {
        width: 100%;
        min-height: auto;
      }

      .snapshot-note {
        width: 100%;
      }

      .wormhole-stage,
      #mailWormholeCanvas {
        min-height: 430px;
      }

      .tunnel-label {
        min-width: 0;
        max-width: calc(100% - 2rem);
      }

      .info-card {
        min-height: 205px;
      }

      .deploy-card {
        min-height: 245px;
      }

      .system-strip {
        align-items: flex-start;
        flex-direction: column;
      }

      .system-sides {
        grid-template-columns: 1fr;
        min-width: 0;
      }

      .deploy-tag {
        margin-bottom: 2.6rem;
      }

      .footer-shell {
        flex-direction: column;
      }

      .faq-intro {
        position: static;
      }

      .faq-intro h2 {
        max-width: none;
      }

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

      .footer-bottom {
        flex-direction: column;
      }

      .provider-pop {
        right: 0.75rem;
        left: 0.75rem;
        bottom: 0.75rem;
        width: auto;
      }
    }

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

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

.blog-section {
  padding-top: 5.5rem;
}

.blog-hero {
  max-width: 860px;
  margin: 0 auto 2.4rem;
}

.post-list {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.post-list-item,
.post-article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.82);
  box-shadow: var(--shadow);
}

.post-list-item {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.post-list-item h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: -0.035em;
}

.post-list-item p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.post-date {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-link {
  width: max-content;
  color: var(--dark);
  font-weight: 800;
  border-bottom: 2px solid var(--green);
}

.post-article {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.post-hero {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.post-hero h1 {
  margin: 0.35rem 0 0.9rem;
  font-size: clamp(2.4rem, 6vw, 4.9rem);
}

.post-body {
  max-width: 760px;
  margin-top: 2rem;
  color: #202920;
  font-size: 1.05rem;
  line-height: 1.78;
}

.post-body p,
.post-body ul,
.post-body ol {
  margin: 0 0 1.2rem;
}

.post-body a {
  color: var(--dark);
  font-weight: 800;
  border-bottom: 2px solid var(--green);
}

.latest-blog-section {
  padding-top: 0;
}

.latest-blog-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, auto);
  gap: 1.6rem;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  color: #fff;
  background:
    repeating-linear-gradient(90deg, rgba(245, 255, 244, 0.06) 0 1px, transparent 1px 76px),
    linear-gradient(135deg, #09100c, #182318);
  box-shadow: var(--shadow);
}

.latest-blog-panel .section-head {
  gap: 1rem;
  margin-bottom: 0;
}

.latest-blog-panel .section-head h2 {
  max-width: 780px;
  font-size: clamp(1.9rem, 4.2vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.latest-blog-panel .section-head p {
  color: rgba(245, 255, 244, 0.68);
  line-height: 1.58;
}

.latest-blog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .latest-blog-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .latest-blog-actions {
    justify-content: flex-start;
  }
}
