:root {
  --purple-950: #16052f;
  --purple-975: #0d021d;
  --purple-900: #250650;
  --purple-800: #37106d;
  --purple-700: #4b168c;
  --green-500: #66bd24;
  --green-400: #82de39;
  --green-600: #4da414;
  --green-700: #34850d;
  --ink: #161421;
  --muted: #5f6270;
  --line: rgba(51, 20, 99, 0.16);
  --soft: #f7f8fb;
  --white: #ffffff;
  --shadow: 0 26px 60px rgba(26, 5, 54, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f2f3f7;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.shell {
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(13,2,29,.98), rgba(43,8,86,.96)),
    rgba(30, 7, 64, 0.94);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: white;
  font-weight: 950;
}

.brand-icon {
  width: 126px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: white;
  color: var(--purple-800);
  box-shadow: inset 0 0 0 1px rgba(102, 189, 36, 0.18), 0 16px 28px rgba(0,0,0,.2);
  position: relative;
  overflow: hidden;
}

.brand-icon::before {
  display: none;
}

.brand-icon svg {
  width: 34px;
  height: 34px;
  position: relative;
  z-index: 1;
}

.brand-icon img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transform: none;
}

.brand-mark {
  position: relative;
  width: 114px;
  height: 72px;
  display: block;
}

.brand-speed-line {
  position: absolute;
  left: 0;
  height: 5px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  transform-origin: right center;
}

.brand-speed-one {
  top: 14px;
  width: 66px;
  background: var(--purple-800);
}

.brand-speed-two {
  top: 29px;
  width: 74px;
  background: var(--green-500);
}

.brand-speed-three {
  top: 45px;
  width: 62px;
  background: var(--purple-800);
  opacity: .9;
}

.brand-speed-one::after,
.brand-speed-two::after,
.brand-speed-three::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -18px;
  width: 28px;
  background: inherit;
  opacity: .55;
}

.brand-lens {
  position: absolute;
  right: 17px;
  top: 3px;
  width: 66px;
  height: 66px;
  border: 6px solid var(--purple-800);
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 16px rgba(54, 13, 104, .16), inset 0 0 0 1px rgba(54, 13, 104, .08);
}

.brand-card {
  position: relative;
  width: 45px;
  height: 29px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--purple-800), var(--purple-950));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
  transform: rotate(-9deg);
  animation: brandCardFloat 2.3s ease-in-out infinite;
  overflow: hidden;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 3px 3px auto 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  transform: skewX(-12deg);
}

.brand-card-chip {
  position: absolute;
  left: 6px;
  top: 11px;
  width: 10px;
  height: 9px;
  border-radius: 3px;
  background: repeating-linear-gradient(90deg, #c6fa8d 0 2px, #6bbd23 2px 4px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.38);
}

.brand-card-number {
  position: absolute;
  left: 18px;
  top: 13px;
  color: white;
  font-size: 5px;
  font-weight: 900;
  letter-spacing: .25px;
  line-height: 1;
  opacity: .92;
}

.brand-card-dots {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 16px;
  height: 9px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 5px 4.5px, var(--green-500) 0 5px, transparent 5.4px),
    radial-gradient(circle at 11px 4.5px, #8dd84d 0 5px, transparent 5.4px);
}

.brand-handle {
  position: absolute;
  right: 6px;
  bottom: 2px;
  width: 34px;
  height: 9px;
  border-radius: 999px;
  background: var(--purple-800);
  transform: rotate(47deg);
  transform-origin: left center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}

@keyframes brandCardFloat {
  0%, 100% {
    transform: translate3d(-1px, 1px, 0) rotate(-10deg) scale(1);
  }
  50% {
    transform: translate3d(4px, -3px, 0) rotate(-3deg) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-card {
    animation: none;
  }
}

.brand-word {
  display: block;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-word span {
  color: var(--green-500);
}

.brand-sub {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 4.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: white;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .065em;
  white-space: nowrap;
}

.nav-actions a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  padding: 0 26px;
  background: var(--green-500);
  color: var(--purple-950);
  font-size: 13px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(102, 189, 36, .24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-actions a:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(102, 189, 36, .3);
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(28px, 4vw, 52px);
  align-items: stretch;
  padding: clamp(44px, 6vw, 64px) 0;
}

.hero-main {
  min-width: 0;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy {
  max-width: 760px;
}

.speed-mark {
  display: grid;
  grid-template-columns: minmax(152px, 230px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 34px);
  min-width: 0;
}

.actual-logo-mark {
  width: clamp(142px, 17vw, 226px);
  aspect-ratio: 374 / 318;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.actual-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(60, 12, 112, .12));
}

.card-orbit {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 9px solid var(--purple-800);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 34px rgba(60, 12, 112, .24);
  background: white;
}

.card-orbit::before,
.card-orbit::after {
  content: "";
  position: absolute;
  left: -130px;
  width: 124px;
  height: 13px;
  background: var(--purple-800);
  clip-path: polygon(0 48%, 100% 0, 100% 100%);
}

.card-orbit::before {
  top: 31px;
  box-shadow: -34px 22px 0 -1px var(--purple-800), -74px 45px 0 -3px var(--green-500);
}

.card-orbit::after {
  top: 75px;
  background: var(--green-500);
}

.card-art {
  width: 78px;
  height: 52px;
  transform: rotate(-8deg);
  border-radius: 7px;
  background: linear-gradient(135deg, var(--purple-800), var(--purple-950));
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.18);
  position: relative;
}

.card-art::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 11px;
  width: 18px;
  height: 14px;
  border-radius: 4px;
  background: repeating-linear-gradient(90deg, #b8f78b 0 4px, #6bbd23 4px 8px);
}

.card-art::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 9px;
  width: 26px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle at 8px 6px, var(--green-500) 0 7px, transparent 8px), radial-gradient(circle at 18px 6px, #8dd84d 0 7px, transparent 8px);
}

.lens-handle {
  position: absolute;
  right: -38px;
  bottom: -34px;
  width: 62px;
  height: 18px;
  border-radius: 999px;
  background: var(--purple-800);
  transform: rotate(47deg);
  box-shadow: 0 10px 18px rgba(60,12,112,.2);
}

.hero-logo {
  margin: 0;
  color: var(--purple-900);
  font-size: clamp(40px, 6.6vw, 86px);
  line-height: .86;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  font-weight: 950;
}

.hero-logo span {
  color: var(--green-500);
}

h1 {
  margin: 0;
}

.hero-statement {
  margin-top: 0;
  max-width: 820px;
  color: var(--purple-900);
  font-size: clamp(46px, 7.4vw, 96px);
  line-height: .86;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  font-weight: 950;
}

.main-statement {
  margin-top: 0;
  max-width: 730px;
  font-size: clamp(54px, 6vw, 92px);
}

.hero-statement span {
  display: block;
  color: var(--purple-900);
}

.hero-statement em {
  display: block;
  color: var(--green-500);
  font-style: normal;
}

.hero-support {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 650;
}

.hero-note {
  width: min(620px, 100%);
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.58;
  font-weight: 650;
}

.side-statement {
  margin-top: 0;
  color: white;
  font-size: clamp(44px, 5.3vw, 76px);
  letter-spacing: -0.055em;
  line-height: .86;
}

.side-statement span {
  color: white;
}

.side-statement em {
  color: var(--green-500);
}

.side-support {
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.55;
}

.side-panel .side-support {
  display: none;
}

.service-line {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--purple-800);
  font-size: clamp(18px, 2.4vw, 32px);
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.service-line::before,
.service-line::after {
  content: "";
  height: 4px;
  flex: 1;
  background: var(--green-500);
}

.tagline {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: var(--purple-800);
  font-size: 16px;
  font-weight: 950;
  text-transform: uppercase;
}

.tagline span:nth-child(2) {
  color: var(--green-600);
}

.benefit-row {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 790px;
}

.review-strip {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 780px;
}

.review-chip {
  min-height: 88px;
  padding: 17px 18px;
  background: white;
  border: 1px solid rgba(51,20,99,.12);
  border-top: 4px solid var(--green-500);
  box-shadow: 0 16px 34px rgba(44,10,89,.08);
  position: relative;
  overflow: hidden;
}

.review-chip:nth-child(2) {
  border-top-color: var(--green-500);
}

.review-chip:nth-child(3) {
  border-top-color: var(--green-500);
}

.review-chip::after {
  display: none;
}

.review-chip strong {
  display: block;
  color: var(--purple-900);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.review-chip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.benefit svg {
  width: 38px;
  height: 38px;
  color: var(--green-500);
  flex: 0 0 auto;
}

.side-panel {
  color: white;
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: clamp(44px, 6vw, 66px) clamp(26px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 90% 0%, rgba(102,189,36,.16), transparent 17rem),
    linear-gradient(180deg, rgba(45,9,91,.98), rgba(22,5,47,.98));
  box-shadow: 60vw 0 0 rgba(34, 5, 76, .98);
}

.side-panel::before {
  display: none;
}

.side-panel > * {
  position: relative;
  z-index: 1;
}

.side-panel h2 {
  margin: 0 0 24px;
  color: white;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.side-panel h2 span {
  display: block;
  color: var(--green-500);
  font-style: italic;
}

.side-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 78px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
}

.rate-meter {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 0 0 1px rgba(102,189,36,.15);
}

.rate-meter-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: white;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.meter-track {
  margin-top: 14px;
  height: 12px;
  background: rgba(255,255,255,.14);
  overflow: hidden;
}

.meter-fill {
  width: 74%;
  height: 100%;
  background: var(--green-500);
}

.rate-meter p {
  margin: 13px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.5;
}

.side-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--purple-800);
  box-shadow: 0 16px 28px rgba(0,0,0,.16);
}

.side-icon svg {
  width: 34px;
  height: 34px;
}

.hero-ribbon {
  display: none;
}

.ribbon-inner {
  min-height: 132px;
  display: grid;
  grid-template-columns: 1fr 410px;
  align-items: center;
  gap: 40px;
}

.ribbon-left {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: clamp(18px, 2vw, 29px);
  font-weight: 950;
  text-transform: uppercase;
}

.ribbon-left svg {
  width: 62px;
  height: 62px;
  color: var(--green-500);
}

.ribbon-left span {
  color: var(--green-500);
}

.ribbon-left small {
  display: block;
  margin-top: 4px;
  color: white;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: .03em;
}

.ribbon-right {
  color: var(--purple-900);
  font-weight: 950;
  text-transform: uppercase;
}

.ribbon-right strong {
  display: block;
  color: white;
  font-size: 24px;
  letter-spacing: .02em;
}

.section {
  padding: 80px 0;
  background: white;
}

.proof-band {
  padding: 0;
  background: var(--purple-950);
  color: white;
}

.proof-band .shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid rgba(255,255,255,.12);
}

.proof-stat {
  min-height: 142px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), transparent),
    var(--purple-950);
}

.proof-stat strong {
  display: block;
  color: var(--green-500);
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.proof-stat span {
  display: block;
  margin-top: 9px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section.alt {
  background: #f6f7fb;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.section h2 {
  margin: 0;
  color: var(--purple-900);
  font-size: clamp(34px, 4vw, 58px);
  line-height: .94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.section h2 span {
  color: var(--green-600);
}

.section-copy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.cards {
  display: grid;
  gap: 16px;
}

.info-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 23px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 14px 32px rgba(35, 6, 70, .06);
}

.info-number,
.info-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple-800);
  color: white;
  font-size: 18px;
  font-weight: 950;
}

.info-icon {
  background: var(--green-500);
  color: var(--purple-950);
}

.info-card h3 {
  margin: 0;
  color: var(--purple-900);
  font-size: 19px;
  text-transform: uppercase;
}

.info-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.mock-form,
.phone {
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}

.mock-form {
  position: relative;
  overflow: hidden;
}

.mock-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--green-500), transparent 70%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: .22;
}

.mock-form {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.field {
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fbfbfd;
}

.field label {
  display: block;
  color: var(--purple-800);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.field span {
  display: block;
  margin-top: 9px;
  color: var(--ink);
  font-weight: 850;
}

.upload-box {
  margin-top: 14px;
  padding: 24px;
  border: 2px dashed rgba(91, 31, 154, .38);
  background: linear-gradient(135deg, rgba(102,189,36,.1), rgba(71,18,132,.06));
}

.doc-preview {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  background: white;
}

.doc-page {
  height: 92px;
  background:
    linear-gradient(var(--purple-800), var(--purple-800)) 14px 18px / 42px 5px no-repeat,
    linear-gradient(#cfd3dc, #cfd3dc) 14px 36px / 48px 4px no-repeat,
    linear-gradient(#dfe3ea, #dfe3ea) 14px 50px / 36px 4px no-repeat,
    linear-gradient(135deg, #fff, #f3f4f8);
  border: 1px solid rgba(51,20,99,.16);
  box-shadow: 0 12px 20px rgba(44,10,89,.08);
}

.doc-preview strong {
  display: block;
  color: var(--purple-900);
  font-size: 14px;
  text-transform: uppercase;
}

.doc-preview span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.upload-box strong {
  display: block;
  color: var(--purple-900);
  font-size: 18px;
  text-transform: uppercase;
}

.upload-box p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.cta-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  background: var(--green-500);
  color: var(--purple-950);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.button.secondary {
  background: var(--purple-900);
  color: white;
}

.dashboard {
  background:
    radial-gradient(circle at 82% 8%, rgba(102,189,36,.2), transparent 26rem),
    radial-gradient(circle at 18% 70%, rgba(255,255,255,.08), transparent 28rem),
    var(--purple-950);
  color: white;
}

.dashboard .section-copy {
  color: rgba(255,255,255,.74);
}

.dashboard h2 {
  color: white;
}

.phone {
  width: min(370px, 100%);
  margin: 0 auto;
  padding: 16px;
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(180deg, #3d1079, #190431);
}

.phone-screen {
  min-height: 590px;
  padding: 20px;
  background: #f7f8fb;
  color: var(--ink);
}

.phone-screen::before {
  content: "";
  display: block;
  width: 74px;
  height: 5px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(51,20,99,.18);
}

.phone-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--purple-900);
  font-weight: 950;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(102,189,36,.16);
  color: var(--green-700);
  font-size: 11px;
  font-weight: 950;
}

.lead-card {
  margin-top: 15px;
  padding: 16px;
  border: 1px solid var(--line);
  background: white;
}

.lead-card h3 {
  margin: 0;
  color: var(--purple-900);
  font-size: 16px;
}

.lead-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.lead-actions {
  margin-top: 13px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mini-button {
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--purple-900);
  color: white;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-cta {
  background: linear-gradient(135deg, var(--green-500) 0 36%, var(--green-600) 36% 100%);
  color: var(--purple-950);
  padding: 50px 0;
}

.footer-cta .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  text-transform: uppercase;
}

.footer-cta p {
  margin: 12px 0 0;
  color: rgba(22, 20, 33, .75);
  font-weight: 750;
}

footer {
  padding: 28px 0;
  background: var(--purple-950);
  color: rgba(255,255,255,.66);
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 70%, #f4f4f8 100%);
  }

  .hero::before {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 64px;
  }

  .side-panel {
    max-width: 430px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 44px 28px;
    box-shadow: none;
  }

  .benefit-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-strip,
  .proof-band .shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ribbon-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

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

  .footer-cta .shell {
    display: block;
  }

  .footer-cta .button {
    margin-top: 22px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(var(--max), calc(100% - 28px));
  }

  .topbar-inner,
  .nav-actions,
  .speed-mark {
    display: block;
  }

  .topbar-inner {
    padding: 14px 0;
  }

  .brand {
    gap: 12px;
  }

  .brand-icon {
    width: 74px;
    height: 54px;
    border-radius: 12px;
  }

  .brand-mark {
    width: 64px;
    height: 45px;
    transform: scale(.78);
    transform-origin: center;
  }

  .brand-word {
    font-size: clamp(17px, 5vw, 20px);
  }

  .brand-sub {
    margin-top: 7px;
    font-size: 9px;
    letter-spacing: 2.6px;
  }

  .nav-actions span {
    display: none;
  }

  .nav-actions a {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
  }

  .hero-note {
    width: 100%;
    max-width: 340px;
    font-size: 15px;
    overflow-wrap: break-word;
  }

  .actual-logo-mark {
    margin-bottom: 24px;
    width: 162px;
  }

  .actual-logo-mark img {
    width: 100%;
  }

  h1 {
    font-size: clamp(44px, 16vw, 72px);
  }

  .main-statement {
    font-size: clamp(42px, 12.5vw, 49px);
    letter-spacing: -0.025em;
  }

  .service-line {
    font-size: 16px;
    letter-spacing: .12em;
  }

  .tagline {
    gap: 12px;
    font-size: 14px;
  }

  .benefit-row,
  .form-grid,
  .review-strip,
  .proof-band .shell {
    grid-template-columns: 1fr;
  }

  .side-panel h2 {
    font-size: 32px;
  }

  .ribbon-left {
    font-size: 20px;
  }

  .ribbon-right strong {
    font-size: 19px;
  }
}
