:root {
  --ink: #070b0a;
  --ink-soft: #12251f;
  --pine: #0e3026;
  --green: #20c884;
  --green-dark: #08734b;
  --lime: #d8ff42;
  --coral: #ff7054;
  --sky: #b9d6e2;
  --gold: #f7c95b;
  --paper: #e5eef1;
  --paper-strong: #d5e3e7;
  --surface: #fbfcf8;
  --text: #0b1210;
  --muted: #596662;
  --line: #cbd8d7;
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(13, 28, 24, 0.16);
  --shadow-soft: 0 10px 32px rgba(13, 28, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.redirect-page {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  min-height: 100vh;
  padding: 32px;
  text-align: center;
}

.header-inner,
.section-inner,
.footer-inner {
  margin: 0 auto;
  max-width: 1240px;
  padding-left: 28px;
  padding-right: 28px;
}

.site-header {
  background: rgba(239, 244, 238, 0.92);
  border-bottom: 0;
  left: 0;
  padding: 10px 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 100;
}

.header-inner {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(207, 219, 208, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 24px;
  height: 64px;
  justify-content: space-between;
  max-width: 1210px;
  position: relative;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 6px;
  display: inline-flex;
  font-size: 0;
  height: 36px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 36px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-mark::before {
  background:
    linear-gradient(var(--lime), var(--lime)) left top / 3px 18px no-repeat,
    linear-gradient(var(--lime), var(--lime)) left top / 12px 3px no-repeat,
    linear-gradient(var(--lime), var(--lime)) left 8px / 9px 3px no-repeat;
  content: "";
  height: 18px;
  left: 7px;
  position: absolute;
  top: 9px;
  width: 12px;
}

.brand-mark::after {
  border: 3px solid var(--coral);
  border-radius: 0 8px 8px 0;
  content: "";
  height: 16px;
  position: absolute;
  right: 6px;
  top: 8px;
  width: 10px;
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 4px;
  justify-content: center;
}

.nav-item {
  position: static;
}

.nav-trigger {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #50615a;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  height: 38px;
  padding: 0 13px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.nav-item > .nav-trigger::after {
  border-bottom: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
  height: 6px;
  margin-left: 8px;
  margin-top: -4px;
  transform: rotate(45deg);
  width: 6px;
}

.nav-trigger:hover,
.nav-trigger.is-active,
.nav-item:focus-within > .nav-trigger,
.nav-item:hover > .nav-trigger {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}

.mega-menu {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 24px;
  grid-template-columns: 250px minmax(0, 1fr);
  left: 28px;
  opacity: 0;
  padding: 22px;
  pointer-events: none;
  position: absolute;
  right: 28px;
  top: 56px;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.mega-copy {
  align-self: stretch;
  background: var(--ink);
  border-radius: 8px;
  color: white;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.mega-copy::after {
  background: var(--lime);
  content: "";
  height: 5px;
  inset: auto 0 0;
  position: absolute;
}

.mega-copy h3 {
  font-size: 24px;
  line-height: 1.15;
  margin: 12px 0 0;
}

.mega-copy > p:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.6;
  margin: 16px 0 0;
}

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

.mega-card {
  background: #f7f9f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  min-width: 0;
  padding: 14px;
  box-shadow: 0 4px 14px rgba(13, 28, 24, 0.04);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.mega-card:hover {
  background: #eef5ed;
  border-color: #b8c9bb;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(13, 28, 24, 0.09);
}

.mega-card-main {
  align-items: flex-start;
  display: grid;
  gap: 12px;
  grid-template-columns: 36px minmax(0, 1fr);
}

.mega-card-main strong {
  display: block;
  font-size: 14px;
}

.mega-card-main small {
  color: var(--muted);
  display: -webkit-box;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 5px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mega-actions {
  display: flex;
  gap: 16px;
  margin-left: 48px;
  margin-top: 10px;
}

.mega-actions a {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.header-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  line-height: 1.2;
  min-height: 44px;
  padding: 0 18px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--lime);
  border-color: #c9df4f;
  color: var(--ink);
}

.btn--primary:hover {
  background: #ecff83;
  border-color: #d7ed61;
}

.btn--secondary {
  background: var(--surface);
  border-color: var(--line);
}

.btn--secondary:hover {
  border-color: #adc0b1;
}

.btn--light {
  background: white;
  color: var(--ink);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: white;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.icon-button {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.icon-button span,
.icon-button span::before,
.icon-button span::after {
  background: currentColor;
  content: "";
  display: block;
  height: 2px;
  position: relative;
  width: 18px;
}

.icon-button span::before {
  position: absolute;
  top: -6px;
}

.icon-button span::after {
  position: absolute;
  top: 6px;
}

.hero {
  background: var(--ink);
  color: white;
  min-height: 660px;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  inset: 0;
  position: absolute;
}

.hero-bg::after {
  background: linear-gradient(90deg, rgba(6, 18, 14, 0.98) 0%, rgba(6, 18, 14, 0.9) 36%, rgba(6, 18, 14, 0.48) 58%, rgba(6, 18, 14, 0.1) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-bg img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero--personal .hero-bg img {
  object-position: center center;
}

.hero--business .hero-bg img {
  object-position: center center;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 690px) minmax(260px, 1fr);
  min-height: 660px;
  padding-bottom: 58px;
  padding-top: 58px;
  position: relative;
  z-index: 1;
}

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

.eyebrow {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero-kicker,
.section--ink .eyebrow,
.cta-band .eyebrow {
  color: var(--lime);
}

.hero h1 {
  font-size: 68px;
  line-height: 0.98;
  margin: 0;
  max-width: 780px;
}

.hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.72;
  margin: 22px 0 0;
  max-width: 680px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.hero-metrics {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.metric {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 0;
  padding-left: 14px;
}

.metric strong {
  display: block;
  font-size: 21px;
  line-height: 1.1;
}

.metric span {
  color: rgba(255, 255, 255, 0.56);
  display: block;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 7px;
}

.section {
  padding: 104px 0;
}

.section--surface {
  background: var(--surface);
}

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

.section--tight {
  padding: 64px 0;
}

.section-head {
  align-items: end;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  margin-bottom: 38px;
}

.section-head h2,
.solo-head h2,
.detail-layout h2 {
  font-size: 44px;
  line-height: 1.08;
  margin: 0;
}

.section-head > p,
.solo-head > p,
.detail-layout > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  margin: 0;
}

.section--ink .section-head > p {
  color: rgba(255, 255, 255, 0.68);
}

.solo-head {
  margin: 0 auto 38px;
  max-width: 760px;
  text-align: center;
}

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

.scenario-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(190px, 0.92fr) minmax(0, 1.08fr);
  min-height: 310px;
  min-width: 0;
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.scenario-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.scenario-card-media {
  aspect-ratio: auto;
  background: var(--paper-strong);
  height: 100%;
  overflow: hidden;
}

.scenario-card-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.scenario-card:hover .scenario-card-media img {
  transform: scale(1.035);
}

.scenario-card-body {
  align-content: start;
  display: grid;
  padding: 28px;
}

.mini-icon {
  align-items: center;
  background: var(--ink);
  border-radius: 6px;
  color: var(--lime);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 850;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.scenario-card:nth-child(2) .mini-icon,
.value-card:nth-child(2) .mini-icon {
  background: var(--coral);
  color: white;
}

.scenario-card:nth-child(3) .mini-icon,
.value-card:nth-child(3) .mini-icon {
  background: var(--sky);
  color: var(--ink);
}

.scenario-card:nth-child(4) .mini-icon,
.value-card:nth-child(4) .mini-icon {
  background: var(--gold);
  color: var(--ink);
}

.scenario-card h3,
.value-card h3,
.faq-item h3,
.step h3 {
  font-size: 22px;
  line-height: 1.24;
  margin: 18px 0 0;
}

.scenario-card p,
.value-card p,
.faq-item p,
.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.66;
  margin: 12px 0 0;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.text-link {
  color: var(--green-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  gap: 7px;
}

.text-link:hover {
  color: var(--ink);
}

.carousel {
  background: var(--ink);
  border-radius: 8px;
  color: white;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.carousel::after {
  background: var(--coral);
  content: "";
  height: 6px;
  inset: auto 0 0;
  position: absolute;
  z-index: 3;
}

.carousel-track {
  min-height: 470px;
  position: relative;
}

.carousel-slide {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 500ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.carousel-slide > img {
  height: 470px;
  object-fit: cover;
  width: 100%;
}

.carousel-slide > div {
  align-self: center;
  padding: 48px;
}

.carousel-slide h3 {
  font-size: 36px;
  line-height: 1.1;
  margin: 0;
}

.carousel-slide p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.7;
  margin: 18px 0 24px;
}

.carousel-slide .text-link {
  color: var(--lime);
}

.carousel-controls {
  align-items: center;
  bottom: 24px;
  display: flex;
  gap: 14px;
  position: absolute;
  right: 24px;
  z-index: 2;
}

.circle-btn {
  align-items: center;
  background: white;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  font-size: 18px;
  height: 40px;
  justify-content: center;
  padding: 0;
  width: 40px;
}

.carousel-dots {
  align-items: center;
  display: flex;
  gap: 7px;
}

.carousel-dots button {
  background: rgba(255, 255, 255, 0.38);
  border: 0;
  border-radius: 4px;
  height: 8px;
  padding: 0;
  transition: background 160ms ease, width 160ms ease;
  width: 8px;
}

.carousel-dots button.is-active {
  background: var(--lime);
  width: 22px;
}

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

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

.pathway-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  box-shadow: 0 8px 26px rgba(13, 28, 24, 0.06);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.pathway-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.pathway-card::before {
  background: var(--green);
  content: "";
  height: 6px;
  inset: 0 0 auto;
  position: absolute;
}

.pathway-card--bulk::before {
  background: var(--coral);
}

.pathway-card--api::before {
  background: var(--sky);
}

.pathway-number {
  color: #a8b7ad;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 36px;
}

.pathway-card h3 {
  font-size: 26px;
  line-height: 1.16;
  margin: 0;
}

.pathway-card > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 16px 0 0;
}

.pathway-card ul {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 24px 0;
  padding: 20px 0 0;
}

.pathway-card li {
  font-size: 13px;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.pathway-card li::before {
  background: var(--green);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 7px;
  width: 6px;
}

.pathway-card--bulk li::before {
  background: var(--coral);
}

.pathway-card--api li::before {
  background: var(--sky);
}

.pathway-card .text-link {
  margin-top: auto;
}

.value-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 220px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(13, 28, 24, 0.05);
}

.section--surface .value-card {
  background: #f7f9f5;
}

.steps {
  counter-reset: step-counter;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  counter-increment: step-counter;
  min-height: 230px;
  padding: 26px;
  position: relative;
}

.step:first-child {
  border-radius: 8px 0 0 8px;
}

.step:last-child {
  border-radius: 0 8px 8px 0;
}

.step::before {
  color: var(--green-dark);
  content: "0" counter(step-counter);
  display: block;
  font-size: 13px;
  font-weight: 850;
}

.comparison {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-row {
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 0.7fr 1.15fr 1.15fr;
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-cell {
  border-left: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
  padding: 20px;
}

.comparison-cell:first-child {
  border-left: 0;
  color: white;
  font-weight: 800;
}

.comparison-head {
  background: rgba(255, 255, 255, 0.07);
}

.comparison-head .comparison-cell {
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.detail-layout {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.02fr);
}

.detail-layout > div > p:not(.eyebrow) {
  margin-top: 20px;
}

.detail-layout .text-link {
  margin-top: 22px;
}

.control-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.control-list article {
  align-items: start;
  background: white;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 38px minmax(0, 1fr);
  padding: 22px;
}

.control-list article:first-child {
  border-top: 0;
}

.control-list article > span {
  align-items: center;
  background: var(--ink);
  border-radius: 6px;
  color: var(--lime);
  display: inline-flex;
  font-size: 11px;
  font-weight: 850;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.control-list h3 {
  font-size: 17px;
  line-height: 1.25;
  margin: 0;
}

.control-list p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
  margin: 7px 0 0;
}

.image-card {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

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

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 180px;
  padding: 24px;
}

.faq-item h3 {
  margin-top: 0;
}

.rate-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.rate-row {
  background: var(--surface);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.8fr 0.7fr 1.5fr;
}

.rate-row:first-child {
  border-top: 0;
}

.rate-cell {
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  padding: 20px;
}

.rate-cell:first-child {
  border-left: 0;
  color: var(--text);
}

.rate-head {
  background: var(--ink);
}

.rate-head .rate-cell {
  border-color: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.notice {
  background: #edf2e9;
  border-left: 4px solid var(--green);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 22px;
  padding: 16px 18px;
}

.code-window {
  background: #08130f;
  border: 1px solid #234238;
  border-radius: 8px;
  color: #dff0e5;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  line-height: 1.8;
  min-height: 250px;
  padding: 28px;
}

.code-window span {
  color: var(--lime);
}

.contact-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.1fr);
  padding-bottom: 82px;
  padding-top: 82px;
}

.contact-panel,
.form-panel {
  border-radius: 8px;
  padding: 42px;
}

.contact-panel {
  background: var(--ink);
  color: white;
}

.contact-panel h1 {
  font-size: 48px;
  line-height: 1.04;
  margin: 0;
}

.contact-panel > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin: 22px 0 0;
}

.contact-list {
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 0;
  margin-top: 34px;
}

.contact-list > * {
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  gap: 6px;
  padding: 18px 0;
}

.contact-list strong {
  font-size: 14px;
}

.contact-list span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.form-panel {
  background: white;
  border: 1px solid var(--line);
}

.form-panel h2 {
  font-size: 32px;
  margin: 0;
}

.form-panel > p {
  color: var(--muted);
  line-height: 1.6;
}

.lead-form {
  margin-top: 28px;
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  color: var(--text);
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  background: #fbfcfa;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.lead-form > .btn {
  margin-top: 18px;
}

.form-status {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  margin-top: 14px;
  min-height: 20px;
}

.legal-shell {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0 auto;
  max-width: 860px;
  padding: 54px;
}

.legal-shell h1 {
  font-size: 50px;
  line-height: 1.05;
  margin: 0 0 22px;
}

.legal-shell h2 {
  font-size: 24px;
  margin: 40px 0 12px;
}

.legal-shell p {
  color: var(--muted);
  line-height: 1.75;
}

.cta-band {
  align-items: center;
  background: var(--pine);
  border-radius: 8px;
  color: white;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) auto;
  overflow: hidden;
  padding: 42px;
  position: relative;
  box-shadow: var(--shadow);
}

.cta-band::after {
  background: var(--coral);
  content: "";
  height: 7px;
  inset: auto 0 0;
  position: absolute;
}

.cta-band h2 {
  font-size: 36px;
  line-height: 1.1;
  margin: 0;
}

.cta-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
  margin: 14px 0 0;
  max-width: 680px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.site-footer {
  background: #07130f;
  color: white;
  padding: 66px 0 26px;
}

.footer-top {
  display: grid;
  gap: 60px;
  grid-template-columns: 300px minmax(0, 1fr);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 20px;
}

.footer-links {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-col {
  display: grid;
  gap: 11px;
}

.footer-col h3 {
  color: var(--lime);
  font-size: 12px;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.45;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.42);
  display: flex;
  font-size: 12px;
  gap: 20px;
  justify-content: space-between;
  margin-top: 52px;
  padding-top: 22px;
}

@media (max-width: 1080px) {
  .header-actions .btn--secondary {
    display: none;
  }

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

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

  .pathway-card {
    min-height: 0;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-inner {
    gap: 34px;
    grid-template-columns: minmax(0, 620px) minmax(180px, 1fr);
  }

}

@media (max-width: 920px) {
  .header-inner {
    border-radius: 8px;
    height: 70px;
  }

  .header-actions > .btn {
    display: none;
  }

  .icon-button {
    display: inline-flex;
  }

  .nav-shell {
    align-content: start;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    gap: 6px;
    grid-template-columns: 1fr;
    left: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 18px 22px 28px;
    position: absolute;
    right: 0;
    top: 70px;
  }

  body.menu-open .nav-shell {
    display: grid;
  }

  .nav-trigger {
    font-size: 16px;
    justify-content: space-between;
    width: 100%;
  }

  .mega-menu {
    box-shadow: none;
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    left: auto;
    margin: 4px 0 12px;
    opacity: 1;
    padding: 12px;
    pointer-events: auto;
    position: static;
    right: auto;
    transform: none;
    visibility: visible;
  }

  .mega-copy {
    display: none;
  }

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

  .hero,
  .hero-inner {
    min-height: 0;
  }

  .hero-inner {
    gap: 30px;
    grid-template-columns: 1fr;
    padding-bottom: 42px;
    padding-top: 46px;
  }

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

  .section-head {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .carousel-slide {
    grid-template-columns: 1fr;
  }

  .carousel-track {
    min-height: 650px;
  }

  .carousel-slide > img {
    height: 340px;
  }

  .carousel-slide > div {
    padding: 34px 34px 90px;
  }

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

  .step:first-child,
  .step:last-child {
    border-radius: 0;
  }

  .step:nth-child(1) {
    border-radius: 8px 0 0 0;
  }

  .step:nth-child(2) {
    border-radius: 0 8px 0 0;
  }

  .step:nth-last-child(2) {
    border-radius: 0 0 0 8px;
  }

  .step:last-child {
    border-radius: 0 0 8px 0;
  }

  .detail-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .header-inner,
  .section-inner,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand {
    font-size: 16px;
  }

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

  .nav-shell {
    padding-left: 12px;
    padding-right: 12px;
  }

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

  .mega-card-main small {
    -webkit-line-clamp: 3;
  }

  .hero-bg::after {
    background: linear-gradient(180deg, rgba(7, 20, 16, 0.93), rgba(7, 20, 16, 0.72));
  }

  .hero-inner {
    padding-bottom: 30px;
    padding-top: 34px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.04;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-metrics {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .section--tight {
    padding: 44px 0;
  }

  .section-head h2,
  .solo-head h2,
  .detail-layout h2 {
    font-size: 34px;
  }

  .scenario-grid,
  .value-grid,
  .faq-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .scenario-card {
    display: block;
    min-height: 0;
  }

  .scenario-card-media {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .step,
  .step:nth-child(1),
  .step:nth-child(2),
  .step:nth-last-child(2),
  .step:last-child {
    border-radius: 0;
  }

  .step:first-child {
    border-radius: 8px 8px 0 0;
  }

  .step:last-child {
    border-radius: 0 0 8px 8px;
  }

  .carousel-track {
    min-height: 590px;
  }

  .carousel-slide > img {
    height: 250px;
  }

  .carousel-slide > div {
    padding: 26px 24px 94px;
  }

  .carousel-slide h3 {
    font-size: 30px;
  }

  .carousel-controls {
    bottom: 22px;
    left: 24px;
    right: auto;
  }

  .comparison,
  .rate-table {
    border: 0;
    display: grid;
    gap: 12px;
    overflow: visible;
  }

  .comparison-row,
  .rate-row {
    border: 1px solid var(--line);
    border-radius: 8px;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .section--ink .comparison-row {
    border-color: var(--line-dark);
  }

  .comparison-cell,
  .rate-cell {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .comparison-cell:first-child,
  .rate-cell:first-child {
    border-top: 0;
  }

  .comparison-head,
  .rate-head {
    display: none;
  }

  .contact-layout {
    padding-bottom: 52px;
    padding-top: 52px;
  }

  .contact-panel,
  .form-panel,
  .legal-shell {
    padding: 26px;
  }

  .contact-panel h1,
  .legal-shell h1 {
    font-size: 38px;
  }

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

  .field--full {
    grid-column: auto;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 30px 24px 36px;
  }

  .cta-band h2 {
    font-size: 31px;
  }

  .cta-actions {
    justify-content: flex-start;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

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

/* Visual system v3 */

::selection {
  background: var(--lime);
  color: var(--ink);
}

body {
  background: var(--paper);
}

.mobile-auth-link {
  display: none;
}

.site-header {
  background: rgba(229, 238, 241, 0.92);
}

.header-inner {
  border-color: rgba(161, 181, 183, 0.45);
  box-shadow: 0 12px 40px rgba(7, 11, 10, 0.09);
}

.brand-mark {
  background: var(--ink);
  color: var(--lime);
}

.nav-trigger.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.btn--primary {
  box-shadow: 0 8px 22px rgba(166, 207, 36, 0.22);
}

.hero {
  background: var(--ink);
  min-height: 700px;
}

.hero-bg {
  background: var(--ink);
}

.hero-bg::after {
  background: linear-gradient(90deg, rgba(4, 7, 6, 0.99) 0%, rgba(4, 7, 6, 0.91) 34%, rgba(4, 7, 6, 0.55) 58%, rgba(4, 7, 6, 0.12) 100%);
  z-index: 2;
}

.hero-bg-frame {
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: scale(1.025);
  transition: opacity 900ms ease, transform 6400ms ease;
}

.hero-bg-frame.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-inner {
  min-height: 700px;
  z-index: 3;
}

.hero h1 {
  font-size: 72px;
  line-height: 0.96;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
}

.hero-kicker {
  align-items: center;
  display: flex;
  gap: 10px;
}

.hero-kicker::before {
  background: var(--lime);
  border-radius: 50%;
  content: "";
  height: 8px;
  width: 8px;
}

.hero-switcher {
  align-items: center;
  bottom: 30px;
  display: flex;
  gap: 8px;
  position: absolute;
  right: max(28px, calc((100vw - 1184px) / 2));
  z-index: 4;
}

.hero-switcher button {
  background: rgba(255, 255, 255, 0.44);
  border: 0;
  border-radius: 4px;
  height: 6px;
  padding: 0;
  transition: background 180ms ease, width 180ms ease;
  width: 26px;
}

.hero-switcher button.is-active {
  background: var(--lime);
  width: 58px;
}

.motion-rail {
  background: var(--lime);
  color: var(--ink);
  overflow: hidden;
  padding: 15px 0;
}

.motion-rail-track {
  align-items: center;
  animation: rail-shift 24s linear infinite;
  display: flex;
  min-width: max-content;
  width: max-content;
}

.motion-rail span {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  gap: 14px;
  padding: 0 28px;
  text-transform: uppercase;
}

.motion-rail i {
  background: var(--coral);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

@keyframes rail-shift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section--surface {
  background: var(--surface);
}

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

.section-head h2,
.solo-head h2,
.detail-layout h2 {
  font-size: 48px;
}

.scenario-card {
  background: rgba(251, 252, 248, 0.96);
  border-color: rgba(161, 181, 183, 0.55);
  box-shadow: 0 12px 34px rgba(7, 11, 10, 0.07);
}

.scenario-card-media {
  background: var(--ink);
}

.scenario-card-media img {
  filter: saturate(1.06) contrast(1.03);
}

.scenario-card:nth-child(2) {
  background: #eef6f8;
}

.scenario-card:nth-child(3) {
  background: #f8f5eb;
}

.scenario-card:nth-child(4) {
  background: #edf5ef;
}

.carousel {
  background: #050706;
}

.carousel::after {
  background: var(--lime);
}

.carousel-slide > img {
  filter: saturate(1.04) contrast(1.03);
}

.pathway-card,
.value-card,
.faq-item,
.step,
.control-list article,
.form-panel,
.legal-shell {
  background: rgba(251, 252, 248, 0.96);
  border-color: rgba(161, 181, 183, 0.5);
}

.cta-band {
  background: var(--ink);
}

.site-footer {
  background: #030504;
}

/* Browser login */

.auth-page {
  background: var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(430px, 0.88fr);
  min-height: 100vh;
  position: relative;
}

.auth-brand {
  color: white;
  left: 34px;
  position: absolute;
  top: 28px;
  z-index: 5;
}

.auth-visual {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.auth-visual::after {
  background: linear-gradient(180deg, rgba(3, 5, 4, 0.04), rgba(3, 5, 4, 0.86));
  content: "";
  inset: 0;
  position: absolute;
}

.auth-visual > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.auth-visual-copy {
  bottom: 52px;
  color: white;
  left: 52px;
  max-width: 620px;
  position: absolute;
  right: 52px;
  z-index: 2;
}

.auth-visual-copy .eyebrow {
  color: var(--lime);
}

.auth-visual-copy h1 {
  font-size: 58px;
  line-height: 0.98;
  margin: 0;
}

.auth-visual-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.65;
  margin: 20px 0 0;
}

.auth-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.auth-proof span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 750;
  padding: 10px 12px;
}

.auth-form-side {
  align-items: center;
  background: #e5eef1;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 70px 42px;
}

.auth-card {
  background: rgba(251, 252, 248, 0.96);
  border: 1px solid rgba(161, 181, 183, 0.6);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(7, 11, 10, 0.17);
  max-width: 480px;
  padding: 42px;
  width: 100%;
}

.auth-card h2 {
  font-size: 38px;
  line-height: 1.05;
  margin: 0;
}

.auth-intro,
.auth-note,
.auth-bottom {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.auth-intro {
  margin: 14px 0 28px;
}

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

.auth-form .field input {
  background: white;
  min-height: 54px;
}

.auth-form-row {
  align-items: center;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
}

.auth-form-row > a,
.auth-bottom a {
  color: var(--green-dark);
  font-weight: 800;
}

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

.check-field input {
  accent-color: var(--green-dark);
}

.auth-submit {
  width: 100%;
}

.auth-divider {
  align-items: center;
  color: #85938e;
  display: flex;
  font-size: 11px;
  gap: 14px;
  margin: 26px 0 16px;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  background: var(--line);
  content: "";
  flex: 1;
  height: 1px;
}

.auth-note,
.auth-bottom {
  margin: 0;
  text-align: center;
}

.auth-bottom {
  margin-top: 20px;
}

/* Account dashboard */

.account-shell {
  background: var(--paper);
  min-height: 780px;
  padding: 70px 0 100px;
}

.account-welcome {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.account-welcome h1 {
  font-size: 54px;
  line-height: 1;
  margin: 0;
}

.account-welcome > div > p:last-child {
  color: var(--muted);
  margin: 12px 0 0;
}

.account-actions {
  display: flex;
  gap: 10px;
}

.account-balance-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.35fr 0.75fr 0.75fr;
  margin-top: 38px;
}

.balance-primary,
.balance-mini,
.account-panel {
  border: 1px solid rgba(161, 181, 183, 0.55);
  border-radius: 8px;
  overflow: hidden;
}

.balance-primary {
  background: var(--ink);
  color: white;
  min-height: 240px;
  padding: 30px;
  position: relative;
}

.balance-primary::after {
  background: var(--coral);
  content: "";
  height: 7px;
  inset: auto 0 0;
  position: absolute;
}

.balance-primary p,
.balance-mini span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 750;
  margin: 0;
}

.balance-primary strong {
  display: block;
  font-size: 52px;
  margin-top: 30px;
}

.balance-primary > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.balance-line {
  background: rgba(255, 255, 255, 0.1);
  height: 5px;
  margin-top: 32px;
  overflow: hidden;
}

.balance-line i {
  background: var(--lime);
  display: block;
  height: 100%;
  width: 68%;
}

.balance-mini {
  background: var(--coral);
  color: var(--ink);
  min-height: 240px;
  padding: 26px;
}

.balance-mini--mint {
  background: var(--sky);
}

.balance-mini span {
  color: rgba(7, 11, 10, 0.66);
}

.balance-mini strong {
  display: block;
  font-size: 32px;
  margin-top: 58px;
}

.balance-mini small {
  display: block;
  margin-top: 8px;
}

.account-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  margin-top: 16px;
}

.account-panel {
  background: var(--surface);
  padding: 28px;
}

.account-panel-head {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.account-panel h2 {
  font-size: 28px;
  margin: 0;
}

.activity-list {
  border-top: 1px solid var(--line);
  display: grid;
  margin-top: 24px;
}

.activity-list article {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  padding: 17px 0;
}

.activity-list strong,
.activity-list small {
  display: block;
}

.activity-list small {
  color: var(--muted);
  font-size: 11px;
  margin-top: 4px;
}

.activity-list b {
  font-size: 13px;
}

.activity-icon {
  align-items: center;
  background: var(--lime);
  border-radius: 6px;
  display: flex;
  font-size: 9px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.activity-icon--coral {
  background: var(--coral);
}

.activity-icon--sky {
  background: var(--sky);
}

.quick-panel {
  background: var(--ink);
  color: white;
}

.quick-panel .eyebrow {
  color: var(--lime);
}

.quick-panel > a {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  padding: 16px 0;
}

.quick-panel > a:first-of-type {
  margin-top: 22px;
}

@media (max-width: 1080px) {
  .hero h1 { font-size: 60px; }
  .auth-page { grid-template-columns: 1fr 470px; }
  .account-balance-grid { grid-template-columns: 1fr 1fr; }
  .balance-primary { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  .mobile-auth-link { display: flex; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-visual { min-height: 480px; }
  .auth-form-side { min-height: 0; }
  .account-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .hero { min-height: 0; }
  .hero h1 { font-size: 42px; }
  .hero-switcher { bottom: 18px; right: 18px; }
  .hero-switcher button { width: 18px; }
  .hero-switcher button.is-active { width: 38px; }
  .motion-rail span { padding: 0 18px; }
  .section-head h2,
  .solo-head h2,
  .detail-layout h2 { font-size: 36px; }
  .auth-brand { left: 20px; top: 20px; }
  .auth-visual { min-height: 420px; }
  .auth-visual-copy { bottom: 28px; left: 20px; right: 20px; }
  .auth-visual-copy h1 { font-size: 40px; }
  .auth-visual-copy > p:not(.eyebrow),
  .auth-proof { display: none; }
  .auth-form-side { padding: 34px 16px; }
  .auth-card { padding: 26px; }
  .auth-card h2 { font-size: 32px; }
  .account-shell { padding: 50px 0 70px; }
  .account-welcome { align-items: start; flex-direction: column; }
  .account-welcome h1 { font-size: 42px; }
  .account-balance-grid { grid-template-columns: 1fr; }
  .balance-primary { grid-column: auto; }
  .balance-primary strong { font-size: 40px; }
  .balance-mini { min-height: 190px; }
  .balance-mini strong { margin-top: 36px; }
  .account-panel-head { align-items: start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .motion-rail-track { animation: none; }
  .hero-bg-frame { transform: none; }
}

/* Visual system v4 */

:root {
  --paper: #e8f1f4;
  --paper-strong: #d5e5ea;
  --surface: #ffffff;
  --coral: #ff765f;
  --sky: #b9ddeb;
  --gold: #f4c95e;
  --line: #c6d5d7;
  --shadow: 0 28px 80px rgba(7, 26, 21, 0.15);
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(232, 241, 244, 0.86);
  padding: 12px 0;
}

.header-inner {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(150, 174, 177, 0.48);
  box-shadow: 0 16px 50px rgba(7, 26, 21, 0.1);
}

.mega-menu {
  border-color: rgba(150, 174, 177, 0.5);
  box-shadow: 0 30px 80px rgba(7, 26, 21, 0.18);
}

.hero,
.hero-inner {
  min-height: 740px;
}

.hero-bg::after {
  background: linear-gradient(90deg, rgba(3, 8, 6, 0.98) 0%, rgba(3, 8, 6, 0.9) 38%, rgba(3, 8, 6, 0.52) 62%, rgba(3, 8, 6, 0.08) 100%);
}

.hero-inner {
  grid-template-columns: minmax(0, 760px) minmax(120px, 1fr);
  padding-bottom: 76px;
  padding-top: 76px;
}

.hero h1 {
  font-size: 76px;
  line-height: 0.96;
  max-width: 830px;
}

.hero-copy > p:not(.eyebrow) {
  font-size: 18px;
  max-width: 680px;
}

.hero-metrics {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  gap: 0;
  margin-top: 40px;
  padding-top: 22px;
}

.metric {
  border-left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0 18px 0 0;
}

.metric + .metric {
  padding-left: 18px;
}

.metric:last-child {
  border-right: 0;
}

.motion-rail {
  box-shadow: 0 10px 26px rgba(7, 26, 21, 0.12);
  position: relative;
  z-index: 2;
}

.section {
  padding: 116px 0;
}

.section-head {
  gap: 72px;
  margin-bottom: 48px;
}

.section-head h2,
.solo-head h2,
.detail-layout h2 {
  font-size: 52px;
  line-height: 1.04;
}

.scenario-grid {
  gap: 24px;
}

.scenario-card {
  background: #ffffff;
  border-color: rgba(150, 174, 177, 0.46);
  box-shadow: 0 18px 48px rgba(7, 26, 21, 0.08);
  display: block;
  min-height: 0;
  overflow: hidden;
}

.scenario-card:nth-child(2),
.scenario-card:nth-child(3),
.scenario-card:nth-child(4) {
  background: #ffffff;
}

.scenario-card-media {
  aspect-ratio: 16 / 10;
  height: auto;
  position: relative;
}

.scenario-card-media::after {
  background: linear-gradient(180deg, transparent 62%, rgba(4, 10, 8, 0.42));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.scenario-card-media img {
  filter: saturate(1.08) contrast(1.04);
}

.scenario-card-body {
  align-content: start;
  min-height: 260px;
  padding: 30px 32px 32px;
  position: relative;
}

.scenario-card .mini-icon {
  border: 4px solid white;
  box-shadow: 0 9px 24px rgba(7, 26, 21, 0.2);
  height: 48px;
  margin-top: -58px;
  position: relative;
  width: 48px;
  z-index: 2;
}

.scenario-card h3 {
  font-size: 27px;
  margin-top: 18px;
}

.scenario-card p {
  font-size: 15px;
  line-height: 1.62;
}

.scenario-card .card-actions {
  border-top: 1px solid var(--line);
  margin-top: 26px;
  padding-top: 18px;
}

.scenario-card:hover {
  box-shadow: 0 30px 72px rgba(7, 26, 21, 0.16);
  transform: translateY(-5px);
}

.carousel {
  box-shadow: 0 32px 90px rgba(7, 26, 21, 0.22);
}

.carousel-track {
  min-height: 540px;
}

.carousel-slide {
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
}

.carousel-slide > img {
  height: 540px;
}

.carousel-slide > div {
  padding: 58px;
}

.carousel-slide h3 {
  font-size: 42px;
}

.circle-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.circle-btn:hover {
  background: var(--lime);
  transform: translateY(-1px);
}

.pathway-card,
.value-card,
.faq-item,
.step,
.control-list article,
.form-panel,
.legal-shell,
.account-panel {
  box-shadow: 0 14px 40px rgba(7, 26, 21, 0.06);
}

.auth-form-side {
  background: var(--sky);
}

.auth-card {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(111, 143, 143, 0.55);
  box-shadow: 0 30px 90px rgba(7, 26, 21, 0.22);
}

.account-shell {
  background: linear-gradient(180deg, #d9e9ed 0, var(--paper) 330px);
}

.balance-primary {
  background: linear-gradient(135deg, #07100d 0%, #123f31 100%);
  box-shadow: 0 24px 60px rgba(7, 26, 21, 0.2);
}

@media (max-width: 1080px) {
  .hero,
  .hero-inner {
    min-height: 680px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .carousel-slide > div {
    padding: 42px;
  }
}

@media (max-width: 920px) {
  .hero,
  .hero-inner {
    min-height: 620px;
  }

  .hero-inner {
    display: flex;
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .carousel-track {
    min-height: 690px;
  }

  .carousel-slide {
    grid-template-columns: 1fr;
  }

  .carousel-slide > img {
    height: 360px;
  }

  .carousel-slide > div {
    padding: 38px 38px 92px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 8px 0;
  }

  .hero,
  .hero-inner {
    min-height: 650px;
  }

  .hero-bg::after {
    background: linear-gradient(180deg, rgba(3, 8, 6, 0.54) 0%, rgba(3, 8, 6, 0.9) 68%, rgba(3, 8, 6, 0.98) 100%);
  }

  .hero-inner {
    align-items: flex-end;
    padding-bottom: 82px;
    padding-top: 180px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .hero-switcher {
    bottom: 24px;
  }

  .section {
    padding: 78px 0;
  }

  .section-head {
    gap: 20px;
    margin-bottom: 32px;
  }

  .section-head h2,
  .solo-head h2,
  .detail-layout h2 {
    font-size: 36px;
  }

  .scenario-grid {
    gap: 18px;
  }

  .scenario-card-body {
    min-height: 0;
    padding: 28px 24px 26px;
  }

  .scenario-card h3 {
    font-size: 24px;
  }

  .carousel-track {
    min-height: 620px;
  }

  .carousel-slide > img {
    height: 280px;
  }

  .carousel-slide > div {
    padding: 30px 24px 96px;
  }

  .carousel-slide h3 {
    font-size: 32px;
  }

  .carousel-controls {
    bottom: 20px;
    left: 24px;
    right: auto;
  }

  .account-shell {
    background: var(--paper);
  }
}

/* Account creation */

.signup-page {
  grid-template-columns: minmax(0, 1.08fr) minmax(510px, 0.82fr);
}

.signup-visual::after {
  display: none;
}

.signup-scenes,
.signup-scene,
.signup-scene > img,
.signup-scene-shade {
  inset: 0;
  position: absolute;
}

.signup-scenes {
  overflow: hidden;
}

.signup-scene {
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 700ms ease, transform 7s ease;
  visibility: hidden;
}

.signup-scene.is-active {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  z-index: 1;
}

.signup-scene > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.signup-scene-shade {
  background: linear-gradient(180deg, rgba(2, 8, 6, 0.12) 0%, rgba(2, 8, 6, 0.3) 40%, rgba(2, 8, 6, 0.94) 100%);
}

.signup-scene-copy {
  bottom: 112px;
  color: white;
  left: 52px;
  max-width: 680px;
  position: absolute;
  right: 52px;
  z-index: 2;
}

.signup-scene-copy .eyebrow {
  color: var(--lime);
}

.signup-scene-copy h1 {
  font-size: 52px;
  line-height: 1;
  margin: 0;
}

.signup-scene-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
  margin: 18px 0 0;
  max-width: 610px;
}

.signup-scene-index {
  align-items: center;
  color: rgba(255, 255, 255, 0.62);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 10px;
  margin-bottom: 20px;
}

.signup-scene-index i {
  background: rgba(255, 255, 255, 0.38);
  height: 1px;
  width: 34px;
}

.signup-scene-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.signup-scene-proof span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  padding: 9px 11px;
}

.signup-rotator-controls {
  align-items: center;
  bottom: 42px;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 52px;
  position: absolute;
  right: 52px;
  z-index: 4;
}

.signup-rotator-dots {
  display: flex;
  gap: 7px;
}

.signup-rotator-dots button {
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  border-radius: 999px;
  height: 4px;
  padding: 0;
  transition: background 180ms ease, width 180ms ease;
  width: 22px;
}

.signup-rotator-dots button.is-active {
  background: var(--lime);
  width: 48px;
}

.signup-rotator-next {
  align-items: center;
  background: var(--lime);
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.signup-form-side {
  background: #eef3f2;
  padding: 34px 38px;
}

.signup-card {
  max-width: 600px;
  padding: 32px 34px;
}

.signup-heading {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.signup-heading > a {
  color: var(--green-dark);
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 800;
  padding-top: 8px;
  white-space: nowrap;
}

.signup-heading h2 {
  font-size: 34px;
}

.signup-intro {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 10px 0 0;
}

.signup-intent {
  background: #e6f2ee;
  border-left: 3px solid var(--green-dark);
  display: grid;
  gap: 3px;
  margin: 16px 0;
  padding: 11px 14px;
}

.signup-intent span,
.signup-intent small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.signup-intent span {
  font-weight: 800;
  text-transform: uppercase;
}

.signup-intent strong {
  font-size: 16px;
}

.account-type {
  border: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
}

.account-type legend {
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}

.account-type label {
  cursor: pointer;
  position: relative;
}

.account-type input {
  opacity: 0;
  position: absolute;
}

.account-type span {
  background: white;
  border: 1px solid #b7c8c4;
  border-radius: 6px;
  display: grid;
  min-height: 72px;
  padding: 13px;
}

.account-type small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
  margin-top: 4px;
}

.account-type input:checked + span {
  background: #e8f5ef;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 1px var(--green-dark);
}

.signup-form {
  gap: 13px;
}

.signup-form .field input,
.signup-form .field select {
  min-height: 50px;
}

.field-label {
  display: block;
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 8px;
}

.field-help {
  color: var(--muted);
  display: block;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 6px;
}

.country-picker {
  position: relative;
}

.country-picker-trigger {
  align-items: center;
  background: white;
  border: 1px solid #a9bdb8;
  border-radius: 6px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 15px;
  width: 100%;
}

.country-picker-trigger > span {
  align-items: center;
  display: flex;
  font-size: 13px;
  gap: 10px;
}

.country-picker-trigger > b {
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
}

.country-placeholder {
  color: #74817d;
  font-style: normal;
}

.country-popover {
  background: white;
  border: 1px solid #a9bdb8;
  border-radius: 6px;
  box-shadow: 0 22px 60px rgba(7, 26, 21, 0.22);
  display: none;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 30;
}

.country-picker.is-open .country-popover {
  display: block;
}

.country-picker.is-open .country-picker-trigger {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 1px var(--green-dark);
}

.country-search {
  align-items: center;
  border-bottom: 1px solid #dbe5e2;
  display: flex;
  gap: 9px;
  padding: 10px 12px;
}

.country-search > span {
  color: var(--muted);
  font-size: 17px;
}

.country-search input {
  border: 0;
  min-height: 34px;
  outline: 0;
  padding: 0;
  width: 100%;
}

.country-options {
  max-height: 252px;
  overflow-y: auto;
  padding: 6px;
}

.country-options button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 5px;
  color: var(--ink);
  display: grid;
  gap: 10px;
  grid-template-columns: 24px 1fr 30px;
  min-height: 40px;
  padding: 7px 9px;
  text-align: left;
  width: 100%;
}

.country-options button:hover,
.country-options button[aria-selected="true"] {
  background: #e8f5ef;
}

.country-options button > span {
  font-size: 17px;
}

.country-options button > b {
  font-size: 12px;
}

.country-options button > small {
  color: var(--muted);
  font-size: 9px;
  text-align: right;
}

.country-empty {
  color: var(--muted);
  display: none;
  font-size: 11px;
  margin: 0;
  padding: 18px 12px;
  text-align: center;
}

.country-empty.is-visible {
  display: block;
}

.signup-consent {
  font-size: 11px;
}

.signup-consent a {
  color: var(--green-dark);
  font-weight: 800;
}

.signup-security {
  align-items: flex-start;
  border-top: 1px solid #dbe5e2;
  color: var(--muted);
  display: flex;
  font-size: 9px;
  gap: 8px;
  line-height: 1.45;
  margin-top: 15px;
  padding-top: 13px;
}

.signup-security > span {
  align-items: center;
  background: #dff2e8;
  border-radius: 50%;
  color: var(--green-dark);
  display: flex;
  flex: 0 0 auto;
  height: 18px;
  justify-content: center;
  width: 18px;
}

.signup-security p {
  margin: 1px 0 0;
}

.signup-card .auth-bottom {
  margin-bottom: 0;
  text-align: center;
}

/* Personal product workspaces */

.product-use-hero {
  background: var(--ink);
  color: white;
  min-height: 650px;
  overflow: hidden;
  position: relative;
}

.product-use-hero > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.product-use-hero-shade {
  background: linear-gradient(90deg, rgba(2, 10, 8, 0.94) 0%, rgba(2, 10, 8, 0.73) 47%, rgba(2, 10, 8, 0.18) 100%);
  inset: 0;
  position: absolute;
}

.product-use-hero-inner {
  align-items: end;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.64fr);
  min-height: 650px;
  padding-bottom: 72px;
  padding-top: 150px;
  position: relative;
}

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

.product-use-hero-copy .eyebrow {
  color: var(--lime);
}

.product-use-hero h1 {
  font-size: 66px;
  line-height: 0.98;
  margin: 0;
  max-width: 760px;
}

.product-use-hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.65;
  margin: 24px 0 28px;
  max-width: 650px;
}

.product-use-proof {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
}

.product-use-proof div {
  display: grid;
  gap: 5px;
  padding: 17px 24px;
}

.product-use-proof div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.product-use-proof strong {
  color: var(--lime);
  font-size: 24px;
}

.product-use-proof span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.45;
}

.product-use-section {
  background: #dfeaec;
}

.product-use-grid {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
}

.product-use-grid--reverse {
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.08fr);
}

.product-tool,
.product-summary,
.account-route,
.card-studio {
  border-radius: 8px;
  min-width: 0;
}

.product-tool {
  background: #07100d;
  color: white;
  padding: 38px;
}

.product-tool--light {
  background: white;
  border: 1px solid #c4d2d0;
  color: var(--ink);
}

.tool-heading {
  align-items: flex-start;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.tool-heading h2,
.account-route h2 {
  font-size: 34px;
  line-height: 1.08;
  margin: 0;
}

.tool-state {
  background: var(--lime);
  border-radius: 999px;
  color: var(--ink);
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 850;
  padding: 9px 11px;
}

.tool-state--blue {
  background: var(--sky);
}

.tool-state--coral {
  background: var(--coral);
}

.tool-state--green {
  background: #ccefdc;
}

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

.workspace-form .field {
  color: inherit;
}

.workspace-form .field input,
.workspace-form .field select {
  background: white;
  border-color: #a9bdb8;
  color: var(--ink);
  min-height: 54px;
}

.product-tool:not(.product-tool--light) .field {
  color: rgba(255, 255, 255, 0.78);
}

.product-tool:not(.product-tool--light) .field input,
.product-tool:not(.product-tool--light) .field select {
  border-color: rgba(255, 255, 255, 0.2);
}

.field-pair {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.segmented-control {
  border: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
}

.segmented-control legend {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 9px;
}

.segmented-control label {
  cursor: pointer;
  position: relative;
}

.segmented-control input {
  opacity: 0;
  position: absolute;
}

.segmented-control span {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
}

.segmented-control label:first-of-type span {
  border-radius: 6px 0 0 6px;
}

.segmented-control label:last-of-type span {
  border-left: 0;
  border-radius: 0 6px 6px 0;
}

.segmented-control input:checked + span {
  background: var(--lime);
  color: var(--ink);
}

.check-field--boxed {
  align-items: flex-start;
  background: rgba(185, 214, 226, 0.2);
  border: 1px solid #c4d2d0;
  border-radius: 6px;
  line-height: 1.45;
  padding: 12px;
}

.tool-submit {
  justify-content: space-between;
  margin-top: 3px;
  width: 100%;
}

.tool-status {
  color: var(--green-dark);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  min-height: 18px;
}

.product-tool:not(.product-tool--light) .tool-status {
  color: var(--lime);
}

.product-summary {
  background: white;
  border: 1px solid #c4d2d0;
  padding: 38px;
}

.product-summary h3 {
  font-size: 18px;
  margin: 34px 0 7px;
}

.summary-amount {
  display: block;
  font-size: 38px;
  line-height: 1;
}

.product-summary dl {
  margin: 34px 0 0;
}

.product-summary dl div {
  align-items: center;
  border-top: 1px solid #dce5e3;
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}

.product-summary dt {
  color: var(--muted);
  font-size: 11px;
}

.product-summary dd {
  font-size: 12px;
  font-weight: 800;
  margin: 0;
  text-align: right;
}

.summary-notice {
  align-items: flex-start;
  background: #e8f5ef;
  display: flex;
  gap: 11px;
  margin-top: 20px;
  padding: 15px;
}

.summary-notice > span {
  align-items: center;
  background: var(--green-dark);
  border-radius: 50%;
  color: white;
  display: flex;
  flex: 0 0 auto;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.summary-notice p,
.risk-note {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
  margin: 0;
}

.summary-notice strong {
  color: var(--ink);
  display: block;
  font-size: 11px;
  margin-bottom: 3px;
}

.use-usd {
  background: #d8e9f0;
}

.account-route {
  background: #0b3026;
  color: white;
  padding: 38px;
}

.account-route .eyebrow {
  color: var(--lime);
}

.account-route ol {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.account-route li {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 14px;
  grid-template-columns: 38px 1fr;
  padding: 18px 0;
}

.account-route li > span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 850;
}

.account-route li strong {
  font-size: 14px;
}

.account-route li p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.5;
  margin: 5px 0 0;
}

.use-cards {
  background: #e7e2dc;
}

.card-studio {
  background: #06120f;
  padding: 38px;
}

.virtual-card {
  aspect-ratio: 1.58;
  background: #14533f;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 470px;
  min-width: 0;
  overflow: hidden;
  padding: 28px;
}

.virtual-card-top,
.virtual-card-meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.virtual-card-top > span:last-child {
  color: var(--lime);
  font-size: 10px;
  font-weight: 850;
}

.card-chip {
  background: var(--coral);
  border-radius: 5px;
  height: 34px;
  width: 45px;
}

.virtual-card > strong {
  font-size: 22px;
  letter-spacing: 0;
}

.virtual-card-meta span {
  display: grid;
  gap: 3px;
}

.virtual-card-meta small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
}

.virtual-card-meta b {
  font-size: 11px;
}

.card-control-list {
  display: grid;
  gap: 1px;
  margin-top: 30px;
}

.card-control-list article {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  display: grid;
  gap: 15px;
  grid-template-columns: 52px 1fr;
  padding: 14px;
}

.card-control-list article > span {
  color: var(--coral);
  font-size: 9px;
  font-weight: 900;
}

.card-control-list strong {
  font-size: 12px;
}

.card-control-list p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.45;
  margin: 3px 0 0;
}

.use-yield {
  background: #dcebdc;
}

.yield-summary {
  background: #092119;
  border-color: #092119;
  color: white;
  text-align: center;
}

.yield-summary .eyebrow {
  color: var(--lime);
}

.yield-ring {
  align-items: center;
  border: 10px solid #1e5f49;
  border-top-color: var(--lime);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  height: 176px;
  justify-content: center;
  margin: 28px auto;
  width: 176px;
}

.yield-ring strong {
  font-size: 34px;
}

.yield-ring span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.yield-summary dl div {
  border-color: rgba(255, 255, 255, 0.16);
}

.yield-summary dt,
.yield-summary .risk-note {
  color: rgba(255, 255, 255, 0.58);
}

.yield-summary .risk-note {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 20px;
  padding-top: 18px;
  text-align: left;
}

@media (max-width: 1100px) {
  .signup-page {
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1fr);
  }

  .signup-scene-copy h1 {
    font-size: 44px;
  }

  .product-use-hero h1 {
    font-size: 56px;
  }

  .product-use-grid,
  .product-use-grid--reverse {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .signup-page {
    display: block;
  }

  .signup-visual {
    min-height: 620px;
  }

  .signup-form-side {
    min-height: auto;
  }

  .product-use-hero-inner {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .product-use-proof {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    grid-template-columns: repeat(3, 1fr);
  }

  .product-use-proof div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    border-top: 0;
  }

  .product-use-grid,
  .product-use-grid--reverse {
    grid-template-columns: 1fr;
  }

  .account-route {
    order: 2;
  }
}

@media (max-width: 680px) {
  .signup-visual {
    min-height: 590px;
  }

  .signup-scene-copy {
    bottom: 102px;
    left: 24px;
    right: 24px;
  }

  .signup-scene,
  .signup-scene.is-active {
    transform: none;
  }

  .signup-scene-copy h1 {
    font-size: 38px;
  }

  .signup-scene-copy > p:not(.eyebrow) {
    font-size: 13px;
  }

  .signup-scene-proof span {
    font-size: 9px;
    padding: 7px 9px;
  }

  .signup-rotator-controls {
    bottom: 34px;
    left: 24px;
    right: 24px;
  }

  .signup-rotator-dots button {
    width: 15px;
  }

  .signup-rotator-dots button.is-active {
    width: 34px;
  }

  .signup-form-side {
    padding: 34px 16px;
  }

  .signup-card {
    padding: 24px 20px;
  }

  .signup-heading h2 {
    font-size: 30px;
  }

  .signup-heading {
    padding-right: 66px;
    position: relative;
  }

  .signup-heading > a {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }

  .account-type,
  .field-pair {
    grid-template-columns: 1fr;
  }

  .country-popover {
    position: fixed;
    bottom: 14px;
    left: 14px;
    right: 14px;
    top: auto;
  }

  .country-options {
    max-height: 330px;
  }

  .product-use-hero,
  .product-use-hero-inner {
    min-height: 680px;
  }

  .product-use-hero-shade {
    background: linear-gradient(180deg, rgba(2, 10, 8, 0.18), rgba(2, 10, 8, 0.96) 62%);
  }

  .product-use-hero-inner {
    align-content: end;
    padding-bottom: 48px;
    padding-top: 160px;
  }

  .product-use-hero h1 {
    font-size: 43px;
  }

  .product-use-hero-copy > p:not(.eyebrow) {
    font-size: 14px;
  }

  .product-use-proof {
    display: none;
  }

  .product-tool,
  .product-summary,
  .account-route,
  .card-studio {
    padding: 24px;
  }

  .tool-heading {
    display: grid;
  }

  .tool-heading h2,
  .account-route h2 {
    font-size: 28px;
  }

  .tool-state {
    justify-self: start;
  }

  .summary-amount {
    font-size: 31px;
  }

  .virtual-card {
    aspect-ratio: auto;
    min-height: 210px;
    overflow: hidden;
    padding: 20px;
    width: 100%;
  }

  .virtual-card > strong {
    font-size: 16px;
  }
}
