:root {
  color-scheme: light;
  --black: #0b0b0b;
  --white: #ffffff;
  --soft: #f3f3f3;
  --line: #d8d8d8;
  --muted: #6d6d6d;
  --red: #e53935;
  --red-soft: #fff1f0;
  --radius: 14px;
  --grid: minmax(0, 1fr);
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lead: 22px;
  --title-sm: 20px;
  --title-md: 44px;
  --title-lg: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.35;
}

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

button,
input {
  font: inherit;
}

button,
select {
  appearance: none;
}

button,
a,
.proof-card,
.hero-summary article,
.watch-list article,
.method-list article {
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 40px;
  background: var(--white);
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 66px;
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.topbar nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.topbar nav a {
  position: relative;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 400;
}

.topbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.topbar nav a:hover {
  color: var(--black);
  font-weight: 400;
}

.topbar nav a:hover::after {
  transition-duration: 180ms;
  transform: scaleX(1);
}

.ghost-button,
.preset-row,
.inline-actions button,
.builder-actions button {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 34px;
  text-align: center;
}

.ghost-button:hover,
.preset-row:hover,
.inline-actions button:hover,
.builder-actions button:hover {
  border-color: var(--red);
  color: var(--red);
}

.primary-button:hover {
  filter: brightness(0.96);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, var(--grid));
  gap: 16px;
  min-height: 520px;
  padding: 42px 0 34px;
  border-bottom: 1px solid var(--line);
}

.section-index {
  margin: 0 0 18px;
  color: var(--red);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-title {
  grid-column: 1 / span 6;
  align-self: start;
}

.hero-copy {
  grid-column: 8 / span 5;
  align-self: start;
  padding-top: 48px;
}

.hero-summary {
  grid-column: 1 / span 12;
  align-self: end;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  min-height: 2.95em;
  margin-bottom: 0;
  font-size: clamp(46px, 7vw, var(--title-lg));
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

#hero-rotating-text {
  color: var(--black);
  display: block;
  max-width: 100%;
  font-size: clamp(46px, 7vw, var(--title-lg));
  transition: opacity 360ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

#hero-rotating-text .hero-red,
#hero-rotating-text.is-red {
  color: var(--red);
  font-weight: 400;
}

#hero-rotating-text.is-changing {
  opacity: 0;
  transform: translateY(12px);
}

.hero-copy p {
  margin-bottom: 18px;
  font-size: clamp(18px, 2.1vw, var(--text-lead));
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.independence {
  max-width: 420px;
  padding-top: 14px;
  border-top: 1px solid var(--black);
  color: var(--muted);
  font-size: var(--text-sm) !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--text-sm);
  line-height: 42px;
  text-align: center;
  cursor: pointer;
}

.primary-button {
  border: 1px solid var(--red);
  color: var(--white);
  background: var(--red);
}

.hero-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-summary article {
  position: relative;
  min-height: 112px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 18px 18px 18px 16px;
  border-right: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.watch-list article::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 2px;
  background: var(--red);
  opacity: 0;
  transform: scaleY(0.25);
  transform-origin: center;
  transition: opacity 260ms ease 70ms, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-summary article + article {
  padding-left: 22px;
}

.hero-summary article:last-child {
  border-right: 0;
  padding-right: 0;
}

.hero-summary article:hover {
  color: var(--black);
}

.hero-summary article::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
  background: var(--red);
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 260ms ease 70ms, transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-summary article:hover::after {
  opacity: 1;
  transform: scaleX(1);
  transition: opacity 160ms ease, transform 220ms ease;
}

.watch-list article:hover::before {
  opacity: 1;
  transform: scaleY(1);
  transition: opacity 160ms ease, transform 200ms ease;
}

.hero-summary article:hover strong {
  color: var(--black);
}

.hero-summary span {
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 400;
  text-transform: uppercase;
}

.hero-summary strong {
  color: var(--black);
  max-width: 310px;
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.25;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, var(--grid));
  gap: 16px;
  padding: 78px 0;
  border-bottom: 1px solid var(--line);
}

.editorial-grid > div:first-child {
  grid-column: 1 / span 5;
}

.method-list {
  grid-column: 7 / span 6;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(34px, 4.4vw, var(--title-md));
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.method-list article {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 20px 16px 20px 14px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.method-list article::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 2px;
  background: var(--red);
  opacity: 0;
  transform: scaleY(0.25);
  transform-origin: center;
  transition: opacity 260ms ease 70ms, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.method-list article:hover {
  border-bottom-color: var(--line);
}

.method-list article:hover::before {
  opacity: 1;
  transform: scaleY(1);
  transition: opacity 160ms ease, transform 200ms ease;
}

.method-list span {
  width: 34px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.method-list article:hover span {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.method-list h3 {
  margin: 0;
  font-size: var(--title-sm);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.method-list p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

.method-list article:hover h3 {
  color: var(--red);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(12, var(--grid));
  gap: 12px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.proof-card {
  position: relative;
  min-height: 190px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.proof-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
  background: var(--red);
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 260ms ease 70ms, transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.proof-card:hover {
  border-color: var(--line);
  background: var(--white);
}

.proof-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
  transition: opacity 160ms ease, transform 220ms ease;
}

.proof-copy {
  grid-column: 1 / span 6;
  display: grid;
  align-content: start;
  gap: 22px;
  background: var(--soft);
}

.proof-card:not(.proof-copy) {
  grid-column: span 2;
}

.proof-card strong {
  display: block;
  font-size: var(--title-md);
  font-weight: 300;
  letter-spacing: -0.06em;
}

.proof-card span {
  color: inherit;
  font-weight: 700;
}

.proof-card p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.5;
}

.watch-types {
  display: grid;
  grid-template-columns: repeat(12, var(--grid));
  gap: 16px;
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}

.watch-types > div:first-child {
  grid-column: 1 / span 4;
}

.watch-list {
  grid-column: 6 / span 7;
  display: grid;
  gap: 10px;
}

.watch-list article {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(220px, 0.72fr) 1fr;
  gap: 18px;
  align-items: center;
  min-height: 98px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.watch-list article:hover {
  border-color: var(--line);
}

.watch-list span {
  width: fit-content;
  justify-self: center;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 12px;
}

.watch-list article:hover span {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.watch-list article:hover strong {
  font-weight: 400;
}

.watch-list strong {
  font-size: var(--title-sm);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.watch-list p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.45;
}

.dashboard-section {
  padding: 78px 0 28px;
}

.dashboard-head {
  display: grid;
  grid-template-columns: repeat(12, var(--grid));
  gap: 16px;
  margin-bottom: 28px;
}

.dashboard-head .section-index {
  grid-column: 1 / span 12;
}

.dashboard-head h2 {
  grid-column: 1 / span 5;
}

.dashboard-head p:last-child {
  grid-column: 8 / span 5;
  margin: 0;
  color: var(--muted);
  font-size: var(--text-base);
}

.watch-builder,
.result-panel,
.danger-zone {
  position: relative;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.watch-builder {
  padding: 0;
}

.watch-builder::after,
.danger-zone::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
  background: var(--red);
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 260ms ease 70ms, transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.watch-builder:hover,
.danger-zone:hover {
  border-color: var(--line);
  background: var(--white);
}

.watch-builder:hover::after,
.danger-zone:hover::after {
  opacity: 1;
  transform: scaleX(1);
  transition: opacity 160ms ease, transform 220ms ease;
}

.path-step {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 34px 28px;
  border-bottom: 1px solid var(--line);
}

.path-step:last-child {
  border-bottom: 0;
}

.path-step::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 0;
  left: 124px;
  height: 1px;
  background: var(--red);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 260ms ease 70ms, transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.path-step:hover::after {
  opacity: 1;
  transform: scaleX(1);
  transition: opacity 160ms ease, transform 220ms ease;
}

.step-marker {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  transition: color 260ms ease, background 260ms ease, border-color 260ms ease;
}

.path-step:hover .step-marker {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.step-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) 1fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 26px;
}

.step-heading h3 {
  margin: 0;
  font-size: var(--title-sm);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.step-heading p {
  margin: 0;
  color: var(--muted);
}

.compact-form,
#watch-form,
.builder-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.inline-actions,
.builder-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.builder-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.builder-actions .primary-button {
  grid-column: 1 / -1;
}

.preset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.quota-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: center;
  margin: 4px 0 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quota-panel[hidden] {
  display: none;
}

.quota-panel span {
  color: var(--muted);
  font-size: var(--text-sm);
}

.quota-panel strong {
  font-size: var(--text-sm);
  font-weight: 400;
}

.quota-track {
  grid-column: 1 / span 2;
  height: 2px;
  overflow: hidden;
  background: var(--line);
}

.quota-track span {
  display: block;
  width: calc(var(--quota-progress, 0) * 100%);
  height: 100%;
  background: var(--red);
  transition: width 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.preset-row.active {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-soft);
}

label {
  display: grid;
  gap: 9px;
  font-size: var(--text-sm);
  font-weight: 400;
}

.checkbox {
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  cursor: pointer;
  padding: 14px 0 4px;
}

.checkbox input {
  width: 26px;
  height: 26px;
  padding: 0;
  accent-color: var(--red);
  cursor: pointer;
}

.checkbox span {
  line-height: 1.35;
}

input {
  width: 100%;
  height: 44px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  font-weight: 300;
  font-size: var(--text-sm);
}

select {
  width: 100%;
  height: 44px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  font-weight: 300;
  font-size: var(--text-sm);
}

select option:disabled {
  color: #aaa;
}

input:disabled {
  color: var(--muted);
  background: var(--soft);
}

button:disabled {
  opacity: 0.68;
  cursor: wait;
}

input:focus,
select:focus {
  border-color: var(--red);
  outline: 3px solid var(--red-soft);
}

.builder-actions button,
.inline-actions button,
.danger-zone button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 44px;
  cursor: pointer;
  text-align: center;
}

.builder-actions button:hover,
.inline-actions button:hover,
.danger-zone button:hover {
  border-color: var(--red);
  color: var(--red);
}

.builder-actions .primary-button,
.inline-actions .primary-button {
  border-color: var(--red) !important;
  color: var(--white) !important;
  background: var(--red) !important;
}

.builder-actions .primary-button:hover,
.inline-actions .primary-button:hover {
  border-color: var(--red) !important;
  color: var(--white) !important;
  background: var(--red) !important;
  filter: brightness(0.96);
}

.primary-button[data-state="loading"] {
  opacity: 0.72;
  cursor: wait;
}

.primary-button[data-state="success"] {
  border-color: #139b54 !important;
  background: #139b54 !important;
  color: var(--white) !important;
}

.primary-button[data-state="success"]:hover {
  border-color: #139b54 !important;
  background: #139b54 !important;
  color: var(--white) !important;
  filter: brightness(0.96);
}

.primary-button[data-state="error"] {
  border-color: #b42318 !important;
  background: #b42318 !important;
  color: var(--white) !important;
}

.compact-form .primary-button,
#watch-form .primary-button {
  width: 100%;
}

.danger {
  border-color: var(--line) !important;
  color: var(--black) !important;
  background: var(--white) !important;
}

.danger:hover {
  border-color: var(--red) !important;
  color: var(--red) !important;
  background: var(--white) !important;
}

.result-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding: 14px 16px;
}

.danger-zone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  color: var(--muted);
}

.danger-zone strong {
  display: block;
  color: var(--black);
  font-weight: 400;
}

.danger-zone p {
  margin: 4px 0 0;
  font-size: var(--text-sm);
}

.danger-zone button {
  max-width: 320px;
}

#status-line {
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--text-sm);
}

.footer span {
  justify-self: start;
}

.footer nav {
  display: flex;
  justify-self: center;
  justify-content: center;
  gap: 14px;
}

.footer a {
  position: relative;
  color: var(--muted);
  font-weight: 400;
}

.footer a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer a:hover {
  color: var(--black);
  font-weight: 400;
}

.footer a:hover::after {
  transition-duration: 180ms;
  transform: scaleX(1);
}

.legal-shell {
  width: min(980px, calc(100% - 40px));
  margin-bottom: 72px;
}

.legal-hero {
  display: grid;
  min-height: 260px;
  margin: 24px 0 34px;
  padding: 22px;
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.88), rgba(11, 11, 11, 0.72)),
    repeating-linear-gradient(90deg, #151515 0 1px, #0b0b0b 1px 84px);
  overflow: hidden;
}

.legal-hero .section-index {
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0;
}

.legal-hero h1 {
  align-self: center;
  justify-self: center;
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
}

.legal-hero p:last-child {
  align-self: end;
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0 0 40px;
  border-top: 1px solid var(--line);
}

.legal-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(180px, 240px) 1fr;
  gap: 18px;
  min-height: 132px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.legal-grid article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 260ms ease 70ms, transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.legal-grid article:hover::after {
  opacity: 1;
  transform: scaleX(1);
  transition: opacity 160ms ease, transform 220ms ease;
}

.legal-grid span {
  width: 36px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.legal-grid article:hover span {
  border-color: var(--red);
  color: var(--red);
  background: var(--white);
}

.legal-grid h2 {
  margin: 2px 0 0;
  font-size: var(--title-sm);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.legal-grid p {
  grid-column: 3;
  max-width: 660px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.55;
}

.legal-grid a {
  position: relative;
  color: var(--black);
  font-weight: 400;
}

.legal-grid a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: var(--red);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 920px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar nav {
    display: none;
  }

  .hero-grid,
  .editorial-grid,
  .dashboard-head,
  .legal-hero {
    grid-template-columns: 1fr;
  }

  .hero-title,
  .hero-copy,
  .hero-summary,
  .editorial-grid > div:first-child,
  .method-list,
  .dashboard-head .section-index,
  .dashboard-head h2,
  .dashboard-head p:last-child,
  .legal-hero .section-index,
  .legal-hero h1,
  .legal-hero p:last-child {
    grid-column: 1;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-summary,
  .proof-grid,
  .watch-types {
    grid-template-columns: 1fr 1fr;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-grid article {
    grid-template-columns: 62px 1fr;
  }

  .legal-grid article p {
    grid-column: 2;
  }

  .hero-summary article:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }

  .hero-summary article:nth-child(3) {
    grid-column: span 2;
    border-top: 1px solid var(--line);
    border-right: 0;
    padding-left: 0;
  }

  .watch-types > div:first-child,
  .watch-list {
    grid-column: span 2;
  }

  .watch-list article {
    grid-template-columns: 130px 1fr;
  }

  .watch-list p {
    grid-column: 2 / span 1;
  }

  .proof-copy {
    grid-column: span 2;
  }

  .proof-card:not(.proof-copy) {
    grid-column: span 1;
  }
}

@media (max-width: 620px) {
  :root {
    --text-sm: 15px;
    --text-base: 16px;
    --text-lead: 19px;
    --title-sm: 22px;
    --title-md: 34px;
    --title-lg: 40px;
  }

  body {
    overflow-x: hidden;
  }

  .page-shell {
    width: min(100% - 24px, 520px);
    margin: 10px auto 28px;
  }

  .topbar,
  .hero-grid,
  .editorial-grid,
  .proof-grid,
  .watch-types,
  .dashboard-section,
  .footer {
    padding-left: 0;
    padding-right: 0;
  }

  .topbar {
    min-height: 58px;
  }

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

  h1 {
    font-size: clamp(34px, 10.5vw, 42px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .hero-grid {
    min-height: auto;
    gap: 34px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .hero-copy p {
    font-size: 19px;
    line-height: 1.25;
  }

  #hero-rotating-text {
    min-height: 122px;
  }

  .hero-summary,
  .proof-grid,
  .watch-types,
  .preset-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .path-step,
  .step-heading,
  .inline-actions,
  .builder-actions,
  .danger-zone {
    grid-template-columns: 1fr;
  }

  .path-step {
    display: block;
    padding: 34px 18px;
  }

  .path-step::after {
    right: 18px;
    left: 18px;
  }

  .step-heading {
    gap: 12px;
    margin: 12px 0 28px;
  }

  .step-heading h3 {
    font-size: 24px;
  }

  .step-heading p {
    font-size: 16px;
    line-height: 1.45;
  }

  .compact-form,
  #watch-form,
  .builder-actions {
    gap: 18px;
  }

  .inline-actions,
  .builder-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .preset-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 28px;
  }

  .preset-row {
    min-height: 38px;
    padding: 0 8px;
    font-size: 14px;
    line-height: 38px;
  }

  .builder-actions .primary-button {
    grid-column: auto;
  }

  input,
  select,
  .builder-actions button,
  .inline-actions button,
  .danger-zone button {
    min-height: 46px;
    font-size: 16px;
    line-height: 1.15;
  }

  label {
    gap: 11px;
    margin-top: 8px;
  }

  .checkbox {
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 16px 0 10px;
  }

  .checkbox input {
    width: 30px;
    height: 30px;
  }

  .result-panel {
    display: grid;
    gap: 6px;
    margin-top: 18px;
    padding: 18px 16px;
  }

  .danger-zone {
    display: grid;
    gap: 18px;
    margin-top: 18px;
    padding: 24px 16px;
  }

  .danger-zone button {
    max-width: none;
  }

  .legal-hero {
    min-height: 220px;
    margin-top: 14px;
    border-radius: 14px;
  }

  .legal-grid article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .legal-grid article p {
    grid-column: 1;
  }

  .hero-summary {
    margin-top: 36px;
  }

  .hero-summary article,
  .hero-summary article + article,
  .hero-summary article:nth-child(2),
  .hero-summary article:nth-child(3) {
    grid-column: 1;
    min-height: 96px;
    padding: 16px 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-summary article:last-child {
    border-bottom: 0;
  }

  .watch-types > div:first-child,
  .watch-list,
  .watch-list p {
    grid-column: 1;
  }

  .watch-list article {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
  }

  .watch-list span {
    justify-self: start;
  }

  .proof-copy,
  .proof-card:not(.proof-copy) {
    grid-column: span 1;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    text-align: center;
  }

  .footer span,
  .footer nav {
    justify-self: center;
  }
}
