:root {
  color-scheme: light;
  --blue: #3157f6;
  --blue-dark: #1f35d2;
  --ink: #111827;
  --muted: #667085;
  --line: #e3e8f2;
  --soft: #f5f7fb;
  --panel: #ffffff;
  --green: #20c56b;
  --amber: #e8aa08;
  --red: #ef4444;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 8%, rgba(49, 87, 246, 0.10), transparent 28rem),
    linear-gradient(180deg, #fbfcff 0%, #f3f6fb 100%);
}
a { color: inherit; text-decoration: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 64px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(217, 225, 238, 0.86);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
}

.brand, .mock-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}
.brand-mark {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  border-radius: 7px;
  overflow: hidden;
  transform: skewX(-7deg);
}
.brand-mark span {
  border-radius: 3px;
  background: #111827;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.08);
}
.brand-mark span:first-child { border-radius: 7px 3px 3px 7px; }
.brand-mark span:nth-child(3) { border-radius: 3px 7px 3px 3px; }
.brand-mark span:nth-child(4) { border-radius: 7px 3px 3px 7px; opacity: 0.72; }
.brand-mark span:nth-child(5) { opacity: 0.86; }
.brand-mark span:nth-child(6) { border-radius: 3px 3px 7px 3px; }
.brand-mark.compact { width: 22px; height: 22px; border-radius: 5px; gap: 2px; }
.brand-mark.compact span { border-radius: 2px; }
.brand-mark.compact span:first-child { border-radius: 5px 2px 2px 5px; }
.brand-mark.compact span:nth-child(3) { border-radius: 2px 5px 2px 2px; }
.brand-mark.compact span:nth-child(4) { border-radius: 5px 2px 2px 5px; }
.brand-mark.compact span:nth-child(6) { border-radius: 2px 2px 5px 2px; }
.topbar .brand-mark,
.mock-logo .brand-mark,
.form-head .brand-mark,
footer .brand-mark {
  background: transparent;
}

.topbar nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  color: #475467;
  font-size: 13px;
  font-weight: 700;
}
.topbar nav a:hover { color: var(--blue); }
.topbar-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 13px;
}
.topbar-cta, .button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(49, 87, 246, 0.25);
}
.button.primary:hover, .topbar-cta:hover { background: var(--blue-dark); }
.button.secondary {
  color: #263348;
  background: #fff;
  border-color: #d8e0ee;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 44px;
  align-items: center;
  max-width: 1260px;
  min-height: auto;
  margin: 0 auto;
  padding: 64px 32px 68px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3, p { letter-spacing: 0; }
h1 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.06;
}
h2 { margin: 0; font-size: clamp(28px, 2.8vw, 38px); line-height: 1.08; }
h3 { margin: 0; font-size: 20px; }
.hero-lede {
  max-width: 520px;
  margin: 18px 0 0;
  color: #4e5c70;
  font-size: 17px;
  line-height: 1.5;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 500px;
  gap: 12px;
  margin: 32px 0 0;
}
.hero-stats div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
}
.hero-stats dt { font-weight: 900; font-size: 20px; }
.hero-stats dd { margin: 4px 0 0; color: var(--muted); font-weight: 700; }

.product-shot { min-width: 0; }
.mock-window {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 430px;
  border: 1px solid #dbe4f1;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.14);
}
.mock-sidebar {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 18px 14px;
  border-right: 1px solid #e5ebf4;
  background: #fff;
}
.mock-logo {
  height: 24px;
  margin-bottom: 12px;
  overflow: visible;
  font-size: 13px;
}
.mock-brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  transform: skewX(-7deg);
}
.mock-brand-mark::before,
.mock-brand-mark::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 7px;
  border-radius: 3px;
  background:
    linear-gradient(90deg, #111827 0 4px, transparent 4px 7px, #111827 7px 11px, transparent 11px 14px, #111827 14px 18px);
}
.mock-brand-mark::before { top: 1px; }
.mock-brand-mark::after { bottom: 1px; opacity: 0.84; }
.mock-sidebar span {
  padding: 8px 9px;
  border-radius: 7px;
  color: #5a6678;
  font-size: 11px;
  font-weight: 800;
}
.mock-sidebar .active {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(49, 87, 246, .26);
}
.mock-main { background: #f5f7fb; }
.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid #e4eaf3;
  background: #fff;
}
.mock-header small, .mock-title small { display:block; color:#98a2b3; font-weight:850; font-size:9px; }
.mock-header strong { font-size: 14px; }
.search {
  width: 190px;
  padding: 8px 12px;
  border: 1px solid #d9e1ee;
  border-radius: 8px;
  color: #98a2b3;
  background: #fff;
}
.mock-title { display:flex; align-items:center; gap:11px; padding:21px 22px; }
.mock-title strong { display:block; font-size:18px; }
.tile-icon { width:28px; height:28px; border-radius:7px; background:var(--blue); box-shadow:0 8px 18px rgba(49,87,246,.23); }
.metric-row {
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:0;
  margin:0 22px 16px;
  border:1px solid #dde5f0;
  border-radius:10px;
  background:#fff;
  overflow:hidden;
}
.metric-row span {
  display: grid;
  gap: 2px;
  padding: 13px 12px;
  border-right: 1px solid #edf1f7;
  color: #667085;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}
.metric-row span:last-child { border-right:0; }
.metric-row b { color:#111827; margin-right:0; font-size:16px; line-height:1; }
.table-card { margin:0 22px; border:1px solid #dde5f0; border-radius:10px; background:#fff; overflow:hidden; }
.table-head { display:flex; justify-content:space-between; align-items:center; padding:14px 16px; border-bottom:1px solid #edf1f7; }
.table-head strong { font-size: 14px; }
.table-head em { font-style:normal; color:#c91f37; background:#ffecef; padding:3px 8px; border-radius:999px; font-size:12px; font-weight:900; }
.row { display:grid; grid-template-columns:16px minmax(0, 1fr) auto 12px; align-items:center; gap:9px; padding:13px 16px; border-bottom:1px solid #edf1f7; }
.row:last-child { border-bottom:0; }
.row strong { font-size: 13px; line-height: 1.25; }
.row small { color:#7b8798; font-size: 11px; font-weight:750; }
.row i { width:8px; height:8px; border-right:1.5px solid #98a2b3; border-bottom:1.5px solid #98a2b3; transform:rotate(-45deg); }
.dot { width:9px; height:9px; border-radius:999px; }
.dot.red { background:var(--red); box-shadow:0 0 0 7px #feecef; }
.dot.amber { background:var(--amber); box-shadow:0 0 0 7px #fff7df; }
.dot.green { background:var(--green); box-shadow:0 0 0 7px #e8fbf0; }

.band, .split-section, .security-strip, .signup-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 78px 36px;
}
.section-head { max-width: 760px; margin-bottom: 28px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.feature-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid #dfe7f2;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15,23,42,.05);
}
.feature-grid span { color: var(--blue); font-weight: 900; font-size: 13px; }
.feature-grid h3 { margin-top: 44px; }
.feature-grid p, .split-section p, .signup-copy p {
  color: var(--muted);
  line-height: 1.62;
}

.split-section, .signup-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: start;
}
.domain-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.domain-list span {
  padding: 16px 18px;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #fff;
  font-weight: 850;
  color: #344054;
}

.security-strip {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 40px;
  border-block: 1px solid #dfe7f2;
}
.security-strip ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.security-strip li {
  padding: 15px 18px;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #fff;
  color: #445166;
  font-weight: 750;
}

.signup-section { align-items: center; padding-bottom: 96px; }
.mini-flow { display:grid; gap:10px; margin-top:24px; }
.mini-flow span {
  padding: 13px 14px;
  border-radius: 8px;
  background: rgba(49,87,246,.07);
  color: #23337a;
  font-weight: 850;
}
.signup-card {
  display: grid;
  gap: 13px;
  padding: 22px;
  border: 1px solid #dbe4f1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15,23,42,.12);
}
.form-head { display:flex; align-items:center; gap:12px; margin-bottom:4px; }
.form-head strong, .form-head small { display:block; }
.form-head small { color:var(--muted); font-weight:700; margin-top:2px; }
label { display:grid; gap:7px; color:#344054; font-size:13px; font-weight:800; }
.billing-choice {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}
.billing-choice legend {
  margin: 0 0 2px;
  color: #344054;
  font-size: 13px;
  font-weight: 900;
}
.billing-choice label {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid #dfe6f1;
  border-radius: 10px;
  background: #fbfcff;
  cursor: pointer;
}
.billing-choice label:hover {
  border-color: #b9c7ff;
  background: #f6f8ff;
}
.billing-choice input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.billing-choice span { display: grid; gap: 3px; }
.billing-choice strong { color: #172033; font-size: 13px; }
.billing-choice small { color: #667085; font-size: 12px; line-height: 1.4; }
.form-note { margin: 0; color: #667085; font-size: 12px; line-height: 1.5; }
.legal-agreement {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid #dfe6f1;
  border-radius: 10px;
  background: #fbfcff;
  color: #526071;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.legal-agreement input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.legal-agreement a {
  color: var(--blue);
  font-weight: 850;
}
input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #d5deeb;
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 650;
}
input:focus {
  outline: 3px solid rgba(49, 87, 246, .16);
  border-color: var(--blue);
}
.signup-card p { margin: 2px 0 0; color: var(--muted); font-size: 13px; text-align: center; }
.signup-card p a { color: var(--blue); font-weight: 850; }

footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:30px 36px;
  border-top:1px solid #dfe7f2;
  background:#fff;
  color:#667085;
}
footer p { margin:0; }
footer a { color: var(--blue); font-weight: 850; }
.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 58px 32px 82px;
}
.legal-card {
  padding: 34px;
  border: 1px solid #dfe7f2;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(15,23,42,.08);
}
.legal-card h1 {
  max-width: 720px;
  font-size: clamp(36px, 4vw, 52px);
}
.legal-card h2 {
  margin-top: 34px;
  font-size: 24px;
}
.legal-card p,
.legal-card li {
  color: #475467;
  font-size: 16px;
  line-height: 1.7;
}
.legal-card a {
  color: var(--blue);
  font-weight: 850;
}
.legal-updated {
  margin: 14px 0 24px;
  color: #667085;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .hero { grid-template-columns: 1fr; }
  .product-shot { order: -1; }
  .mock-window { min-height: 500px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .topbar { grid-template-columns: auto auto; padding: 0 18px; }
  .topbar nav { display:none; }
  .hero, .band, .split-section, .security-strip, .signup-section { padding-inline: 18px; }
  .hero { min-height: auto; padding-top: 42px; }
  h1 { font-size: 46px; }
  .hero-stats, .metric-row, .feature-grid, .split-section, .security-strip, .signup-section { grid-template-columns: 1fr; }
  .mock-window { grid-template-columns: 1fr; }
  .mock-sidebar { display:none; }
  .domain-list { grid-template-columns: 1fr; }
  footer { align-items:flex-start; flex-direction:column; }
  .footer-links { flex-wrap: wrap; }
  .legal-page { padding: 34px 18px 58px; }
  .legal-card { padding: 22px; }
}
