:root {
  --sbb-bg: #f4f7fc;
  --sbb-surface: #ffffff;
  --sbb-surface-soft: #f8fbff;
  --sbb-line: #dbe5f4;
  --sbb-text: #16233f;
  --sbb-muted: #657491;
  --sbb-primary: #3167eb;
  --sbb-primary-dark: #214dbd;
  --sbb-primary-soft: #eaf0ff;
  --sbb-success: #16925a;
  --sbb-shadow: 0 18px 40px rgba(23, 35, 63, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--sbb-bg);
  color: var(--sbb-text);
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
  line-height: 1.5;
}

.page-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(244, 247, 252, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219, 229, 244, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 50px;
  width: auto;
}

.topbar-links,
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  color: var(--sbb-muted);
  font-weight: 600;
}

.nav-link:hover {
  color: var(--sbb-primary);
}

.button,
.button-ghost,
.button-outline {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

.button:hover,
.button-ghost:hover,
.button-outline:hover {
  transform: translateY(-1px);
}

.button {
  color: #fff;
  background: linear-gradient(135deg, var(--sbb-primary) 0%, #4b7bff 100%);
  box-shadow: 0 16px 30px rgba(49, 103, 235, 0.22);
}

.button-outline {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--sbb-line);
  color: var(--sbb-text);
}

.button-ghost {
  min-height: 42px;
  padding: 0 16px;
  background: transparent;
  color: var(--sbb-muted);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 30px 0 18px;
}

.hero-card,
.surface-card,
.auth-card {
  background: var(--sbb-surface);
  border: 1px solid var(--sbb-line);
  border-radius: 30px;
  box-shadow: var(--sbb-shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(49, 103, 235, 0.16), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f3f7ff 100%);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -48px -92px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(49, 103, 235, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy-block,
.hero-visual-head,
.hero-panel,
.hero-panel-grid,
.hero-proof-grid,
.storefront-preview,
.phone-product-grid {
  display: grid;
  gap: 18px;
}

.hero-storefront-stage {
  position: relative;
  padding: 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(49, 103, 235, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(234, 240, 255, 0.92) 100%);
  border: 1px solid rgba(49, 103, 235, 0.12);
  box-shadow: 0 24px 44px rgba(20, 34, 70, 0.10);
}

.hero-storefront-stage::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px auto;
  width: 110px;
  height: 110px;
  border-radius: 24px;
  background: rgba(49, 103, 235, 0.08);
  filter: blur(4px);
}

.storefront-copy {
  display: grid;
  gap: 10px;
  align-content: end;
}

.storefront-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  width: fit-content;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 32, 63, 0.08);
  color: #3c537f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 84ch;
}

.hero-copy-block {
  max-width: none;
  margin-top: 0;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.hero-trust span {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--sbb-line);
  color: #3c537f;
  font-size: 13px;
  font-weight: 700;
}

.hero-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 4px;
}

.hero-proof-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(49, 103, 235, 0.12);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
}

.proof-label,
.hero-metric span {
  display: inline-block;
  margin-bottom: 10px;
  color: #7182a5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-proof-card strong,
.hero-metric strong {
  display: block;
  color: #11203f;
  font-size: 1.65rem;
  line-height: 1.08;
}

.hero-proof-card p,
.hero-metric p,
.storefront-copy p,
.phone-hero p,
.phone-search,
.phone-bottom-nav span,
.phone-product-card span {
  color: #627391;
}

.hero-proof-card p,
.hero-metric p {
  margin-top: 12px;
  font-size: 1rem;
}

.hero-panel {
  align-content: start;
  gap: 20px;
  padding: 30px;
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(180deg, #13213f 0%, #1b2f59 100%);
  box-shadow: 0 28px 44px rgba(15, 27, 54, 0.24);
}

.hero-visual-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px;
}

.hero-visual-head p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 48ch;
}

.hero-panel-header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.hero-chip {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
}

.hero-panel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hero-metric {
  padding: 24px 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metric p {
  margin-bottom: 0;
}

.phone-mock {
  position: relative;
  width: min(100%, 300px);
  justify-self: center;
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(180deg, #13213f 0%, #27457d 100%);
  box-shadow: 0 24px 40px rgba(18, 33, 63, 0.26);
}

.phone-notch {
  width: 36%;
  height: 20px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.phone-screen {
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, #fdfefe 0%, #edf3ff 100%);
  padding: 18px 16px 14px;
}

.phone-topbar,
.phone-storemark,
.phone-chip-row,
.phone-bottom-nav {
  display: flex;
  align-items: center;
}

.phone-topbar,
.phone-bottom-nav {
  justify-content: space-between;
}

.phone-storemark {
  gap: 8px;
  color: #11203f;
}

.phone-logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb947 0%, #3167eb 100%);
}

.phone-badge,
.phone-chip,
.phone-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}

.phone-badge {
  min-width: 28px;
  min-height: 28px;
  padding: 0 9px;
  background: #11203f;
  color: #fff;
  font-size: 13px;
}

.phone-hero {
  margin-top: 16px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, #11203f 0%, #355ca8 100%);
  color: #fff;
}

.phone-category {
  min-height: 28px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.phone-hero h4 {
  margin: 12px 0 8px;
  font-size: 1.4rem;
  line-height: 1.05;
}

.phone-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: .94rem;
}

.phone-search {
  margin-top: 14px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(17, 32, 63, 0.08);
  font-size: .94rem;
}

.phone-chip-row {
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.phone-chip {
  min-height: 30px;
  padding: 0 12px;
  white-space: nowrap;
  background: rgba(17, 32, 63, 0.08);
  color: #4a5c80;
  font-size: 12px;
}

.phone-chip.active {
  background: #11203f;
  color: #fff;
}

.phone-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.phone-product-card {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 32, 63, 0.08);
}

.phone-product-card strong {
  display: block;
  margin-top: 10px;
  color: #11203f;
  font-size: .95rem;
}

.phone-product-card span {
  display: block;
  margin-top: 2px;
  font-size: .9rem;
  font-weight: 700;
}

.phone-product-media {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
}

.product-a {
  background: linear-gradient(135deg, #c86b37 0%, #f2c39a 100%);
}

.product-b {
  background: linear-gradient(135deg, #ffe28f 0%, #b17942 100%);
}

.phone-bottom-nav {
  gap: 8px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(17, 32, 63, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.phone-bottom-nav .active {
  color: #11203f;
}

.eyebrow {
  display: inline-flex;
  justify-self: start;
  align-self: start;
  width: fit-content;
  max-width: max-content;
  flex: 0 0 auto;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--sbb-primary-soft);
  color: var(--sbb-primary-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-copy-block h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  line-height: .96;
  letter-spacing: -0.04em;
  color: #11203f;
}

.hero-copy-block > p {
  margin: 0;
  color: var(--sbb-muted);
  font-size: 1.08rem;
}

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

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

.stat-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--sbb-line);
}

.stat-label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sbb-muted);
}

.stat-value {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 900;
  color: var(--sbb-text);
}

.stat-note {
  display: block;
  margin-top: 10px;
  color: var(--sbb-muted);
  font-size: 14px;
}

.mock-shell {
  padding: 16px;
  border-radius: 28px;
  background: linear-gradient(180deg, #13213f 0%, #1b315f 100%);
  box-shadow: 0 26px 50px rgba(13, 23, 46, 0.24);
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.mock-pill {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.mock-board {
  display: grid;
  gap: 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fbff 0%, #edf3ff 100%);
  padding: 16px;
}

.mock-card {
  padding: 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #dbe5f4;
}

.mock-card h3,
.mock-card p {
  margin: 0;
}

.mock-card h3 {
  font-size: 14px;
  color: #7a88a7;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.mock-card p {
  margin-top: 12px;
  font-size: 1.8rem;
  font-weight: 900;
  color: #11203f;
}

.surface-card {
  margin-top: 18px;
  padding: 28px;
}

.surface-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.surface-title {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 900;
  color: #11203f;
}

.surface-copy {
  margin: 10px 0 0;
  color: var(--sbb-muted);
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-head > div {
  min-width: 0;
}

.section-head h2,
.faq-shell h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #11203f;
}

.section-head > p {
  max-width: 46ch;
  margin: 6px 0 0;
  color: var(--sbb-muted);
  font-size: 1.04rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(49, 103, 235, 0.08);
  color: var(--sbb-primary-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.full-width {
  width: 100%;
}

.pricing-shell,
.faq-shell,
.use-cases-shell {
  display: grid;
  gap: 22px;
}

.pricing-conversion-bar,
.compare-callout,
.launch-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid var(--sbb-line);
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.pricing-conversion-bar strong {
  display: block;
  color: #11203f;
  font-size: 1.05rem;
}

.pricing-conversion-bar span {
  color: var(--sbb-muted);
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--sbb-line);
}

.billing-pill {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--sbb-muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.billing-pill span {
  color: inherit;
  font-size: .9em;
}

.billing-pill.active {
  background: linear-gradient(135deg, var(--sbb-primary) 0%, #4b7bff 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(49, 103, 235, 0.18);
}

.pricing-grid,
.pricing-faq-inline,
.use-cases-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-card,
.mini-faq-card,
.use-card,
.faq-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--sbb-line);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.plan-card {
  display: grid;
  align-content: start;
  gap: 16px;
}

.plan-card.featured {
  position: relative;
  background: linear-gradient(180deg, #11203f 0%, #1b315f 100%);
  border-color: rgba(49, 103, 235, 0.22);
  box-shadow: 0 24px 40px rgba(18, 33, 63, 0.18);
}

.plan-label,
.plan-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.plan-label {
  min-height: 30px;
  padding: 0 10px;
  background: rgba(49, 103, 235, 0.08);
  color: var(--sbb-primary-dark);
}

.plan-badge {
  min-height: 32px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.plan-card h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: #11203f;
}

.plan-card h3 span:last-child {
  margin-left: 4px;
  font-size: 1rem;
  font-weight: 600;
  color: #6a7998;
}

.plan-card p,
.mini-faq-card p,
.use-card p,
.faq-card p,
.comparison-disclaimer {
  margin: 0;
  color: var(--sbb-muted);
}

.plan-card ul {
  margin: 0;
  padding-left: 22px;
  color: #11203f;
}

.plan-card li + li {
  margin-top: 8px;
}

.plan-card.featured h3,
.plan-card.featured p,
.plan-card.featured li,
.plan-card.featured h3 span:last-child {
  color: #fff;
}

.plan-card.featured .plan-label {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.mini-faq-card h3,
.use-card h3,
.faq-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: #11203f;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid var(--sbb-line);
  background: #fff;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--sbb-line);
  vertical-align: top;
}

.compare-table th {
  background: #f8fbff;
  color: #11203f;
  font-size: 14px;
  font-weight: 800;
}

.compare-table td {
  color: var(--sbb-muted);
}

.compare-callout {
  color: #11203f;
  justify-content: flex-start;
}

.comparison-disclaimer {
  font-size: 14px;
}

.launch-band h3 {
  margin: 0 0 8px;
  color: #11203f;
  font-size: 1.4rem;
}

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

.feature-card {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--sbb-line);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--sbb-primary-soft);
  color: var(--sbb-primary-dark);
  font-size: 26px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  margin: 16px 0 10px;
  font-size: 1.2rem;
}

.feature-card p {
  margin: 0;
  color: var(--sbb-muted);
}

.steps-grid {
  margin-top: 10px;
}

.step-card {
  position: relative;
  padding: 22px 22px 22px 66px;
  border-radius: 24px;
  border: 1px solid var(--sbb-line);
  background: #fff;
}

.step-index {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sbb-primary);
  color: #fff;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step-card h3,
.step-card p {
  margin: 0;
}

.step-card p {
  margin-top: 10px;
  color: var(--sbb-muted);
}

.footer-note {
  margin: 28px auto 48px;
  text-align: center;
  color: var(--sbb-muted);
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.auth-aside {
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(49, 103, 235, 0.18), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border-right: 1px solid var(--sbb-line);
}

.auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.auth-brand img {
  height: 54px;
  width: auto;
}

.auth-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.auth-panel-inner {
  width: min(100%, 460px);
}

.auth-card {
  padding: 30px;
}

.auth-title {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1;
  color: #11203f;
}

.auth-copy {
  margin: 12px 0 0;
  color: var(--sbb-muted);
}

.auth-form {
  margin-top: 24px;
}

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

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sbb-muted);
}

.field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid var(--sbb-line);
  background: #fff;
  color: var(--sbb-text);
  font: inherit;
}

.field input:focus {
  outline: none;
  border-color: rgba(49, 103, 235, 0.54);
  box-shadow: 0 0 0 4px rgba(49, 103, 235, 0.09);
}

.helper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  color: var(--sbb-muted);
  font-size: 14px;
}

.helper-row a {
  color: var(--sbb-primary);
  font-weight: 700;
}

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

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 16px;
  color: var(--sbb-muted);
  font-size: 13px;
}

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

.legal-copy {
  margin-top: 14px;
  color: var(--sbb-muted);
  font-size: 13px;
}

.auth-links {
  margin-top: 22px;
  text-align: center;
  color: var(--sbb-muted);
}

.auth-links a {
  color: var(--sbb-primary);
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .section-head,
  .pricing-conversion-bar,
  .launch-band,
  .feature-grid,
  .pricing-grid,
  .pricing-faq-inline,
  .steps-grid,
  .use-cases-grid,
  .faq-grid,
  .auth-shell,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-head,
  .hero-panel-grid,
  .hero-proof-grid,
  .storefront-preview {
    grid-template-columns: 1fr;
  }

  .auth-aside {
    padding: 24px 20px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--sbb-line);
  }

  .section-head,
  .pricing-conversion-bar,
  .launch-band {
    display: grid;
  }

  .auth-panel {
    padding: 20px;
  }
}

@media (max-width: 767.98px) {
  .topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px 12px;
    padding: 12px 14px;
  }

  .topbar-links {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 2px;
  }

  .section {
    width: min(100%, calc(100% - 24px));
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    height: 38px;
    width: auto;
  }

  .hero-card,
  .surface-card,
  .auth-card {
    border-radius: 24px;
  }

  .hero-card,
  .surface-card,
  .auth-card,
  .feature-card,
  .step-card {
    padding: 22px;
  }

  .hero-panel {
    padding: 22px;
    border-radius: 26px;
  }

  .hero-panel-header {
    justify-content: flex-start;
  }

  .topbar-actions {
    width: auto;
  }

  .topbar-actions {
    justify-content: flex-end;
    gap: 8px;
  }

  .topbar-actions .button-ghost {
    min-height: 38px;
    padding: 0 10px;
    font-size: .95rem;
  }

  .topbar-actions .button {
    min-height: 38px;
    padding: 0 16px;
    font-size: .95rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button,
  .hero-actions .button-outline,
  .stack .button,
  .stack .button-outline {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-storefront-stage {
    padding: 16px;
    border-radius: 24px;
  }

  .phone-mock {
    width: 100%;
  }

  .phone-product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .auth-title {
    font-size: 1.9rem;
  }
}
