:root {
  --paper: #f4f0e8;
  --paper-deep: #e9e3d8;
  --ink: #171829;
  --ink-soft: #555669;
  --violet: #735cff;
  --violet-soft: #e9e4ff;
  --lime: #d2fa76;
  --mint: #a6edcf;
  --orange: #ffbd7a;
  --white: #fffdf9;
  --line: rgba(23, 24, 41, 0.14);
  --shadow: 0 30px 80px rgba(31, 27, 61, 0.14);
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.ambient--one {
  width: 430px;
  height: 430px;
  right: -120px;
  top: 70px;
  background: radial-gradient(circle, rgba(115, 92, 255, 0.18), rgba(115, 92, 255, 0));
}

.ambient--two {
  width: 390px;
  height: 390px;
  left: -230px;
  top: 440px;
  background: radial-gradient(circle, rgba(166, 237, 207, 0.24), rgba(166, 237, 207, 0));
}

.site-header {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.brand__mark {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(18, 19, 32, 0.18);
}

.brand__name {
  font-size: 15px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.site-header__nav a {
  position: relative;
}

.site-header__nav a::after {
  content: "";
  position: absolute;
  height: 1px;
  inset: auto 50% -5px;
  background: var(--ink);
  transition: inset 180ms ease;
}

.site-header__nav a:hover::after {
  inset-inline: 0;
}

.button {
  min-height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.available-card:focus-visible,
.site-header a:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 4px;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.button__arrow {
  font-size: 20px;
  margin-left: 4px;
}

.button--small {
  min-height: 42px;
  border-radius: 14px;
  padding-inline: 17px;
  font-size: 13px;
}

.button--ink {
  color: white;
  background: var(--ink);
  box-shadow: 0 12px 24px rgba(23, 24, 41, 0.14);
}

.button--ink:hover {
  background: #282a40;
  box-shadow: 0 16px 28px rgba(23, 24, 41, 0.2);
}

.button--primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 18px 36px rgba(118, 149, 45, 0.18);
}

.button--primary:hover {
  background: #dcff8d;
  box-shadow: 0 22px 42px rgba(118, 149, 45, 0.25);
}

.button--large {
  min-height: 62px;
  border-radius: 20px;
  padding-inline: 28px;
}

.hero {
  min-height: 680px;
  padding: 68px 0 92px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 72px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #5542ce;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border: 2px solid var(--violet);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(115, 92, 255, 0.11);
}

.hero h1 {
  max-width: 700px;
  margin: 22px 0 24px;
  font-size: clamp(52px, 5.6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.058em;
  font-weight: 820;
}

.hero h1 span {
  color: var(--violet);
}

.hero__lead {
  max-width: 625px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.hero__note {
  max-width: 170px;
  margin: 0;
  color: #6d6d78;
  font-size: 12px;
  line-height: 1.45;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
  color: #555661;
  font-size: 12px;
  font-weight: 650;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-list span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3e6537;
  background: rgba(166, 237, 207, 0.55);
  font-size: 10px;
}

.hero__visual {
  min-height: 560px;
  display: grid;
  place-items: center;
  position: relative;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(115, 92, 255, 0.21);
  border-radius: 50%;
  pointer-events: none;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.orbit--outer {
  width: 520px;
  height: 520px;
  border-style: dashed;
  animation: rotate 36s linear infinite;
}

.orbit--outer::before {
  top: 42px;
  right: 72px;
  background: var(--violet);
}

.orbit--outer::after {
  left: 12px;
  bottom: 172px;
  background: var(--mint);
}

.orbit--inner {
  width: 420px;
  height: 420px;
  border-color: rgba(23, 24, 41, 0.08);
}

.orbit--inner::before {
  right: -5px;
  top: 204px;
  background: var(--orange);
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.result-preview {
  width: min(100%, 440px);
  position: relative;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 30px;
  padding: 26px;
  background: rgba(255, 253, 249, 0.91);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform: rotate(-1.8deg);
}

.result-preview__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.result-preview__head > div {
  display: grid;
  gap: 5px;
}

.mini-label {
  color: #777581;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-preview__head strong {
  font-size: 15px;
}

.status-dot {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 50%;
  background: #72d6a5;
  box-shadow: 0 0 0 6px rgba(114, 214, 165, 0.16);
}

.profile-code {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 25px 0 22px;
}

.profile-code span {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--ink);
  font-size: 21px;
  font-weight: 830;
}

.profile-code span:nth-child(2) {
  color: var(--ink);
  background: var(--lime);
}

.profile-code span:nth-child(3) {
  color: var(--ink);
  background: var(--violet-soft);
}

.profile-code small {
  margin-left: auto;
  color: #7a7882;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.route-list {
  border-top: 1px solid var(--line);
}

.route-item {
  min-height: 62px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.route-item__number {
  color: #8b8991;
  font-size: 10px;
  font-weight: 700;
}

.route-item div {
  display: grid;
  line-height: 1.25;
}

.route-item strong {
  font-size: 12px;
}

.route-item small {
  margin-top: 3px;
  color: #77757f;
  font-size: 9px;
}

.route-item__score {
  border-radius: 999px;
  padding: 4px 7px;
  color: #4b3bb4;
  background: var(--violet-soft);
  font-size: 9px;
  font-weight: 760;
}

.plan-strip {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  border-radius: 17px;
  padding: 11px 14px;
  background: var(--ink);
  color: white;
}

.plan-strip__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-weight: 800;
}

.plan-strip div {
  display: grid;
  line-height: 1.3;
}

.plan-strip small {
  color: #aaaab3;
  font-size: 9px;
  text-transform: uppercase;
}

.plan-strip strong {
  font-size: 12px;
}

.floating-chip,
.floating-note {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 16px 40px rgba(31, 27, 61, 0.13);
  backdrop-filter: blur(14px);
}

.floating-chip {
  border-radius: 999px;
  padding: 9px 14px 9px 9px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 760;
}

.floating-chip span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: var(--violet);
  font-size: 9px;
}

.floating-chip--top {
  top: 58px;
  right: 3px;
  transform: rotate(4deg);
}

.floating-chip--side {
  left: -15px;
  top: 176px;
  transform: rotate(-5deg);
}

.floating-chip--side span {
  color: var(--ink);
  background: var(--orange);
}

.floating-note {
  right: -6px;
  bottom: 48px;
  max-width: 218px;
  border-radius: 18px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  transform: rotate(3deg);
}

.floating-note__spark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--mint);
}

.floating-note div {
  display: grid;
  line-height: 1.3;
}

.floating-note strong {
  font-size: 11px;
}

.floating-note small {
  color: #73727c;
  font-size: 9px;
}

.signal-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.5);
}

.signal-strip__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  color: #62616c;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-strip i {
  color: var(--violet);
  font-style: normal;
}

.section {
  padding-block: 116px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 460px);
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading h2,
.audience h2,
.final-cta h2,
.placeholder h1 {
  margin: 12px 0 0;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-heading > p,
.audience__intro > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

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

.feature-card {
  min-height: 350px;
  position: relative;
  border: 1px solid rgba(23, 24, 41, 0.1);
  border-radius: 28px;
  padding: 28px;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -70px;
  bottom: -85px;
  border: 1px solid rgba(23, 24, 41, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(255, 255, 255, 0.12), 0 0 0 48px rgba(255, 255, 255, 0.09);
}

.feature-card--violet { background: #e9e3ff; }
.feature-card--green { background: #dff3df; }
.feature-card--orange { background: #f8dfc7; }

.feature-card__index {
  color: rgba(23, 24, 41, 0.55);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.feature-card__icon {
  width: 58px;
  height: 58px;
  margin-top: 34px;
  border: 1px solid rgba(23, 24, 41, 0.12);
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.46);
  font-size: 23px;
  font-weight: 820;
}

.feature-card h3 {
  margin: 24px 0 10px;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.feature-card p {
  max-width: 330px;
  margin: 0;
  color: #555461;
  font-size: 14px;
}

.feature-card__tag {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 24px;
  border: 1px solid rgba(23, 24, 41, 0.12);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 9px;
  font-weight: 740;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section--dark {
  background: var(--ink);
  color: white;
}

.section-heading--light > p {
  color: #aaaab5;
}

.section-heading--light .section-kicker,
.section-kicker--lime {
  color: var(--lime);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-card {
  min-height: 300px;
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px 38px 22px;
}

.step-card:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.step-card__number {
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.step-card__line {
  width: 56px;
  height: 2px;
  margin: 32px 0 54px;
  background: var(--lime);
}

.step-card h3 {
  margin: 0 0 13px;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.step-card p {
  max-width: 300px;
  margin: 0;
  color: #aaaab5;
  font-size: 14px;
  line-height: 1.7;
}

.audience {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) 1.24fr;
  gap: 100px;
}

.audience__intro {
  align-self: start;
  position: sticky;
  top: 40px;
}

.audience__intro > p {
  margin-top: 22px;
}

.audience__list {
  border-top: 1px solid var(--line);
}

.audience__list article {
  min-height: 150px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.audience__list article > span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--violet-soft);
  color: #5945d2;
  font-size: 11px;
  font-weight: 800;
}

.audience__list h3 {
  margin: 2px 0 9px;
  font-size: 23px;
  letter-spacing: -0.025em;
}

.audience__list p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.final-cta {
  min-height: 510px;
  position: relative;
  border-radius: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 90px;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.final-cta::before {
  width: 520px;
  height: 520px;
  left: -240px;
  top: -200px;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.025), 0 0 0 82px rgba(255, 255, 255, 0.02);
}

.final-cta::after {
  width: 370px;
  height: 370px;
  right: -145px;
  bottom: -220px;
  box-shadow: 0 0 0 34px rgba(210, 250, 118, 0.035);
}

.final-cta__glow {
  position: absolute;
  width: 520px;
  height: 320px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(115, 92, 255, 0.22), transparent 68%);
}

.final-cta__content {
  max-width: 720px;
  position: relative;
  z-index: 2;
  padding: 64px 30px;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(42px, 4.6vw, 64px);
}

.final-cta__content > p {
  max-width: 590px;
  margin: 20px auto 30px;
  color: #b6b6c0;
  font-size: 17px;
}

.final-cta__stamp {
  position: absolute;
  right: 34px;
  top: 32px;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: rotate(9deg);
}

.final-cta__stamp span {
  color: var(--lime);
  font-size: 34px;
  font-weight: 860;
  line-height: 0.8;
}

.final-cta__stamp small {
  position: absolute;
  width: 160px;
  bottom: 17px;
  font-size: 7px;
  text-align: center;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer {
  min-height: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #777681;
  font-size: 11px;
}

.site-footer p {
  text-align: center;
}

.site-footer > span {
  text-align: right;
}

/* Main-domain placeholder */
.page--placeholder {
  min-height: 100svh;
  background: var(--ink);
  color: white;
}

.placeholder-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black 10%, transparent 95%);
}

.brand--light {
  color: white;
}

.placeholder-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 7px 12px;
  color: #b8b8c3;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.placeholder-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(210, 250, 118, 0.1);
}

.placeholder {
  min-height: calc(100svh - 180px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: center;
  padding-block: 55px 80px;
}

.placeholder__copy {
  position: relative;
  z-index: 2;
}

.placeholder h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(56px, 6vw, 86px);
  line-height: 0.98;
}

.placeholder h1 span {
  color: var(--lime);
}

.placeholder__copy > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: #b0b0bc;
  font-size: 18px;
  line-height: 1.7;
}

.placeholder__available {
  max-width: 590px;
  margin-top: 48px;
}

.placeholder__available-label {
  display: block;
  margin-bottom: 12px;
  color: #858591;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.available-card {
  min-height: 90px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.available-card:hover {
  border-color: rgba(210, 250, 118, 0.48);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.available-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-weight: 850;
}

.available-card > span:nth-child(2) {
  display: grid;
}

.available-card strong {
  font-size: 15px;
}

.available-card small {
  margin-top: 3px;
  color: #9f9faa;
  font-size: 11px;
}

.available-card__arrow {
  color: var(--lime);
  font-size: 23px;
}

.placeholder__visual {
  min-height: 560px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: center;
}

.workbench-card {
  min-height: 330px;
  position: relative;
  z-index: 2;
  border-radius: 30px;
  padding: 24px;
  overflow: hidden;
}

.workbench-card--active {
  margin-top: -68px;
  background: var(--lime);
  color: var(--ink);
  transform: rotate(-3deg);
}

.workbench-card--muted {
  margin-top: 92px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  color: white;
  transform: rotate(3deg);
  backdrop-filter: blur(12px);
}

.workbench-card__status {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 5px 8px;
  opacity: 0.7;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.workbench-card__number {
  position: absolute;
  right: 22px;
  top: 22px;
  opacity: 0.45;
  font-size: 11px;
  font-weight: 800;
}

.workbench-card__symbol {
  width: 70px;
  height: 70px;
  margin-top: 70px;
  border: 1px solid currentColor;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 29px;
}

.workbench-card h2 {
  margin: 26px 0 7px;
  font-size: 26px;
}

.workbench-card p {
  margin: 0;
  opacity: 0.68;
  font-size: 12px;
}

.placeholder-orbit {
  position: absolute;
  width: 470px;
  height: 470px;
  left: 50%;
  top: 50%;
  border: 1px dashed rgba(210, 250, 118, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  animation: rotate 42s linear infinite;
}

.placeholder-orbit span {
  color: rgba(255, 255, 255, 0.035);
  font-size: 250px;
  font-weight: 900;
}

.placeholder-footer {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #777783;
  font-size: 10px;
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 54px;
  }

  .hero__content {
    max-width: 780px;
  }

  .hero__visual {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .feature-card:last-child {
    grid-column: 1 / -1;
    min-height: 310px;
  }

  .audience {
    gap: 60px;
  }

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

  .placeholder__copy {
    max-width: 820px;
  }

  .placeholder__visual {
    width: min(620px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 32px, 620px);
  }

  .site-header {
    min-height: 74px;
  }

  .ambient--one {
    width: 300px;
    height: 300px;
    right: 0;
  }

  .ambient--two {
    width: 280px;
    height: 280px;
    left: -70px;
  }

  .site-header__nav {
    display: none;
  }

  .site-header .button--small {
    padding-inline: 13px;
  }

  .site-header .button--small span:first-of-type {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 44px 0 72px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__note {
    max-width: none;
    text-align: center;
  }

  .trust-list {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__visual {
    min-height: 510px;
    margin-top: 15px;
    overflow: hidden;
  }

  .orbit--outer {
    width: 360px;
    height: 360px;
  }

  .orbit--inner {
    width: 300px;
    height: 300px;
  }

  .result-preview {
    width: calc(100% - 28px);
    padding: 20px;
  }

  .floating-chip--top {
    top: 12px;
    right: -4px;
  }

  .floating-chip--side {
    left: -3px;
    top: 126px;
  }

  .floating-note {
    right: 0;
    bottom: 7px;
  }

  .signal-strip__inner {
    gap: 10px;
    padding-block: 20px;
    font-size: 10px;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading h2,
  .audience h2 {
    font-size: 40px;
  }

  .section-heading > p {
    font-size: 15px;
  }

  .feature-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card:last-child {
    min-height: 330px;
    grid-column: auto;
  }

  .step-card,
  .step-card:last-child {
    min-height: 245px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-inline: 0;
  }

  .step-card__line {
    margin: 25px 0 36px;
  }

  .audience {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .audience__intro {
    position: static;
  }

  .final-cta {
    width: calc(100% - 20px);
    min-height: 540px;
    border-radius: 32px;
    margin-bottom: 60px;
  }

  .final-cta h2 {
    font-size: 42px;
  }

  .final-cta__glow {
    width: 360px;
  }

  .final-cta__stamp {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    padding-block: 24px;
  }

  .site-footer p {
    display: none;
  }

  .placeholder {
    padding-top: 60px;
  }

  .placeholder h1 {
    font-size: clamp(48px, 14.5vw, 70px);
  }

  .placeholder__copy > p {
    font-size: 16px;
  }

  .placeholder__visual {
    min-height: 590px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .workbench-card {
    width: min(82%, 340px);
    min-height: 270px;
  }

  .workbench-card--active {
    margin: 20px 0 0 3%;
  }

  .workbench-card--muted {
    margin: -40px 2% 0 auto;
  }

  .workbench-card__symbol {
    margin-top: 45px;
  }

  .placeholder-orbit {
    width: 390px;
    height: 390px;
  }

  .placeholder-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .brand__name {
    font-size: 13px;
  }

  .site-header .button--small {
    min-height: 39px;
    font-size: 11px;
  }

  .hero h1,
  .section-heading h2,
  .audience h2,
  .final-cta h2 {
    overflow-wrap: anywhere;
  }

  .profile-code small {
    display: none;
  }

  .route-item__score {
    display: none;
  }

  .route-item {
    grid-template-columns: 26px 1fr;
  }

  .floating-chip--side {
    display: none;
  }

  .available-card {
    grid-template-columns: 46px 1fr;
  }

  .available-card__icon {
    width: 46px;
    height: 46px;
  }

  .available-card__arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
