:root {
  --ink: #0f1c18;
  --ink-2: #1b2c26;
  --text: #24332e;
  --muted: #6d7b76;
  --page: #f5f7f4;
  --surface: #ffffff;
  --surface-2: #eef2ee;
  --line: #dce4df;
  --line-dark: rgba(255, 255, 255, 0.13);
  --primary: #b8f43c;
  --primary-dark: #87be1c;
  --danger: #ef785f;
  --shadow-sm: 0 8px 24px rgba(15, 28, 24, 0.07);
  --shadow-lg: 0 28px 80px rgba(15, 28, 24, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --display: "Space Grotesk", sans-serif;
  --body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--page);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
button, input, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
svg { display: block; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--primary);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-140%);
}

.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--primary-dark); outline-offset: 3px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 14px 24px;
  transition: padding 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  padding-block: 8px;
  background: rgba(245, 247, 244, 0.9);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, 100%);
  min-height: 58px;
  margin: 0 auto;
  padding: 0 8px 0 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-logo {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 8px;
}

.brand-logo-small { width: 30px; height: 30px; flex-basis: 30px; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav a { transition: color 0.2s ease; }
.desktop-nav a:hover { color: var(--ink); }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.login-link { color: var(--muted); font-size: 12px; font-weight: 700; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-small { min-height: 40px; padding-inline: 16px; }
.button-dark { color: white; background: var(--ink); }
.button-primary { color: var(--ink); background: var(--primary); box-shadow: 0 8px 20px rgba(135,190,28,.15); }
.button-primary:hover { background: #c5ff4d; box-shadow: 0 12px 28px rgba(135,190,28,.24); }
.button-outline { color: var(--ink); background: var(--surface); border-color: var(--line); }
.menu-toggle, .mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 920px;
  padding: 158px 24px 90px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15,28,24,.1) 1px, transparent 1.2px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.48), transparent 72%);
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 100px;
  left: 50%;
  width: 760px;
  height: 480px;
  background: radial-gradient(circle, rgba(184,244,60,.18), transparent 68%);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0 11px;
  color: #52615b;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.hero-badge span,
.lookup-status i,
.live-pill i,
.sidebar-note i {
  width: 7px;
  height: 7px;
  background: var(--primary-dark);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(135,190,28,.13);
}

.hero h1 {
  margin: 24px 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(54px, 6.8vw, 88px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.hero h1 em { color: var(--primary-dark); font-style: normal; }

.hero-lede {
  max-width: 610px;
  margin: 24px auto 30px;
  color: var(--muted);
  font-size: 15px;
}

.lookup-form {
  position: relative;
  width: min(780px, 100%);
  margin: 0 auto;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.lookup-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
  padding: 0 5px 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lookup-status { display: inline-flex; align-items: center; gap: 7px; color: #54702b; }
.lookup-status i { width: 6px; height: 6px; }

.lookup-controls {
  display: grid;
  grid-template-columns: 170px minmax(220px,1fr) auto;
  gap: 6px;
}

.tool-select-wrap,
.username-field {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  background: var(--surface-2);
  border: 1px solid transparent;
  border-radius: 9px;
}

.tool-select-wrap::after {
  position: absolute;
  right: 14px;
  color: var(--muted);
  content: "⌄";
  pointer-events: none;
}

.tool-select-wrap select,
.username-field input {
  width: 100%;
  height: 52px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 12px;
  font-weight: 700;
}

.tool-select-wrap select { padding: 0 32px 0 13px; appearance: none; }
.username-field:focus-within { border-color: var(--primary-dark); background: var(--surface); }
.username-field > span { margin-left: 14px; color: var(--primary-dark); font-weight: 800; }
.username-field input { padding: 0 12px 0 8px; }
.username-field input::placeholder { color: #94a19c; font-weight: 500; }

.lookup-button { min-height: 54px; white-space: nowrap; }
.lookup-button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.lookup-button.is-loading span { opacity: .5; }
.form-error { position: absolute; top: calc(100% + 7px); left: 12px; margin: 0; color: #b84d39; font-size: 11px; font-weight: 700; }

.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row svg { width: 14px; fill: none; stroke: var(--primary-dark); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.preview-wrap {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 48px));
  margin: 68px auto 0;
}

.signal-scope {
  position: absolute;
  top: -66px;
  right: -82px;
  width: 190px;
  height: 190px;
  opacity: .7;
}

.signal-scope i {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(135,190,28,.35);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.signal-scope i:nth-child(1) { width: 100%; height: 100%; }
.signal-scope i:nth-child(2) { width: 68%; height: 68%; }
.signal-scope i:nth-child(3) { width: 35%; height: 35%; }
.signal-scope b { position: absolute; top: 28px; right: 28px; width: 8px; height: 8px; background: var(--primary-dark); border-radius: 50%; box-shadow: 0 0 18px var(--primary-dark); }

.result-preview {
  position: relative;
  padding: 14px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.preview-head { display: flex; align-items: center; justify-content: space-between; min-height: 58px; padding: 0 8px 10px; border-bottom: 1px solid var(--line); }
.preview-profile { display: flex; align-items: center; gap: 10px; }
.preview-profile p, .toolbar-profile p { display: flex; flex-direction: column; margin: 0; }
.preview-profile strong { color: var(--ink); font-size: 12px; }
.preview-profile span { color: var(--muted); font-size: 9px; }
.avatar { display: grid; place-items: center; flex: 0 0 auto; color: white; background: #56756a; border-radius: 50%; font-size: 8px; font-weight: 800; }
.avatar-main { width: 38px; height: 38px; background: linear-gradient(145deg,#25483c,#82a99b); }
.avatar-sunset { background: linear-gradient(145deg,#9d5038,#e6a176); }
.avatar-ocean { background: linear-gradient(145deg,#315768,#83adbb); }
.avatar-stone { background: linear-gradient(145deg,#515b56,#a7afa9); }
.live-pill { display: inline-flex; align-items: center; gap: 7px; padding: 5px 9px; color: #4f6b27; background: #eff9d8; border-radius: 999px; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }

.preview-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin: 10px 0; }
.preview-stats article { display: grid; grid-template-columns: 1fr auto; align-items: end; min-height: 78px; padding: 13px; background: var(--surface-2); border-radius: 9px; }
.preview-stats span { grid-column: 1/-1; color: var(--muted); font-size: 8px; font-weight: 700; }
.preview-stats strong { color: var(--ink); font-family: var(--display); font-size: 23px; letter-spacing: -.05em; }
.preview-stats small { color: #5d7c2e; font-size: 8px; font-weight: 800; }
.preview-feed { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.preview-feed-head { display: flex; align-items: center; justify-content: space-between; min-height: 40px; padding: 0 13px; background: #fafbf9; border-bottom: 1px solid var(--line); font-size: 9px; }
.preview-feed-head span { color: var(--primary-dark); font-weight: 800; }
.preview-row { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 9px; min-height: 47px; padding: 0 13px; border-bottom: 1px solid var(--line); }
.preview-row:last-child { border-bottom: 0; }
.preview-row .avatar { width: 25px; height: 25px; font-size: 6px; }
.preview-row p { display: flex; flex-direction: column; margin: 0; }
.preview-row strong { color: var(--ink); font-size: 9px; }
.preview-row p span, .preview-row > b { color: var(--muted); font-size: 7px; }

.micro-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 62px;
  padding: 12px 24px;
  color: white;
  background: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.micro-proof i { width: 4px; height: 4px; background: var(--primary); border-radius: 50%; }

.section { padding: 108px max(24px, calc((100vw - 1180px) / 2)); }
.section-title { max-width: 650px; margin: 0 auto 52px; text-align: center; }
.section-title-left { max-width: 650px; margin-left: 0; text-align: left; }
.section-kicker { color: var(--primary-dark); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.section-title h2,
.limits-copy h2,
.faq-heading h2,
.closing-cta h2 { margin: 12px 0 0; color: var(--ink); font-family: var(--display); font-size: clamp(39px,5vw,60px); font-weight: 600; letter-spacing: -.055em; line-height: 1.02; }
.section-title p,
.faq-heading > p { max-width: 560px; margin: 17px auto 0; color: var(--muted); font-size: 13px; }
.section-title-left p { margin-left: 0; }

.tools-section { background: var(--surface); }
.tool-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.tool-card { position: relative; display: flex; flex-direction: column; min-height: 276px; padding: 23px; background: var(--page); border: 1px solid var(--line); border-radius: 14px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.tool-card:hover, .tool-card:focus-visible { transform: translateY(-5px); border-color: #becbbf; box-shadow: var(--shadow-sm); }
.tool-icon { display: grid; place-items: center; width: 42px; height: 42px; color: var(--ink); background: var(--primary); border-radius: 10px; font-family: var(--display); font-size: 17px; }
.tool-number { position: absolute; top: 25px; right: 23px; color: #9ca8a3; font-size: 9px; font-weight: 800; }
.tool-card h3 { margin: 38px 0 9px; color: var(--ink); font-family: var(--display); font-size: 21px; letter-spacing: -.04em; }
.tool-card p { margin: 0; color: var(--muted); font-size: 11px; }
.tool-card button, .tool-card-link { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding: 14px 0 0; color: var(--ink); background: none; border: 0; border-top: 1px solid var(--line); cursor: pointer; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.tool-card:hover .tool-icon { background: var(--ink); color: var(--primary); }

.workbench-section { background: var(--page); }
.workbench { position: relative; display: grid; grid-template-columns: 200px minmax(0,1fr); min-height: 720px; color: var(--text); background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; }
.workbench-sidebar { display: flex; flex-direction: column; padding: 18px 12px; background: var(--ink); }
.workbench-brand { display: flex; align-items: center; gap: 10px; margin: 3px 8px 28px; color: white; font-size: 11px; }
.workbench-sidebar nav { display: grid; gap: 4px; }
.tool-tab { display: flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 10px; color: rgba(255,255,255,.52); background: transparent; border: 0; border-radius: 8px; cursor: pointer; text-align: left; transition: color .18s ease, background .18s ease; }
.tool-tab span { display: grid; place-items: center; width: 23px; height: 23px; border: 1px solid var(--line-dark); border-radius: 6px; font-size: 10px; }
.tool-tab b { font-size: 10px; }
.tool-tab:hover { color: white; }
.tool-tab.is-active { color: var(--ink); background: var(--primary); }
.tool-tab.is-active span { border-color: rgba(15,28,24,.2); }
.sidebar-note { display: flex; align-items: center; gap: 9px; margin-top: auto; padding: 11px; color: rgba(255,255,255,.45); border: 1px solid var(--line-dark); border-radius: 8px; font-size: 8px; }
.sidebar-note i { width: 6px; height: 6px; }
.workbench-main { min-width: 0; }
.workbench-toolbar { display: flex; align-items: center; justify-content: space-between; min-height: 72px; padding: 0 20px; border-bottom: 1px solid var(--line); }
.toolbar-profile { display: flex; align-items: center; gap: 9px; }
.toolbar-profile .avatar { width: 34px; height: 34px; }
.toolbar-profile strong { color: var(--ink); font-size: 10px; }
.toolbar-profile span { color: var(--muted); font-size: 8px; }
.toolbar-actions { display: flex; align-items: center; gap: 7px; }
.demo-label { padding: 5px 8px; color: #5b712f; background: #eff8dc; border-radius: 999px; font-size: 7px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.icon-button { display: grid; place-items: center; width: 38px; height: 38px; background: white; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
.icon-button.is-spinning { animation: spin .65s linear; }
.workbench-content { padding: 30px; background: #f7f9f6; }
.result-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.result-kicker { margin: 0 0 7px; color: var(--primary-dark); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.result-heading h3 { margin: 0; color: var(--ink); font-family: var(--display); font-size: 32px; letter-spacing: -.05em; }
.result-heading div > p:last-child { margin: 6px 0 0; color: var(--muted); font-size: 9px; }
.range-switcher { display: flex; padding: 3px; background: var(--surface-2); border-radius: 8px; }
.range-switcher button { min-width: 40px; height: 29px; color: var(--muted); background: none; border: 0; border-radius: 6px; cursor: pointer; font-size: 8px; font-weight: 800; }
.range-switcher button.is-active { color: white; background: var(--ink); }
.result-metrics { display: grid; grid-template-columns: .75fr .75fr 1.5fr; gap: 9px; margin: 24px 0 9px; }
.result-metrics article { display: flex; flex-direction: column; min-height: 116px; padding: 16px; background: white; border: 1px solid var(--line); border-radius: 10px; }
.result-metrics span { color: var(--muted); font-size: 8px; font-weight: 700; }
.result-metrics strong { margin-top: auto; color: var(--ink); font-family: var(--display); font-size: 30px; letter-spacing: -.06em; }
.result-metrics small { color: var(--muted); font-size: 7px; }
.chart-metric { display: grid !important; grid-template-columns: 1fr auto; align-items: end; }
.chart-metric > div:first-child { display: flex; flex-direction: column; align-self: stretch; }
.chart-metric > div:first-child small { margin-top: auto; }
.chart-metric small b { color: #5c7f27; }
.spark-bars { display: flex; align-items: end; gap: 5px; width: 150px; height: 66px; }
.spark-bars i { flex: 1; min-width: 5px; height: var(--height); background: var(--ink); border-radius: 3px 3px 0 0; opacity: var(--opacity,1); transform-origin: bottom; animation: growBar .5s ease both; }
.spark-bars i:last-child { background: var(--primary); border: 1px solid var(--ink); }
.results-panel { background: white; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.results-toolbar { display: flex; align-items: center; justify-content: space-between; min-height: 68px; padding: 0 16px; border-bottom: 1px solid var(--line); }
.results-toolbar h4 { margin: 0; color: var(--ink); font-size: 10px; }
.results-toolbar div > span { display: block; margin-top: 2px; color: var(--muted); font-size: 7px; }
.result-search { display: flex; align-items: center; gap: 6px; width: 175px; height: 34px; padding: 0 10px; background: var(--surface-2); border: 1px solid transparent; border-radius: 7px; }
.result-search:focus-within { border-color: var(--primary-dark); background: white; }
.result-search svg { width: 13px; fill: none; stroke: var(--muted); stroke-width: 1.5; }
.result-search input { width: 100%; padding: 0; background: transparent; border: 0; outline: 0; font-size: 8px; }
.table-head, .table-row { display: grid; grid-template-columns: minmax(165px,1.3fr) .7fr 1fr 50px; align-items: center; gap: 12px; padding: 0 16px; }
.table-head { min-height: 40px; color: var(--muted); background: #fafbf9; border-bottom: 1px solid var(--line); font-size: 7px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.table-row { min-height: 58px; border-bottom: 1px solid var(--line); font-size: 8px; }
.table-row:last-child { border-bottom: 0; }
.table-row:hover { background: #fbfdf9; }
.table-profile { display: flex; align-items: center; gap: 8px; min-width: 0; }
.table-profile .avatar { width: 27px; height: 27px; font-size: 6px; }
.table-profile p { display: flex; flex-direction: column; min-width: 0; margin: 0; }
.table-profile strong { color: var(--ink); overflow: hidden; text-overflow: ellipsis; }
.table-profile span { color: var(--muted); font-size: 7px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.signal-badge { width: max-content; padding: 4px 7px; color: #4b6926; background: #eaf6d7; border-radius: 999px; font-size: 6px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.signal-badge.signal-away { color: #864536; background: #fde4de; }
.signal-badge.signal-neutral { color: #586460; background: #e9edeb; }
.row-context, .row-time { color: var(--muted); }
.row-time { text-align: right; }
.empty-row { padding: 28px 16px; color: var(--muted); text-align: center; font-size: 9px; }

.loading-layer { position: absolute; inset: 0; z-index: 20; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; background: rgba(15,28,24,.94); backdrop-filter: blur(8px); }
.loading-layer[hidden] { display: none; }
.loading-layer strong { margin-top: 18px; font-family: var(--display); font-size: 20px; }
.loading-layer > span { margin-top: 3px; color: rgba(255,255,255,.5); font-size: 8px; }
.loader-radar { position: relative; display: grid; place-items: center; width: 72px; height: 72px; }
.loader-radar i { position: absolute; border: 1px solid var(--primary); border-radius: 50%; animation: radar 1.25s ease-out infinite; }
.loader-radar i:nth-child(2) { animation-delay: .25s; }
.loader-radar i:nth-child(3) { animation-delay: .5s; }
.toast { position: absolute; right: 18px; bottom: 18px; z-index: 30; max-width: 280px; padding: 11px 14px; color: white; background: var(--ink); border: 1px solid var(--line-dark); border-radius: 8px; box-shadow: var(--shadow-sm); font-size: 8px; font-weight: 700; opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; }
.toast.is-visible { opacity: 1; transform: none; }

.how-section { background: white; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 0; padding: 0; list-style: none; }
.steps-grid li { display: flex; gap: 15px; min-height: 160px; padding: 23px; background: var(--page); border: 1px solid var(--line); border-radius: 13px; }
.steps-grid li > span { display: grid; place-items: center; width: 32px; height: 32px; flex: 0 0 32px; color: var(--ink); background: var(--primary); border-radius: 8px; font-family: var(--display); font-weight: 700; }
.steps-grid h3 { margin: 3px 0 8px; color: var(--ink); font-family: var(--display); font-size: 17px; letter-spacing: -.03em; }
.steps-grid p { margin: 0; color: var(--muted); font-size: 10px; }

.limits-section { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; padding: 100px max(24px,calc((100vw - 1180px)/2)); color: white; background: var(--ink); }
.limits-copy h2 { color: white; font-size: clamp(40px,5vw,62px); }
.limits-copy p { max-width: 470px; margin: 20px 0 0; color: rgba(255,255,255,.55); font-size: 12px; }
.limit-cards { display: grid; gap: 10px; }
.limit-cards article { display: flex; gap: 15px; padding: 22px; background: rgba(255,255,255,.055); border: 1px solid var(--line-dark); border-radius: 12px; }
.limit-cards article > span { display: grid; place-items: center; width: 30px; height: 30px; flex: 0 0 30px; border-radius: 8px; font-size: 18px; font-weight: 800; }
.limit-cards .yes { color: var(--ink); background: var(--primary); }
.limit-cards .no { color: white; background: rgba(239,120,95,.2); }
.limit-cards strong { display: block; margin: 4px 0 6px; font-family: var(--display); font-size: 13px; }
.limit-cards p { margin: 0; color: rgba(255,255,255,.5); font-size: 10px; }

.pricing-section { background: var(--page); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 470px; padding: 27px; background: white; border: 1px solid var(--line); border-radius: 14px; }
.price-card.featured { color: var(--ink); background: #f3fbdc; border-color: #bddf79; box-shadow: 9px 9px 0 #d9f59e; }
.plan-name { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.featured .plan-name { color: #51761b; }
.price-card h3 { margin: 40px 0 0; color: var(--ink); font-family: var(--display); font-size: 55px; letter-spacing: -.06em; line-height: 1; }
.featured h3 { color: var(--ink); }
.price-card h3 small { font-family: var(--body); font-size: 9px; letter-spacing: 0; }
.price-card > p { margin: 10px 0 0; color: var(--muted); font-size: 10px; }
.featured > p { color: var(--muted); }
.price-card ul { display: grid; gap: 10px; margin: 35px 0 26px; padding: 0; list-style: none; }
.price-card li { position: relative; padding-left: 18px; font-size: 10px; }
.price-card li::before { position: absolute; left: 0; color: var(--primary-dark); content: "✓"; font-weight: 800; }
.featured li::before { color: #648f1f; }
.price-card .button { margin-top: auto; }
.popular { position: absolute; top: 20px; right: 20px; padding: 5px 8px; color: var(--ink); background: var(--primary); border-radius: 999px; font-size: 7px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.pricing-note { margin: 25px 0 0; color: var(--muted); font-size: 9px; text-align: center; }

.pricing-page { background: #f7f9f4; }
.pricing-hero { padding-bottom: 82px; background: linear-gradient(180deg, #eff8d9 0%, #fbfcf8 82%); }
.pricing-kicker { display: inline-flex; margin-top: 26px; padding: 7px 10px; color: #49641c; background: rgba(255,255,255,.72); border: 1px solid #dbe8c4; border-radius: 999px; font-size: 8px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.pricing-page-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 80px 0 110px; }
.pricing-intro { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: end; gap: 70px; margin-bottom: 42px; }
.pricing-intro h2, .section-heading-row h2, .plan-fit h2, .pricing-faq h2 { margin: 10px 0 0; color: var(--ink); font-family: var(--display); font-size: clamp(36px, 4.5vw, 58px); letter-spacing: -.055em; line-height: 1.02; }
.pricing-intro > div > p { max-width: 680px; margin: 19px 0 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.pricing-status-card { padding: 23px; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 10px 30px rgba(15,28,24,.05); }
.pricing-status-card > span { color: #688527; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.pricing-status-card strong { display: block; margin-top: 9px; color: var(--ink); font-family: var(--display); font-size: 22px; }
.pricing-status-card p { margin: 8px 0 15px; color: var(--muted); font-size: 10px; line-height: 1.7; }
.pricing-status-card a { color: #54761c; font-size: 9px; font-weight: 800; }
.pricing-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-bottom: 16px; padding: 13px 14px 13px 20px; background: #eaf5cf; border: 1px solid #d7e8b4; border-radius: 13px; }
.pricing-toolbar > div:first-child { display: grid; gap: 2px; }
.pricing-toolbar strong { color: var(--ink); font-size: 11px; }
.pricing-toolbar > div:first-child span { color: #63705e; font-size: 8px; }
.billing-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; background: rgba(255,255,255,.72); border: 1px solid rgba(89,113,46,.13); border-radius: 10px; }
.billing-switch button { min-height: 38px; padding: 0 14px; color: var(--muted); background: transparent; border: 0; border-radius: 7px; cursor: pointer; font: inherit; font-size: 9px; font-weight: 800; }
.billing-switch button span { margin-left: 4px; color: #567d19; font-size: 7px; }
.billing-switch button.is-active { color: var(--ink); background: white; box-shadow: 0 4px 12px rgba(15,28,24,.08); }
.pricing-grid-ledger { gap: 14px; }
.plan-card { min-height: 590px; padding: 0 27px 28px; overflow: hidden; background: #fff; border-color: #d6dfd8; border-radius: 16px; }
.plan-card.is-recommended { background: #f4fbdc; border-color: #b9da77; box-shadow: 0 18px 45px rgba(78,105,31,.12); transform: translateY(-8px); }
.plan-card-studio { background: #f2f7f2; }
.plan-card-top { display: flex; align-items: center; justify-content: space-between; min-height: 68px; border-bottom: 1px solid var(--line); }
.plan-index { color: #a0aca4; font-family: var(--display); font-size: 10px; font-weight: 700; }
.plan-card .plan-name { color: var(--ink); font-size: 10px; }
.plan-rail { display: flex; align-items: center; justify-content: space-between; min-height: 36px; margin: 0 -27px; padding: 0 18px; color: #34500c; background: #d9f39c; border-bottom: 1px solid #bad875; font-size: 7px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.plan-rail b { padding: 4px 7px; color: #3f5d14; background: rgba(255,255,255,.72); border-radius: 999px; }
.plan-card h3 { margin: 28px 0 0; font-size: 58px; }
.plan-period { min-height: 18px; margin: 3px 0 0 !important; color: #778179 !important; font-size: 9px !important; font-weight: 700; }
.plan-summary { min-height: 54px; margin: 18px 0 0 !important; color: var(--muted) !important; font-size: 10px !important; line-height: 1.7; }
.plan-allowance { display: flex; align-items: center; gap: 11px; margin-top: 20px; padding: 14px; background: rgba(241,245,239,.8); border: 1px solid var(--line); border-radius: 10px; }
.is-recommended .plan-allowance { background: rgba(255,255,255,.68); border-color: #d0e4a6; }
.plan-allowance strong { color: var(--ink); font-family: var(--display); font-size: 27px; letter-spacing: -.04em; }
.plan-allowance span { color: var(--muted); font-size: 8px; font-weight: 700; line-height: 1.45; }
.plan-card ul { margin: 24px 0 25px; }
.plan-card li { font-size: 9px; }
.pricing-disclaimer { max-width: 780px; margin: 25px auto 0; color: #7b857f; font-size: 8px; line-height: 1.7; text-align: center; }
.pricing-proof-rail { display: grid; grid-template-columns: repeat(3, 1fr); margin: 72px 0 0; background: white; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.pricing-proof-rail > div { display: flex; align-items: flex-start; gap: 14px; padding: 23px; border-right: 1px solid var(--line); }
.pricing-proof-rail > div:last-child { border-right: 0; }
.pricing-proof-rail > div > span { display: grid; place-items: center; width: 28px; height: 28px; flex: 0 0 28px; color: var(--ink); background: var(--primary); border-radius: 7px; font-family: var(--display); font-size: 9px; font-weight: 800; }
.pricing-proof-rail p { margin: 1px 0 0; color: var(--muted); font-size: 9px; line-height: 1.6; }
.pricing-proof-rail strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: 10px; }
.plan-comparison, .plan-fit, .pricing-faq { margin-top: 100px; }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 30px; }
.section-heading-row > p { max-width: 460px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.comparison-table-wrap { overflow-x: auto; background: white; border: 1px solid var(--line); border-radius: 14px; }
.comparison-table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 10px; }
.comparison-table th, .comparison-table td { padding: 17px 19px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table th:last-child, .comparison-table td:last-child { border-right: 0; }
.comparison-table thead th { color: var(--ink); background: #f4f7f2; font-size: 8px; letter-spacing: .07em; text-transform: uppercase; }
.comparison-table tbody th { width: 28%; color: var(--ink); font-weight: 800; }
.comparison-table td { color: var(--muted); }
.comparison-highlight { background: #f5fbdf !important; }
.plan-fit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-top: 28px; }
.plan-fit-grid article { min-height: 235px; padding: 25px; background: white; border: 1px solid var(--line); border-radius: 14px; }
.plan-fit-grid article:nth-child(2) { background: #f4fbdc; border-color: #cbe49a; }
.plan-fit-grid span { color: #64861f; font-size: 8px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.plan-fit-grid h3 { margin: 44px 0 10px; color: var(--ink); font-family: var(--display); font-size: 25px; letter-spacing: -.04em; }
.plan-fit-grid p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.7; }
.pricing-faq { display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: 80px; }
.pricing-faq > div:first-child > p { margin: 18px 0 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.pricing-faq-list { border-top: 1px solid var(--line); }
.pricing-faq-list details { border-bottom: 1px solid var(--line); }
.pricing-faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 78px; color: var(--ink); cursor: pointer; list-style: none; font-family: var(--display); font-size: 15px; font-weight: 600; }
.pricing-faq-list summary::-webkit-details-marker { display: none; }
.pricing-faq-list summary span { position: relative; width: 22px; height: 22px; flex: 0 0 22px; border: 1px solid #cad5cc; border-radius: 50%; }
.pricing-faq-list summary span::before, .pricing-faq-list summary span::after { position: absolute; top: 50%; left: 50%; width: 8px; height: 1px; background: var(--ink); content: ""; transform: translate(-50%,-50%); }
.pricing-faq-list summary span::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .2s ease; }
.pricing-faq-list details[open] summary span::after { transform: translate(-50%,-50%); }
.pricing-faq-list p { max-width: 650px; margin: -2px 0 25px; color: var(--muted); font-size: 10px; line-height: 1.7; }
.pricing-final-cta { margin-top: 90px; }

.blog-section { background: var(--page); }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.blog-card { display: flex; flex-direction: column; min-height: 465px; padding: 28px; background: white; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.blog-card:hover { border-color: #c9d5ce; box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.blog-card-media { display: block; height: 190px; margin: -28px -28px 24px; background: #eaf0e8; overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.blog-card:hover .blog-card-media img { transform: scale(1.025); }
.article-label { width: max-content; padding: 5px 8px; color: #4f6b27; background: #eff9d8; border-radius: 999px; font-size: 7px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.blog-card h3 { margin: 24px 0 11px; color: var(--ink); font-family: var(--display); font-size: 23px; letter-spacing: -.04em; line-height: 1.15; }
.blog-card h3 a:hover { color: var(--primary-dark); }
.blog-card > p { margin: 0 0 25px; color: var(--muted); font-size: 10px; }
.blog-card > div { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); font-size: 8px; font-weight: 800; }
.blog-card time { color: var(--muted); }
.blog-card > div a { color: var(--primary-dark); }
.blog-more { display: flex; justify-content: center; margin-top: 28px; }

.blog-library-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 460px); align-items: end; gap: 70px; margin-bottom: 38px; }
.blog-library-heading h2 { max-width: 680px; margin: 12px 0 0; color: var(--ink); font-family: var(--display); font-size: clamp(42px, 5.2vw, 64px); font-weight: 600; letter-spacing: -.06em; line-height: 1; }
.blog-library-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 12px; line-height: 1.75; }
.blog-editorial-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 14px; }
.blog-story-card { display: flex; grid-column: span 6; flex-direction: column; min-width: 0; background: white; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.blog-story-card:hover { border-color: #bdcbbf; box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.blog-story-card.is-featured { grid-column: span 8; }
.blog-story-card.is-compact { grid-column: span 4; }
.blog-story-media { position: relative; display: block; aspect-ratio: 16 / 9; background: #eaf0e8; overflow: hidden; }
.blog-story-card.is-featured .blog-story-media { aspect-ratio: 2 / 1; }
.blog-story-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.blog-story-card:hover .blog-story-media img { transform: scale(1.025); }
.blog-story-media > span { position: absolute; top: 15px; left: 15px; padding: 7px 9px; color: var(--ink); background: rgba(240, 251, 217, .94); border: 1px solid rgba(15,28,24,.1); border-radius: 999px; font-size: 7px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; backdrop-filter: blur(7px); }
.blog-story-content { display: flex; flex: 1; flex-direction: column; padding: 27px; }
.blog-story-content h3 { margin: 20px 0 10px; color: var(--ink); font-family: var(--display); font-size: clamp(23px, 2.4vw, 31px); letter-spacing: -.045em; line-height: 1.1; }
.blog-story-card.is-compact .blog-story-content h3 { font-size: 23px; }
.blog-story-content h3 a:hover { color: #547817; }
.blog-story-content > p { margin: 0 0 27px; color: var(--muted); font-size: 10px; line-height: 1.7; }
.blog-story-meta { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 10px 16px; margin-top: auto; padding-top: 18px; color: var(--muted); border-top: 1px solid var(--line); font-size: 8px; font-weight: 800; }
.blog-story-meta span { padding-left: 16px; border-left: 1px solid var(--line); }
.blog-story-meta a { justify-self: end; color: #567d14; }

.content-page { min-height: 100vh; background: var(--page); }
.content-header .nav-shell { background: rgba(255, 255, 255, .98); }
.article-hero { padding: 150px 24px 72px; border-bottom: 1px solid var(--line); background: white; }
.article-hero-inner { width: min(880px, 100%); margin: 0 auto; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; color: var(--muted); font-size: 9px; font-weight: 700; }
.breadcrumbs span { color: #a1aba7; }
.article-hero h1 { max-width: 820px; margin: 22px 0 0; color: var(--ink); font-family: var(--display); font-size: clamp(45px, 6.2vw, 72px); font-weight: 600; letter-spacing: -.065em; line-height: 1; }
.article-dek { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: 16px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 28px; color: var(--muted); font-size: 9px; font-weight: 700; }
.article-meta span { color: var(--ink); }
.article-cover { width: min(1040px, calc(100% - 48px)); margin: 54px auto 0; }
.article-cover img { display: block; width: 100%; height: auto; max-height: 590px; object-fit: cover; background: #eaf0e8; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 18px 55px rgba(15,28,24,.1); }
.article-cover figcaption { max-width: 760px; margin: 11px auto 0; color: var(--muted); font-size: 8px; line-height: 1.6; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 250px; justify-content: center; gap: 70px; padding: 62px 24px 100px; }
.article-body { min-width: 0; color: var(--text); font-size: 15px; line-height: 1.82; }
.article-body > p:first-child { color: var(--ink); font-size: 18px; line-height: 1.65; }
.article-body h2 { margin: 56px 0 16px; color: var(--ink); font-family: var(--display); font-size: 34px; letter-spacing: -.045em; line-height: 1.12; }
.article-body h3 { margin: 34px 0 10px; color: var(--ink); font-family: var(--display); font-size: 22px; letter-spacing: -.03em; }
.article-body p { margin: 0 0 18px; }
.article-body ul, .article-body ol { display: grid; gap: 10px; margin: 18px 0 24px; padding-left: 22px; }
.article-body a { color: #587d18; font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.answer-block { margin: 24px 0 32px; padding: 24px; background: #eff9d8; border-left: 4px solid var(--primary-dark); border-radius: 0 12px 12px 0; }
.answer-block strong { display: block; margin-bottom: 8px; color: var(--ink); font-family: var(--display); font-size: 18px; }
.answer-block p { margin: 0; }
.note-block { margin: 28px 0; padding: 22px; background: white; border: 1px solid var(--line); border-radius: 12px; }
.note-block strong { color: var(--ink); }
.article-table-wrap { margin: 26px 0; overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
.article-table { width: 100%; border-collapse: collapse; background: white; font-size: 12px; }
.article-table th, .article-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-table tr:last-child td { border-bottom: 0; }
.article-table th { color: var(--ink); background: var(--surface-2); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.article-sources { margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--line); }
.article-sources h2 { margin-top: 0; font-size: 24px; }
.article-sidebar { align-self: start; position: sticky; top: 110px; }
.article-sidebar > div { padding: 20px; background: white; border: 1px solid var(--line); border-radius: 12px; }
.article-sidebar strong { color: var(--ink); font-family: var(--display); font-size: 13px; }
.article-sidebar nav { display: grid; gap: 9px; margin-top: 15px; }
.article-sidebar a { color: var(--muted); font-size: 9px; font-weight: 700; }
.article-sidebar a:hover { color: var(--primary-dark); }
.product-hero { background: linear-gradient(180deg, #f4fce4 0%, #fff 78%); }
.product-hero .article-dek { max-width: 760px; }
.product-layout { grid-template-columns: minmax(0, 800px) 250px; }
.product-lookup { margin: 0 0 42px; padding: 24px; color: var(--text); background: var(--ink); border-radius: 16px; box-shadow: var(--shadow-lg); }
.product-lookup > label { display: block; margin-bottom: 10px; color: white; font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.product-lookup-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 9px; }
.product-lookup-field { display: flex; align-items: center; min-width: 0; height: 52px; padding: 0 15px; color: rgba(255,255,255,.56); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 9px; }
.product-lookup-field:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(193,255,93,.12); }
.product-lookup-field input { width: 100%; height: 100%; padding-left: 7px; color: white; background: transparent; border: 0; outline: 0; font: inherit; }
.product-lookup-field input::placeholder { color: rgba(255,255,255,.35); }
.product-lookup-note { margin: 12px 0 0; color: rgba(255,255,255,.55); font-size: 9px; }
.product-lookup-status { min-height: 20px; margin: 13px 0 0; color: var(--primary); font-size: 10px; font-weight: 700; }
.route-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 28px 0 42px; }
.route-card { display: flex; flex-direction: column; min-height: 220px; padding: 23px; color: inherit; text-decoration: none !important; background: white; border: 1px solid var(--line); border-radius: 14px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.route-card:hover { transform: translateY(-3px); border-color: #b5c3b7; box-shadow: var(--shadow-sm); }
.route-card span { color: #658c1e; font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.route-card h2, .route-card h3 { margin: 28px 0 10px; font-family: var(--display); font-size: 24px; letter-spacing: -.04em; }
.route-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.route-card b { margin-top: auto; padding-top: 18px; color: var(--ink); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.page-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 38px 0 0; padding: 24px; background: #eff9d8; border: 1px solid #d9e9b7; border-radius: 14px; }
.page-cta p { flex: 1 1 340px; margin: 0; color: var(--ink); }
.policy-date { display: inline-flex; margin-top: 18px; padding: 6px 9px; color: #526646; background: var(--surface-2); border-radius: 999px; font-size: 9px; font-weight: 800; }
.related-guides { margin-top: 12px; }
.blog-index-hero { padding-bottom: 52px; }
.blog-index-shell { padding-top: 72px; }

.faq-section { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; background: white; }
.faq-heading { align-self: start; position: sticky; top: 110px; }
.faq-heading h2 { font-size: clamp(40px,4.6vw,58px); }
.faq-heading > p { margin-left: 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; color: var(--ink); cursor: pointer; list-style: none; font-family: var(--display); font-size: 15px; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 22px; height: 22px; flex: 0 0 22px; border: 1px solid var(--line); border-radius: 50%; }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 50%; left: 50%; width: 8px; height: 1px; background: var(--ink); content: ""; transform: translate(-50%,-50%); }
.faq-list summary span::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .2s ease; }
.faq-list details[open] summary span::after { transform: translate(-50%,-50%); }
.faq-list details p { max-width: 650px; margin: -3px 0 24px; color: var(--muted); font-size: 10px; }

.closing-cta { position: relative; display: grid; place-items: center; min-height: 480px; padding: 90px 24px; color: white; background: var(--ink); overflow: hidden; text-align: center; }
.closing-cta > div:last-child { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.closing-cta h2 { color: white; }
.closing-cta p { margin: 16px 0 22px; color: rgba(255,255,255,.55); font-size: 11px; }
.cta-scope { position: absolute; top: 50%; left: 50%; width: 440px; height: 440px; transform: translate(-50%,-50%); }
.cta-scope i { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(184,244,60,.12); border-radius: 50%; transform: translate(-50%,-50%); }
.cta-scope i:first-child { width: 100%; height: 100%; }
.cta-scope i:nth-child(2) { width: 62%; height: 62%; }
.cta-scope b { position: absolute; top: 14%; right: 20%; width: 7px; height: 7px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 22px var(--primary); }

.site-footer { padding: 62px max(24px,calc((100vw - 1180px)/2)) 25px; color: white; background: #09120f; }
.footer-main { display: grid; grid-template-columns: 1.8fr repeat(3,1fr); gap: 45px; }
.footer-brand .brand { color: white; }
.footer-brand p { max-width: 280px; margin: 17px 0 0; color: rgba(255,255,255,.4); font-size: 10px; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.footer-main strong { margin-bottom: 5px; font-size: 9px; }
.footer-main a:not(.brand) { width: max-content; color: rgba(255,255,255,.4); font-size: 9px; }
.footer-main a:hover { color: var(--primary); }
.footer-legal { margin: 36px 0 0; padding-top: 20px; color: rgba(255,255,255,.24); border-top: 1px solid rgba(255,255,255,.08); font-size: 7px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.75,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@keyframes growBar { from { transform: scaleY(.1); } to { transform: scaleY(1); } }
@keyframes radar { from { width: 8px; height: 8px; opacity: 1; } to { width: 72px; height: 72px; opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1000px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { min-height: 880px; }
  .tool-grid { grid-template-columns: repeat(2,1fr); }
  .workbench { grid-template-columns: 72px minmax(0,1fr); }
  .workbench-sidebar { align-items: center; }
  .workbench-brand b, .tool-tab b, .sidebar-note span { display: none; }
  .tool-tab { justify-content: center; width: 44px; padding: 0; }
  .sidebar-note { justify-content: center; width: 44px; }
  .limits-section { gap: 45px; }
  .faq-section { gap: 50px; }
  .pricing-intro { grid-template-columns: 1fr; gap: 30px; }
  .pricing-status-card { max-width: 600px; }
  .pricing-faq { grid-template-columns: 1fr; gap: 32px; }
  .blog-library-heading { grid-template-columns: 1fr; gap: 20px; }
  .blog-library-heading > p { max-width: 620px; }
  .blog-story-card.is-featured, .blog-story-card.is-compact { grid-column: span 6; }
  .article-layout { grid-template-columns: minmax(0, 760px); }
  .product-layout { grid-template-columns: minmax(0, 800px); }
  .article-sidebar { display: none; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 76px; }
  .site-header { padding: 8px; }
  .nav-shell { min-height: 54px; padding: 0 6px 0 13px; border-radius: 12px; }
  .site-header.is-scrolled { padding: 6px; }
  .login-link, .header-actions .button { display: none; }
  .menu-toggle { display: grid; gap: 3px; width: 40px; height: 40px; padding: 11px; background: transparent; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; height: 1px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: absolute; top: calc(100% + 7px); left: 0; display: grid; width: 100%; padding: 8px; background: white; border: 1px solid var(--line); border-radius: 11px; box-shadow: var(--shadow-lg); }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { padding: 12px 10px; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 700; }
  .mobile-menu a:last-child { color: var(--ink); background: var(--primary); border: 0; border-radius: 8px; text-align: center; }
  .hero { min-height: auto; padding: 120px 16px 72px; }
  .hero h1 { font-size: clamp(48px,14vw,67px); }
  .hero-lede { font-size: 13px; }
  .lookup-form { padding: 8px; }
  .lookup-controls { grid-template-columns: 1fr; }
  .tool-select-wrap, .username-field { min-height: 50px; }
  .tool-select-wrap select, .username-field input { height: 48px; }
  .lookup-button { width: 100%; min-height: 50px; }
  .trust-row { gap: 9px 15px; }
  .preview-wrap { width: 100%; margin-top: 48px; }
  .signal-scope { right: -72px; top: -55px; transform: scale(.72); }
  .preview-stats { grid-template-columns: 1fr 1fr; }
  .preview-stats article { min-height: 66px; }
  .micro-proof { flex-wrap: wrap; gap: 10px; }
  .section { padding: 82px 16px; }
  .section-title { margin-bottom: 38px; }
  .section-title h2, .limits-copy h2, .faq-heading h2, .closing-cta h2 { font-size: clamp(36px,11vw,50px); }
  .tool-grid { grid-template-columns: 1fr; }
  .tool-card { min-height: 245px; }
  .workbench { display: block; border-radius: 12px; }
  .workbench-sidebar { display: block; padding: 9px; border-bottom: 1px solid var(--line-dark); overflow-x: auto; }
  .workbench-brand, .sidebar-note { display: none; }
  .workbench-sidebar nav { display: flex; min-width: max-content; }
  .tool-tab { justify-content: flex-start; width: auto; padding: 0 11px; }
  .tool-tab b { display: inline; }
  .workbench-toolbar { min-height: 65px; padding: 0 11px; }
  .toolbar-profile p span, .demo-label { display: none; }
  .workbench-content { padding: 22px 10px; }
  .result-heading { align-items: flex-start; flex-direction: column; }
  .result-heading h3 { font-size: 29px; }
  .result-metrics { grid-template-columns: 1fr 1fr; }
  .chart-metric { grid-column: 1/-1; }
  .results-toolbar { align-items: flex-start; flex-direction: column; padding: 13px; }
  .result-search { width: 100%; }
  .table-head { display: none; }
  .table-row { grid-template-columns: 1fr auto; gap: 5px 10px; padding: 10px 12px; }
  .table-profile { grid-row: span 2; }
  .row-context { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid li { min-height: 130px; }
  .limits-section { grid-template-columns: 1fr; gap: 38px; padding: 82px 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 430px; }
  .price-card.featured { box-shadow: 6px 6px 0 var(--primary); }
  .pricing-page-shell { width: calc(100% - 32px); padding: 66px 0 84px; }
  .pricing-toolbar { align-items: stretch; flex-direction: column; }
  .billing-switch { width: 100%; }
  .billing-switch button { flex: 1; }
  .pricing-grid-ledger { gap: 12px; }
  .plan-card.is-recommended { transform: none; }
  .pricing-proof-rail { grid-template-columns: 1fr; margin-top: 48px; }
  .pricing-proof-rail > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .pricing-proof-rail > div:last-child { border-bottom: 0; }
  .plan-comparison, .plan-fit, .pricing-faq { margin-top: 72px; }
  .section-heading-row { display: block; }
  .section-heading-row > p { margin-top: 16px; }
  .plan-fit-grid { grid-template-columns: 1fr; }
  .plan-fit-grid article { min-height: 190px; }
  .pricing-final-cta { margin-top: 70px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { min-height: 450px; }
  .blog-library-heading h2 { font-size: clamp(39px, 11vw, 52px); }
  .blog-story-card, .blog-story-card.is-featured, .blog-story-card.is-compact { grid-column: 1 / -1; }
  .blog-story-card.is-featured .blog-story-media, .blog-story-media { aspect-ratio: 16 / 9; }
  .blog-story-content { padding: 23px; }
  .blog-story-content h3, .blog-story-card.is-compact .blog-story-content h3 { font-size: 25px; }
  .blog-story-meta { grid-template-columns: auto 1fr; }
  .blog-story-meta span { border-left: 0; padding-left: 0; }
  .blog-story-meta a { grid-column: 1 / -1; justify-self: start; }
  .faq-section { grid-template-columns: 1fr; gap: 35px; }
  .faq-heading { position: static; }
  .closing-cta { min-height: 430px; padding-inline: 16px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .article-hero { padding: 118px 16px 54px; }
  .article-hero h1 { font-size: clamp(40px, 12vw, 58px); }
  .article-dek { font-size: 14px; }
  .article-cover { width: calc(100% - 32px); margin-top: 32px; }
  .article-cover img { border-radius: 13px; }
  .article-cover figcaption { padding: 0 3px; }
  .article-layout { padding: 44px 16px 80px; }
  .article-body { font-size: 14px; }
  .article-body > p:first-child { font-size: 16px; }
  .article-body h2 { font-size: 30px; }
  .product-lookup-row, .route-grid { grid-template-columns: 1fr; }
  .product-lookup-row .button { width: 100%; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: 47px; }
  .lookup-label-row > span:first-child { display: none; }
  .lookup-label-row { justify-content: flex-end; }
  .result-preview { padding: 8px; }
  .preview-head { padding-inline: 5px; }
  .preview-stats { gap: 5px; }
  .preview-stats article { padding: 9px; }
  .preview-stats strong { font-size: 19px; }
  .preview-row { padding-inline: 8px; }
  .toolbar-actions .button { display: none; }
  .result-metrics { grid-template-columns: 1fr; }
  .chart-metric { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
