:root {
  --bg:#f7f8fc;
  --surface:#fff;
  --soft:#f0f3fa;
  --text:#172033;
  --muted:#65708a;
  --border:#dde3ef;
  --primary:#6857f5;
  --strong:#4d39e8;
  --accent:#18b8a6;
  --danger:#d94c65;
  --success:#128a66;
  --shadow:0 18px 55px rgba(31,40,74,.14);
  --radius:18px;
  --container:1180px;
  --header:76px;
  --font:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif
}
[data-theme=dark] {
  --bg:#0d1120;
  --surface:#141a2d;
  --soft:#1b2238;
  --text:#f3f5fb;
  --muted:#aab3ca;
  --border:#29324d;
  --primary:#8d7cff;
  --strong:#a89cff;
  --accent:#30d3c0;
  --shadow:0 18px 55px rgba(0,0,0,.42)
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth
}
body {
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font);
  line-height:1.65;
  -webkit-font-smoothing:antialiased
}
body.menu-open {
  overflow:hidden
}
a {
  color:inherit;
  text-decoration:none
}
img,svg {
  display:block;
  max-width:100%
}
button,input,select,textarea {
  font:inherit
}
button {
  cursor:pointer
}
.skip-link {
  position:fixed;
  top:-100px;
  left:16px;
  z-index:9999;
  background:var(--surface);
  padding:10px 14px;
  border-radius:9px
}
.skip-link:focus {
  top:16px
}
:focus-visible {
  outline:3px solid color-mix(in srgb,var(--primary) 35%,transparent);
  outline-offset:3px
}
.container {
  width:min(calc(100% - 40px),var(--container));
  margin:auto
}
.narrow {
  width:min(calc(100% - 40px),820px);
  margin:auto
}
.section {
  padding:88px 0
}
.section-sm {
  padding:54px 0
}
.section-alt {
  background:var(--surface)
}
h1,h2,h3,h4 {
  margin:0 0 16px;
  line-height:1.14;
  letter-spacing:-.028em
}
h1 {
  font-size:clamp(2.65rem,6vw,5.2rem)
}
h2 {
  font-size:clamp(2rem,4vw,3.45rem)
}
h3 {
  font-size:clamp(1.16rem,2vw,1.42rem)
}
p {
  margin:0 0 18px
}
.lead {
  font-size:clamp(1.05rem,1.6vw,1.24rem);
  color:var(--muted);
  max-width:720px
}
.muted {
  color:var(--muted)
}
.text-center {
  text-align:center
}
.text-center .lead {
  margin-inline:auto
}
.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
  color:var(--strong);
  font-size:.78rem;
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.12em
}
.eyebrow:before {
  content:"";
  width:18px;
  height:2px;
  background:currentColor
}
.grid-2,.grid-3,.grid-4 {
  display:grid;
  gap:24px
}
.grid-2 {
  grid-template-columns:repeat(2,minmax(0,1fr))
}
.grid-3 {
  grid-template-columns:repeat(3,minmax(0,1fr))
}
.grid-4 {
  grid-template-columns:repeat(4,minmax(0,1fr))
}
.cluster {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px
}
.stack {
  display:grid;
  gap:18px
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  padding:11px 18px;
  border:1px solid transparent;
  border-radius:12px;
  font-weight:780;
  transition:.2s
}
.btn:hover {
  transform:translateY(-2px)
}
.btn-primary {
  color:#fff;
  background:linear-gradient(135deg,var(--primary),var(--strong));
  box-shadow:0 12px 26px rgba(104,87,245,.25)
}
.btn-secondary {
  color:var(--text);
  background:var(--surface);
  border-color:var(--border)
}
.btn-ghost {
  background:transparent;
  border-color:var(--border)
}
.btn-sm {
  min-height:38px;
  padding:8px 13px;
  font-size:.9rem
}
.btn-block {
  width:100%
}
.icon-btn {
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:1px solid var(--border);
  border-radius:12px;
  background:var(--surface);
  color:var(--text)
}
.announcement {
  background:#17142b;
  color:#f8f7ff;
  font-size:.87rem
}
.announcement .container {
  min-height:38px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  text-align:center
}
.announcement a {
  color:#beb5ff;
  font-weight:800
}
.site-header {
  height:var(--header);
  position:sticky;
  top:0;
  z-index:1000;
  background:color-mix(in srgb,var(--bg) 90%,transparent);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border)
}
.header-inner {
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px
}
.brand {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:1.18rem;
  font-weight:900;
  letter-spacing:-.04em
}
.brand img {
  width:34px;
  height:34px
}
.brand em {
  font-style:normal;
  color:var(--primary)
}
.nav {
  display:flex;
  align-items:center;
  gap:5px
}
.nav a,.nav-trigger {
  padding:10px 12px;
  border:0;
  border-radius:9px;
  background:transparent;
  color:var(--muted);
  font-weight:680
}
.nav a:hover,.nav-trigger:hover,.nav a[aria-current=page] {
  color:var(--text);
  background:var(--soft)
}
.nav-item {
  position:relative
}
.dropdown {
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  min-width:240px;
  padding:10px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:var(--shadow);
  opacity:0;
  visibility:hidden;
  transform:translateY(-6px);
  transition:.18s
}
.nav-item:hover .dropdown,.nav-item:focus-within .dropdown,.nav-item.open .dropdown {
  opacity:1;
  visibility:visible;
  transform:none
}
.dropdown a {
  display:block
}
.header-actions {
  display:flex;
  align-items:center;
  gap:9px
}
.menu-toggle {
  display:none
}
.hero {
  position:relative;
  overflow:hidden;
  padding:92px 0 76px
}
.hero:before {
  content:"";
  position:absolute;
  inset:-30% auto auto 55%;
  width:650px;
  height:650px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(104,87,245,.23),transparent 66%)
}
.hero-grid {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:60px;
  align-items:center
}
.hero h1 span {
  color:transparent;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  -webkit-background-clip:text;
  background-clip:text
}
.hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px
}
.hero-note {
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:22px;
  color:var(--muted);
  font-size:.91rem
}
.hero-note span:before {
  content:"✓";
  color:var(--success);
  font-weight:900;
  margin-right:7px
}
.hero-visual {
  position:relative;
  min-height:500px
}
.editor-window {
  position:absolute;
  inset:18px 0 0 28px;
  padding:18px;
  border:1px solid var(--border);
  background:var(--surface);
  border-radius:28px;
  box-shadow:var(--shadow);
  transform:rotate(1deg)
}
.window-bar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-bottom:15px;
  border-bottom:1px solid var(--border)
}
.window-dots {
  display:flex;
  gap:6px
}
.window-dots i {
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--border)
}
.editor-layout {
  display:grid;
  grid-template-columns:110px 1fr;
  gap:14px;
  padding-top:16px
}
.mock-sidebar,.mock-content {
  display:grid;
  align-content:start;
  gap:10px
}
.mock-line,.mock-block {
  border-radius:7px;
  background:var(--soft)
}
.mock-line {
  height:11px
}
.mock-block {
  min-height:62px
}
.mock-title {
  width:72%;
  height:24px;
  border-radius:8px;
  background:linear-gradient(90deg,var(--primary),var(--accent));
  opacity:.78
}
.mock-card {
  padding:18px;
  border:1px solid var(--border);
  border-radius:14px;
  background:var(--surface)
}
.score-card {
  position:absolute;
  right:-15px;
  bottom:42px;
  width:208px;
  padding:18px;
  border:1px solid var(--border);
  border-radius:18px;
  background:var(--surface);
  box-shadow:var(--shadow)
}
.score-ring {
  width:70px;
  height:70px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:conic-gradient(var(--accent) 0 84%,var(--soft) 84%)
}
.score-ring:after {
  content:"84";
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--surface);
  font-weight:900
}
.logo-cloud {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px
}
.logo-chip {
  padding:14px;
  text-align:center;
  border:1px solid var(--border);
  border-radius:12px;
  background:var(--surface);
  color:var(--muted);
  font-size:.84rem;
  font-weight:850
}
.stat-strip {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--surface);
  box-shadow:0 8px 24px rgba(27,36,61,.07)
}
.stat {
  padding:25px;
  text-align:center;
  border-right:1px solid var(--border)
}
.stat:last-child {
  border:0
}
.stat strong {
  display:block;
  font-size:1.7rem
}
.card,.form-card,.panel {
  padding:26px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--surface)
}
.card-hover {
  transition:.2s
}
.card-hover:hover {
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(31,40,74,.1);
  border-color:color-mix(in srgb,var(--primary) 35%,var(--border))
}
.icon-box {
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  border-radius:14px;
  background:color-mix(in srgb,var(--primary) 11%,var(--surface));
  color:var(--strong);
  font-weight:900
}
.step {
  position:relative;
  padding-left:66px
}
.step-num {
  position:absolute;
  left:0;
  top:0;
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  font-weight:900;
  background:linear-gradient(135deg,var(--primary),var(--accent))
}
.pill-list {
  display:flex;
  flex-wrap:wrap;
  gap:10px
}
.pill,.badge {
  display:inline-flex;
  width:max-content;
  border-radius:999px;
  font-weight:800
}
.pill {
  padding:9px 13px;
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--muted)
}
.badge {
  padding:5px 10px;
  background:color-mix(in srgb,var(--primary) 13%,var(--surface));
  color:var(--strong);
  font-size:.74rem;
  text-transform:uppercase;
  letter-spacing:.08em
}
.product-shot {
  padding:22px;
  border:1px solid var(--border);
  border-radius:28px;
  background:linear-gradient(145deg,var(--surface),var(--soft));
  box-shadow:var(--shadow)
}
.product-shot-grid {
  display:grid;
  grid-template-columns:170px 1fr;
  min-height:420px;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:18px;
  background:var(--surface)
}
.product-shot-nav {
  padding:18px 12px;
  background:#17142b
}
.product-shot-nav .mock-line {
  margin:10px 0;
  background:rgba(255,255,255,.14)
}
.product-shot-main {
  padding:26px
}
.progress {
  height:9px;
  overflow:hidden;
  border-radius:999px;
  background:var(--soft)
}
.progress span {
  display:block;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,var(--primary),var(--accent))
}
.testimonial-wrap {
  overflow:hidden
}
.testimonial-track {
  display:flex;
  transition:transform .4s
}
.testimonial-slide {
  min-width:100%
}
.quote {
  position:relative;
  padding-top:44px
}
.quote:before {
  content:"“";
  position:absolute;
  top:-12px;
  left:22px;
  color:var(--primary);
  font-size:5rem;
  opacity:.25
}
.avatar {
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border-radius:50%;
  color:#fff;
  font-weight:900;
  background:linear-gradient(135deg,var(--primary),var(--accent))
}
.slider-controls {
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:20px
}
.slider-dot {
  width:10px;
  height:10px;
  padding:0;
  border:0;
  border-radius:50%;
  background:var(--border)
}
.slider-dot.active {
  background:var(--primary)
}
.pricing-toggle {
  display:inline-flex;
  gap:4px;
  padding:4px;
  border:1px solid var(--border);
  border-radius:999px;
  background:var(--soft)
}
.pricing-toggle button {
  padding:9px 15px;
  border:0;
  border-radius:999px;
  background:transparent;
  color:var(--muted);
  font-weight:800
}
.pricing-toggle button.active {
  background:var(--surface);
  color:var(--text);
  box-shadow:0 4px 15px rgba(0,0,0,.08)
}
.price-card {
  display:flex;
  flex-direction:column
}
.price-card.featured {
  transform:translateY(-10px);
  border:2px solid var(--primary);
  box-shadow:var(--shadow)
}
.price {
  margin:18px 0;
  font-size:2.8rem;
  font-weight:900;
  letter-spacing:-.06em
}
.price small {
  font-size:.92rem;
  color:var(--muted);
  font-weight:600;
  letter-spacing:0
}
.check-list {
  display:grid;
  gap:10px;
  list-style:none;
  padding:0;
  margin:18px 0 24px;
  color:var(--muted)
}
.check-list li:before {
  content:"✓";
  margin-right:10px;
  color:var(--success);
  font-weight:900
}
.price-card .btn {
  margin-top:auto
}
.table-wrap {
  overflow-x:auto;
  border-radius:var(--radius)
}
.comparison {
  width:100%;
  border-collapse:collapse;
  min-width:680px;
  background:var(--surface);
  border:1px solid var(--border)
}
.comparison th,.comparison td {
  padding:16px;
  border-bottom:1px solid var(--border);
  text-align:left
}
.comparison th {
  background:var(--soft)
}
.comparison td:not(:first-child),.comparison th:not(:first-child) {
  text-align:center
}
.faq-list {
  display:grid;
  gap:12px
}
.faq-item {
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:14px;
  background:var(--surface)
}
.faq-question {
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:19px 20px;
  border:0;
  background:transparent;
  color:var(--text);
  text-align:left;
  font-weight:800
}
.faq-answer {
  max-height:0;
  overflow:hidden;
  transition:max-height .25s
}
.faq-answer>div {
  padding:0 20px 20px;
  color:var(--muted)
}
.faq-item.open .faq-answer {
  max-height:320px
}
.faq-item.open .faq-question span:last-child {
  transform:rotate(45deg)
}
.cta-panel {
  position:relative;
  overflow:hidden;
  padding:56px;
  border-radius:28px;
  color:#fff;
  background:linear-gradient(135deg,#19152f,#44369b 62%,#197f76);
  box-shadow:var(--shadow)
}
.page-hero {
  padding:78px 0 46px;
  text-align:center
}
.page-hero h1 {
  font-size:clamp(2.5rem,5vw,4.35rem)
}
.breadcrumb {
  display:flex;
  justify-content:center;
  gap:8px;
  margin-bottom:18px;
  color:var(--muted);
  font-size:.9rem
}
.form-card {
  box-shadow:0 8px 24px rgba(27,36,61,.07)
}
.form-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px
}
.form-group {
  display:grid;
  gap:8px
}
.form-group.full {
  grid-column:1/-1
}
label {
  font-weight:750;
  font-size:.92rem
}
input,select,textarea {
  width:100%;
  padding:12px 13px;
  border:1px solid var(--border);
  border-radius:10px;
  background:var(--bg);
  color:var(--text)
}
input:focus,select:focus,textarea:focus {
  outline:0;
  border-color:var(--primary);
  box-shadow:0 0 0 4px color-mix(in srgb,var(--primary) 12%,transparent)
}
textarea {
  min-height:120px;
  resize:vertical
}
.field-hint,.field-error {
  font-size:.8rem
}
.field-hint {
  color:var(--muted)
}
.field-error {
  min-height:1em;
  color:var(--danger)
}
.generator-layout {
  display:grid;
  grid-template-columns:minmax(0,430px) 1fr;
  gap:24px;
  align-items:start
}
.generator-output {
  min-height:710px;
  position:sticky;
  top:calc(var(--header) + 22px)
}
.output-toolbar {
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding-bottom:16px;
  border-bottom:1px solid var(--border)
}
.output-content {
  min-height:530px;
  padding:24px 4px 4px;
  white-space:pre-wrap;
  font-family:var(--font)
}
.output-empty {
  min-height:500px;
  display:grid;
  place-items:center;
  text-align:center;
  color:var(--muted)
}
.output-empty .icon-box {
  margin-inline:auto
}
.loading {
  display:grid;
  gap:12px;
  padding:35px 0
}
.skeleton {
  height:14px;
  border-radius:8px;
  background:linear-gradient(90deg,var(--soft),var(--border),var(--soft));
  background-size:200% 100%;
  animation:shimmer 1.2s infinite
}
@keyframes shimmer {
  to {
    background-position:-200% 0
  }
}
.range-row {
  display:grid;
  grid-template-columns:1fr 44px;
  gap:12px;
  align-items:center
}
.range-row output {
  text-align:center;
  font-weight:800
}
.article {
  font-size:1.06rem
}
.article h2 {
  margin-top:42px;
  font-size:2rem
}
.article h3 {
  margin-top:28px
}
.article blockquote {
  margin:28px 0;
  padding:20px 24px;
  border-left:4px solid var(--primary);
  border-radius:0 12px 12px 0;
  background:var(--surface)
}
.article-meta {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:16px;
  color:var(--muted)
}
.blog-card {
  overflow:hidden;
  padding:0
}
.blog-cover {
  min-height:210px;
  padding:22px;
  display:flex;
  align-items:flex-end;
  color:#fff;
  background:linear-gradient(135deg,#251d62,#6655ed 55%,#1ba99b)
}
.blog-cover.alt {
  background:linear-gradient(135deg,#0f4c5c,#1d7874,#72b01d)
}
.blog-cover.warm {
  background:linear-gradient(135deg,#6d214f,#b33771,#f8a5c2)
}
.blog-card-body {
  padding:24px
}
.author-box {
  display:flex;
  gap:18px;
  padding:24px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--surface)
}
.contact-grid {
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:36px
}
.contact-method {
  display:flex;
  gap:14px;
  margin-bottom:18px
}
.notice {
  padding:14px 16px;
  border:1px solid color-mix(in srgb,var(--accent) 35%,var(--border));
  border-radius:10px;
  background:color-mix(in srgb,var(--accent) 8%,var(--surface));
  color:var(--muted)
}
.auth-shell {
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr
}
.auth-art {
  padding:56px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  color:#fff;
  background:linear-gradient(145deg,#17142b,#4e3acf 65%,#1c9386)
}
.auth-main {
  display:grid;
  place-items:center;
  padding:40px
}
.auth-box {
  width:min(100%,450px)
}
.password-wrap {
  position:relative
}
.password-wrap input {
  padding-right:58px
}
.password-toggle {
  position:absolute;
  right:6px;
  top:6px;
  height:38px;
  border:0;
  background:transparent;
  color:var(--muted)
}
.modal {
  position:fixed;
  inset:0;
  z-index:2000;
  display:none;
  place-items:center;
  padding:22px;
  background:rgba(8,11,23,.68)
}
.modal.open {
  display:grid
}
.modal-dialog {
  width:min(100%,560px);
  max-height:90vh;
  overflow:auto;
  padding:28px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--surface);
  box-shadow:var(--shadow)
}
.modal-head {
  display:flex;
  justify-content:space-between;
  gap:18px
}
.toast-container {
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:3000;
  display:grid;
  gap:10px
}
.toast {
  max-width:340px;
  padding:13px 16px;
  border-radius:10px;
  color:#fff;
  background:#17142b;
  box-shadow:var(--shadow)
}
.cookie-banner {
  position:fixed;
  left:18px;
  bottom:18px;
  z-index:1500;
  width:min(calc(100% - 36px),430px);
  padding:20px;
  border:1px solid var(--border);
  border-radius:14px;
  background:var(--surface);
  box-shadow:var(--shadow)
}
.back-to-top {
  position:fixed;
  right:20px;
  bottom:86px;
  z-index:900;
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border:1px solid var(--border);
  border-radius:50%;
  background:var(--surface);
  color:var(--text);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.2s
}
.back-to-top.show {
  opacity:1;
  visibility:visible;
  transform:none
}
.site-footer {
  padding:68px 0 24px;
  background:#111426;
  color:#c4c9da
}
.footer-grid {
  display:grid;
  grid-template-columns:1.45fr repeat(4,1fr);
  gap:36px
}
.site-footer .brand,.site-footer h3 {
  color:#fff
}
.site-footer h3 {
  font-size:.95rem
}
.footer-links {
  display:grid;
  gap:9px;
  font-size:.91rem
}
.footer-links a:hover {
  color:#fff
}
.footer-bottom {
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding-top:24px;
  margin-top:42px;
  border-top:1px solid rgba(255,255,255,.1);
  font-size:.86rem
}
.socials {
  display:flex;
  gap:9px
}
.socials a {
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.14);
  border-radius:9px
}
.empty-state {
  padding:38px;
  text-align:center;
  color:var(--muted);
  border:1px dashed var(--border);
  border-radius:var(--radius)
}
@media(max-width:980px) {
  .grid-4,.grid-3 {
    grid-template-columns:repeat(2,1fr)
  }
  .hero-grid,.contact-grid,.generator-layout {
    grid-template-columns:1fr
  }
  .generator-output {
    position:static;
    min-height:auto
  }
  .footer-grid {
    grid-template-columns:1.4fr repeat(2,1fr)
  }
  .auth-shell {
    grid-template-columns:1fr
  }
  .auth-art {
    display:none
  }
  .nav {
    position:fixed;
    top:calc(var(--header) + 38px);
    left:0;
    right:0;
    bottom:0;
    display:none;
    align-content:start;
    padding:20px;
    background:var(--bg);
    overflow:auto
  }
  .nav.open {
    display:grid
  }
  .nav a,.nav-trigger {
    width:100%;
    text-align:left;
    padding:14px
  }
  .dropdown {
    position:static;
    display:none;
    min-width:0;
    margin:4px 0 8px;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none
  }
  .nav-item.open .dropdown {
    display:block
  }
  .menu-toggle {
    display:grid
  }
  .login-link {
    display:none
  }
}
@media(max-width:720px) {
  .container,.narrow {
    width:min(calc(100% - 28px),var(--container))
  }
  .section {
    padding:66px 0
  }
  .grid-2,.grid-3,.grid-4,.form-grid {
    grid-template-columns:1fr
  }
  .form-group.full {
    grid-column:auto
  }
  .logo-cloud {
    grid-template-columns:repeat(2,1fr)
  }
  .stat-strip {
    grid-template-columns:repeat(2,1fr)
  }
  .stat:nth-child(2) {
    border-right:0
  }
  .hero {
    padding-top:64px
  }
  .hero-visual {
    min-height:420px
  }
  .editor-window {
    inset:12px 0 0
  }
  .editor-layout {
    grid-template-columns:78px 1fr
  }
  .score-card {
    right:8px;
    bottom:18px
  }
  .product-shot-grid {
    grid-template-columns:80px 1fr;
    min-height:360px
  }
  .cta-panel {
    padding:36px 24px
  }
  .footer-grid {
    grid-template-columns:1fr 1fr
  }
  .footer-brand {
    grid-column:1/-1
  }
  .footer-bottom {
    flex-direction:column
  }
  .auth-main {
    padding:34px 18px
  }
}
@media(max-width:480px) {
  .header-actions .btn-primary {
    display:none
  }
  .footer-grid {
    grid-template-columns:1fr
  }
  .footer-brand {
    grid-column:auto
  }
  .stat-strip {
    grid-template-columns:1fr
  }
  .stat {
    border-right:0;
    border-bottom:1px solid var(--border)
  }
  .hero-visual {
    min-height:365px
  }
  .score-card {
    width:172px
  }
}
@media(prefers-reduced-motion:reduce) {
  *,*:before,*:after {
    scroll-behavior:auto!important;
    animation-duration:.001ms!important;
    animation-iteration-count:1!important;
    transition-duration:.001ms!important
  }
}
/* Article, authentication, legal, and error-page extensions */ .article-layout {
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  gap:52px;
  align-items:start
}
.article-aside {
  position:sticky;
  top:calc(var(--header) + 24px)
}
.article-content {
  font-size:1.06rem
}
.article-content h2 {
  margin-top:46px;
  font-size:clamp(1.7rem,3vw,2.25rem)
}
.article-content h3 {
  margin-top:30px
}
.article-content ul,.legal-content ul {
  padding-left:22px
}
.article-content li,.legal-content li {
  margin-bottom:8px
}
.article-content blockquote {
  margin:30px 0;
  padding:22px 26px;
  border-left:4px solid var(--primary);
  border-radius:0 14px 14px 0;
  background:var(--surface);
  font-size:1.2rem;
  font-weight:650
}
.article-content .author-box {
  margin-top:40px
}
.auth-page {
  min-height:100vh;
  display:grid;
  grid-template-columns:minmax(320px,.9fr) minmax(480px,1.1fr)
}
.auth-side {
  padding:54px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:48px;
  color:#fff;
  background:linear-gradient(145deg,#17142b,#4e3acf 64%,#168f84)
}
.auth-side .brand {
  color:#fff
}
.auth-side .eyebrow,.auth-side .lead,.auth-side .muted {
  color:#e3e2f7
}
.auth-side .card {
  border-color:rgba(255,255,255,.15);
  background:rgba(255,255,255,.09);
  backdrop-filter:blur(12px)
}
.auth-main {
  display:grid;
  place-items:center;
  padding:44px
}
.auth-box {
  width:min(100%,470px)
}
.password-field {
  position:relative
}
.password-field input {
  padding-right:72px
}
.password-field button {
  position:absolute;
  right:6px;
  top:6px;
  height:38px;
  padding:0 12px;
  border:0;
  border-radius:8px;
  background:var(--soft);
  color:var(--muted);
  font-weight:750
}
.checkbox {
  display:flex;
  align-items:flex-start;
  gap:9px;
  color:var(--muted)
}
.checkbox input {
  width:auto;
  margin-top:5px
}
.form-status {
  min-height:1.4em;
  margin-top:10px;
  color:var(--success);
  font-weight:700
}
.legal-content h2 {
  margin-top:42px;
  font-size:1.75rem
}
.legal-content>p,.legal-content>ul {
  color:var(--muted)
}
.not-found {
  min-height:70vh;
  display:grid;
  place-items:center;
  padding:80px 0
}
.error-code {
  font-size:clamp(6rem,20vw,13rem);
  line-height:.8;
  font-weight:950;
  letter-spacing:-.09em;
  color:transparent;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  -webkit-background-clip:text;
  background-clip:text;
  opacity:.2
}
.not-found h1 {
  font-size:clamp(2.4rem,5vw,4.4rem)
}
@media(max-width:900px) {
  .article-layout {
    grid-template-columns:1fr
  }
  .article-aside {
    position:static
  }
  .auth-page {
    grid-template-columns:1fr
  }
  .auth-side {
    display:none
  }
}
@media(max-width:560px) {
  .auth-main {
    padding:30px 18px
  }
  .article-content {
    font-size:1rem
  }
}
[hidden] {
  display:none!important
}
.auth-legal {
  margin-top:28px;
  color:var(--muted);
  font-size:.82rem;
  text-align:center
}
