/* ===== namit — landing page ===== */
:root {
  --bg: #F7F9FC;
  --card: #FFFFFF;
  --ink: #0F1A2E;
  --muted: #5B6B82;
  --hairline: #E4EAF2;
  --soft: #EFF3F9;
  --accent: #1F6FEB;
  --accent-soft: #E9F1FE;
  --green: #1F6FEB;       /* available uses the single accent, Google-style */
  --red: #D0482E;
  --shadow-sm: 0 1px 2px rgba(15,26,46,0.05);
  --shadow-md: 0 10px 30px rgba(15,26,46,0.08);
  --shadow-lg: 0 30px 70px rgba(15,26,46,0.14);
  --r-lg: 24px;
  --r-md: 14px;
  --r-sm: 10px;
  --font: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'Space Grotesk', ui-monospace, monospace;
  --nav-h: 70px;
}
html[data-theme="dark"] {
  --bg: #0E1421;
  --card: #172033;
  --ink: #E6ECF6;
  --muted: #8A99B5;
  --hairline: #23304A;
  --soft: #121A2A;
  --accent: #4F8DF5;
  --accent-soft: #16233D;
  --green: #4F8DF5;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 12px 34px rgba(0,0,0,0.4);
  --shadow-lg: 0 30px 70px rgba(0,0,0,0.55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; color: inherit; }
.wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 48px; padding: 0 24px; border-radius: 999px;
  font-size: 15.5px; font-weight: 600; white-space: nowrap;
  transition: transform 0.14s, box-shadow 0.14s, background 0.14s, border-color 0.14s, color 0.14s;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px color-mix(in oklab, var(--accent) 35%, transparent); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px color-mix(in oklab, var(--accent) 42%, transparent); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--hairline); }
.btn-ghost:hover { border-color: color-mix(in oklab, var(--ink) 24%, transparent); background: color-mix(in oklab, var(--ink) 4%, transparent); }
.btn-text { background: transparent; color: var(--ink); padding: 0 8px; height: auto; }
.btn-text:hover { color: var(--accent); }
.btn-lg { height: 54px; padding: 0 30px; font-size: 16.5px; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid color-mix(in oklab, var(--hairline) 70%, transparent);
}
.nav-inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.wordmark { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.wordmark .dot { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: 18px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--muted); transition: color 0.14s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  border: 1px solid var(--hairline); color: var(--ink);
  transition: background 0.14s, border-color 0.14s, color 0.14s;
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }
.icon-btn svg { width: 18px; height: 18px; }
.nav-login { font-weight: 600; font-size: 15px; padding: 0 14px; height: 44px; border-radius: 999px; white-space: nowrap; }
.nav-login:hover { color: var(--accent); }
.nav-cta { height: 44px; padding: 0 20px; font-size: 15px; white-space: nowrap; }
.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { padding-top: 40px; padding-bottom: 30px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  background: var(--accent-soft); border-radius: 999px; padding: 7px 15px;
  margin-bottom: 26px;
}
.eyebrow .spark { font-size: 12px; }
.hero h1 {
  font-size: clamp(30px, 7.2vw, 70px); font-weight: 700;
  letter-spacing: -0.035em; line-height: 1.05; text-wrap: balance;
  max-width: 14ch; margin: 0 auto;
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  font-size: clamp(15.5px, 3.4vw, 21px); color: var(--muted);
  max-width: 56ch; margin: 24px auto 0; text-wrap: pretty;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-note { font-size: 13.5px; color: var(--muted); margin-top: 16px; }
.hero-note-top { margin-top: 22px; }
.hero-note strong { color: var(--ink); font-weight: 600; }

/* ---------- Browser window (hero visual) ---------- */
.hero-stage { margin-top: 40px; perspective: 1600px; }
.win {
  width: 100%; max-width: 960px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--hairline);
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.win-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 16px; border-bottom: 1px solid var(--hairline);
  background: color-mix(in oklab, var(--soft) 60%, var(--card));
}
.win-dots { display: flex; gap: 7px; }
.win-dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--hairline); }
.win-url {
  margin-left: 10px; flex: 1; max-width: 320px;
  height: 26px; border-radius: 999px; background: var(--soft);
  display: flex; align-items: center; gap: 7px; padding: 0 12px;
  font-family: var(--mono); font-size: 12px; color: var(--muted);
}
.win-url .lock { width: 9px; height: 9px; border-radius: 2px; background: color-mix(in oklab, var(--green) 70%, var(--muted)); }
.win-body { padding: 26px; }

/* ---------- App-style mini components (shared by demos) ---------- */
.m-prompt {
  background: var(--card); border: 1px solid var(--hairline);
  border-radius: var(--r-md); padding: 16px 18px; box-shadow: var(--shadow-sm);
}
.m-prompt-label { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.m-typed { font-size: 20px; font-weight: 500; letter-spacing: -0.01em; min-height: 28px; }
.m-typed .caret { display: inline-block; width: 2px; height: 20px; background: var(--accent); margin-left: 2px; vertical-align: -3px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.m-prompt-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--hairline); }
.m-toggle { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink); font-weight: 500; }
.m-switch { width: 32px; height: 19px; border-radius: 999px; background: var(--accent); position: relative; }
.m-switch::after { content: ""; position: absolute; top: 2px; left: 15px; width: 15px; height: 15px; border-radius: 50%; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.m-find { height: 40px; padding: 0 18px; border-radius: 999px; background: var(--ink); color: var(--card); font-size: 13.5px; font-weight: 600; display: inline-flex; align-items: center; }
html[data-theme="dark"] .m-find { background: var(--accent); color: #fff; }

.m-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.m-chip {
  font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--muted);
  border: 1px solid var(--hairline); border-radius: 999px; padding: 6px 13px; background: var(--card);
}
.m-chip.on { background: var(--ink); color: var(--card); border-color: var(--ink); }
html[data-theme="dark"] .m-chip.on { background: var(--accent); border-color: var(--accent); color: #fff; }
.m-chip { cursor: pointer; transition: border-color 0.12s, color 0.12s, background 0.12s; }
.m-chip:not(.on):hover { border-color: color-mix(in oklab, var(--ink) 24%, var(--hairline)); color: var(--ink); }
.m-chips .chip-extra { display: none; }
.m-chips.expanded .chip-extra { display: inline-flex; }
.chip-more { border-style: dashed; color: var(--muted); }

/* result rows */
.m-list { margin-top: 18px; border: 1px solid var(--hairline); border-radius: var(--r-md); overflow: hidden; background: var(--card); }
.m-row {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 18px; border-bottom: 1px solid var(--hairline);
  opacity: 0; transform: translateY(8px); transition: opacity 0.4s, transform 0.4s;
}
.m-row:last-child { border-bottom: none; }
.m-row.show { opacity: 1; transform: none; }
.m-name { font-family: var(--mono); font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.m-name .ext { color: var(--accent); }
.m-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; border-radius: 999px; padding: 4px 10px;
  color: var(--accent); background: var(--accent-soft);
}
.m-badge .d { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.m-badge.checking { color: var(--muted); background: var(--soft); }
.m-spin { width: 11px; height: 11px; border-radius: 50%; border: 2px solid color-mix(in oklab, var(--muted) 40%, transparent); border-top-color: var(--muted); animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.m-row-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.m-score {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  border: 1px solid var(--hairline); border-radius: 999px; padding: 5px 11px; color: var(--ink);
}
.m-score .spark { color: var(--accent); font-size: 11px; }
.m-buy {
  height: 34px; padding: 0 15px; border-radius: 999px;
  border: 1px solid var(--hairline); font-size: 13px; font-weight: 600; color: var(--ink);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.m-buy.hot { background: var(--accent); border-color: var(--accent); color: #fff; transform: scale(1.04); box-shadow: 0 6px 16px color-mix(in oklab, var(--accent) 38%, transparent); }

/* ---------- Live hero generator ---------- */
.win-live { animation: none; }
.page { min-width: 0; width: 100%; transition: width 0.36s cubic-bezier(0.22,1,0.36,1); }
body.panel-open .nav-links { display: none; }

/* Spotlight band that frames the live demo (replaces the browser-window chrome) */
.demo-band {
  position: relative;
  padding: 18px 0 72px;
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 6.5%, var(--bg)) 0%, var(--bg) 72%);
  border-top: 1px solid color-mix(in oklab, var(--hairline) 55%, transparent);
}
.demo-band::before {
  content: ""; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: min(1180px, 94%); height: 380px; pointer-events: none;
  background: radial-gradient(58% 100% at 50% 0%, color-mix(in oklab, var(--accent) 16%, transparent), transparent 72%);
}
.demo-inner { position: relative; width: 100%; max-width: 1000px; margin: 0 auto; padding: 0 32px; text-align: left; }

/* ---------- Tool tabs (WHOIS / Get new ideas) ---------- */
.tool-tabs { display: inline-flex; align-items: center; gap: 4px; padding: 5px; margin-bottom: 16px; background: var(--soft); border: 1px solid var(--hairline); border-radius: 999px; }
.tool-tab { display: inline-flex; align-items: center; gap: 7px; height: 38px; padding: 0 18px; border: none; background: transparent; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--muted); cursor: pointer; transition: color 0.16s, background 0.16s, box-shadow 0.16s; }
.tool-tab:hover { color: var(--ink); }
.tool-tab.active { color: var(--ink); background: var(--card); box-shadow: 0 1px 3px rgba(15,26,46,0.12); }
/* "Get new ideas" — flowing gradient text that shines; gradient fill when active */
.tab-shine { color: #7C3AED; background-image: linear-gradient(100deg, #1F6FEB, #7C3AED 38%, #A855F7 55%, #1F6FEB); background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: tab-flow 4.5s linear infinite; }
.tab-shine .spark { -webkit-text-fill-color: #7C3AED; }
.tab-shine.active { background: linear-gradient(100deg, #1F6FEB, #7C3AED 38%, #A855F7 55%, #1F6FEB); background-size: 220% 100%; -webkit-background-clip: border-box; background-clip: border-box; -webkit-text-fill-color: #fff; color: #fff; box-shadow: 0 4px 14px color-mix(in oklab, #6D4AE0 40%, transparent); }
.tab-shine.active .spark { -webkit-text-fill-color: #fff; }
@keyframes tab-flow { to { background-position: 220% 0; } }
@media (prefers-reduced-motion: reduce) { .tab-shine { animation: none; } }

/* ---------- WHOIS lookup card + report ---------- */
.whois-inputrow { display: flex; align-items: baseline; gap: 2px; margin-top: 2px; }
.whois-proto { font-family: var(--mono); font-size: 20px; color: color-mix(in oklab, var(--muted) 70%, transparent); flex-shrink: 0; }
.whois-input { flex: 1; min-width: 0; border: none; outline: none; background: transparent; font-family: var(--mono); font-size: 24px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); padding: 4px 0; }
.whois-input::placeholder { color: color-mix(in oklab, var(--muted) 60%, transparent); }
#whoisBtn, #valueBtn { background: var(--accent); color: #fff; }

/* ---------- Domain value report ---------- */
.ev2-report { border: 1px solid var(--hairline); border-radius: var(--r-md); background: var(--card); box-shadow: var(--shadow-sm); overflow: hidden; }
.ev2-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 20px 22px; border-bottom: 1px solid var(--hairline); }
.ev2-avail { color: var(--accent); background: var(--accent-soft); }
.ev2-taken { color: var(--muted); background: var(--soft); }
.ev2-value { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px; border-bottom: 1px solid var(--hairline); flex-wrap: wrap; }
.ev2-val-k { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.ev2-val-fig { font-family: var(--mono); font-size: 38px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin-top: 4px; }
.ev2-val-fig span { font-size: 16px; font-weight: 500; color: var(--muted); }
.ev2-val-range { font-size: 13px; color: var(--muted); margin-top: 6px; }
.ev2-val-range, .ev2-val-fig { line-height: 1.1; }
.ev2-grade { width: 92px; height: 92px; border-radius: 18px; display: grid; place-items: center; flex-shrink: 0; background: var(--accent-soft); border: 1px solid color-mix(in oklab, var(--accent) 22%, var(--hairline)); }
.ev2-grade-letter { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; color: var(--accent); line-height: 1; }
.ev2-grade-num { font-size: 11.5px; color: var(--muted); font-family: var(--mono); margin-top: 4px; }
.ev2-grade-C, .ev2-grade-D { background: var(--soft); border-color: var(--hairline); }
.ev2-grade-C .ev2-grade-letter, .ev2-grade-D .ev2-grade-letter { color: var(--ink); }
.ev2-verdict { font-size: 14.5px; line-height: 1.6; color: color-mix(in oklab, var(--ink) 82%, var(--muted)); padding: 18px 22px 0; }
.ev2-verdict-warn { color: #B26B00; }
.ev2-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; padding: 18px 22px 22px; }
.ev2-metric-top { display: flex; justify-content: space-between; font-size: 13.5px; margin-bottom: 7px; }
.ev2-metric-top span:first-child { color: var(--muted); }
.ev2-metric-v { font-family: var(--mono); font-weight: 700; color: var(--ink); }
.ev2-track { height: 7px; border-radius: 999px; background: var(--soft); overflow: hidden; }
.ev2-track i { display: block; height: 100%; border-radius: 999px; }
.ev2-fill-hi { background: var(--accent); }
.ev2-fill-mid { background: color-mix(in oklab, var(--accent) 55%, #E0A52E); }
.ev2-fill-lo { background: #E0A52E; }
.ev2-cta { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 20px 22px; border-top: 1px solid var(--hairline); background: var(--soft); }
.ev2-cta-avail { background: color-mix(in oklab, var(--accent) 7%, var(--card)); }
.ev2-note { font-size: 11.5px; color: var(--muted); line-height: 1.5; padding: 0 22px 20px; }

/* ---------- Domain hunting steps ---------- */
.hunt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; margin-top: 40px; }
.hunt-step { display: flex; gap: 16px; background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.hunt-n { font-family: var(--mono); font-size: 15px; font-weight: 700; color: var(--accent); background: var(--accent-soft); width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.hunt-step h3 { font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; }
.hunt-step p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-top: 7px; }
@media (max-width: 560px) { .ev2-metrics { grid-template-columns: 1fr; } }

/* ---------- Free tools cards ---------- */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; margin-top: 40px; }
.tool-card { display: flex; flex-direction: column; gap: 11px; background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm); transition: transform 0.14s, box-shadow 0.14s, border-color 0.14s; }
.tool-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: color-mix(in oklab, var(--accent) 38%, var(--hairline)); }
.tool-kicker { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }
.tool-card h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
.tool-card p { font-size: 15px; color: var(--muted); line-height: 1.6; flex: 1; }
.tool-go { font-size: 14.5px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 7px; margin-top: 4px; }
.tool-go .arr { transition: transform 0.14s; }
.tool-card:hover .tool-go .arr { transform: translateX(4px); }

.whois-results { margin-top: 18px; }
.wh-report { border: 1px solid var(--hairline); border-radius: var(--r-md); background: var(--card); box-shadow: var(--shadow-sm); overflow: hidden; }
.wh-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 20px 22px; border-bottom: 1px solid var(--hairline); }
.wh-domain { font-family: var(--mono); font-size: 20px; font-weight: 700; letter-spacing: -0.01em; word-break: break-all; }
.wh-sub { font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.wh-badge { font-size: 12px; font-weight: 700; border-radius: 999px; padding: 5px 12px; white-space: nowrap; }
.wh-reg { color: var(--accent); background: var(--accent-soft); }
.wh-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline); border-bottom: 1px solid var(--hairline); }
.wh-stat { background: var(--card); padding: 16px 20px; }
.wh-stat-k { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.wh-stat-v { font-size: 17px; font-weight: 700; margin-top: 4px; letter-spacing: -0.01em; }
.wh-soon { font-size: 11px; font-weight: 700; color: #C98A12; background: #FBEFD8; border-radius: 999px; padding: 1px 7px; vertical-align: middle; }
.wh-rows { display: flex; flex-direction: column; }
.wh-row { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 14px 22px; border-top: 1px solid var(--hairline); font-size: 14.5px; }
.wh-row:first-child { border-top: none; }
.wh-key { color: var(--muted); font-weight: 500; }
.wh-val { min-width: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.wh-val code { font-family: var(--mono); font-size: 13px; background: var(--soft); border: 1px solid var(--hairline); border-radius: 7px; padding: 3px 9px; }
.wh-chip { font-size: 11px; font-weight: 600; color: var(--accent); background: var(--accent-soft); border-radius: 999px; padding: 2px 9px; }
.wh-tag { font-family: var(--mono); font-size: 12px; color: var(--ink); background: var(--soft); border: 1px solid var(--hairline); border-radius: 7px; padding: 3px 9px; }
.wh-ok { color: var(--accent); font-weight: 600; }
.wh-off { color: var(--muted); }
.wh-cta { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 20px 22px; border-top: 1px solid var(--hairline); background: color-mix(in oklab, var(--accent) 4%, var(--card)); }
.wh-cta-t { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.wh-cta-s { font-size: 13.5px; color: var(--muted); margin-top: 3px; }
.wh-cta-btns { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.wh-cta-btn { height: 46px; }
.wh-monitor { font-size: 14px; font-weight: 600; color: var(--accent); cursor: pointer; }
.wh-monitor:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .wh-grid { grid-template-columns: repeat(2, 1fr); }
  .wh-row { grid-template-columns: 1fr; gap: 4px; }
}
.hg-tryline {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  background: var(--accent-soft); border-radius: 999px;
  padding: 6px 14px; margin-bottom: 16px;
}
.hg-tryline .spark { font-size: 11px; }

/* The prompt itself — highlighted so it clearly reads as a live input */
.hg-card {
  position: relative; cursor: text;
  border: 1.5px solid color-mix(in oklab, var(--accent) 38%, var(--hairline));
  border-radius: var(--r-md);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 8%, transparent), var(--shadow-md);
  padding: 18px 20px 16px;
  transition: border-color 0.16s, box-shadow 0.16s;
  animation: hg-attract 2.6s ease-in-out 1s 2;
}
.hg-card:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 18%, transparent), var(--shadow-md);
  animation: none;
}
@keyframes hg-attract {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 8%, transparent), var(--shadow-md); }
  50% { box-shadow: 0 0 0 8px color-mix(in oklab, var(--accent) 16%, transparent), var(--shadow-md); }
}
.hg-label {
  display: block; text-align: left;
  font-size: 12.5px; font-weight: 600; color: var(--muted);
  margin-bottom: 10px;
}
.hg-input {
  width: 100%; display: block; border: none; outline: none; resize: none;
  font-family: var(--font); font-size: 22px; font-weight: 500;
  letter-spacing: -0.01em; line-height: 1.45; color: var(--ink);
  background: transparent; min-height: 62px; overflow: hidden;
}
.hg-input::placeholder { color: color-mix(in oklab, var(--muted) 65%, transparent); }

.hg-foot {
  display: flex; align-items: center; gap: 14px 18px; flex-wrap: wrap;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--hairline);
}
.hg-toggles { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hg-toggle { background: none; border: none; padding: 0; cursor: pointer; }
.m-toggle:not(.on) .m-switch { background: var(--hairline); }
.m-switch::after { transition: left 0.18s cubic-bezier(0.22,1,0.36,1); }
.m-toggle:not(.on) .m-switch::after { left: 2px; }
.hg-hint { margin-left: auto; font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.hg-hint kbd {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  background: var(--soft); border: 1px solid var(--hairline);
  border-radius: 6px; padding: 2px 7px; color: var(--ink);
}
.hg-find {
  border: none; cursor: pointer; gap: 8px; height: 44px; padding: 0 22px;
  background: var(--accent); color: #fff; font-size: 14.5px; white-space: nowrap;
  box-shadow: 0 6px 16px color-mix(in oklab, var(--accent) 35%, transparent);
  transition: transform 0.14s, box-shadow 0.14s, opacity 0.14s;
}
.hg-find:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 10px 24px color-mix(in oklab, var(--accent) 45%, transparent); }
.hg-find:disabled { opacity: 0.6; cursor: default; }
.hg-find .spark { font-size: 12px; }

.hg-results { margin-top: 18px; }
.hg-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.hg-regen { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--accent); cursor: pointer; }
.hg-regen:hover { text-decoration: underline; }
.hg-regen .rot { display: inline-block; }
.hg-regen.spin .rot { animation: spin 0.6s linear; }

@media (max-width: 560px) {
  .hg-hint { display: none; }
  .hg-input { font-size: 18px; }
  .row { padding: 14px 14px; gap: 10px; flex-direction: column; align-items: flex-start; }
  .row-side { width: 100%; justify-content: space-between; }
  .hg-card { padding: 16px 16px 14px; }
}

/* ===== SaaS-parity result rows ===== */
.hg-list { border: 1px solid var(--hairline); border-radius: var(--r-md); overflow: visible; background: var(--card); box-shadow: var(--shadow-sm); }
.hg-list .row-block:first-child, .hg-list .row-block:first-child .row { border-top-left-radius: var(--r-md); border-top-right-radius: var(--r-md); }
.hg-list .row-block:last-child, .hg-list .row-block:last-child .row { border-bottom-left-radius: var(--r-md); border-bottom-right-radius: var(--r-md); }
.row-block { border-bottom: 1px solid var(--hairline); animation: rise 0.4s cubic-bezier(0.22,1,0.36,1); }
.row-block:last-child { border-bottom: none; }
@keyframes rise { from { transform: translateY(8px); } to { transform: none; } }
.row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 18px; transition: background 0.12s; }
.row:hover { background: color-mix(in oklab, var(--soft) 55%, var(--card)); }
.row-main { display: flex; align-items: center; gap: 12px; min-width: 0; flex-wrap: wrap; }
.domain-name { font-family: var(--mono); font-size: 16px; font-weight: 600; letter-spacing: -0.01em; overflow-wrap: anywhere; min-width: 0; }
.domain-ext { color: var(--accent); }
.badge-available { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--accent); background: var(--accent-soft); border-radius: 999px; padding: 4px 10px; }
.badge-available .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.badge-checking { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--muted); background: var(--soft); border-radius: 999px; padding: 4px 10px; }
.mini-spinner { width: 11px; height: 11px; border-radius: 50%; border: 2px solid color-mix(in oklab, var(--muted) 40%, transparent); border-top-color: var(--muted); animation: spin 0.7s linear infinite; }
.row-side { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }

/* AI score chip + review popover */
.score-wrap { position: relative; display: inline-flex; }
.score-chip { display: inline-flex; align-items: center; gap: 4px; height: 34px; padding: 0 11px; border-radius: 999px; border: 1px solid var(--hairline); background: var(--card); font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--ink); cursor: pointer; transition: border-color 0.12s, color 0.12s, background 0.12s; }
.score-chip:hover { border-color: var(--accent); color: var(--accent); }
.score-chip-on { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.score-spark { color: var(--accent); font-size: 11px; }
.score-pop-scrim { position: fixed; inset: 0; z-index: 30; }
.score-pop { position: absolute; top: calc(100% + 8px); right: 0; z-index: 31; width: 290px; background: var(--card); border: 1px solid var(--hairline); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 14px 15px; animation: pop-in 0.16s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes pop-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.score-pop-up { top: auto; bottom: calc(100% + 8px); }
.row-block-pop { position: relative; z-index: 60; }

/* favorite + handle buttons */
.fav-btn, .handle-btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--hairline); background: transparent; display: grid; place-items: center; padding: 0; flex-shrink: 0; transition: all 0.12s; line-height: 1; cursor: pointer; }
.fav-btn { font-size: 15px; color: var(--muted); }
.fav-btn:hover { border-color: var(--red); color: var(--red); }
.fav-on { color: var(--red); border-color: color-mix(in oklab, var(--red) 35%, white); background: color-mix(in oklab, var(--red) 8%, white); }
.handle-btn { font-family: var(--mono); font-size: 14px; font-weight: 600; color: var(--muted); }
.handle-btn:hover { border-color: var(--ink); color: var(--ink); }

/* buy button */
.btn-buy { background: transparent; border: 1px solid var(--hairline); color: var(--ink); border-radius: 999px; padding: 8px 16px; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all 0.12s; }
.row:hover .btn-buy, .btn-buy:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
html[data-theme="dark"] .row:hover .btn-buy, html[data-theme="dark"] .btn-buy:hover { background: var(--accent); border-color: var(--accent); }

/* loading skeleton rows */
.row-sk { pointer-events: none; }
.row-sk .row { justify-content: space-between; }
.sk-bar { display: inline-block; height: 16px; border-radius: 6px;
  background: linear-gradient(90deg, var(--soft) 25%, color-mix(in oklab, var(--soft) 45%, var(--card)) 50%, var(--soft) 75%);
  background-size: 200% 100%; animation: hg-shimmer 1.3s linear infinite; }
.sk-name { width: 42%; }
.sk-pill { width: 88px; height: 30px; border-radius: 999px; }
@keyframes hg-shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* ===== Page-level side panel: fixed overlay; the page is zoomed to fit the rest ===== */
.page-dock {
  position: fixed; top: 0; right: 0; height: 100vh;
  width: min(440px, 40vw); overflow: hidden; z-index: 60;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1);
}
.page-dock.open { transform: none; }
.hg-panel { width: 100%; height: 100%; background: var(--card); border-left: 1px solid var(--hairline); box-shadow: -22px 0 50px rgba(15,26,46,0.10); padding: 28px 26px 24px; overflow-y: auto; position: relative; }
.hg-panel-close { position: absolute; top: 18px; right: 18px; width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; font-size: 22px; line-height: 1; color: var(--muted); background: transparent; cursor: pointer; z-index: 2; }
.hg-panel-close:hover { background: color-mix(in oklab, var(--ink) 8%, transparent); color: var(--ink); }
.hg-panel-inner.swap { animation: panel-swap 0.24s cubic-bezier(0.22,1,0.36,1); }
@keyframes panel-swap { from { transform: translateY(6px); } to { transform: none; } }
.hg-scrim { position: fixed; inset: 0; background: rgba(15,26,46,0.34); z-index: 55; opacity: 0; pointer-events: none; transition: opacity 0.24s; }

.panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding-right: 34px; }
.panel-kicker { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 6px; }
.panel-domain { font-family: var(--mono); font-size: 21px; font-weight: 600; letter-spacing: -0.01em; overflow-wrap: anywhere; }
.panel-sub { font-size: 13.5px; color: var(--muted); margin: 14px 0 18px; line-height: 1.5; }
.panel-sub-tight { margin-top: 0; }
.panel-foot { font-size: 12px; color: color-mix(in oklab, var(--muted) 85%, transparent); margin-top: 18px; line-height: 1.5; }

/* AI name review (inside panel + popover) */
.name-eval { margin-top: 16px; border: 1px solid var(--hairline); border-radius: 12px; padding: 14px 15px; background: color-mix(in oklab, var(--accent) 4%, var(--card)); }
.score-pop .name-eval { border: none; background: transparent; padding: 0; margin: 0; }
.ne-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; border: none; background: transparent; padding: 0; cursor: pointer; text-align: left; color: var(--ink); font-family: var(--font); }
.ne-chev { color: var(--muted); margin-left: 6px; display: inline-flex; align-items: center; transition: transform 0.18s cubic-bezier(0.22,1,0.36,1); }
.name-eval.ne-open .ne-chev { transform: rotate(180deg); }
.ne-score { display: inline-flex; align-items: center; }
.name-eval .ne-list { margin-top: 12px; display: none; }
.name-eval.ne-open .ne-list { display: flex; }
.ne-title { font-size: 12.5px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; color: var(--ink); white-space: nowrap; }
.ne-spark { color: var(--accent); }
.ne-score { font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.ne-score strong { color: var(--ink); font-family: var(--mono); font-size: 14px; }
.ne-of { color: var(--muted); }
.ne-list { display: flex; flex-direction: column; gap: 9px; }
.ne-item { display: flex; align-items: flex-start; gap: 9px; }
.ne-mark { width: 17px; height: 17px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-size: 10px; font-weight: 700; background: var(--accent); color: #fff; margin-top: 1px; }
.ne-no .ne-mark { background: #E0A52E; }
.ne-text { display: flex; flex-direction: column; line-height: 1.35; }
.ne-text strong { font-size: 13px; font-weight: 600; }
.ne-desc { font-size: 11.5px; color: var(--muted); }

/* Estimated value card */
.ne-score-muted { color: var(--muted); font-weight: 500; }
.ev-card .ne-spark.ev-spark { font-family: var(--mono); font-weight: 700; }
.ev-head-val { color: var(--ink); font-family: var(--mono); }
.ev-figure { font-family: var(--mono); font-size: 30px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.ev-figure span { font-size: 14px; font-weight: 500; color: var(--muted); margin-left: 4px; }
.ev-range { font-size: 13px; color: var(--muted); margin: 6px 0 14px; }
.ev-range strong { color: var(--ink); font-family: var(--mono); font-weight: 600; }
.ev-note { font-size: 11.5px; color: var(--muted); margin-top: 12px; line-height: 1.5; }

/* registrar offers */
.offers { display: flex; flex-direction: column; gap: 10px; }
.offer { display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid var(--hairline); border-radius: 12px; padding: 14px 16px; transition: border-color 0.12s; }
.offer:hover { border-color: color-mix(in oklab, var(--ink) 18%, var(--hairline)); }
.offer-best { border-color: var(--accent); background: color-mix(in oklab, var(--accent) 4%, var(--card)); }
.offer-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.monogram { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; display: grid; place-items: center; font-weight: 700; font-size: 16px; overflow: hidden; color: #fff; }
.vendor-logo { width: 26px; height: 26px; object-fit: contain; }
.vendor-logo-full { width: 100%; height: 100%; object-fit: cover; }
.offer-info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.offer-name { font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 6px 8px; flex-wrap: wrap; }
.tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); background: var(--soft); border-radius: 999px; padding: 2.5px 8px; }
.tag-best { color: #fff; background: var(--accent); }
.offer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; flex-shrink: 0; }
.offer-price { font-family: var(--mono); font-size: 16px; font-weight: 600; }
.per { color: var(--muted); font-weight: 400; font-size: 12px; }
.offer-renew { font-size: 11.5px; color: var(--muted); font-family: var(--mono); }
.offer-buy { margin-top: 5px; background: transparent; border: 1px solid var(--hairline); color: var(--ink); border-radius: 999px; padding: 7px 15px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.12s; }
.offer-buy:hover { border-color: var(--ink); }
.offer-buy-best { background: var(--accent); border-color: var(--accent); color: #fff; }
.offer-buy-best:hover { border-color: var(--accent); filter: brightness(1.04); }

/* Trustpilot badge */
.tp-badge { display: inline-flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.tp-logo { display: inline-flex; align-items: center; gap: 3px; font-size: 12px; font-weight: 700; color: #191919; }
html[data-theme="dark"] .tp-logo { color: var(--ink); }
.tp-logo-star { color: #00B67A; font-size: 13px; line-height: 1; }
.tp-stars { display: inline-flex; gap: 2px; }
.tp-sq { width: 14px; height: 14px; border-radius: 2px; background: #DCDCE6; color: #fff; display: grid; place-items: center; font-size: 9px; line-height: 1; }
.tp-sq.on { background: #00B67A; }
.tp-score { font-size: 11.5px; color: var(--muted); font-family: var(--mono); }

/* social handles list */
.hp-grid-panel { display: grid; grid-template-columns: 1fr; gap: 8px; }
.hp-row { display: flex; align-items: center; gap: 9px; border: 1px solid var(--hairline); border-radius: 12px; padding: 12px 14px; font-size: 14px; }
.hp-row .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dot-free { background: var(--accent); }
.dot-taken { background: var(--red); }
.hp-platform { font-weight: 500; }
.hp-status { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--muted); }
.hp-free { color: var(--accent); }
.hp-row-checking { opacity: 0.75; }
.hp-dot-spin { width: 11px; height: 11px; border-radius: 50%; border: 2px solid color-mix(in oklab, var(--muted) 35%, transparent); border-top-color: var(--muted); animation: spin 0.7s linear infinite; flex-shrink: 0; }
.hp-platform-skel { display: inline-block; width: 88px; height: 11px; border-radius: 5px; background: color-mix(in oklab, var(--muted) 22%, transparent); }
.hp-checking-status { color: color-mix(in oklab, var(--muted) 80%, transparent); }
.hp-checking { display: inline-flex; align-items: center; gap: 8px; }

/* Generate-handles prompt (shown when social handles weren't checked at search time) */
.gh-prompt { text-align: center; padding: 38px 8px 22px; display: flex; flex-direction: column; align-items: center; }
.gh-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--soft); color: var(--muted); display: grid; place-items: center; font-family: var(--mono); font-size: 22px; font-weight: 600; margin-bottom: 18px; }
.gh-title { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.gh-text { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 9px 0 22px; max-width: 32ch; }
.gh-btn { height: 46px; padding: 0 24px; }

@media (max-width: 760px) {
  .page-dock { width: min(390px, 92%); }
  .hg-panel { box-shadow: -16px 0 50px rgba(15,26,46,0.18); }
  body.panel-open .hg-scrim { opacity: 1; pointer-events: auto; }
}

@media (max-width: 560px) {
  /* Buy / handles panel covers the full screen on phones */
  .page-dock { width: 100%; }
  .hg-panel { border-left: none; }
  body.panel-open { overflow: hidden; }
  /* AI name review opens as an in-page card under the row (not a clipped popover) */
  .score-wrap { position: static; }
  .score-pop { left: 10px; right: 10px; width: auto; }
}

/* ---------- Sections ---------- */
.section { padding-top: 72px; padding-bottom: 72px; }
.feature { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 48px 56px; align-items: center; }
.feature > * { min-width: 0; }
.feature.flip .feature-text { order: 2; }
.feature-kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.feature-kicker .num { font-family: var(--mono); width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; background: var(--accent-soft); font-size: 12px; }
.feature h2 { font-size: clamp(23px, 5.6vw, 40px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; text-wrap: balance; }
.feature p { font-size: clamp(15px, 4vw, 17px); color: var(--muted); margin-top: 16px; max-width: 42ch; text-wrap: pretty; }
.feature-points { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.feature-points li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; }
.feature-points .tick { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 12px; margin-top: 1px; }
.feature-cta { margin-top: 28px; }

/* demo card shell */
.demo {
  background: var(--card); border: 1px solid var(--hairline);
  border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.demo::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, color-mix(in oklab, var(--accent) 8%, transparent), transparent 60%);
  pointer-events: none;
}
.demo-inner { position: relative; }

/* names regenerate demo */
.gen-stack { display: flex; flex-direction: column; gap: 10px; }
.gen-pill {
  display: flex; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--hairline); border-radius: 12px;
  padding: 14px 16px;
  opacity: 0; transform: translateY(10px) scale(0.98);
  transition: opacity 0.45s, transform 0.45s;
}
.gen-pill.show { opacity: 1; transform: none; }
.gen-pill .m-name { font-size: 17px; }
.gen-regen { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--accent); margin: 4px 2px 14px; }
.gen-regen .rot { display: inline-block; }
.gen-regen.spin .rot { animation: spin 0.6s linear; }

/* handles demo */
.plat-list { display: flex; flex-direction: column; gap: 9px; }
.plat-row {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--hairline); border-radius: 12px; padding: 12px 14px; background: var(--card);
}
.plat-ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; font-family: var(--mono); font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; }
.plat-name { font-size: 14.5px; font-weight: 600; }
.plat-handle { font-family: var(--mono); font-size: 12.5px; color: var(--muted); }
.plat-status { margin-left: auto; font-family: var(--mono); font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 7px; color: var(--muted); }
.plat-status .dot { width: 7px; height: 7px; border-radius: 50%; }
.plat-status.free { color: var(--accent); }
.plat-status.free .dot { background: var(--accent); }
.plat-status.taken { color: var(--red); }
.plat-status.taken .dot { background: var(--red); }

/* brand identity demo */
.brand-cover { border-radius: 16px; padding: 26px; color: #fff; position: relative; overflow: hidden; background: var(--accent); }
.brand-cover .bc-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; opacity: 0.85; }
.brand-cover .bc-name { font-size: 36px; font-weight: 700; letter-spacing: -0.02em; margin-top: 8px; }
.brand-cover .bc-sq { position: absolute; right: -28px; bottom: -28px; width: 130px; height: 130px; border-radius: 18px; background: rgba(255,255,255,0.14); }
.brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.brand-tile { border: 1px solid var(--hairline); border-radius: 12px; padding: 14px; background: var(--card); }
.brand-tile-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 10px; }
.swatches { display: flex; gap: 7px; }
.swatches i { width: 28px; height: 28px; border-radius: 7px; transform: scale(0); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1); }
.swatches i.show { transform: scale(1); }
.brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-logo .lg-badge { width: 36px; height: 36px; border-radius: 9px; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 18px; }
.brand-logo .lg-word { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.brand-type { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; }
.brand-type span { color: var(--muted); font-weight: 400; font-size: 14px; display: block; margin-top: 4px; letter-spacing: 0; }
.reveal { opacity: 0; transform: translateY(10px); transition: opacity 0.5s, transform 0.5s; }
.reveal.show { opacity: 1; transform: none; }

/* Mobile: shrink feature demo cards so right-aligned scores/status never clip */
@media (max-width: 560px) {
  .demo { padding: 16px; }
  .gen-stack { gap: 8px; }
  .gen-pill { padding: 11px 12px; gap: 8px; flex-wrap: wrap; }
  .gen-pill .m-name { font-size: 14.5px; }
  .gen-regen { margin: 2px 2px 12px; }
  .m-badge { font-size: 11px; padding: 3px 9px; gap: 5px; }
  .m-score { font-size: 12px; padding: 4px 9px; }
  .m-row { padding: 11px 12px; gap: 8px 10px; flex-wrap: wrap; }
  .m-row .m-name { font-size: 14.5px; }
  .m-row-right { gap: 8px; }
  .m-buy { height: 30px; padding: 0 12px; font-size: 12px; }
  .plat-row { padding: 10px 12px; gap: 10px; flex-wrap: wrap; }
  .plat-ico { width: 30px; height: 30px; }
  .plat-name { font-size: 13.5px; }
  .plat-handle { font-size: 11.5px; }
  .plat-status { font-size: 11px; }
  .brand-cover { padding: 20px; }
  .brand-cover .bc-name { font-size: 30px; }
  .brand-grid { grid-template-columns: 1fr; gap: 10px; }
  .brand-tile { padding: 12px; }
  .swatches { flex-wrap: wrap; }
}

/* ---------- Logos / trust strip ---------- */
.trust { text-align: center; padding: 8px 0 8px; }
.trust-label { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 22px; margin-top: 22px; }
.tld-pill { font-family: var(--mono); font-size: 15px; font-weight: 600; color: var(--muted); border: 1px solid var(--hairline); border-radius: 999px; padding: 9px 18px; background: var(--card); }
.tld-pill b { color: var(--accent); font-weight: 600; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin-top: 44px; }
.step { background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.step-n { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--accent); }
.step h3 { font-size: 19px; font-weight: 700; margin-top: 12px; letter-spacing: -0.01em; }
.step p { font-size: 14.5px; color: var(--muted); margin-top: 8px; }
.section-head { text-align: center; max-width: 40ch; margin: 0 auto; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.07; text-wrap: balance; }
.section-head p { font-size: 17px; color: var(--muted); margin-top: 14px; }
.section-head .content-kicker { display: inline-block; margin-bottom: 14px; }

/* ---------- TLD / SEO content ---------- */
.content-kicker { font-family: var(--mono); font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); border-radius: 999px; padding: 6px 14px; }
.prose { max-width: 760px; margin: 36px auto 0; }
.prose p { font-size: 17.5px; line-height: 1.75; color: color-mix(in oklab, var(--ink) 82%, var(--muted)); margin-bottom: 18px; text-wrap: pretty; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); }

.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; margin-top: 44px; }
.stat { background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 26px 22px; text-align: center; box-shadow: var(--shadow-sm); }
.stat-num { font-size: clamp(30px, 4vw, 42px); font-weight: 700; letter-spacing: -0.03em; color: var(--accent); font-feature-settings: "tnum"; }
.stat-label { font-size: 14px; color: var(--muted); margin-top: 6px; }

.timeline { max-width: 760px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 0; }
.tl-item { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 22px 0; border-top: 1px solid var(--hairline); }
.tl-item:first-child { border-top: none; }
.tl-year { font-family: var(--mono); font-size: 15px; font-weight: 700; color: var(--accent); padding-top: 2px; }
.tl-body h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.tl-body p { font-size: 15.5px; color: var(--muted); margin-top: 7px; line-height: 1.6; }

.tld-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 44px; }
.tld-card { background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform 0.14s, box-shadow 0.14s, border-color 0.14s; }
.tld-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: color-mix(in oklab, var(--accent) 30%, var(--hairline)); }
.tld-card-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; font-size: 18px; margin-bottom: 16px; }
.tld-card h3 { font-size: 17.5px; font-weight: 700; letter-spacing: -0.01em; }
.tld-card p { font-size: 14.5px; color: var(--muted); margin-top: 9px; line-height: 1.6; }

.rank-list { list-style: none; counter-reset: none; max-width: 820px; margin: 40px auto 0; border: 1px solid var(--hairline); border-radius: var(--r-lg); overflow: hidden; background: var(--card); box-shadow: var(--shadow-sm); }
.rank-item { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 8px 18px; padding: 16px 22px; border-top: 1px solid var(--hairline); }
.rank-item:first-child { border-top: none; }
.rank-n { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--muted); }
.rank-name { font-family: var(--mono); font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.rank-ext { color: var(--accent); }
.rank-note { grid-column: 2; font-size: 13.5px; color: var(--muted); }
.rank-price { grid-row: 1 / span 2; grid-column: 3; font-family: var(--mono); font-size: 18px; font-weight: 700; color: var(--ink); font-feature-settings: "tnum"; }
.rank-foot { max-width: 820px; margin: 20px auto 0; text-align: center; font-size: 15px; color: var(--muted); }
.rank-foot a { color: var(--accent); font-weight: 600; }
.rank-foot a:hover { text-decoration: underline; }

.faq { max-width: 760px; margin: 40px auto 0; border: 1px solid var(--hairline); border-radius: var(--r-lg); overflow: hidden; background: var(--card); box-shadow: var(--shadow-sm); }
.faq-item { border-top: 1px solid var(--hairline); }
.faq-item:first-child { border-top: none; }
.faq-q { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-size: 16.5px; font-weight: 600; color: var(--ink); }
.faq-q::-webkit-details-marker { display: none; }
.faq-chev { color: var(--muted); font-size: 13px; transition: transform 0.2s cubic-bezier(0.22,1,0.36,1); flex-shrink: 0; }
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-a { padding: 0 24px 22px; }
.faq-a p { font-size: 15.5px; line-height: 1.7; color: var(--muted); max-width: 64ch; }
@media (max-width: 560px) {
  .tl-item { grid-template-columns: 1fr; gap: 6px; }
  .rank-item { grid-template-columns: 32px 1fr auto; padding: 14px 16px; }
  .rank-note { grid-column: 1 / -1; }
}

/* ---------- Provider profile (bento) ---------- */
.provider-hero { display: grid; grid-template-columns: 1.5fr 1fr; gap: 18px; margin-top: 36px; }
.ph-card { background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.ph-top { display: flex; align-items: center; gap: 18px; }
.ph-logo { width: 64px; height: 64px; border-radius: 16px; background: #101820; display: grid; place-items: center; flex-shrink: 0; overflow: hidden; }
.ph-logo img { width: 40px; height: 40px; object-fit: contain; }
.ph-name { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }
.ph-tag { font-size: 14.5px; color: var(--muted); margin-top: 2px; }
.ph-blurb { font-size: 16px; line-height: 1.7; color: color-mix(in oklab, var(--ink) 80%, var(--muted)); margin: 22px 0 24px; }
.ph-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.ph-fact { border: 1px solid var(--hairline); border-radius: 12px; padding: 14px 16px; background: var(--soft); }
.ph-fact-k { display: block; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.ph-fact-v { display: block; font-size: 19px; font-weight: 700; margin-top: 3px; }
.ph-score { display: flex; flex-direction: column; }
.ph-tplogo { font-size: 14px; }
.ph-rating { font-size: 56px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; margin-top: 14px; }
.ph-stars { display: flex; gap: 3px; margin-top: 10px; }
.ph-stars .tp-sq { width: 22px; height: 22px; border-radius: 4px; font-size: 13px; }
.ph-stars .tp-sq.half { background: linear-gradient(90deg, #00B67A 50%, #DCDCE6 50%); }
.ph-rating-note { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 14px 0 18px; }
.ph-bars { display: flex; flex-direction: column; gap: 7px; margin-top: auto; }
.ph-bar { display: grid; grid-template-columns: 26px 1fr 36px; align-items: center; gap: 9px; font-size: 12px; color: var(--muted); font-family: var(--mono); }
.ph-bar i { height: 7px; border-radius: 999px; background: var(--soft); overflow: hidden; }
.ph-bar b { display: block; height: 100%; background: #00B67A; border-radius: 999px; }

/* ---------- Review cards ---------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 40px; }
.review-card { background: var(--card); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.rv-stars { color: #00B67A; font-size: 15px; letter-spacing: 2px; }
.rv-text { font-size: 15px; line-height: 1.65; color: var(--ink); margin: 14px 0 18px; text-wrap: pretty; flex: 1; }
.rv-by { display: flex; align-items: center; gap: 11px; }
.rv-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.rv-avatar-img { display: block; object-fit: cover; background: var(--card); }
.rv-name { font-size: 14px; font-weight: 600; }
.rv-meta { font-size: 12.5px; color: var(--muted); }
.rv-title { font-size: 14.5px; font-weight: 700; color: var(--ink); line-height: 1.4; margin: 12px 0 0; }
.rv-title + .rv-text { margin-top: 8px; }
.rv-empty { grid-column: 1 / -1; padding: 24px; border: 1px dashed var(--line, #d9d9e3); border-radius: 12px; color: var(--muted, #6b7280); font-size: 15px; line-height: 1.6; text-align: center; }

/* ---------- Comparison table ---------- */
.cmp-wrap { margin-top: 40px; border: 1px solid var(--hairline); border-radius: var(--r-lg); overflow-x: auto; background: var(--card); box-shadow: var(--shadow-sm); }
.cmp-head, .cmp-row { display: grid; grid-template-columns: 1.6fr 0.7fr 0.85fr 0.7fr 0.7fr 0.8fr 0.95fr 1.5fr; align-items: center; gap: 10px; padding: 15px 22px; min-width: 880px; }
.cmp-head { background: var(--soft); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.cmp-row { border-top: 1px solid var(--hairline); font-size: 14px; }
.cmp-featured { background: var(--accent-soft); box-shadow: inset 3px 0 0 var(--accent); }
.cmp-name { display: flex; align-items: center; gap: 11px; font-weight: 600; }
.cmp-logo { width: 30px; height: 30px; object-fit: contain; border-radius: 7px; flex-shrink: 0; }
.cmp-name small { display: block; font-weight: 400; font-size: 11.5px; color: var(--muted); font-family: var(--mono); margin-top: 2px; }
.cmp-rate { font-family: var(--mono); color: var(--muted); }
.cmp-rate b { color: var(--ink); }
.cmp-cell { font-size: 15px; font-weight: 700; }
.cmp-yes { color: var(--accent); }
.cmp-no { color: color-mix(in oklab, var(--muted) 50%, transparent); font-weight: 400; }
.cmp-partial { color: #C98A12; cursor: help; }
.cmp-best { color: var(--ink); font-size: 13.5px; font-weight: 500; }
.cmp-legend { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; margin-top: 16px; font-size: 13px; color: var(--muted); }
.cmp-legend span { display: inline-flex; align-items: center; gap: 6px; }
.cmp-legend b { font-size: 15px; }
.cmp-foot { max-width: 760px; margin: 14px auto 0; text-align: center; font-size: 14.5px; color: var(--muted); }

/* ---------- Pros / cons ---------- */
.proscons { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.pc-card { border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 28px; background: var(--card); box-shadow: var(--shadow-sm); }
.pc-card h3 { font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.pc-ic { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.pc-ic-yes { background: color-mix(in oklab, var(--accent) 14%, white); color: var(--accent); }
.pc-ic-no { background: #FBEFD8; color: #C98A12; }
.pc-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pc-card li { font-size: 15px; line-height: 1.5; color: color-mix(in oklab, var(--ink) 82%, var(--muted)); padding-left: 26px; position: relative; }
.pc-pros li::before { content: "\2713"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.pc-cons li::before { content: "\2022"; position: absolute; left: 6px; color: #C98A12; font-weight: 700; }
@media (max-width: 820px) {
  .provider-hero { grid-template-columns: 1fr; }
}

/* ---------- Closing CTA ---------- */
.cta-band { padding: 40px 0 96px; }
.cta-card {
  background: var(--accent); color: #fff; border-radius: 30px;
  padding: 64px 48px; text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 30px 60px color-mix(in oklab, var(--accent) 30%, transparent);
}
.cta-card h2 { font-size: clamp(30px, 4.4vw, 50px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; text-wrap: balance; }
.cta-card p { font-size: 18px; opacity: 0.92; margin: 16px auto 30px; max-width: 46ch; }
.cta-card .btn-primary { background: #fff; color: var(--accent); box-shadow: 0 10px 30px rgba(0,0,0,0.18); }
.cta-card .btn-primary:hover { box-shadow: 0 16px 38px rgba(0,0,0,0.24); }
.cta-card .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.cta-card .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.cta-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-orb { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.12); }
.cta-orb.a { width: 240px; height: 240px; top: -90px; left: -60px; }
.cta-orb.b { width: 180px; height: 180px; bottom: -80px; right: -40px; }

/* ---------- Footer (Google-style) ---------- */
.footer { border-top: 1px solid var(--hairline); padding: 48px 0 40px; background: var(--soft); }
.foot-follow { display: flex; align-items: center; gap: 22px; }
.foot-follow-label { font-size: 16px; font-weight: 500; color: var(--ink); }
.foot-social { display: flex; gap: 12px; }
.foot-soc { width: 34px; height: 34px; border-radius: 9px; background: var(--ink); color: var(--card); display: grid; place-items: center; transition: transform 0.14s, opacity 0.14s; }
.foot-soc:hover { transform: translateY(-2px); opacity: 0.85; }
.foot-soc svg { width: 17px; height: 17px; }
html[data-theme="dark"] .foot-soc { background: var(--card); color: var(--ink); border: 1px solid var(--hairline); }
.foot-rule { height: 1px; background: var(--hairline); margin: 28px 0; }
.foot-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 24px 28px; }
.foot-col h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 18px; }
.foot-col a { display: block; font-size: 14px; color: var(--muted); margin-bottom: 14px; transition: color 0.12s; width: fit-content; }
.foot-col a:last-child { margin-bottom: 0; }
.foot-col a:hover { color: var(--ink); }
.foot-fine { font-size: 14px; color: var(--muted); max-width: 70ch; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px 28px; margin-top: 28px; flex-wrap: wrap; }
.foot-bottom-left { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.foot-mini { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-mini a { font-size: 14px; color: var(--muted); }
.foot-mini a:hover { color: var(--ink); }
.foot-bottom-right { display: flex; align-items: center; gap: 26px; }
.foot-help { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted); }
.foot-help:hover { color: var(--ink); }
.foot-help-ic { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid currentColor; display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.foot-lang { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.foot-lang:hover { color: var(--ink); }
.foot-caret { font-size: 9px; }
@media (max-width: 600px) {
  .foot-cols { grid-template-columns: repeat(2, 1fr); }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- "Is it right for you" fit columns ---------- */
.fit-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 720px) { .fit-cols { grid-template-columns: 1fr; } }
.fit-card { border: 1px solid var(--hairline); border-radius: 18px; padding: 28px 30px; background: var(--card); }
.fit-h { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 17px; margin-bottom: 18px; color: var(--ink); }
.fit-ic { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; font-size: 14px; flex-shrink: 0; }
.fit-yes .fit-ic { background: var(--accent-soft); color: var(--accent); }
.fit-no .fit-ic { background: var(--soft); color: var(--muted); }
.fit-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.fit-list li { position: relative; padding-left: 20px; color: var(--muted); font-size: 15px; line-height: 1.5; }
.fit-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.45; }

/* ---------- Auth modal ---------- */
.modal-scrim {
  position: fixed; inset: 0; z-index: 100;
  background: color-mix(in oklab, var(--ink) 45%, transparent);
  backdrop-filter: blur(4px);
  display: none; padding: 24px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.modal-scrim.open { display: flex; }
.modal {
  width: 100%; max-width: 420px; margin: auto; background: var(--card);
  border: 1px solid var(--hairline); border-radius: 22px; position: relative;
  padding: 32px 30px 28px; box-shadow: var(--shadow-lg);
  animation: modalIn 0.26s cubic-bezier(0.22,1,0.36,1);
}
@keyframes modalIn { from { transform: translateY(14px) scale(0.97); } to { transform: none; } }
.modal-close { position: absolute; top: 22px; right: 24px; width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: var(--muted); font-size: 20px; }
.modal-close:hover { background: color-mix(in oklab, var(--ink) 8%, transparent); color: var(--ink); }
.modal-brand { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.modal-brand .dot { color: var(--accent); }
.modal h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-top: 18px; }
.modal-sub { font-size: 14.5px; color: var(--muted); margin-top: 6px; }
.reward-banner {
  display: flex; align-items: center; gap: 12px;
  margin-top: 18px; padding: 13px 15px; border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid color-mix(in oklab, var(--accent) 28%, transparent);
}
.reward-coin {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: 18px; font-weight: 700; color: #fff;
  background: color-mix(in oklab, var(--accent) 82%, #D9A514);
  box-shadow: inset 0 0 0 2px color-mix(in oklab, var(--accent) 35%, white), 0 4px 10px color-mix(in oklab, var(--accent) 30%, transparent);
}
.reward-text { display: flex; flex-direction: column; line-height: 1.35; }
.reward-text strong { font-size: 15px; color: var(--accent); }
.reward-text span { font-size: 12.5px; color: var(--muted); margin-top: 1px; }
.google-btn {
  width: 100%; height: 50px; border-radius: 12px; margin-top: 22px;
  border: 1px solid var(--hairline); background: var(--card);
  display: flex; align-items: center; justify-content: center; gap: 11px;
  font-size: 15px; font-weight: 600; color: var(--ink);
  transition: background 0.14s, border-color 0.14s;
}
.google-btn:hover { background: color-mix(in oklab, var(--ink) 4%, transparent); border-color: color-mix(in oklab, var(--ink) 18%, transparent); }
.g-mark { width: 20px; height: 20px; display: grid; place-items: center; }
.divider { display: flex; align-items: center; gap: 14px; margin: 20px 0; color: var(--muted); font-size: 12.5px; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--hairline); }
.field { margin-top: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.field input {
  width: 100%; height: 48px; border-radius: 12px;
  border: 1px solid var(--hairline); background: var(--soft);
  padding: 0 15px; font-size: 15px; font-family: var(--font); color: var(--ink);
  transition: border-color 0.14s, background 0.14s;
}
.field input::placeholder { color: var(--muted); }
.field input:focus { outline: none; border-color: var(--accent); background: var(--card); box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 18%, transparent); }
.modal .btn-primary { margin-top: 22px; height: 50px; }
.modal-foot { text-align: center; font-size: 14px; color: var(--muted); margin-top: 20px; }
.modal-foot button { color: var(--accent); font-weight: 600; }
.modal-foot button:hover { text-decoration: underline; }
.modal-fine { font-size: 12px; color: var(--muted); text-align: center; margin-top: 16px; line-height: 1.5; }
.modal-fine a { color: var(--ink); text-decoration: underline; }
.auth-error { margin-top: 14px; padding: 10px 12px; border-radius: 10px; background: color-mix(in oklab, #D0482E 10%, #fff); border: 1px solid color-mix(in oklab, #D0482E 30%, var(--hairline)); color: #B83A22; font-size: 13px; line-height: 1.45; }
#authVerify .modal-foot button { color: var(--accent); font-weight: 600; }
#authVerify .modal-foot button:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .modal-scrim { padding: 12px; }
  .modal { padding: 24px 20px 22px; border-radius: 18px; }
  .modal h3 { font-size: 22px; margin-top: 14px; }
  .modal-close { top: 16px; right: 16px; }
  .google-btn { margin-top: 18px; }
  .modal .btn-primary { margin-top: 18px; }
}

/* reveal-on-scroll for sections */
.io { opacity: 0; transform: translateY(22px); transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.io.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 34px; }
  .feature.flip .feature-text { order: 0; }
  .steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .wrap { padding-left: 24px; padding-right: 24px; }
  .demo-inner { padding-left: 24px; padding-right: 24px; }
  .nav-login { display: none; }
  .hero { padding-top: 52px; padding-bottom: 24px; }
  .win-body { padding: 16px; }
  .cta-card { padding: 44px 24px; }
  .section { padding-top: 52px; padding-bottom: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; }
  .win { animation: none; }
  .io { opacity: 1; transform: none; }
}

/* ===== Standalone tool pages: WHOIS report + live results ===== */
.whois-loading { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted); padding: 18px 2px; }
.tool-error { margin-top: 12px; color: #b3261e; font-size: 13px; }
.hg-error { padding: 16px 2px; color: var(--muted); font-size: 14px; }
.tool-report { border: 1px solid var(--hairline); border-radius: var(--r-lg); background: var(--card); overflow: hidden; box-shadow: var(--shadow-sm); }
.tr-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 20px 22px; border-bottom: 1px solid var(--hairline); }
.tr-domain { font-family: var(--mono); font-size: 20px; font-weight: 700; letter-spacing: -0.01em; word-break: break-all; }
.tr-sub { font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.tr-badge { font-size: 12px; font-weight: 700; border-radius: 999px; padding: 5px 12px; white-space: nowrap; }
.tr-reg { color: var(--muted); background: color-mix(in oklab, var(--ink) 6%, transparent); }
.tr-avail { color: var(--accent); background: var(--accent-soft); }
.tr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline); border-bottom: 1px solid var(--hairline); }
.tr-stat { background: var(--card); padding: 16px 20px; }
.tr-k { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.tr-v { font-size: 17px; font-weight: 700; margin-top: 4px; letter-spacing: -0.01em; }
.tr-rows { display: flex; flex-direction: column; }
.tr-row { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 14px 22px; border-top: 1px solid var(--hairline); font-size: 14.5px; }
.tr-row:first-child { border-top: none; }
.tr-rk { color: var(--muted); }
.tr-rv { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; min-width: 0; }
.tr-rv code { font-family: var(--mono); font-size: 13px; background: color-mix(in oklab, var(--ink) 5%, transparent); border: 1px solid var(--hairline); border-radius: 7px; padding: 3px 9px; }
.tr-tag { font-family: var(--mono); font-size: 12px; background: color-mix(in oklab, var(--ink) 5%, transparent); border: 1px solid var(--hairline); border-radius: 7px; padding: 3px 9px; }
.tr-ok { color: var(--accent); font-weight: 600; }
.tr-off { color: var(--muted); }
.tr-muted { color: var(--muted); }
.tr-empty { padding: 22px; color: var(--muted); font-size: 14px; }
.badge-taken { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--red); background: color-mix(in oklab, var(--red) 12%, transparent); border-radius: 999px; padding: 4px 10px; }
.badge-taken .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
@media (max-width: 600px) { .tr-grid { grid-template-columns: 1fr 1fr; } .tr-row { grid-template-columns: 1fr; gap: 4px; } }

/* ===== Live tool pages: honest handles (unknown state) + registrar links ===== */
.dot-unknown { background: var(--muted); }
.hp-unknown { color: var(--muted); }
.hp-star { color: var(--muted); margin-left: 2px; font-weight: 700; }
a.offer-buy { display: inline-flex; align-items: center; text-decoration: none; }
a.offer-buy:hover { border-color: var(--ink); }
.hp-platform a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.hp-empty { padding: 18px 2px; color: var(--muted); font-size: 14px; }
