:root {
  --bg: #08111a;
  --panel: #101b27;
  --panel2: #142333;
  --line: #26415a;
  --text: #ebf3f9;
  --muted: #94aabf;
  --green: #2fc97f;
  --red: #ef6464;
  --amber: #efbe53;
  --accent: #56a6ff;
  --bg-top: rgba(86, 166, 255, 0.18);
  --body-start: #071019;
  --body-end: #08111a;
  --panel-shadow: none;
  --hero-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

html.day-theme {
  --bg: #ffffff;
  --panel: #ffffff;
  --panel2: #eef6ff;
  --line: #c9dcef;
  --text: #16314d;
  --muted: #587492;
  --green: #1f9f63;
  --red: #d95454;
  --amber: #d39c17;
  --accent: #0a66c2;
  --bg-top: rgba(10, 102, 194, 0.16);
  --body-start: #ffffff;
  --body-end: #f4f9ff;
  --panel-shadow: 0 12px 32px rgba(10, 102, 194, 0.10);
  --hero-shadow: 0 18px 44px rgba(10, 102, 194, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  position: relative;
  color: var(--text);
  font-family: Menlo, Monaco, Consolas, monospace;
  background:
    radial-gradient(circle at top, var(--bg-top), transparent 30%),
    linear-gradient(180deg, var(--body-start) 0%, var(--body-end) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(86, 166, 255, 0.12), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(74, 223, 184, 0.09), transparent 24%),
    radial-gradient(circle at 76% 74%, rgba(245, 195, 93, 0.08), transparent 22%),
    var(--market-texture) center top / cover no-repeat;
  opacity: 0.74;
  mix-blend-mode: screen;
  z-index: 0;
}

html.day-theme body::before {
  opacity: 0.34;
  mix-blend-mode: multiply;
}

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

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1380px;
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  margin-bottom: 18px;
}

.brand-lockup {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  width: min(360px, 42vw);
  height: 118px;
  text-align: left;
}

.brand-wordmark {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  aspect-ratio: 3.2 / 1;
  filter: drop-shadow(0 4px 14px rgba(86, 166, 255, 0.22));
}

.brand-wordmark--light {
  display: none;
}

html.day-theme .brand-wordmark--dark {
  display: none;
}

html.day-theme .brand-wordmark--light {
  display: block;
  filter: drop-shadow(0 0 5px rgba(22, 49, 77, 0.28));
}

.brand-lockup .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.controls {
  display: flex;
  align-items: center;
  min-height: 42px;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.icon-toggle,
.lang-control {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  color: var(--text);
  border-radius: 999px;
  height: 42px;
  padding: 0;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  line-height: 1;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
  box-shadow: var(--panel-shadow);
}

.icon-toggle {
  width: 42px;
}

.icon-toggle:hover,
.lang-control:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent) 44%, var(--line));
}

.icon-toggle:focus-visible,
.lang-control:focus-within {
  outline: 2px solid color-mix(in srgb, var(--accent) 60%, white);
  outline-offset: 2px;
}

.icon-toggle svg,
.lang-control svg {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 22px;
}

.theme-auto-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.lang-control {
  gap: 0;
  width: 42px;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.lang-links {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lang-select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: transparent;
  font-size: 16px;
  outline: none;
  cursor: pointer;
  opacity: 0;
}

.lang-control > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.lang-select option {
  color: #111;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 22px;
  margin-bottom: 22px;
}

.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel2) 100%);
  box-shadow: var(--panel-shadow);
}

.hero-copy {
  border-radius: 30px;
  padding: 40px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: auto -80px -90px auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(86, 166, 255, 0.24), rgba(86, 166, 255, 0.04) 46%, transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.hero-title {
  margin: 16px 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 9.4ch;
}

.lead {
  margin: 0;
  max-width: 40ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--line);
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent) 44%, var(--line));
}

.button-primary {
  background: color-mix(in srgb, var(--accent) 20%, var(--panel));
  border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
  color: var(--text);
}

.button-secondary {
  background: transparent;
}

.metrics-panel {
  border-radius: 30px;
  padding: 26px;
  margin-bottom: 22px;
}

.promo-panel {
  border-radius: 30px;
  padding: 26px;
  margin-bottom: 22px;
}

.promo-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 10%, var(--panel)) 0%, color-mix(in srgb, var(--panel2) 96%, transparent) 100%);
  padding: 24px 26px;
  box-shadow: var(--panel-shadow);
}

.promo-title {
  margin: 14px 0 10px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.promo-body {
  margin: 0;
  max-width: 78ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.metrics-shell {
  margin-top: 0;
}

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

.metric-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.12);
  padding: 20px;
}

html.day-theme .metric-card {
  background: rgba(255, 255, 255, 0.72);
}

.metric-value {
  margin-top: 10px;
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}

.metric-label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-gallery {
  display: block;
  min-height: 520px;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(8, 17, 26, 0.04), rgba(8, 17, 26, 0.18)),
    linear-gradient(180deg, var(--panel) 0%, var(--panel2) 100%);
  box-shadow: var(--hero-shadow);
  min-height: 220px;
  padding: 16px;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(8, 17, 26, 0.10));
}

.showcase-card--hero {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(4, 10, 18, 0.04), rgba(4, 10, 18, 0.42)),
    var(--photo-image) center center / cover no-repeat;
}

html.day-theme .showcase-card--hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(16, 49, 77, 0.16)),
    var(--photo-image) center center / cover no-repeat;
}

.hero-overlay-stack {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  gap: 14px;
}

.shot-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.shot-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.shot-frame--ticker {
  height: 88px;
  backdrop-filter: blur(4px);
}

.shot-frame--ticker img {
  object-position: center 26%;
  transform: scale(1.08);
}

.shot-frame--chart {
  min-height: 220px;
}

.shot-frame--chart img {
  height: 280px;
  object-position: center 72%;
  transform: scale(1.12);
}

.shot-frame--chart::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--panel) 85%);
}

.shot-frame--metrics {
  min-height: 220px;
  display: flex;
  align-items: stretch;
}

.shot-frame--metrics img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1.08);
  filter: blur(7px) saturate(0.95);
  opacity: 0.56;
}

.shot-frame--metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 17, 26, 0.18), rgba(8, 17, 26, 0.44)),
    radial-gradient(circle at 20% 20%, rgba(86, 166, 255, 0.16), transparent 36%);
  z-index: 1;
}

html.day-theme .shot-frame--metrics::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.46)),
    radial-gradient(circle at 20% 20%, rgba(10, 102, 194, 0.12), transparent 36%);
}

.shot-overlay {
  position: relative;
  z-index: 2;
  padding: 18px;
  display: grid;
  gap: 10px;
  align-self: stretch;
  width: 100%;
}

.shot-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 32%, var(--line));
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html.day-theme .shot-label {
  background: rgba(255, 255, 255, 0.8);
}

.shot-points {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.shot-points div {
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  background: rgba(0, 0, 0, 0.16);
  font-size: 13px;
  line-height: 1.5;
}

html.day-theme .shot-points div {
  background: rgba(255, 255, 255, 0.76);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 22px;
  margin-bottom: 22px;
}

.section-card {
  border-radius: 28px;
  padding: 30px;
}

.section-title {
  margin: 14px 0 10px;
  font-size: clamp(24px, 3.8vw, 40px);
  line-height: 1.02;
  max-width: 15ch;
}

.section-body {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 58ch;
}

.proof-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.product-visuals {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.carousel {
  display: grid;
  gap: 14px;
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
  background: color-mix(in srgb, var(--panel) 92%, transparent);
}

.carousel-track {
  display: flex;
  transition: transform 240ms ease;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  padding: 0;
}

.carousel-slide-card {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(220px, 0.82fr);
  min-height: 332px;
}

.carousel-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
  border-left: 1px solid color-mix(in srgb, var(--accent) 12%, var(--line));
  background: color-mix(in srgb, var(--panel2) 92%, transparent);
}

.carousel-copy strong {
  font-size: 18px;
  line-height: 1.3;
}

.carousel-copy span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.carousel-slide .shot-frame {
  min-height: 332px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.carousel-slide .shot-frame--ticker {
  height: 332px;
}

.carousel-slide .shot-frame--ticker img {
  object-position: center 18%;
  transform: scale(1.24);
}

.carousel-slide .shot-frame--chart {
  min-height: 332px;
}

.carousel-slide .shot-frame--chart img {
  height: 332px;
  object-position: center 75%;
  transform: scale(1.18);
}

.carousel-slide .shot-frame--metrics {
  min-height: 332px;
}

.carousel-slide .shot-frame--metrics img {
  object-position: center 16%;
  transform: scale(1.14);
  filter: blur(2px) saturate(1);
  opacity: 0.88;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--line) 78%, transparent);
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease;
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 17px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel2) 92%, transparent);
  color: var(--text);
  line-height: 1.55;
}

.proof-item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent) 70%, transparent);
  flex: 0 0 auto;
}

.cta {
  margin-top: 4px;
  border-radius: 28px;
  padding: 26px 28px;
  display: grid;
  gap: 18px;
  align-items: start;
}

.cta .section-title {
  max-width: 24ch;
}

.cta .section-body {
  max-width: 62ch;
}

.cta-actions {
  margin-top: 4px;
}

.footer {
  margin-top: 18px;
  padding: 14px 16px 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-contact-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px dotted color-mix(in srgb, var(--line) 88%, transparent);
}

.footer-contact-link:hover {
  color: var(--accent);
  border-bottom-color: currentColor;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 50;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 18, 0.72);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100vw - 32px));
  max-height: calc(100vh - 28px);
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel2) 100%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.modal-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--line);
}

.modal-head h3 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.05;
}

.modal-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  max-width: 64ch;
}

.modal-close {
  min-width: 42px;
}

.auth-form {
  display: grid;
  gap: 14px;
  margin-top: 8px;
  padding: 20px 18px 18px;
  overflow: auto;
}

.auth-mode-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px 18px 0;
}

.auth-mode-button {
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel2) 92%, transparent);
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.auth-mode-button.active {
  border-color: color-mix(in srgb, var(--accent) 44%, var(--line));
  color: var(--text);
  background: color-mix(in srgb, var(--accent) 16%, var(--panel));
}

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

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

.auth-form-grid--phone {
  grid-template-columns: minmax(130px, 0.72fr) minmax(0, 1.28fr);
}

.auth-form label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.auth-input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel2) 90%, transparent);
  color: var(--text);
  font: inherit;
  font-size: 16px;
}

.auth-input:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--accent) 60%, white);
  outline-offset: 2px;
  border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
}

.auth-select {
  appearance: none;
  cursor: pointer;
}

.auth-submit {
  width: 100%;
  min-height: 52px;
  border: 1px solid color-mix(in srgb, var(--accent) 48%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 20%, var(--panel));
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease;
}

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

.auth-submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.auth-submit--secondary {
  min-height: 46px;
  border-radius: 14px;
  font-weight: 700;
}

.auth-forgot {
  border: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  text-align: left;
  padding: 0;
}

.auth-reset-box {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: color-mix(in srgb, var(--panel2) 92%, transparent);
}

.captcha-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.captcha-question {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel2) 92%, transparent);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
}

.field-invalid {
  border-color: color-mix(in srgb, var(--red) 66%, var(--line));
}

.auth-feedback {
  min-height: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.auth-feedback.error {
  color: var(--red);
}

.auth-feedback.success {
  color: var(--green);
}

.auth-note {
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .hero,
  .section-grid,
  .cta,
  .carousel-slide-card {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-gallery {
    min-height: unset;
  }

  .photo-card--hero {
    grid-row: auto;
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .wrap {
    padding: 16px;
  }

  .topbar {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .controls {
    display: flex;
    justify-content: center;
    justify-self: center;
    margin: 0 auto;
    width: auto;
    max-width: 100%;
  }

  .lang-links {
    width: 100%;
    justify-content: center;
  }

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

  .hero-copy,
  .promo-card,
  .section-card,
  .cta {
    padding: 22px;
  }

  .brand-lockup {
    margin: 0 auto;
    justify-self: center;
    justify-content: center;
    text-align: center;
    width: min(320px, 72vw);
    height: 96px;
  }

  .brand-wordmark {
    object-position: center;
  }

  .modal {
    padding: 10px;
  }

  .modal-card {
    border-radius: 24px;
  }

  .modal-head {
    grid-template-columns: 1fr;
  }

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

  .carousel-copy {
    border-left: 0;
    border-top: 1px solid color-mix(in srgb, var(--accent) 12%, var(--line));
  }
}
