:root {
  --bg: #08111f;
  --bg-2: #0c1728;
  --surface: #111c2e;
  --surface-2: #172337;
  --surface-3: #1d2a40;
  --ink: #f8fbff;
  --muted: #9aa8bd;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --blue: #1458ff;
  --blue-2: #2f74ff;
  --green: #22c55e;
  --danger: #ef4444;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --panel-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

:root[data-theme="light"] {
  --bg: #ffffff;
  --bg-2: #f6f8fc;
  --surface: #ffffff;
  --surface-2: #f4f7fb;
  --surface-3: #edf2f8;
  --ink: #101827;
  --muted: #607086;
  --line: #e4e9f1;
  --line-strong: #d6deea;
  --shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
  --panel-shadow: 0 22px 70px rgba(15, 23, 42, 0.16);
}

* { box-sizing: border-box; }

html { background: var(--bg); }

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 70% 12%, rgba(20, 88, 255, 0.18), transparent 26rem),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }

button, input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 56px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand, .preview-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand { font-size: 21px; }

.brand-mark {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: var(--bg);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
}

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

.nav a:hover, .nav-button:hover { color: var(--ink); }

.nav-primary, .nav-button {
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
}

.nav-primary {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.nav-button {
  cursor: pointer;
}

.inline-form { margin: 0; }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
}

.theme-toggle-track {
  position: relative;
  width: 36px;
  height: 18px;
}

.theme-toggle-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 88, 255, 0.16);
  transition: transform .18s ease;
}

:root[data-theme="light"] .theme-toggle-thumb { transform: translateX(18px); }

.flash-wrap {
  position: fixed;
  top: 88px;
  left: 50%;
  z-index: 100;
  display: grid;
  gap: 10px;
  width: min(520px, calc(100vw - 32px));
  margin: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.flash {
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: var(--panel-shadow);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(18px);
}

.flash-error { border-color: rgba(239, 68, 68, .45); color: #fecaca; }
.flash-success { border-color: rgba(34, 197, 94, .45); color: #bbf7d0; }
.flash-warning { border-color: rgba(245, 158, 11, .45); color: #fde68a; }
:root[data-theme="light"] .flash-error { color: #991b1b; }
:root[data-theme="light"] .flash-success { color: #166534; }
:root[data-theme="light"] .flash-warning { color: #92400e; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: 72px;
  min-height: calc(100vh - 76px);
  padding: 58px 86px 42px;
}

.hero-copy h1 {
  max-width: 710px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 5.4vw, 78px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: var(--blue);
}

.button-primary:hover { background: #0d46dc; }

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line-strong);
}

.button:disabled {
  opacity: .56;
  cursor: not-allowed;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 620px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-points div, .feature-strip article {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.line-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--blue-2);
  font-size: 0;
}

.line-icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 8px;
}

.line-icon.bolt { color: var(--green); }
.line-icon.bolt::before { clip-path: polygon(42% 0, 78% 0, 58% 40%, 86% 40%, 36% 100%, 46% 56%, 18% 56%); border-radius: 0; background: currentColor; border: 0; }
.line-icon.shield::before { inset: 5px 7px; border-radius: 9px 9px 13px 13px; }
.line-icon.shield::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}
.line-icon.sliders::before {
  inset: 6px 4px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(currentColor, currentColor) 0 2px / 26px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 11px / 26px 2px no-repeat,
    linear-gradient(currentColor, currentColor) 0 20px / 26px 2px no-repeat;
}
.line-icon.sliders::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 11px 9px 0 -2px var(--bg), 11px 9px 0 0 currentColor, -5px 18px 0 -2px var(--bg), -5px 18px 0 0 currentColor;
  transform: translate(2px, -8px);
}
.line-icon.globe::before { border-radius: 50%; }
.line-icon.globe::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 24px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
  border-radius: 50%;
}

.product-preview {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 430px;
  overflow: hidden;
  color: #f8fbff;
  background: #07101b;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.16);
}

.preview-logo {
  margin-bottom: 16px;
  color: #fff;
  font-size: 16px;
}

.preview-logo .brand-mark {
  width: 28px;
  height: 28px;
}

.preview-logo .brand-mark::after { background: #07101b; inset: 7px; }

.preview-nav, .dashboard-nav {
  padding: 11px 12px;
  border-radius: 6px;
  color: #c7d2e2;
  font-size: 13px;
  font-weight: 700;
}

.preview-nav.active, .dashboard-nav.active {
  background: linear-gradient(90deg, rgba(20,88,255,.78), rgba(20,88,255,.28));
  color: #fff;
}

.preview-main {
  padding: 24px;
}

.preview-head, .dashboard-topbar, .admin-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.preview-head h2, .dashboard-topbar h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 6px;
  color: #e8eef8;
  background: rgba(255,255,255,.04);
  font-size: 13px;
  font-weight: 800;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dot-green {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, .12);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.preview-card, .dash-card {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
}

.preview-card span, .card-label {
  display: block;
  margin-bottom: 10px;
  color: #a8b6ca;
  font-size: 13px;
  font-weight: 700;
}

.preview-card strong, .dash-card strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.preview-card small, .dash-card p {
  display: block;
  margin-top: 8px;
  color: #a8b6ca;
  font-size: 13px;
  line-height: 1.45;
}

.chart-card {
  grid-column: 1 / -1;
}

.chart-line {
  height: 118px;
  margin-top: 12px;
  background:
    linear-gradient(180deg, rgba(34,197,94,.2), transparent),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(255,255,255,.06) 29px 30px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 140' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' x2='0' y1='0' y2='1'%3E%3Cstop offset='0' stop-color='%2322c55e' stop-opacity='.35'/%3E%3Cstop offset='1' stop-color='%2322c55e' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0 100 C45 76 70 82 105 62 C150 38 182 80 225 60 C270 39 294 30 337 54 C377 76 408 88 446 62 C492 30 528 44 600 18 L600 140 L0 140Z' fill='url(%23a)'/%3E%3Cpath d='M0 100 C45 76 70 82 105 62 C150 38 182 80 225 60 C270 39 294 30 337 54 C377 76 408 88 446 62 C492 30 528 44 600 18' fill='none' stroke='%2322c55e' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: auto, auto, 100% 100%;
  background-repeat: repeat, repeat, no-repeat;
  border-radius: 8px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 28px 86px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 58%, transparent);
}

.feature-strip h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 16px;
}

.feature-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.quality, .account-preview-section {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 72px;
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
  padding: 82px 0;
}

h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.quality p, .account-preview-section p, .auth-card p, .auth-visual p, .dashboard-topbar p, .admin-head p {
  color: var(--muted);
  line-height: 1.65;
}

.comparison {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.comparison > div {
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
}

.comparison > div:last-child { border-bottom: 0; }
.comparison span, .comparison strong { padding: 0 18px; }
.comparison-head strong { color: var(--blue-2); text-align: center; }
.checkmark { color: var(--green); text-align: center; font-size: 22px; }
.minus { color: var(--muted); text-align: center; font-size: 24px; font-weight: 800; }

.account-preview-section {
  align-items: center;
  border-top: 1px solid var(--line);
}

.auth-visual.compact {
  min-height: 360px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.auth-visual.compact h2,
.auth-visual.compact p {
  position: static;
  max-width: 360px;
  margin: 0;
}

.auth-visual.compact .button {
  width: min(320px, 100%);
  margin-top: 6px;
}

.fake-field {
  width: min(320px, 100%);
  margin-top: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 6px;
  color: #8da1bd;
  background: rgba(255,255,255,.06);
  font-size: 14px;
}

.auth-page {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 460px);
  gap: 0;
  width: min(1180px, calc(100% - 48px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 62px 0;
  align-items: stretch;
}

.auth-visual, .auth-card, .blocked-card {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.auth-visual {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 0 8px 8px 0;
  color: #fff;
  background:
    radial-gradient(circle at 72% 44%, rgba(20,88,255,.3), transparent 16rem),
    #07101b;
}

.auth-visual h2 {
  position: absolute;
  left: 34px;
  bottom: 34px;
  max-width: 360px;
  color: #fff;
  font-size: 34px;
}

.auth-visual p {
  position: absolute;
  left: 34px;
  bottom: 112px;
  max-width: 340px;
}

.map-lines {
  position: absolute;
  inset: 92px 34px 96px;
  opacity: .8;
  background-image: radial-gradient(rgba(64, 115, 190, .55) 1px, transparent 1px);
  background-size: 12px 12px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.map-lines span {
  position: absolute;
  left: 18%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform: rotate(-12deg);
}

.map-lines span:nth-child(1) { top: 34%; }
.map-lines span:nth-child(2) { top: 50%; transform: rotate(9deg); }
.map-lines span:nth-child(3) { top: 64%; transform: rotate(-4deg); }

.auth-card {
  display: grid;
  align-content: center;
  order: -1;
  padding: 42px;
  border-right: 0;
  border-radius: 8px 0 0 8px;
}

.auth-card h1, .blocked-card h1 {
  margin: 0;
  font-size: 36px;
  line-height: 1.1;
}

.form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface-2) 86%, transparent);
}

input:focus {
  border-color: var(--blue-2);
  outline: 3px solid rgba(20, 88, 255, .18);
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.check input {
  width: 16px;
  min-height: 16px;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue-2);
  font-weight: 800;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  width: min(1320px, calc(100% - 48px));
  min-height: calc(100vh - 118px);
  margin: 42px auto 80px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #07101b;
  box-shadow: var(--shadow);
}

.dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px;
  border-right: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.18);
}

.dashboard-logout {
  margin-top: 30vh;
}

.dashboard-logout button {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  color: #c7d2e2;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.dashboard-main {
  padding: 28px;
}

.dashboard-topbar {
  color: #fff;
}

.dashboard-topbar p {
  margin: 8px 0 0;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.dash-card {
  min-height: 132px;
}

.dash-card code {
  display: block;
  color: #dbeafe;
  word-break: break-all;
  line-height: 1.5;
}

.status-value {
  color: var(--green);
  font-size: 24px;
  font-weight: 800;
}

.span-2 { grid-column: span 2; }
.span-4 { grid-column: span 4; }

.pay-card .button {
  width: 100%;
}

.days-control {
  margin-top: 14px;
}

.total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #dbeafe;
}

.total-line strong {
  color: #fff;
  font-size: 28px;
}

.admin-panel {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  color: #fff;
}

.admin-panel h2 {
  font-size: 24px;
}

.price-form {
  display: flex;
  align-items: end;
  gap: 10px;
}

.price-form input {
  width: 150px;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: #e8eef8;
  font-size: 14px;
}

th, td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-align: left;
  vertical-align: top;
}

th {
  color: #8da1bd;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.actions-cell {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 390px;
}

.actions-cell form {
  display: flex;
  gap: 6px;
}

.actions-cell input {
  min-height: 34px;
  max-width: 140px;
  font-size: 13px;
}

.actions-cell button {
  min-height: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  color: #e8eef8;
  background: rgba(255,255,255,.05);
  cursor: pointer;
  font-weight: 700;
}

.actions-cell .danger {
  color: #fecaca;
  border-color: rgba(239,68,68,.35);
}

.blocked-page {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 76px);
  padding: 48px 16px;
}

.blocked-card {
  width: min(440px, 100%);
  padding: 34px;
  border-radius: 8px;
  box-shadow: var(--panel-shadow);
}

.sad-face {
  font-size: 58px;
  font-weight: 800;
  color: var(--blue-2);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 54px 48px 42px;
  }
  .product-preview {
    min-height: 390px;
  }
  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 48px;
  }
  .quality, .account-preview-section {
    grid-template-columns: 1fr;
  }
  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .span-4 { grid-column: span 2; }
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    display: grid;
    gap: 16px;
    padding: 18px 22px;
  }
  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero {
    padding: 44px 22px 34px;
    gap: 34px;
  }
  .hero-copy h1 {
    font-size: 42px;
  }
  .hero-copy p {
    font-size: 17px;
  }
  .hero-points, .feature-strip {
    grid-template-columns: 1fr;
  }
  .product-preview {
    grid-template-columns: 1fr;
  }
  .preview-sidebar {
    display: none;
  }
  .preview-grid {
    grid-template-columns: 1fr;
  }
  .quality, .account-preview-section {
    width: min(100% - 32px, 1280px);
    padding: 58px 0;
    gap: 34px;
  }
  .comparison > div {
    grid-template-columns: 1.2fr .7fr .9fr;
  }
  .auth-page {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 1180px);
  }
  .auth-visual {
    min-height: 300px;
    border-radius: 8px 8px 0 0;
  }
  .auth-card {
    order: 0;
    border-right: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 8px 8px;
  }
  .dashboard-shell {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 1320px);
    margin-top: 24px;
  }
  .dashboard-sidebar {
    grid-template-columns: repeat(4, auto);
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .dashboard-sidebar .preview-logo {
    grid-column: 1 / -1;
  }
  .dashboard-logout {
    margin-top: 0;
  }
  .admin-head, .price-form, .dashboard-topbar {
    display: grid;
  }
}

@media (max-width: 560px) {
  .brand { font-size: 19px; }
  .hero-copy h1 { font-size: 36px; }
  .hero-points { gap: 14px; }
  .feature-strip { padding: 24px 22px; }
  .comparison {
    font-size: 13px;
  }
  .comparison span, .comparison strong {
    padding: 0 10px;
  }
  .auth-card, .auth-visual, .blocked-card {
    padding: 24px;
  }
  .auth-visual h2 {
    left: 24px;
    right: 24px;
    bottom: 24px;
    font-size: 28px;
  }
  .dashboard-main {
    padding: 18px;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .span-2, .span-4 {
    grid-column: span 1;
  }
}
