:root {
  --bg: #0a0a0a;
  --panel: #111111;
  --line: #262626;
  --text: #fafafa;
  --dim: #a3a3a3;
  --dimmer: #737373;
  --accent: #4f9cf9;
  --good: #3fb950;
  --warn: #d29922;
  --bad: #f85149;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.header-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
header { padding: 48px 0 24px; border-bottom: 1px solid var(--line); }
h1 { margin: 0 0 8px; font-size: 34px; letter-spacing: -0.5px; }
.header-row h1 { margin-bottom: 8px; }
.tag { margin: 0; color: var(--dim); max-width: 62ch; }
main { padding: 28px 0 60px; }
.connect-link {
  flex: 0 0 auto; border: 1px solid var(--accent); border-radius: 8px;
  padding: 8px 12px; text-decoration: none; font-size: 14px;
}

#ask-form { display: flex; gap: 10px; }
#question {
  flex: 1; padding: 14px 16px; font-size: 16px;
  background: var(--panel); color: var(--text);
  border: 1px solid var(--line); border-radius: 10px;
}
#question:focus { outline: none; border-color: var(--accent); }
button {
  padding: 14px 22px; font-size: 16px; font-weight: 600;
  background: var(--accent); color: #06121f; border: 0;
  border-radius: 10px; cursor: pointer;
}
button:disabled { opacity: 0.5; cursor: not-allowed; }
.cost { color: var(--dim); font-size: 13px; margin: 10px 2px 0; }

.examples { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.examples button {
  background: transparent; color: var(--dim); font-weight: 400; font-size: 13px;
  border: 1px solid var(--line); padding: 7px 12px; border-radius: 999px;
}
.examples button:hover { color: var(--text); border-color: var(--accent); }

.status { margin-top: 24px; color: var(--dim); }
.status.error { color: var(--bad); }

.card {
  margin-top: 26px; background: var(--panel);
  border: 1px solid var(--line); border-radius: 12px; padding: 22px;
}
.verdict { font-size: 18px; line-height: 1.5; white-space: pre-wrap; }
.meta {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 14px; color: var(--dim);
}
/* The grid has to sit on the dl, not on its wrapper — dt/dd are only grid
   items when their own parent is the grid. */
.meta dl {
  margin: 0; display: grid; grid-template-columns: 150px 1fr; gap: 8px 16px;
}
.meta dt { color: var(--dim); }
.meta dd { margin: 0; }
.meta .val { color: var(--text); overflow-wrap: anywhere; }
.badge {
  display: inline-block; font-size: 12px; padding: 2px 8px;
  border-radius: 999px; border: 1px solid var(--line); margin-left: 8px;
}
.badge.ours { color: var(--good); border-color: var(--good); }
details { margin-top: 16px; font-size: 14px; color: var(--dim); }
pre {
  background: #0b0f14; border: 1px solid var(--line); border-radius: 8px;
  padding: 12px; overflow-x: auto; font-size: 13px; color: var(--text);
}
.second { margin-top: 18px; }
.second button { background: transparent; color: var(--accent); border: 1px solid var(--accent); font-size: 14px; padding: 9px 14px; }
.hint { font-size: 12px; color: var(--dim); margin: 8px 2px 0; }
.second-result { margin-top: 16px; border-top: 1px solid var(--line); padding-top: 16px; }

.connect-page { padding-top: 30px; }
.notice, .install-card {
  position: relative; background: var(--panel); border: 1px solid var(--line);
  border-radius: 12px; padding: 20px; margin-bottom: 18px;
}
.notice { color: var(--dim); }
.notice strong { color: var(--text); }
.install-card { padding-left: 68px; }
.install-card h2 { margin: 0 0 8px; font-size: 20px; }
.install-card p { margin: 0 0 14px; color: var(--dim); }
.install-card pre { margin: 0 0 12px; white-space: pre-wrap; }
.install-card .copy { padding: 9px 13px; font-size: 14px; }
.step {
  position: absolute; left: 20px; top: 20px; width: 30px; height: 30px;
  display: grid; place-items: center; border-radius: 50%; background: var(--accent);
  color: #06121f; font-weight: 700;
}
.small { font-size: 13px; }
.wallet-setup { min-height: 420px; }
.wallet-actions { display: flex; gap: 12px; margin: 20px 0; }
.secondary-action { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.safety-note { border-left: 3px solid var(--warn); padding: 12px 14px; color: var(--dim); }
.safety-note strong { color: var(--text); }
.notice.ready { border-color: var(--good); color: var(--good); }
.notice.error { border-color: var(--bad); color: var(--bad); }

footer { border-top: 0.5px solid var(--line); padding: 28px 0 40px; color: var(--dimmer); font-size: 13px; }
.footer-row { text-align: center; }
.counter { margin-bottom: 12px; font-size: 13px; color: var(--dim); }
.counter strong { color: var(--text); }
.powered { max-width: 58ch; margin: 0 auto; line-height: 1.7; }
a { color: var(--accent); }
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 3px solid var(--text);
  outline-offset: 3px;
}
@media (max-width: 560px) {
  .header-row { align-items: flex-start; flex-direction: column; gap: 4px; }
  .header-actions { justify-content: flex-start; }
  .meta dl { grid-template-columns: 1fr; gap: 2px; }
  .meta dt { margin-top: 10px; }
  .wallet-actions { flex-direction: column; }
}

/* Top nav */
.topnav { border-bottom: 0.5px solid var(--line); }
.topnav-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 20px; }
.brand { display: flex; align-items: center; gap: 8px; color: var(--text); font-weight: 600; font-size: 15px; text-decoration: none; }
.brand i { font-size: 19px; }
.topnav-links { display: flex; gap: 22px; font-size: 13px; }
.topnav-links a { color: var(--dim); text-decoration: none; }
.topnav-links a:hover { color: var(--text); }
.topnav-actions { display: flex; gap: 10px; }
.pill { border: 0.5px solid var(--line); color: var(--text); font-size: 13px; font-weight: 500; padding: 7px 14px; border-radius: 6px; text-decoration: none; }
.pill:hover { border-color: #333; }
.pill-primary { background: var(--text); color: var(--bg); border-color: var(--text); }

/* Hero */
.hero {
  padding: 56px 0 40px; border-bottom: 0.5px solid var(--line); text-align: center;
  background-image: linear-gradient(#171717 1px, transparent 1px), linear-gradient(90deg, #171717 1px, transparent 1px);
  background-size: 28px 28px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--dim);
  border: 0.5px solid var(--line); border-radius: 20px; padding: 5px 14px; margin-bottom: 20px;
}
.hero h1 { font-size: 34px; margin: 0 0 12px; }
.hero .tag { margin: 0 auto; max-width: 56ch; }
#ask-form { max-width: 560px; margin: 0 auto; }
.cost { text-align: center; }
.examples { justify-content: center; }

/* Intents section */
.intents-section { padding: 46px 0 10px; border-top: 0.5px solid var(--line); }
.intents-section h2 { margin: 0 0 8px; text-align: center; }
.section-sub { color: var(--dim); text-align: center; max-width: 54ch; margin: 0 auto 24px; font-size: 14px; }
.intents-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: var(--line); border: 0.5px solid var(--line); border-radius: 10px; overflow: hidden; }
.intent-card { background: var(--panel); padding: 16px; display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--dim); }
.intent-card i { font-size: 18px; color: var(--dimmer); }

/* Stats row */
.stats-row { display: flex; justify-content: center; gap: 60px; padding: 34px 0 50px; }
.stat { text-align: center; }
.stat-num { font-size: 22px; font-weight: 600; color: var(--text); }
.stat-label { font-size: 12px; color: var(--dimmer); margin-top: 4px; }
@media (max-width: 560px) {
  .topnav-links { display: none; }
  .stats-row { gap: 32px; }
}

.subhero { padding: 40px 0 28px; border-bottom: 0.5px solid var(--line); text-align: left; }
.subhero h1 { font-size: 26px; margin: 0 0 8px; }
.subhero .tag { margin: 0; max-width: 60ch; }
.secondary-action.pill { background: transparent; color: var(--text); }
.pill:disabled { opacity: 0.5; cursor: not-allowed; }

/* Clip Guard download page */
.source-link { color: var(--dim); font-size: 13px; text-decoration: none; }
.source-link:hover { color: var(--text); }
.clip-hero {
  padding: 56px 0 44px; border-bottom: 0.5px solid var(--line);
  background-image: linear-gradient(#171717 1px, transparent 1px), linear-gradient(90deg, #171717 1px, transparent 1px);
  background-size: 28px 28px;
}
.clip-hero h1 { max-width: 18ch; margin: 0 0 12px; font-size: clamp(32px, 6vw, 46px); line-height: 1.08; letter-spacing: -1px; }
.clip-hero .tag { max-width: 54ch; font-size: 17px; }
.clip-action { margin: 24px 0 10px; }
.clip-action .pill { display: inline-block; padding: 11px 17px; font-size: 15px; font-weight: 650; }
.clip-page { padding-top: 34px; padding-bottom: 64px; }
.clip-page h2 { margin: 0; font-size: 23px; line-height: 1.2; }
.clip-page p { margin: 8px 0 0; color: var(--dim); }
.clip-privacy {
  display: flex; gap: 14px; align-items: flex-start; padding: 20px;
  border: 1px solid #27543a; border-radius: 12px; background: #0d1610;
}
.clip-section-icon {
  display: grid; flex: 0 0 auto; place-items: center; width: 32px; height: 32px;
  border-radius: 50%; color: var(--good); background: #132a19;
}
.clip-privacy h2 { font-size: 18px; }
.clip-flow { margin-top: 48px; }
.section-kicker { margin: 0 0 8px !important; color: var(--dimmer) !important; font-size: 12px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.clip-flow ol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 22px 0 0; padding: 1px; list-style: none; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.clip-flow li { display: flex; gap: 12px; min-width: 0; padding: 20px; background: var(--panel); }
.clip-flow .step { position: static; flex: 0 0 auto; width: 26px; height: 26px; font-size: 13px; }
.clip-flow h3 { margin: 1px 0 0; font-size: 16px; line-height: 1.25; }
.clip-flow li p { font-size: 14px; }
.clip-proof { margin-top: 48px; padding: 26px; border: 1px solid var(--line); border-radius: 12px; background: var(--panel); }
.clip-proof > p:not(.section-kicker) { max-width: 65ch; }
.proof-note { display: flex; gap: 8px; align-items: flex-start; padding-top: 16px; margin-top: 18px !important; border-top: 1px solid var(--line); font-size: 14px; }
.proof-note i { flex: 0 0 auto; margin-top: 3px; color: var(--accent); }
@media (max-width: 720px) {
  .clip-hero { padding: 42px 0 36px; }
  .clip-flow ol { grid-template-columns: 1fr; }
  .clip-page { padding-top: 24px; }
}

.client-tabs { display: flex; gap: 1px; background: var(--line); border: 0.5px solid var(--line); border-radius: 8px; overflow: hidden; margin-top: 30px; }
.client-tab { flex: 1; background: var(--panel); color: var(--dim); border: 0; padding: 12px; font-size: 13.5px; font-weight: 500; cursor: pointer; }
.client-tab.is-active { background: var(--text); color: var(--bg); }
.client-panel { margin-top: 22px; }
.client-panel code { background: #0b0f14; border: 1px solid var(--line); border-radius: 4px; padding: 1px 6px; font-size: 13px; }

/* Scoreboard */
h2 { margin: 34px 0 12px; font-size: 20px; }
.scroller { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
table { border-collapse: collapse; width: 100%; font-size: 14px; min-width: 720px; }
th, td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--dim); font-weight: 600; background: var(--panel); }
tbody tr:last-child td { border-bottom: 0; }
td.num { text-align: right; font-variant-numeric: tabular-nums; }
.good { color: var(--good); }
.bad { color: var(--bad); }
.warn { color: var(--warn); }
.q { font-size: 11px; border: 1px solid currentColor; border-radius: 999px; padding: 1px 7px; margin-left: 6px; }
.pair { margin-bottom: 14px; }
.pair-q { font-weight: 600; margin-bottom: 12px; }
.pair-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.who { font-size: 13px; color: var(--dim); margin-bottom: 6px; }
.pair-a { font-size: 14px; line-height: 1.5; }
.hashes { margin-top: 12px; font-size: 11px; color: var(--dim); overflow-wrap: anywhere; }
@media (max-width: 640px) { .pair-grid { grid-template-columns: 1fr; } }

/* AskLens product home */
.home-page { background: #05080c; }
.home-wrap { width: min(100% - 64px, 1360px); margin: 0 auto; }
.home-nav { border-color: #25303b; }
.home-nav .topnav-row { padding: 16px 0; }
.home-nav .brand { font-size: 22px; letter-spacing: 0; }
.home-nav .brand i { color: var(--text); font-size: 28px; }
.home-nav .topnav-links { gap: 46px; font-size: 15px; }
.home-nav .topnav-links a { color: var(--text); }
.home-nav-cta { min-width: 150px; padding: 12px 18px; text-align: center; border-color: var(--accent); color: var(--accent); font-size: 15px; }
.home-hero { border-bottom: 1px solid #25303b; overflow: hidden; }
.home-hero-grid { min-height: 500px; display: grid; grid-template-columns: .92fr 1.08fr; gap: 48px; align-items: center; }
.home-copy { padding: 56px 0; }
.home-kicker { margin: 0 0 18px; color: #2583ff; font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.home-copy h1 { margin: 0; font-size: clamp(48px, 5.2vw, 76px); line-height: 1.06; letter-spacing: 0; }
.home-copy > p:not(.home-kicker) { max-width: 530px; margin: 24px 0 0; color: #c0c8d2; font-size: 20px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 38px; margin-top: 30px; }
.home-primary { display: inline-flex; justify-content: center; align-items: center; min-width: 240px; padding: 18px 22px; background: #1d70f7; color: white; font-size: 18px; font-weight: 650; text-decoration: none; border-radius: 6px; }
.home-primary:hover { background: #3180ff; }
.safety-flow { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); min-height: 405px; align-items: start; padding-top: 50px; }
.flow-line { position: absolute; top: 230px; left: 0; right: -6%; height: 1px; background: #1d70f7; box-shadow: 0 0 13px #1d70f799; }
.flow-product { position: relative; min-height: 350px; padding: 0 22px; text-align: center; border-left: 1px solid #25303b; z-index: 1; }
.flow-product:first-of-type { border-left: 0; }
.flow-icon { display: block; color: #2583ff; font-size: 48px; margin-bottom: 13px; }
.flow-product h2 { min-height: 53px; margin: 0; font-size: 22px; line-height: 1.18; }
.flow-node { width: 100px; height: 100px; margin: 45px auto 46px; display: grid; place-items: center; border: 2px solid #2583ff; border-radius: 50%; background: #07101a; box-shadow: 0 0 22px #1d70f773; }
.flow-node i { color: #fff; font-size: 40px; }
.flow-product p { margin: 0; color: #e5e9ef; font-size: 16px; line-height: 1.45; }
.flow-product p > i { margin-right: 8px; color: #46d17c; }
.flow-risk { color: #e9e9eb !important; }
.flow-risk > i, .flow-risk strong { color: #ff4e57 !important; }
.flow-risk strong { text-transform: uppercase; letter-spacing: .04em; }
.home-products { padding: 30px 0 20px; }
.home-products h2 { margin: 0; padding: 0 0 13px; font-size: 28px; border-bottom: 1px solid #34404d; }
.product-row { display: grid; grid-template-columns: 1.05fr 1.7fr 32px; gap: 18px; align-items: center; min-height: 63px; color: #e9edf3; border-bottom: 1px solid #34404d; text-decoration: none; font-size: 18px; }
.product-row:hover { background: #0a1018; }
.product-row > i { color: #2583ff; font-size: 28px; text-align: right; }
.product-name { display: inline-flex; align-items: center; gap: 16px; font-weight: 650; }
.product-name i { color: #2583ff; font-size: 29px; }
.home-trust { border-top: 1px solid #25303b; border-bottom: 1px solid #25303b; margin-top: 0; }
.trust-row { display: flex; gap: 28px; align-items: center; padding: 33px 0; }
.trust-row > i { color: #2583ff; font-size: 68px; }
.trust-row > div { padding-left: 28px; border-left: 1px solid #34404d; }
.trust-row h2 { margin: 0 0 6px; font-size: 27px; }
.trust-row p { margin: 0; color: #b8c0ca; font-size: 17px; }
.home-live { padding-top: 56px; padding-bottom: 30px; }
.home-page #live-tool { scroll-margin-top: 28px; }
.home-live > h2 { margin: 0; font-size: 31px; }
.home-live-intro { max-width: 670px; margin: 10px 0 24px; color: var(--dim); }
.home-live #ask-form { max-width: 720px; margin: 0; }
.home-live .cost { max-width: 720px; text-align: left; }
.home-live .intents-section { margin-top: 42px; }
.home-live .stats-row { padding-bottom: 20px; }
.home-page footer { margin-top: 20px; }
@media (max-width: 900px) {
  .home-wrap { width: min(100% - 40px, 1360px); }
  .home-hero-grid { grid-template-columns: 1fr; gap: 0; }
  .home-copy { padding-bottom: 22px; }
  .safety-flow { max-width: 720px; width: 100%; margin: 0 auto; }
}
@media (max-width: 620px) {
  .home-wrap { width: min(100% - 32px, 1360px); }
  .home-nav .topnav-links { display: none; }
  .home-nav .brand { font-size: 19px; }
  .home-nav-cta { min-width: auto; padding: 9px 12px; font-size: 14px; }
  .home-copy { padding-top: 42px; }
  .home-copy h1 { font-size: 46px; }
  .home-copy > p:not(.home-kicker) { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .home-primary { width: 100%; }
  .safety-flow { min-height: auto; grid-template-columns: 1fr; padding: 0 0 18px; }
  .flow-line { display: none; }
  .flow-product { min-height: auto; padding: 22px 0; display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 14px; text-align: left; border-left: 0; border-top: 1px solid #25303b; }
  .flow-icon { margin: 0; font-size: 33px; }
  .flow-product h2 { min-height: auto; font-size: 18px; }
  .flow-node { display: none; }
  .flow-product p { font-size: 13px; text-align: right; }
  .home-products h2 { font-size: 24px; }
  .product-row { grid-template-columns: 1fr 26px; padding: 14px 0; font-size: 14px; }
  .product-row > span:nth-child(2) { grid-column: 1; color: var(--dim); }
  .product-row > i { grid-column: 2; grid-row: 1 / span 2; }
  .product-name { font-size: 17px; }
  .trust-row { align-items: flex-start; gap: 16px; }
  .trust-row > i { font-size: 40px; }
  .trust-row > div { padding-left: 16px; }
  .trust-row h2 { font-size: 21px; }
  .trust-row p { font-size: 15px; }
}

/* Unified product homepage */
.home-page { background: #05080c; }
.home-page main { padding: 0; }
.home-wrap { width: min(100% - 64px, 1360px); margin: 0 auto; }
.home-nav { border-bottom: 1px solid #25303b; }
.home-nav .topnav-row { padding: 17px 0; }
.home-nav .brand { color: #fff; font-size: 22px; }
.home-nav .brand i { color: #2583ff; font-size: 28px; }
.home-nav .topnav-links { gap: 44px; font-size: 15px; }
.home-nav .topnav-links a { color: #fff; }
.home-nav-cta { min-width: 152px; padding: 11px 18px; border-color: #2583ff; color: #2583ff; font-size: 15px; }
.home-hero { border-bottom: 1px solid #25303b; }
.home-hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 52px; min-height: 430px; align-items: center; }
.home-copy { padding: 68px 0; }
.home-kicker { margin: 0 0 17px; color: #2583ff; font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.home-copy h1 { margin: 0; color: #fff; font-size: clamp(48px, 5vw, 73px); line-height: 1.08; letter-spacing: 0; }
.home-copy > p:not(.home-kicker) { max-width: 570px; margin: 22px 0 0; color: #c1cad5; font-size: 19px; line-height: 1.55; }
.home-primary { display: inline-flex; align-items: center; gap: 22px; margin-top: 28px; padding: 16px 22px; background: #2378fa; color: #fff; font-size: 17px; font-weight: 650; text-decoration: none; border-radius: 0; }
.home-primary:hover { background: #3a88ff; }
.home-action-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 25px; }
.home-action-flow > div { display: grid; justify-items: center; gap: 12px; text-align: center; }
.home-action-flow > div > i { font-size: 68px; font-weight: 200; }
.home-action-flow strong { font-size: 18px; }
.home-action-flow span { color: #2583ff; font-size: 12px; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.home-action-flow span b { display: inline-block; width: 9px; height: 9px; margin-right: 6px; border-radius: 50%; background: #2583ff; }
.flow-arrow { color: #2583ff; font-size: 28px; }
.home-products { padding: 58px 0 42px; text-align: center; }
.home-products h2, .home-how h2, .home-security h2 { margin: 0; color: #fff; font-size: 34px; line-height: 1.2; }
.home-section-intro { max-width: 680px; margin: 13px auto 38px; color: #c1cad5; font-size: 17px; }
.product-rail { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #34404d; border-bottom: 1px solid #34404d; text-align: left; }
.product-lane { position: relative; min-height: 195px; padding: 32px 44px 32px 24px; display: grid; align-content: start; gap: 11px; color: #fff; text-decoration: none; border-left: 1px solid #34404d; }
.product-lane:first-child { border-left: 0; }
.product-lane > i { color: #2583ff; font-size: 38px; }
.product-lane strong { font-size: 22px; }
.product-lane span { max-width: 27ch; color: #c1cad5; font-size: 16px; line-height: 1.5; }
.product-lane em { position: absolute; right: 22px; bottom: 28px; display: inline-flex; align-items: center; gap: 10px; color: #2583ff; font-size: 14px; font-style: normal; font-weight: 650; }
.product-lane em i { font-size: 22px; }
.product-lane:hover { background: #0a1018; }
.product-lane:hover em { color: #fff; }
.home-proof { display: grid; grid-template-columns: .9fr 2.1fr; gap: 48px; padding: 64px 0; border-bottom: 1px solid #34404d; }
.home-proof h2 { margin: 0; color: #fff; font-size: 41px; line-height: 1.2; }
.proof-list { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-list > div { padding: 0 28px; display: grid; align-content: start; gap: 11px; border-left: 1px solid #34404d; }
.proof-list i { color: #2583ff; font-size: 38px; }
.proof-list strong { font-size: 20px; }
.proof-list span { color: #c1cad5; line-height: 1.45; }
.home-how { padding: 62px 0; border-bottom: 1px solid #34404d; text-align: center; }
.home-how h2 { font-size: 31px; }
.how-steps { max-width: 1030px; margin: 35px auto 24px; text-align: left; }
.how-steps > div { display: grid; grid-template-columns: 70px 48px 220px 1fr; gap: 15px; align-items: center; padding: 15px 0; border-bottom: 1px solid #34404d; }
.how-steps b { color: #2583ff; font-size: 26px; font-weight: 500; }
.how-steps i { font-size: 27px; }
.how-steps strong { font-size: 18px; }
.how-steps span { color: #c1cad5; }
.how-link { color: #2583ff; text-decoration: none; font-size: 17px; }
.home-security { padding: 62px 0; text-align: center; }
.home-security h2 { font-size: 32px; }
.security-list { max-width: 940px; margin: 31px auto 0; text-align: left; }
.security-list div { display: flex; align-items: center; gap: 20px; padding: 13px 16px; border-bottom: 1px solid #34404d; color: #e7ebf0; font-size: 17px; }
.security-list i { width: 30px; color: #2583ff; font-size: 26px; }
.home-page footer { margin: 0; padding: 25px 0; border-top: 1px solid #34404d; }
.home-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 26px; }
.home-footer .brand { color: #fff; font-size: 19px; }
.home-footer .brand i { color: #2583ff; }
.home-footer > div { display: flex; gap: 28px; }
.home-footer a { color: #c1cad5; text-decoration: none; font-size: 14px; }
.home-footer a:hover { color: #fff; }
.home-footer > span { color: #c1cad5; font-size: 14px; text-align: right; }
@media (max-width: 900px) {
  .home-hero-grid, .home-proof { grid-template-columns: 1fr; }
  .home-action-flow { padding-bottom: 58px; }
  .home-proof h2 { font-size: 36px; }
}
@media (max-width: 650px) {
  .home-wrap { width: min(100% - 32px, 1360px); }
  .home-nav .topnav-links { display: none; }
  .home-nav .brand { font-size: 19px; }
  .home-nav-cta { min-width: auto; padding: 9px 12px; font-size: 14px; }
  .home-copy { padding: 45px 0 38px; }
  .home-copy h1 { font-size: 45px; }
  .home-copy > p:not(.home-kicker) { font-size: 17px; }
  .home-primary { width: 100%; justify-content: space-between; }
  .home-action-flow { grid-template-columns: 1fr; gap: 16px; padding-bottom: 40px; }
  .home-action-flow > div { grid-template-columns: 43px 1fr; justify-items: start; column-gap: 15px; text-align: left; }
  .home-action-flow > div > i { grid-row: 1 / span 2; font-size: 36px; }
  .flow-arrow { display: none; }
  .home-products { padding: 45px 0 35px; text-align: left; }
  .home-products h2, .home-how h2, .home-security h2 { font-size: 27px; }
  .home-section-intro { margin: 12px 0 27px; }
  .product-rail, .proof-list { grid-template-columns: 1fr; }
  .product-lane { min-height: 0; padding: 24px 48px 24px 0; border-left: 0; border-top: 1px solid #34404d; }
  .product-lane:first-child { border-top: 0; }
  .product-lane em { right: 4px; bottom: 31px; }
  .home-proof { gap: 35px; padding: 45px 0; }
  .home-proof h2 { font-size: 33px; }
  .proof-list > div { padding: 22px 0; border-left: 0; border-top: 1px solid #34404d; }
  .proof-list > div:first-child { border-top: 0; }
  .home-how { padding: 45px 0; text-align: left; }
  .how-steps > div { grid-template-columns: 48px 35px 1fr; gap: 10px; }
  .how-steps span { grid-column: 3; font-size: 14px; }
  .how-link { display: block; text-align: center; }
  .home-security { padding: 45px 0; text-align: left; }
  .security-list div { font-size: 15px; }
  .home-footer { grid-template-columns: 1fr; gap: 20px; text-align: left; }
  .home-footer > div { flex-wrap: wrap; gap: 12px 22px; }
  .home-footer > span { text-align: left; }
}

/* Minimal product setup pages */
.product-page { min-height: 100vh; background: #05080c; }
.product-wrap { width: min(100% - 64px, 1120px); margin: 0 auto; }
.product-nav { border-bottom: 1px solid #25303b; }
.product-nav .product-wrap { display: flex; align-items: center; justify-content: space-between; padding: 17px 0; }
.product-nav .brand { color: #fff; font-size: 21px; }
.product-nav .brand i { color: #2583ff; font-size: 27px; }
.back-link { color: #c1cad5; font-size: 14px; text-decoration: none; }
.back-link:hover { color: #fff; }
.product-main { padding: 105px 0 80px; }
.product-kicker { display: flex; align-items: center; gap: 8px; margin: 0 0 22px; color: #2583ff; font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-kicker i { font-size: 18px; }
.product-main h1 { max-width: 22ch; margin: 0; color: #fff; font-size: clamp(46px, 6vw, 74px); line-height: 1.05; letter-spacing: 0; }
.product-lead { max-width: 590px; margin: 25px 0 0; color: #c1cad5; font-size: 20px; line-height: 1.55; }
.product-primary, .product-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 18px; margin-top: 32px; padding: 16px 22px; border: 1px solid #2378fa; border-radius: 0; font-size: 17px; font-weight: 650; text-decoration: none; cursor: pointer; }
.product-primary { background: #2378fa; color: #fff; }
.product-primary:hover { background: #3a88ff; }
.product-secondary { margin-left: 10px; background: transparent; color: #fff; }
.product-secondary:hover { border-color: #fff; }
.product-primary:disabled, .product-secondary:disabled { opacity: .45; cursor: not-allowed; }
.product-note { max-width: 620px; margin: 13px 0 0; color: #c1cad5; font-size: 14px; }
.product-note a { color: #2583ff; }
.product-code { max-width: 620px; margin: 32px 0 0; padding: 18px 20px; border: 1px solid #34404d; background: #080c12; color: #dfe5ec; font-size: 14px; line-height: 1.7; white-space: pre-wrap; word-break: break-word; }
.product-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; max-width: 800px; margin-top: 70px; border-top: 1px solid #34404d; border-bottom: 1px solid #34404d; }
.product-facts span { display: flex; align-items: center; gap: 14px; min-height: 80px; padding: 18px 20px; color: #dfe5ec; font-size: 15px; }
.product-facts span + span { border-left: 1px solid #34404d; }
.product-facts i { color: #2583ff; font-size: 25px; }
.product-status { max-width: 680px; margin-top: 30px; padding: 16px 18px; border: 1px solid #34404d; color: #c1cad5; }
.product-status.ready { border-color: var(--good); color: var(--good); }
.product-status.error { border-color: var(--bad); color: var(--bad); }
.product-actions { display: flex; flex-wrap: wrap; align-items: center; }
.product-actions .product-primary, .product-actions .product-secondary { margin-top: 18px; }
.clipguard-page { display: grid; grid-template-columns: minmax(0, 1fr) 1fr; gap: 80px 70px; align-items: center; }
.clipguard-page .product-facts { grid-column: 1 / -1; margin-top: 0; }
.clipguard-copy h1 { font-size: clamp(42px, 4.2vw, 58px); }
.clipguard-installs { max-width: 630px; margin-top: 30px; }
.clipguard-install { display: grid; grid-template-columns: 50px minmax(0, 1fr) auto; gap: 16px; align-items: center; min-height: 105px; padding: 20px 18px; border: 1px solid #34404d; }
.clipguard-install.is-primary { border-left: 3px solid #2583ff; }
.clipguard-install > i { color: #fff; font-size: 35px; }
.clipguard-install > div { display: grid; gap: 4px; }
.clipguard-install strong { color: #fff; font-size: 18px; }
.clipguard-install span { color: #c1cad5; font-size: 14px; }
.clipguard-install .product-primary, .clipguard-install .product-secondary { margin: 0; padding: 12px 15px; font-size: 14px; white-space: nowrap; }
.installer-note { margin: 12px 0 22px; color: #c1cad5; font-size: 13px; }
.clipguard-visual { display: grid; justify-items: center; gap: 14px; min-height: 390px; padding: 8px 0; }
.clipguard-copied, .clipguard-scanning, .clipguard-toast { width: min(100%, 520px); border: 1px solid #34404d; background: #080c12; }
.clipguard-copied { display: grid; gap: 15px; padding: 23px 28px; }
.clipguard-copied span { display: flex; align-items: center; gap: 9px; color: #fff; font-size: 16px; }
.clipguard-copied span i { color: #c1cad5; font-size: 23px; }
.clipguard-copied strong { overflow: hidden; color: #e7ebf0; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 14px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.clipguard-flow-line { width: 2px; height: 20px; background: #2583ff; box-shadow: 0 0 12px #2583ff; animation: clipguard-flow 3.6s ease-in-out infinite; }
.clipguard-flow-line.second { animation-delay: .5s; }
.clipguard-scanning { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 74px; border-color: #2583ff; color: #2583ff; font-size: 17px; font-weight: 700; animation: clipguard-scan-pulse 3.6s ease-in-out infinite; }
.clipguard-scanning i { font-size: 29px; }
.clipguard-toast { display: grid; grid-template-columns: 54px 1fr auto; gap: 14px; align-items: center; padding: 21px 22px; background: #11171f; animation: clipguard-toast-in 3.6s ease-in-out infinite; }
.clipguard-toast > i { display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid #2583ff; border-radius: 50%; color: #dbe9ff; font-size: 29px; }
.clipguard-toast > div { display: grid; gap: 5px; }
.clipguard-toast strong { color: #fff; font-size: 18px; }
.clipguard-toast span, .clipguard-toast small { color: #c1cad5; font-size: 14px; }
.clipguard-toast button { display: grid; place-items: center; width: 30px; height: 30px; padding: 0; border: 0; background: transparent; color: #c1cad5; }
.clipguard-toast button i { font-size: 20px; }
@keyframes clipguard-flow { 0%, 20% { opacity: .2; transform: translateY(-5px); } 42%, 80% { opacity: 1; transform: translateY(0); } 100% { opacity: .2; transform: translateY(5px); } }
@keyframes clipguard-scan-pulse { 0%, 25% { box-shadow: none; } 45%, 75% { box-shadow: 0 0 22px #2583ff42; } 100% { box-shadow: none; } }
@keyframes clipguard-toast-in { 0%, 45% { opacity: .35; transform: translateY(8px); } 62%, 88% { opacity: 1; transform: translateY(0); } 100% { opacity: .35; transform: translateY(8px); } }
@media (prefers-reduced-motion: reduce) { .clipguard-flow-line, .clipguard-scanning, .clipguard-toast { animation: none; } }
@media (max-width: 650px) {
  .product-wrap { width: min(100% - 32px, 1120px); }
  .product-main { padding: 70px 0 48px; }
  .product-main h1 { font-size: 44px; }
  .product-lead { font-size: 17px; }
  .product-primary { width: 100%; }
  .product-secondary { width: 100%; margin-left: 0; }
  .product-facts { grid-template-columns: 1fr; margin-top: 52px; }
  .product-facts span + span { border-top: 1px solid #34404d; border-left: 0; }
  .clipguard-page { display: block; }
  .clipguard-install { grid-template-columns: 38px 1fr; min-height: 0; }
  .clipguard-install .product-primary, .clipguard-install .product-secondary { grid-column: 1 / -1; width: 100%; }
  .clipguard-visual { min-height: 0; margin-top: 54px; }
  .clipguard-copied { padding: 20px; }
  .clipguard-toast { grid-template-columns: 45px 1fr auto; padding: 16px; }
  .clipguard-toast > i { width: 45px; height: 45px; font-size: 24px; }
  .clipguard-page .product-facts { margin-top: 52px; }
}

.connect-main { padding-bottom: 72px; }
.client-picker { display: flex; max-width: 650px; margin-top: 42px; border: 1px solid #34404d; }
.client-choice { flex: 1; padding: 14px 16px; border: 0; border-left: 1px solid #34404d; border-radius: 0; background: transparent; color: #c1cad5; font-size: 16px; font-weight: 600; }
.client-choice:first-child { border-left: 0; }
.client-choice:hover { color: #fff; }
.client-choice.is-active { background: #fff; color: #05080c; }
.client-instructions { max-width: 760px; margin-top: 28px; padding: 27px 30px 30px; border: 1px solid #34404d; }
.client-instructions h2 { margin: 0; color: #fff; font-size: 24px; }
.client-instructions ol { margin: 18px 0 0; padding-left: 24px; color: #c1cad5; }
.client-instructions li + li { margin-top: 9px; }
.client-instructions .product-primary { margin-top: 24px; }
.mcp-config { max-width: 560px; margin: 22px 0 0; padding: 16px; overflow-x: auto; background: #080c12; border: 1px solid #34404d; border-radius: 0; color: #e7ebf0; font-size: 13px; line-height: 1.45; }
.client-warning { display: flex; gap: 9px; max-width: 610px; margin: 20px 0 0; color: #c1cad5; font-size: 14px; }
.client-warning i { flex: 0 0 auto; color: #2583ff; font-size: 18px; }
.connection-note { margin: 18px 0 0; color: #c1cad5; font-size: 14px; }
.connection-note code { overflow-wrap: anywhere; color: #fff; }
@media (max-width: 650px) {
  .client-picker { margin-top: 32px; }
  .client-choice { padding: 12px 8px; font-size: 14px; }
  .client-instructions { padding: 22px 18px; }
}
