  :root {
    --bg: #080a08;
    --bg2: #0d110d;
    --bg3: #111611;
    --amber: #f5a623;
    --green: #3ddc84;
    --red: #ff4545;
    --dim: #3a4a3a;
    --text: #c8d8c0;
    --text-dim: #5a6e5a;
    --border: #1e2e1e;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'JetBrains Mono', monospace;
    overflow-x: hidden;
    cursor: crosshair;
  }

  /* CRT scanlines overlay */
  body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.08) 2px,
      rgba(0,0,0,0.08) 4px
    );
    pointer-events: none;
    z-index: 9999;
  }

  body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
    opacity: 0.4;
  }

  @keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
  }

  @keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(61, 220, 132, 0); }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes slideIn {
    from { opacity: 0; transform: translateX(-12px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-33.3333%, 0, 0); }
  }

  @keyframes glitch {
    0%, 95%, 100% { transform: translate(0); }
    96% { transform: translate(-2px, 1px); }
    97% { transform: translate(2px, -1px); }
    98% { transform: translate(-1px, 0); }
  }

  @keyframes scan {
    0% { top: -100%; }
    100% { top: 100%; }
  }

  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    background: rgba(8,10,8,0.92);
    backdrop-filter: blur(12px);
  }

  .logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
    color: var(--amber);
    animation: glitch 8s infinite;
    text-decoration: none;
  }

  .logo span { color: var(--text-dim); }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--amber); }
  .nav-auth { display: flex; align-items: center; gap: 16px; }
  .nav-ghost {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.15s;
  }
  .nav-ghost:hover { color: var(--text); }
  .nav-cta {
    display: inline-block;
    text-decoration: none;
    background: var(--amber);
    color: #000;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 18px;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
  }

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

  .ticker-wrap {
    margin-top: 64px;
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
    background: var(--bg2);
    overflow: hidden;
    padding: 10px 0;
  }

  .ticker {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: ticker 45s linear infinite;
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.05em;
  }

  .ticker-item {
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    display: inline-block;
  }

  .dot.green { background: var(--green); animation: pulse-dot 2s infinite; }
  .dot.red { background: var(--red); }
  .dot.amber { background: var(--amber); }

  .hero {
    padding: 100px 40px 80px;
    max-width: 1100px;
    margin: 0 auto;
    animation: fadeUp 0.8s ease both;
  }

  .hero-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .hero-label::before {
    content: '>';
    color: var(--amber);
  }

  h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.95;
    letter-spacing: -3px;
    color: #e8f0e0;
    margin-bottom: 8px;
  }

  h1 .line2 {
    color: var(--amber);
    display: block;
  }

  .cursor {
    display: inline-block;
    width: 4px;
    height: 0.85em;
    background: var(--amber);
    margin-left: 4px;
    vertical-align: middle;
    animation: blink 1s infinite;
  }

  .hero-sub {
    margin-top: 32px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dim);
    max-width: 520px;
    border-left: 2px solid var(--border);
    padding-left: 20px;
  }

  .hero-sub em {
    color: var(--text);
    font-style: normal;
  }

  .hero-actions {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-block;
    text-decoration: none;
    background: var(--amber);
    color: #000;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
    position: relative;
    overflow: hidden;
  }

  .btn-primary::after {
    content: '';
    position: absolute;
    top: -100%; left: 0; right: 0; height: 100%;
    background: rgba(255,255,255,0.15);
    animation: scan 3s linear infinite;
  }

  .btn-primary:hover { background: #fff; transform: translateY(-1px); }

  .btn-ghost {
    display: inline-block;
    text-decoration: none;
    background: transparent;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 0;
    border: none;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s;
  }

  .btn-ghost:hover { color: var(--text); border-color: var(--text-dim); }

  .terminal-section {
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .terminal {
    background: var(--bg2);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .terminal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(245,166,35,0.03) 0%, transparent 40%);
    pointer-events: none;
  }

  .terminal-bar {
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
  .td1 { background: #ff5f56; }
  .td2 { background: #ffbd2e; }
  .td3 { background: #27c93f; }

  .terminal-title {
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    margin-left: 8px;
  }

  .terminal-body {
    padding: 24px;
    font-size: 12px;
    line-height: 2;
  }

  .t-line { display: flex; gap: 12px; animation: slideIn 0.4s ease both; }
  .t-line:nth-child(1) { animation-delay: 0.3s; }
  .t-line:nth-child(2) { animation-delay: 0.6s; }
  .t-line:nth-child(3) { animation-delay: 0.9s; }
  .t-line:nth-child(4) { animation-delay: 1.2s; }
  .t-line:nth-child(5) { animation-delay: 1.5s; }
  .t-line:nth-child(6) { animation-delay: 1.8s; }
  .t-line:nth-child(7) { animation-delay: 2.1s; }
  .t-line:nth-child(8) { animation-delay: 2.4s; }

  .t-time { color: var(--text-dim); min-width: 80px; }
  .t-ok { color: var(--green); }
  .t-warn { color: var(--amber); }
  .t-err { color: var(--red); }
  .t-info { color: var(--text); }

  .divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 40px;
  }

  .features {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
    margin-top: 0;
  }

  .section-label::before { content: '//'; color: var(--amber); }

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

  .feature-card {
    background: var(--bg);
    padding: 32px;
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
  }

  .feature-card:hover { background: var(--bg2); }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 2px; height: 0;
    background: var(--amber);
    transition: height 0.3s ease;
  }

  .feature-card:hover::before { height: 100%; }

  .feature-icon {
    font-size: 20px;
    margin-bottom: 16px;
    display: block;
  }

  .feature-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #e8f0e0;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
  }

  .feature-desc {
    font-size: 11px;
    line-height: 1.8;
    color: var(--text-dim);
  }

  .chain-section {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .chain-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 32px;
    letter-spacing: -1px;
    color: #e8f0e0;
    margin-bottom: 12px;
  }

  .chain-sub {
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 48px;
    line-height: 1.8;
    max-width: 480px;
  }

  .chain {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    gap: 2px;
  }

  .chain-step {
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 140px;
    position: relative;
    transition: border-color 0.2s;
  }

  .chain-step:hover { border-color: var(--amber); }

  .chain-step.active { border-color: var(--red); background: rgba(255,69,69,0.05); }

  .chain-num {
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.1em;
  }

  .chain-method {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
  }

  .chain-method.fail { color: var(--red); text-decoration: line-through; }
  .chain-method.next { color: var(--amber); }
  .chain-method.ok { color: var(--green); }

  .chain-detail {
    font-size: 10px;
    color: var(--text-dim);
  }

  .chain-arrow {
    color: var(--amber);
    font-size: 16px;
    padding: 0 4px;
  }

  .pricing {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 48px;
  }

  .plan {
    background: var(--bg);
    padding: 36px 32px;
    position: relative;
  }

  .plan.featured {
    background: var(--bg2);
    border: 1px solid var(--amber);
    margin: -1px;
  }

  .plan-badge {
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #000;
    background: var(--amber);
    padding: 3px 8px;
    position: absolute;
    top: -1px; right: 24px;
  }

  .plan-name {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 16px;
  }

  .plan-price {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 42px;
    letter-spacing: -2px;
    color: #e8f0e0;
    margin-bottom: 4px;
  }

  .plan-price span {
    font-size: 16px;
    color: var(--text-dim);
    font-weight: 400;
    letter-spacing: 0;
  }

  .plan-desc {
    font-size: 11px;
    color: var(--text-dim);
    margin-bottom: 28px;
    line-height: 1.7;
  }

  .plan-features {
    list-style: none;
    font-size: 11px;
    line-height: 2.2;
    color: var(--text-dim);
  }

  .plan-features li::before {
    content: '→ ';
    color: var(--amber);
  }

  .plan-features li.dim { opacity: 0.4; }
  .plan-features li.dim::before { color: var(--text-dim); }

  .plan-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    margin-top: 28px;
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-dim);
    transition: all 0.15s;
  }

  .plan-btn:hover, .plan.featured .plan-btn {
    background: var(--amber);
    color: #000;
    border-color: var(--amber);
  }

  footer {
    border-top: 1px solid var(--border);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: var(--amber);
  }

  .footer-links {
    display: flex;
    gap: 24px;
  }

  .footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.05em;
  }

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

  .footer-social {
    display: inline-flex;
    align-items: center;
    color: var(--text-dim);
    transition: color 0.15s;
  }
  .footer-social:hover { color: var(--amber); }
  .footer-social svg { display: block; }
  .footer-social-sep {
    display: inline-block;
    width: 1px;
    height: 12px;
    background: var(--border);
    margin: 0 6px;
    vertical-align: middle;
  }

  /* Use Cases — Terminal Log */
  .usecases {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .usecases-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 32px;
    letter-spacing: -1px;
    color: #e8f0e0;
    margin-bottom: 12px;
  }
  .usecases-sub {
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 48px;
    line-height: 1.8;
    max-width: 520px;
  }
  .log-wrap {
    background: var(--bg2);
    border: 1px solid var(--border);
    overflow: hidden;
  }
  .log-bar {
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .log-dot { width: 10px; height: 10px; border-radius: 50%; }
  .log-dot.r { background: #ff5f56; }
  .log-dot.y { background: #ffbd2e; }
  .log-dot.g { background: #27c93f; }
  .log-title {
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    margin-left: 8px;
  }
  .log-entry {
    display: grid;
    grid-template-columns: 60px 160px 1fr 180px;
    align-items: start;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
    transition: background 0.15s;
    position: relative;
  }
  .log-entry:last-child { border-bottom: none; }
  .log-entry:hover { background: rgba(245,166,35,0.02); }
  .log-entry::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--amber);
    opacity: 0;
    transition: opacity 0.15s;
  }
  .log-entry:hover::before { opacity: 1; }
  .log-num {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    padding-top: 2px;
  }
  .log-kind {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    padding-top: 2px;
  }
  .log-body-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .log-body-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #e8f0e0;
    letter-spacing: -0.3px;
    line-height: 1.2;
  }
  .log-body-desc {
    font-size: 12px;
    line-height: 1.7;
    color: var(--text-dim);
  }
  .log-body-desc code {
    background: var(--bg3);
    color: var(--text);
    padding: 1px 6px;
    border: 1px solid var(--border);
    font-size: 11px;
  }
  .log-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 4px;
  }
  .log-tag {
    font-size: 10px;
    color: var(--text);
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 3px 8px;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }
  .log-tag.dim { color: var(--text-dim); }
  .log-signature {
    padding: 16px 28px;
    background: var(--bg3);
    border-top: 1px solid var(--border);
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .log-signature .cursor-mini {
    display: inline-block;
    width: 6px;
    height: 10px;
    background: var(--amber);
    animation: blink 1s infinite;
    vertical-align: middle;
    margin-left: 4px;
  }

  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 80px;
    max-width: 900px;
  }
  .hero-stat-n .big-inf {
    font-size: 56px;
    line-height: 0.55;
    display: inline-block;
    vertical-align: -10px;
    font-weight: 900;
  }
  .hero-stat {
    background: var(--bg);
    padding: 24px 20px;
  }
  .hero-stat-n {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: var(--amber);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
  }
  .hero-stat-l {
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }

  .faq {
    padding: 100px 40px;
    max-width: 900px;
    margin: 0 auto;
  }
  .faq-list { margin-top: 48px; }
  .faq-item {
    border-top: 1px solid var(--border);
    padding: 28px 0;
  }
  .faq-item:last-child { border-bottom: 1px solid var(--border); }
  .faq-q {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    color: var(--text);
  }
  .faq-a { color: var(--text-dim); font-size: 14px; line-height: 1.7; }

  .billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 0;
  }
  .billing-toggle-inner {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 4px;
  }
  .billing-toggle button {
    padding: 10px 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: transparent;
    color: var(--text-dim);
    border: none;
    cursor: pointer;
    transition: all 0.15s;
  }
  .billing-toggle button.active {
    background: var(--amber);
    color: #000;
  }
  .billing-toggle button:not(.active):hover { color: var(--text); }
  .billing-toggle .save-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 6px;
    background: rgba(61,220,132,0.1);
    border: 1px solid rgba(61,220,132,0.3);
    color: var(--green);
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .final-cta {
    padding: 80px 40px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(245,166,35,0.06), transparent 60%);
    pointer-events: none;
  }
  .final-cta-h {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(42px, 7vw, 80px);
    letter-spacing: -2px;
    line-height: 0.95;
    margin-bottom: 24px;
    color: #e8f0e0;
    position: relative;
  }
  .final-cta-h .amber { color: var(--amber); }
  .final-cta-sub {
    color: var(--text-dim);
    max-width: 520px;
    margin: 0 auto 40px;
    position: relative;
    font-size: 14px;
  }
  .final-cta .btn-primary {
    position: relative;
  }

  @media (max-width: 900px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
  }
  /* Legal page-specific styles, scoped to .legal-page */
  .legal-page {
    max-width: 820px;
    margin: 140px auto 80px;
    padding: 0 32px;
  }
  .legal-page h1 {
    font-family: 'Syne', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .legal-page .last-updated {
    color: var(--text-dim);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 48px;
  }
  .legal-page h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 48px 0 16px;
  }
  .legal-page h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin: 24px 0 8px;
  }
  .legal-page p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #dde3d6;
    margin-bottom: 16px;
  }
  .legal-page ul {
    margin: 12px 0 20px;
    padding-left: 0;
    list-style: none;
  }
  .legal-page li {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #dde3d6;
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
  }
  .legal-page li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--amber);
    font-weight: 700;
  }
  .legal-page strong {
    color: #fff;
    font-weight: 600;
  }
  .legal-page a {
    color: var(--amber);
    text-decoration: none;
    border-bottom: 1px dotted var(--amber);
  }
  .legal-page a:hover {
    color: #fff;
    border-bottom-color: #fff;
  }
  .legal-page hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 32px 0;
  }
  .email-obf {
    color: var(--amber);
    cursor: pointer;
    border-bottom: 1px dotted var(--amber);
  }
  .email-obf:hover {
    color: #fff;
    border-bottom-color: #fff;
  }
  @media (max-width: 720px) {
    .legal-page { margin-top: 100px; padding: 0 20px; }
    .legal-page h1 { font-size: 36px; }
  }
  @media (max-width: 768px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none; }
    .hero { padding: 80px 20px 60px; }
    .terminal-section, .features, .chain-section, .pricing, .usecases, .faq { padding: 60px 20px; }
    .features-grid, .pricing-grid { grid-template-columns: 1fr; }
    .chain { flex-direction: column; align-items: flex-start; }
    .chain-arrow { transform: rotate(90deg); }
    footer { padding: 30px 20px; }

    /* Use cases — stack vertically on mobile */
    .log-entry {
      display: block;
      padding: 20px;
    }
    .log-num,
    .log-kind {
      display: inline-block;
      margin-right: 12px;
      margin-bottom: 8px;
      padding-top: 0;
    }
    .log-body-text {
      margin-top: 8px;
      margin-bottom: 12px;
    }
    .log-body-name {
      font-size: 18px;
    }
    .log-tags {
      justify-content: flex-start;
      padding-top: 0;
    }
    .log-signature {
      flex-direction: column;
      gap: 6px;
      align-items: flex-start;
      padding: 14px 20px;
    }

    /* Terminal log smaller on mobile */
    .terminal-body { padding: 16px; font-size: 11px; }
    .t-time { min-width: 60px; }
    .t-ok, .t-warn, .t-err { min-width: 80px; }

    /* Hero stats */
    .hero-stats { margin-top: 48px; }
    .hero-stat { padding: 20px 16px; }
    .hero-stat-n { font-size: 28px; }

    /* Ticker */
    .ticker-item { padding: 0 24px; }

    /* Section titles */
    .usecases-title, .chain-title { font-size: 26px; }
    .faq-q { font-size: 16px; }
    .legal-page h1 { font-size: 32px; }
  }
