:root {
  --bg: #050607;
  --bg-soft: #0a0d0f;
  --panel: rgba(11, 13, 15, 0.82);
  --panel-solid: #0d1012;
  --line: rgba(231, 234, 236, 0.18);
  --line-strong: rgba(255, 255, 255, 0.42);
  --text: #f5f6f6;
  --muted: #b8bdc1;
  --faint: #777f86;
  --silver: #e5e7e8;
  --silver-mid: #aeb4b9;
  --silver-dark: #646b70;
  --success: #dfe5e4;
  --shadow: rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.07), transparent 34rem),
    var(--bg);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image: url("/assets/brand-background-web.png");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  content: "";
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  overflow: hidden;
  min-height: 100vh;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  height: 76px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 6, 7, 0.78);
  box-shadow: 0 22px 70px var(--shadow);
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line), 0 12px 26px rgba(0, 0, 0, 0.32);
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand strong {
  font-size: 0.92rem;
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.header-cta,
.primary-link,
.secondary-link,
.submit-button,
.ghost-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.header-cta {
  min-width: 168px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.9rem;
}

.header-cta:hover,
.primary-link:hover,
.submit-button:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.hero-section {
  position: relative;
  min-height: 820px;
  padding: 132px 24px 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.9) 0%, rgba(5, 6, 7, 0.58) 48%, rgba(5, 6, 7, 0.94) 100%),
    url("/assets/brand-background-web.png") center / cover;
  opacity: 0.96;
}

.hero-bg::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background:
    linear-gradient(180deg, transparent, var(--bg) 82%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent);
  content: "";
}

.light-trail {
  position: absolute;
  left: -10%;
  z-index: -1;
  width: 120%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.84), rgba(153, 161, 168, 0.12), transparent);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.35));
  opacity: 0.78;
  transform-origin: center;
}

.trail-one {
  top: 485px;
  transform: rotate(-9deg);
  animation: trailSweep 7.5s ease-in-out infinite;
}

.trail-two {
  top: 535px;
  opacity: 0.38;
  transform: rotate(-6deg);
  animation: trailSweep 9s ease-in-out infinite reverse;
}

.hero-content {
  display: grid;
  width: min(100%, var(--max));
  grid-template-columns: minmax(0, 1fr) minmax(390px, 500px);
  align-items: center;
  gap: 56px;
  margin: 0 auto;
}

.hero-copy {
  padding-top: 16px;
}

.hero-mark {
  width: 148px;
  height: 148px;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
  filter: grayscale(1) contrast(1.08);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

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

h1 {
  max-width: 660px;
  font-size: 4.5rem;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.64);
}

.hero-subtitle {
  margin-top: 24px;
  font-size: 1.55rem;
  font-weight: 800;
}

.hero-text {
  max-width: 570px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.7;
}

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

.primary-link,
.submit-button {
  min-width: 210px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(161, 167, 171, 0.98)),
    #d9dcde;
  color: #050607;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 16px 40px rgba(0, 0, 0, 0.32);
}

.secondary-link,
.ghost-button {
  min-width: 160px;
  padding: 0 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.secondary-link:hover,
.ghost-button:hover {
  border-color: var(--line-strong);
}

.promise-list {
  display: grid;
  max-width: 560px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.promise-list div {
  display: grid;
  min-height: 122px;
  align-content: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.promise-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  color: var(--silver);
  font-weight: 900;
}

.promise-list p {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.35;
}

.offer-panel {
  position: relative;
  scroll-margin-top: 154px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%),
    var(--panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(24px);
}

.offer-panel::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  opacity: 0;
  content: "";
  pointer-events: none;
}

.offer-panel:hover::before {
  animation: panelShine 1.15s ease;
}

.panel-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.panel-header h2 {
  font-size: 1.8rem;
  line-height: 1.1;
}

.panel-header p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 1.03rem;
}

.progress-ring {
  position: relative;
  display: grid;
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  place-items: center;
}

.progress-ring svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.progress-ring circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 7;
}

.progress-ring .ring-fill {
  stroke: var(--silver);
  stroke-dasharray: 213.6;
  stroke-dashoffset: 142.4;
  transition: stroke-dashoffset 240ms ease;
}

.progress-ring span {
  font-size: 1rem;
  font-weight: 900;
}

.step-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}

.step-track::before {
  position: absolute;
  top: 17px;
  left: 16%;
  width: 68%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.12));
  content: "";
}

.step-dot {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--faint);
  font-size: 0.84rem;
}

.step-dot span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel-solid);
  color: var(--muted);
  font-weight: 900;
}

.step-dot.active {
  color: var(--text);
}

.step-dot.active span {
  border-color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, #f1f3f3, #9ca3a9);
  color: #050607;
}

.seller-form {
  display: grid;
  gap: 22px;
}

.form-step {
  display: none;
  animation: stepIn 240ms ease both;
}

.form-step.active {
  display: grid;
  gap: 18px;
}

label,
legend {
  color: var(--text);
  font-size: 0.91rem;
  font-weight: 800;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

fieldset legend {
  margin-bottom: 10px;
}

.input-wrap {
  position: relative;
}

.input-wrap input {
  padding-right: 46px;
}

.address-field {
  position: relative;
  display: grid;
  gap: 8px;
}

.input-wrap span {
  position: absolute;
  top: 50%;
  right: 16px;
  color: var(--muted);
  transform: translateY(-50%);
  pointer-events: none;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(4, 5, 6, 0.62);
  color: var(--text);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

input,
select {
  height: 50px;
  padding: 0 16px;
}

textarea {
  resize: vertical;
  min-height: 118px;
  padding: 14px 16px;
}

.voice-note {
  display: grid;
  gap: 8px;
  margin-top: -8px;
}

.voice-note-button {
  display: inline-flex;
  min-height: 40px;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 850;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.voice-note-button:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.voice-note-button span {
  color: var(--silver);
  font-size: 0.72rem;
  line-height: 1;
}

.voice-note-button.is-recording {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.voice-note-button.is-recording span {
  color: #ff9f9f;
}

.voice-note-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.voice-note-status {
  min-height: 1.1em;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.35;
}

.voice-note-status:empty {
  display: none;
}

.address-suggestions {
  position: absolute;
  top: 83px;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  max-height: 214px;
  overflow: auto;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(24, 26, 29, 0.98), rgba(6, 7, 8, 0.98)),
    var(--panel-solid);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.42);
}

.address-suggestions[hidden] {
  display: none;
}

.address-suggestions button {
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
  padding: 10px;
  text-align: left;
}

.address-suggestions button:hover,
.address-suggestions button:focus,
.address-suggestions button.active {
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.address-status {
  min-height: 1.1em;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.35;
}

.address-status:empty {
  display: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 255, 255, 0.66);
  background: rgba(12, 14, 16, 0.82);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

::placeholder {
  color: #858b90;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.choice-grid button,
.situation-list button {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.choice-grid small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.choice-grid button:hover,
.situation-list button:hover,
.choice-grid button.selected,
.situation-list button.selected {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
}

.situation-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-grid label,
.form-step[data-step="3"] > label {
  display: grid;
  gap: 8px;
}

.consent-disclosures {
  display: grid;
  gap: 12px;
  padding-top: 2px;
}

.consent-option {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.48;
}

.consent-option input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--silver);
}

.consent-option strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.86rem;
}

.consent-option a,
.privacy-agreement a,
.site-footer a,
.legal-layout a {
  color: var(--silver);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-agreement {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-note {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.form-status {
  min-height: 1.3em;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-status:empty {
  display: none;
}

.form-status[data-type="error"] {
  color: #ffb0b0;
}

.form-controls {
  display: flex;
  gap: 12px;
}

.ghost-button {
  min-width: 108px;
}

.ghost-button[hidden] {
  display: none;
}

.submit-button {
  flex: 1;
  border: 0;
  font-size: 1rem;
}

.success-state {
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: 8px 0 2px;
}

.success-state[hidden] {
  display: none;
}

.success-check {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
  color: var(--success);
  font-size: 1.65rem;
  font-weight: 900;
}

.success-state h2 {
  font-size: 2rem;
}

.success-state p {
  color: var(--muted);
  line-height: 1.65;
}

.process-section,
.benefit-section,
.team-section,
.final-cta {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.process-section {
  position: relative;
  padding: 72px 0 64px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  max-width: 620px;
  gap: 12px;
  margin-bottom: 42px;
}

.section-heading h2,
.benefit-section h2,
.team-copy h2,
.final-cta h2 {
  font-size: 2.2rem;
  line-height: 1.1;
}

.section-heading p,
.benefit-section p,
.team-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.process-line {
  position: absolute;
  top: 206px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-grid article {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.process-grid span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: #060708;
  color: var(--silver);
  font-weight: 900;
}

.process-grid h3 {
  font-size: 1.16rem;
}

.process-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.benefit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1fr);
  gap: 60px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.benefit-section > div:first-child {
  display: grid;
  gap: 16px;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.benefit-list div {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 750;
}

.benefit-list span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: var(--silver);
}

.team-section {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.team-photo-wrap {
  overflow: hidden;
  height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.team-copy {
  display: grid;
  gap: 14px;
}

.trust-grid {
  display: grid;
  gap: 12px;
}

.trust-grid div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 2px 12px;
  align-items: center;
  min-height: 78px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.trust-grid span {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: var(--silver);
}

.trust-grid strong {
  font-size: 1rem;
}

.trust-grid small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07), transparent),
    var(--panel-solid);
}

.final-cta div {
  display: grid;
  gap: 10px;
}

.final-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer {
  display: grid;
  width: min(100% - 48px, var(--max));
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  margin: 0 auto 34px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer strong {
  color: var(--text);
}

.legal-body {
  background: var(--bg);
}

.legal-layout {
  width: min(100% - 40px, 980px);
  margin: 0 auto;
  padding: 132px 0 56px;
}

.legal-card {
  display: grid;
  gap: 22px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.legal-card h1 {
  max-width: none;
  font-size: 2.7rem;
  line-height: 1.05;
}

.legal-card h2 {
  margin-top: 8px;
  font-size: 1.36rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.62;
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.legal-card .effective-date,
.legal-card strong {
  color: var(--text);
}

@keyframes trailSweep {
  0%,
  100% {
    opacity: 0.28;
    translate: -3% 0;
  }

  45% {
    opacity: 0.9;
    translate: 3% -8px;
  }
}

@keyframes panelShine {
  from {
    opacity: 0;
    transform: translateX(-36%);
  }

  45% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translateX(36%);
  }
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-open .site-nav {
    position: absolute;
    top: 84px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 6, 7, 0.96);
  }

  .menu-open .site-nav a {
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 760px;
    font-size: 3.7rem;
  }

  .offer-panel {
    max-width: 620px;
  }

  .benefit-section,
  .team-section {
    grid-template-columns: 1fr;
  }

  .team-section {
    max-width: 760px;
    justify-items: start;
  }

  .trust-grid {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
    height: 66px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 0.78rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .hero-section {
    min-height: auto;
    padding: 104px 16px 48px;
  }

  h1 {
    font-size: 2.72rem;
  }

  .hero-subtitle {
    font-size: 1.22rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .form-controls,
  .final-cta,
  .final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-link,
  .secondary-link,
  .submit-button,
  .ghost-button {
    width: 100%;
  }

  .promise-list,
  .process-grid,
  .benefit-list,
  .trust-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .offer-panel {
    padding: 22px;
  }

  .panel-header h2 {
    font-size: 1.42rem;
  }

  .progress-ring {
    width: 60px;
    height: 60px;
  }

  .choice-grid,
  .situation-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-section,
  .benefit-section,
  .team-section,
  .final-cta,
  .site-footer {
    width: min(100% - 32px, var(--max));
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .benefit-section h2,
  .team-copy h2,
  .final-cta h2 {
    font-size: 1.85rem;
  }

  .process-line {
    display: none;
  }

  .team-photo-wrap {
    width: 100%;
    height: 360px;
  }
}

@media (max-width: 460px) {
  .brand span {
    display: none;
  }

  h1 {
    font-size: 2.28rem;
  }

  .choice-grid,
  .situation-list {
    grid-template-columns: 1fr;
  }

  .panel-header {
    align-items: center;
  }

  .step-dot {
    font-size: 0.72rem;
  }

  .team-photo-wrap {
    height: 300px;
  }

  .legal-layout {
    width: min(100% - 28px, 980px);
    padding-top: 100px;
  }

  .legal-card {
    padding: 24px;
  }

  .legal-card h1 {
    font-size: 2rem;
  }
}
