:root {
  --ink: #10201d;
  --muted: #62706d;
  --line: #d9e3df;
  --paper: #f4f7f4;
  --white: #fff;
  --green: #20c578;
  --green-dark: #08754b;
  --navy: #071a18;
  --amber: #f3b83f;
  --red: #ff6b6b;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.5; }
a { color: inherit; }
.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 760; letter-spacing: -.02em; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: var(--navy); }
.brand-mark svg { width: 23px; fill: none; stroke: var(--green); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.nav nav { display: flex; align-items: center; gap: 28px; }
.nav nav a { text-decoration: none; color: #53615e; font-size: 14px; }
.nav nav a:hover { color: var(--ink); }
.nav .github-link { color: var(--ink); padding-left: 22px; border-left: 1px solid var(--line); }
.hero { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 80px; padding-block: 105px 98px; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 800; color: var(--green-dark); display: flex; align-items: center; gap: 9px; }
.eyebrow span { width: 23px; height: 2px; background: var(--green); display: inline-block; }
h1 { font-size: clamp(54px, 6vw, 83px); line-height: .97; letter-spacing: -.064em; margin: 22px 0 28px; font-weight: 770; }
.lead { color: var(--muted); font-size: 18px; max-width: 620px; }
.actions { display: flex; align-items: center; gap: 18px; margin-top: 35px; }
.button { display: inline-flex; justify-content: center; align-items: center; border-radius: 8px; padding: 13px 19px; border: 0; font: 700 14px var(--sans); text-decoration: none; cursor: pointer; }
.button.primary { background: var(--green); color: #05271d; box-shadow: 0 8px 25px rgba(32, 197, 120, .18); }
.button.primary:hover { background: #1bd483; transform: translateY(-1px); }
.actions code { font: 13px var(--mono); background: #e7ece9; border: 1px solid var(--line); padding: 12px 14px; border-radius: 8px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 35px; font-size: 12px; color: var(--muted); }
.trust-row span::first-letter { color: var(--green-dark); }
.terminal { border-radius: 14px; overflow: hidden; background: #071513; color: #dce9e4; box-shadow: 0 28px 65px rgba(8, 40, 32, .19); transform: rotate(.4deg); }
.terminal-top { height: 44px; display: flex; align-items: center; gap: 7px; padding: 0 15px; border-bottom: 1px solid #1b302c; background: #0b1c19; }
.terminal-top i { width: 9px; height: 9px; border-radius: 50%; background: #3f514e; }
.terminal-top i:first-child { background: #ed6b60; }.terminal-top i:nth-child(2) { background: #e8b954; }.terminal-top i:nth-child(3) { background: #55c778; }
.terminal-top span { margin-left: auto; margin-right: auto; font: 11px var(--mono); color: #7b918c; }
.terminal-body { padding: 26px 28px; font: 12px/1.8 var(--mono); }
.terminal-body p { margin: 4px 0; }.terminal-body b { color: var(--green); }.terminal-body .muted { color: #76908a; }.terminal-body .pass { color: #7be3ad; }.terminal-body .fail { color: #ff8686; }.terminal-body .warning { color: #ffd277; }
.terminal-rule { height: 1px; background: #1c332e; margin: 15px 0; }
.tag { display: inline-block; padding: 2px 6px; border-radius: 3px; font-size: 9px; font-weight: 900; margin-right: 8px; }.tag.critical { color: #ff8c8c; background: #3e1f20; }
.proof-strip { background: var(--white); border-block: 1px solid var(--line); }
.proof-grid { min-height: 70px; display: flex; align-items: center; justify-content: space-between; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 800; color: #6e7b78; }
.proof-grid i { width: 4px; height: 4px; background: var(--green); border-radius: 50%; }
.generator-section, .providers-section { padding-block: 112px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 42px; }
.section-heading h2, .testing-resource h2 { font-size: clamp(35px, 4vw, 54px); line-height: 1.05; letter-spacing: -.045em; margin: 14px 0 0; }
.section-heading > p { width: 420px; max-width: 45%; color: var(--muted); margin: 0; }
.generator-card { display: grid; grid-template-columns: 390px 1fr; background: var(--white); border: 1px solid var(--line); border-radius: 15px; overflow: hidden; box-shadow: 0 18px 50px rgba(15, 52, 43, .07); }
.controls { padding: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.controls label, .controls legend { font-size: 12px; font-weight: 750; color: #43534f; }
.controls select, .controls input[type=url] { width: 100%; height: 43px; margin-top: 7px; border: 1px solid var(--line); border-radius: 7px; background: #fbfcfb; padding: 0 11px; color: var(--ink); font: 13px var(--sans); }
.controls small { display: block; color: #82908d; font-size: 10px; font-weight: 500; margin-top: 6px; }
.controls .wide { grid-column: 1 / -1; }
.controls fieldset { border: 0; padding: 0; margin: 2px 0; display: grid; gap: 9px; }
.controls legend { margin-bottom: 8px; }
.controls .check { display: flex; align-items: center; gap: 9px; font-weight: 600; }
.controls .check input { accent-color: var(--green-dark); width: 16px; height: 16px; margin: 0; }
.controls .check small { display: inline; margin-left: 5px; text-transform: uppercase; letter-spacing: .1em; color: var(--green-dark); }
.privacy-note { margin: -4px 0 0; font-size: 10px; color: #778683; text-align: center; }.privacy-note span { color: var(--green); }
.code-panel { background: #071513; min-width: 0; color: #dbe8e3; }
.code-toolbar { height: 56px; border-bottom: 1px solid #1b302c; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; font: 11px var(--mono); color: #91a7a1; }
.code-toolbar button { color: #8fe4b6; background: #112824; border: 1px solid #24413b; border-radius: 6px; padding: 7px 10px; cursor: pointer; }
.code-panel pre { margin: 0; padding: 25px; height: 465px; overflow: auto; font: 12px/1.65 var(--mono); tab-size: 2; white-space: pre; }
.code-note { border-top: 1px solid #1b302c; padding: 12px 20px; font-size: 10px; color: #819a94; }
.section-heading.compact { margin-bottom: 32px; }
.provider-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.provider-grid article { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 26px; min-height: 225px; }
.provider-grid .generic-provider { grid-column: span 2; min-height: 180px; background: #ecf8f1; }
.provider-icon { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #b9cdc5; border-radius: 9px; color: var(--green-dark); font: 800 13px var(--mono); }
.provider-grid h3 { font-size: 18px; margin: 25px 0 9px; }.provider-grid p { font-size: 13px; color: var(--muted); margin: 0; }
.security-section { background: var(--navy); color: #eaf3f0; padding-block: 105px; }
.security-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: start; }
.eyebrow.light { color: #8ddab4; }.security-grid h2 { font-size: clamp(38px, 4vw, 56px); line-height: 1.07; letter-spacing: -.045em; margin: 19px 0 25px; }.security-grid > div > p { color: #8fa49f; max-width: 490px; }
.security-grid ul { list-style: none; margin: 0; padding: 0; }.security-grid li { display: grid; grid-template-columns: 52px 1fr; gap: 15px; padding: 21px 0; border-bottom: 1px solid #1a3530; }.security-grid li:first-child { border-top: 1px solid #1a3530; }.security-grid li b { color: var(--green); font: 11px var(--mono); }.security-grid li span { color: #8fa49f; font-size: 13px; }.security-grid li strong { color: #eef6f3; display: block; font-size: 14px; margin-bottom: 4px; }
.testing-resource { display: flex; align-items: center; justify-content: space-between; gap: 70px; padding-block: 100px; }.testing-resource > div { max-width: 770px; }.testing-resource p { color: var(--muted); }.testing-resource .disclosure { font-size: 12px; }.button.secondary { background: var(--navy); color: white; white-space: nowrap; }
footer { border-top: 1px solid var(--line); background: var(--white); }.footer-grid { min-height: 75px; display: flex; justify-content: space-between; align-items: center; color: #7a8784; font-size: 11px; }
@media (max-width: 900px) {
  .nav nav a:not(.github-link) { display: none; }.hero { grid-template-columns: 1fr; gap: 55px; padding-block: 70px; }.terminal { max-width: 620px; }.generator-card { grid-template-columns: 1fr; }.provider-grid { grid-template-columns: repeat(2, 1fr); }.security-grid { grid-template-columns: 1fr; gap: 50px; }.testing-resource { align-items: flex-start; flex-direction: column; gap: 25px; }
}
@media (max-width: 600px) {
  .shell { width: min(100% - 24px, 1160px); }.nav { height: 66px; }.nav .github-link { padding-left: 0; border: 0; }.hero { padding-block: 58px; }.actions { align-items: stretch; flex-direction: column; }.actions code { text-align: center; }.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-block: 18px; }.proof-grid i { display: none; }.section-heading { align-items: flex-start; flex-direction: column; }.section-heading > p { width: auto; max-width: none; }.generator-section, .providers-section { padding-block: 75px; }.controls { grid-template-columns: 1fr; padding: 22px; }.controls > * { grid-column: 1 / -1; }.provider-grid { grid-template-columns: 1fr; }.provider-grid .generic-provider { grid-column: auto; }.testing-resource { padding-block: 70px; }.footer-grid { align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .button.primary:hover { transform: none; } }
