:root {
  --bg: #07101f;
  --bg-soft: #0b1628;
  --panel: rgba(15, 24, 43, 0.92);
  --panel-strong: rgba(11, 18, 34, 0.98);
  --panel-alt: rgba(18, 28, 49, 0.86);
  --line: rgba(132, 166, 233, 0.16);
  --line-strong: rgba(132, 166, 233, 0.28);
  --text: #f5f8ff;
  --muted: rgba(226, 233, 248, 0.76);
  --muted-strong: rgba(226, 233, 248, 0.92);
  --blue-1: #a6c8ff;
  --blue-2: #78abff;
  --blue-3: #5e9aff;
  --blue-4: #143c84;
  --green: #54cb7d;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-lg: 0 28px 90px rgba(0, 8, 22, 0.42);
  --shadow-md: 0 18px 48px rgba(0, 8, 22, 0.28);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(83, 147, 255, 0.24), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(83, 147, 255, 0.16), transparent 22%),
    linear-gradient(180deg, #081120 0%, #060d1b 55%, #08101d 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(7, 14, 26, 0.72);
  border-bottom: 1px solid rgba(132, 166, 233, 0.08);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(123, 198, 255, 0.36), transparent 34%),
    linear-gradient(145deg, rgba(50, 140, 255, 0.42), rgba(76, 133, 245, 0.1)),
    linear-gradient(180deg, #102042, #0d1832);
  border: 1px solid rgba(142, 188, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 32px rgba(0, 0, 0, 0.3),
    0 0 26px rgba(58, 142, 255, 0.18);
}

.brand-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(5, 10, 26, 0.28));
}

.brand-text {
  min-width: 0;
}

.brand-text strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links {
  justify-content: center;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.footer-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(132, 166, 233, 0.1);
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.96rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #071020;
  background: linear-gradient(135deg, var(--blue-1) 0%, var(--blue-2) 42%, var(--blue-3) 100%);
  box-shadow: 0 16px 42px rgba(83, 147, 255, 0.32);
}

.btn-secondary {
  color: var(--text);
  background: rgba(18, 28, 49, 0.72);
  border-color: rgba(142, 188, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(18, 28, 49, 0.72);
  border: 1px solid rgba(142, 188, 255, 0.14);
  color: var(--muted-strong);
  font-weight: 700;
}

.lang-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(83, 147, 255, 0.14);
  border: 1px solid rgba(142, 188, 255, 0.14);
  color: #9fc7ff;
  font-size: 0.86rem;
}

.page {
  padding: 48px 0 36px;
}

.screen-page {
  padding: 40px 0 36px;
}

.screen-shell {
  width: 100%;
}

.screen-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(104, 180, 255, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(15, 24, 43, 0.96), rgba(10, 18, 34, 0.99));
  box-shadow: var(--shadow-lg);
}

.screen-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at top left, rgba(142, 188, 255, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(83, 147, 255, 0.1), transparent 24%);
  pointer-events: none;
}

.screen-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px;
}

.screen-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.screen-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.screen-copy {
  max-width: 62ch;
}

.screen-copy h1,
.screen-copy h2 {
  margin-bottom: 12px;
}

.screen-copy p {
  max-width: 56ch;
}

.screen-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(142, 188, 255, 0.2), rgba(142, 188, 255, 0));
}

.screen-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.screen-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(18, 28, 49, 0.72);
  border: 1px solid rgba(142, 188, 255, 0.12);
  color: var(--muted-strong);
  line-height: 1.56;
}

.screen-list li strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.screen-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, #9ac3ff, #4a92ff);
  box-shadow: 0 0 16px rgba(83, 147, 255, 0.5);
}

.screen-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(18, 28, 49, 0.84);
  border: 1px solid rgba(142, 188, 255, 0.14);
  box-shadow: var(--shadow-md);
}

.screen-card h3 {
  margin-bottom: 10px;
}

.screen-card p {
  margin: 0;
}

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

.screen-stat {
  padding: 16px 14px;
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(142, 188, 255, 0.14);
}

.screen-stat strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
}

.screen-flow {
  display: grid;
  gap: 10px;
}

.screen-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 20px;
  background: rgba(18, 28, 49, 0.72);
  border: 1px solid rgba(142, 188, 255, 0.12);
}

.screen-step-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(83, 147, 255, 0.14);
  border: 1px solid rgba(142, 188, 255, 0.16);
  color: #9bc4ff;
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
}

.home-page {
  min-height: calc(100dvh - 78px);
  padding: 18px 0 14px;
}

.home-shell {
  display: grid;
  gap: 12px;
}

.home-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

.home-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  height: 290px;
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.home-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at top left, rgba(142, 188, 255, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(83, 147, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.home-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(180deg, rgba(17, 27, 47, 0.96), rgba(11, 19, 34, 0.99));
}

.home-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 100%;
  width: 100%;
}

.home-mark-image {
  width: 108px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(5, 12, 28, 0.32));
}

.home-wordmark {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #eef5ff;
  text-shadow: 0 8px 30px rgba(83, 147, 255, 0.16);
}

.home-logo-wrap img {
  width: min(100%, 108px);
  max-height: 108px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(5, 12, 28, 0.34));
}

.home-logo-line {
  color: rgba(226, 233, 248, 0.78);
  font-size: 0.92rem;
  line-height: 1.42;
  text-align: center;
  max-width: 25ch;
}

.home-overview-card {
  padding: 24px;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #1d4b9d 0%, #2f63bd 45%, #6aa8ff 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-overview-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  line-height: 0.96;
  max-width: 9ch;
  margin-bottom: 8px;
}

.home-overview-card p {
  color: rgba(248, 251, 255, 0.9);
  font-size: 0.96rem;
  line-height: 1.42;
  max-width: 20ch;
}

.home-copy-card {
  position: relative;
  overflow: hidden;
  padding: 22px 26px 24px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 18%, rgba(90, 163, 255, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(15, 24, 43, 0.98), rgba(10, 17, 31, 0.99));
  box-shadow: var(--shadow-lg);
}

.home-copy-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at top left, rgba(142, 188, 255, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(83, 147, 255, 0.08), transparent 22%);
  pointer-events: none;
}

.home-copy-inner {
  position: relative;
  max-width: 860px;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 28, 49, 0.74);
  border: 1px solid rgba(142, 188, 255, 0.14);
  color: var(--muted-strong);
  font-weight: 700;
  font-size: 0.82rem;
}

.home-kicker-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, #9cc6ff, #5c9bff);
  box-shadow: 0 0 14px rgba(83, 147, 255, 0.55);
}

.home-title {
  margin: 14px 0 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.35rem, 4.2vw, 3.95rem);
  line-height: 0.97;
  letter-spacing: -0.06em;
  max-width: 10.8ch;
}

.home-title span {
  display: block;
}

.home-lead {
  max-width: 46ch;
  color: rgba(226, 233, 248, 0.84);
  font-size: 0.98rem;
  line-height: 1.56;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.home-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.home-trust-item {
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(18, 28, 49, 0.72);
  border: 1px solid rgba(142, 188, 255, 0.12);
}

.home-trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.home-trust-item span {
  color: var(--muted);
  line-height: 1.38;
  font-size: 0.88rem;
}

.compact-footer {
  padding: 24px 0 30px;
}

.compact-footer .footer-row {
  justify-content: space-between;
  text-align: left;
}

.hero-grid,
.split-grid,
.feature-layout,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 22px;
}

.hero-grid,
.feature-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

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

.panel,
.hero-card,
.showcase,
.info-card,
.faq-card,
.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-strong) 100%);
  box-shadow: var(--shadow-lg);
}

.panel::before,
.hero-card::before,
.showcase::before,
.info-card::before,
.faq-card::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at top left, rgba(142, 188, 255, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(83, 147, 255, 0.12), transparent 26%);
  pointer-events: none;
}

.hero-card,
.panel,
.showcase,
.info-card,
.faq-card,
.cta-band {
  padding: 28px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.hero-lockup {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17, 28, 49, 0.92), rgba(12, 20, 37, 0.98));
  border: 1px solid rgba(142, 188, 255, 0.16);
  box-shadow: var(--shadow-md);
}

.hero-crest {
  width: min(100%, 360px);
  padding: 10px 0;
}

.hero-wordmark-image {
  width: min(100%, 360px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(93, 169, 255, 0.08));
}

.hero-lockup-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.hero-wordmark-sub {
  display: block;
  color: rgba(226, 233, 248, 0.78);
  font-size: 0.96rem;
  line-height: 1.5;
}

.badge,
.mini-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
}

.badge {
  padding: 10px 14px;
  background: rgba(20, 33, 59, 0.88);
  border: 1px solid rgba(142, 188, 255, 0.16);
  border-radius: 999px;
  color: var(--muted-strong);
  font-weight: 700;
  font-size: 0.84rem;
}

.badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, #93bfff, #4c90ff);
  box-shadow: 0 0 18px rgba(83, 147, 255, 0.7);
}

.eyebrow,
.mini-label {
  margin-bottom: 12px;
  color: #8cb9ff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.96;
  max-width: 9ch;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.06;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.52rem;
  margin-bottom: 12px;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points,
.card-grid,
.stat-grid {
  display: grid;
  gap: 14px;
}

.hero-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-point,
.stat-card,
.info-card {
  background: rgba(18, 28, 49, 0.86);
  border: 1px solid rgba(142, 188, 255, 0.14);
  border-radius: 22px;
}

.hero-point,
.stat-card {
  padding: 18px;
}

.hero-point strong,
.stat-card strong {
  display: block;
  margin-bottom: 8px;
}

.hero-point span,
.stat-card span {
  color: var(--muted);
  line-height: 1.54;
}

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

.overview-card {
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #13377b 0%, #2255a7 46%, #5da7ff 100%);
  box-shadow: 0 24px 60px rgba(30, 80, 170, 0.36);
}

.overview-card h2,
.overview-card p,
.overview-card strong,
.overview-card span {
  color: #f8fbff;
}

.overview-card p {
  max-width: 22ch;
}

.stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.stat {
  padding: 18px 14px;
  border-radius: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 2.3rem;
  font-family: "Sora", sans-serif;
}

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

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted-strong);
  line-height: 1.56;
}

.tick {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(83, 147, 255, 0.14);
  border: 1px solid rgba(142, 188, 255, 0.16);
  color: #92beff;
  font-size: 0.9rem;
  font-weight: 800;
}

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

.info-card {
  padding: 24px;
}

.timeline-card,
.receipt-card,
.search-bar,
.filter-row {
  background: rgba(20, 31, 54, 0.9);
  border: 1px solid rgba(142, 188, 255, 0.14);
  border-radius: 24px;
}

.search-bar {
  padding: 18px 20px;
  color: rgba(226, 233, 248, 0.6);
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
}

.filter-chip {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(142, 188, 255, 0.12);
}

.filter-chip strong {
  display: block;
  margin-bottom: 8px;
}

.filter-chip span {
  color: var(--muted);
}

.receipt-card,
.timeline-card {
  padding: 20px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(84, 203, 125, 0.12);
  border: 1px solid rgba(84, 203, 125, 0.18);
  color: #6ee18f;
  font-weight: 800;
  font-size: 0.9rem;
}

.timeline-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.timeline-entry {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(142, 188, 255, 0.1);
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: "Sora", sans-serif;
  font-size: 1.06rem;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary span:last-child {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(83, 147, 255, 0.12);
  border: 1px solid rgba(142, 188, 255, 0.14);
  color: #9bc4ff;
}

.faq-answer {
  margin-top: 16px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.footer {
  padding: 24px 0 34px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .feature-layout,
  .split-grid,
  .pricing-grid,
  .faq-grid,
  .cta-band,
  .screen-grid,
  .home-top {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1081px) {
  .home-logo-card,
  .home-overview-card {
    min-height: 290px;
    height: 290px;
  }
}

@media (max-width: 920px) {
  .nav {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-actions {
    width: 100%;
  }

  .hero-points,
  .card-grid,
  .stat-grid,
  .filter-row,
  .screen-stats,
  .home-trust {
    grid-template-columns: 1fr;
  }
}

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

  .page {
    padding-top: 28px;
  }

  .hero-card,
  .panel,
  .showcase,
  .info-card,
  .faq-card,
  .cta-band {
    padding: 22px;
  }

  .hero-lockup {
    flex-direction: column;
    align-items: flex-start;
  }

  .screen-page {
    padding-top: 24px;
  }

  .home-page {
    min-height: auto;
    padding-top: 22px;
  }

  .home-card,
  .home-logo-card,
  .home-overview-card,
  .home-copy-card {
    min-height: auto;
  }

  .home-logo-card,
  .home-overview-card,
  .home-copy-card {
    padding: 24px;
  }

  .screen-grid {
    padding: 22px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.3rem, 12vw, 3.7rem);
  }
}
