:root {
  --ink: #172033;
  --body: #364153;
  --muted: #667085;
  --quiet: #8A94A6;
  --line: #E3E8F0;
  --line-strong: #CDD6E3;
  --paper: #FFFFFF;
  --soft: #F6F8FB;
  --soft-2: #EEF3F8;
  --navy: #192640;
  --navy-2: #263654;
  --red: #C0392B;
  --red-dark: #A93226;
  --red-soft: #FDEDEA;
  --orange: #FF8A2A;
  --green: #067A57;
  --green-soft: #E7F6EF;
  --blue: #2563EB;
  --blue-soft: #EAF1FF;
  --violet: #7C3AED;
  --violet-soft: #F1ECFF;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .05);
  --shadow-md: 0 16px 44px rgba(25, 38, 64, .13);
  --shadow-lg: 0 28px 70px rgba(25, 38, 64, .2);
  --radius: 8px;
  --radius-lg: 18px;
  --max: 1180px;
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --brand-font: "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.legal {
  background: #FAFBFD;
}

body.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--soft);
}

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

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

a:hover {
  color: var(--red);
}

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

.narrow {
  max-width: 820px;
}

.redirect-card {
  width: min(520px, 100%);
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.redirect-card img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.redirect-card h1 {
  max-width: none;
  font-size: clamp(34px, 6vw, 52px);
}

.redirect-card p {
  margin: 16px 0 24px;
  color: var(--body);
}

.redirect-card .btn-text {
  margin-left: 12px;
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  top: 16px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.brand-word {
  font-family: var(--brand-font);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--ink);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--soft);
}

.language-switch a {
  min-width: 34px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.language-switch a.active {
  background: var(--navy);
  color: #fff;
}

.nav-app,
.nav-cta,
.btn-primary,
.btn-secondary,
.btn-light,
.btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}

.nav-app {
  min-height: 44px;
  padding: 0 18px;
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 12px 24px rgba(25, 38, 64, .18);
}

.nav-cta,
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 22px rgba(192, 57, 43, .18);
}

.nav-cta {
  min-height: 40px;
  padding: 0 16px;
}

.btn-primary,
.btn-secondary,
.btn-light,
.btn-text {
  padding: 0 20px;
}

.nav-app:hover {
  background: var(--navy-2);
  color: #fff;
  transform: translateY(-1px);
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .88);
}

.btn-secondary:hover {
  color: var(--ink);
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}

.btn-secondary.on-navy {
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
}

.btn-secondary.on-navy:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, .14);
}

.btn-light {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}

.btn-light:hover {
  color: var(--red-dark);
  transform: translateY(-1px);
}

.btn-text {
  padding-inline: 6px;
  min-height: 0;
  color: var(--red);
  background: transparent;
}

.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: 76px 0 68px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: none;
  background-position: right 4vw center;
  background-size: min(1040px, 68vw) auto;
  background-repeat: no-repeat;
  opacity: .34;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, .78);
}

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

.hero-split::before,
.hero-split::after {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.hero-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #0D111A;
  box-shadow: var(--shadow-lg);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left top;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(6, 122, 87, .12);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.12;
  color: var(--ink);
  font-family: var(--brand-font);
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 900;
}

h1 span {
  color: var(--red);
}

.hero-subhead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--body);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.cta-side-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(720px, 100%);
  margin-top: 46px;
}

.proof-strip {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-strip .hero-proof {
  width: 100%;
  margin-top: 0;
}

.proof-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .86);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.proof-value {
  display: block;
  color: var(--ink);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.15;
}

.proof-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.section {
  padding: 92px 0;
}

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

.section.navy {
  background: var(--navy);
  color: #fff;
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.section.navy .section-kicker {
  color: #FFB071;
}

h2 {
  font-size: clamp(31px, 4.6vw, 52px);
  font-weight: 800;
}

.section-head p,
.lead {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section.navy .section-head p,
.section.navy .lead {
  color: #C8D3E5;
}

.section.navy h2 {
  color: #fff;
}

.section-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.center-actions {
  justify-content: center;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.trust-cell {
  min-height: 128px;
  padding: 24px;
  background: #fff;
}

.trust-cell strong {
  display: block;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 8px;
}

.trust-cell span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.step-card,
.faq-item,
.walkthrough-list article,
.resource-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.step-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--red-soft);
  color: var(--red);
  font-weight: 900;
  margin-bottom: 22px;
}

.step-card h3,
.faq-item h3,
.walkthrough-list h3,
.resource-card h3 {
  font-size: 20px;
  font-weight: 800;
}

.step-card p,
.faq-item p,
.walkthrough-list p,
.resource-card p {
  color: var(--muted);
  margin: 10px 0 0;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 44px;
  align-items: center;
}

.product-shot {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: #fff;
  overflow: hidden;
}

.product-shot img {
  width: 100%;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.screenshot-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.screenshot-card.wide {
  grid-column: span 3;
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left top;
  background: #0D111A;
}

.screenshot-card div {
  padding: 20px;
}

.screenshot-card h3 {
  font-size: 20px;
  font-weight: 800;
}

.screenshot-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.walkthrough-list {
  display: grid;
  gap: 16px;
}

.walkthrough-list article {
  padding: 24px;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}

.feature-icon,
.small-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 900;
  flex: 0 0 auto;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--red-soft);
  color: var(--red);
}

.feature-row h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
}

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.card h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 16px 0 8px;
}

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

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

.faq-item {
  padding: 24px;
}

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

.resource-card {
  padding: 26px;
}

.resource-card .btn-text {
  margin-top: 14px;
  color: var(--red);
}

.small-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  padding: 0 10px;
  white-space: nowrap;
  font-size: 12px;
}

.small-icon.red {
  background: var(--red-soft);
  color: var(--red);
}

.small-icon.blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.small-icon.green {
  background: var(--green-soft);
  color: var(--green);
}

.small-icon.violet {
  background: var(--violet-soft);
  color: var(--violet);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  color: var(--body);
}

.section.navy .check-list li {
  color: #EAF0F8;
}

.check-list b {
  color: var(--ink);
}

.section.navy .check-list b {
  color: #fff;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 22px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.section.navy .check {
  background: rgba(255, 255, 255, .12);
  color: #8EE0BF;
}

.check.warn {
  background: rgba(255, 138, 42, .16);
  color: #FFB071;
}

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

.compare-panel {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, .06);
}

.compare-panel.highlight {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.one-col {
  grid-template-columns: 1fr !important;
}

.compare-panel h3 {
  font-size: 18px;
  color: inherit;
  margin-bottom: 8px;
}

.price-large {
  font-family: var(--brand-font);
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
  margin: 16px 0 8px;
}

.compare-panel p {
  color: #C8D3E5;
  margin: 0 0 18px;
}

.compare-panel.highlight p {
  color: var(--muted);
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 100%;
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  border: 2px solid var(--red);
  box-shadow: var(--shadow-md);
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}

.price-card h3 {
  font-size: 22px;
  font-weight: 800;
}

.price {
  margin: 18px 0 4px;
  font-family: var(--brand-font);
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 15px;
  font-family: var(--font);
  font-weight: 800;
}

.price-card p {
  color: var(--muted);
  margin: 0 0 20px;
}

.price-card .check-list {
  margin: 4px 0 24px;
  flex: 1;
}

.price-card .check-list li {
  color: var(--body);
  font-size: 14.5px;
}

.pricing-note {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}

.pricing-note a {
  color: var(--red);
  font-weight: 800;
}

.founder-band {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  align-items: center;
}

.founder-logo {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.founder-logo img {
  width: 132px;
  height: 132px;
  border-radius: var(--radius);
}

.quote {
  margin: 18px 0 0;
  color: var(--body);
  font-size: 18px;
  line-height: 1.7;
}

.signature {
  margin-top: 18px;
  color: var(--ink);
  font-weight: 900;
}

.cta-band {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: #C8D3E5;
  margin: 14px 0 0;
  max-width: 700px;
  font-size: 18px;
}

.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.form-row input {
  width: min(360px, 100%);
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  color: #fff;
  font: inherit;
  padding: 0 14px;
}

.form-row input::placeholder {
  color: #AAB7CB;
}

.form-row input:focus {
  outline: 3px solid rgba(255, 138, 42, .35);
  border-color: #FFB071;
}

.success {
  display: none;
  margin-top: 16px;
  color: #9BE8C7;
  font-weight: 800;
}

.success.show {
  display: block;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 700;
}

.legal-hero {
  background: var(--navy);
  color: #fff;
  padding: 58px 0 52px;
}

.legal-hero .brand-word {
  color: #fff;
}

.legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-hero .language-switch {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
}

.legal-hero .language-switch a {
  color: #C8D3E5;
}

.legal-hero .language-switch a.active {
  background: #fff;
  color: var(--navy);
}

.legal-hero h1 {
  margin-top: 44px;
  color: #fff;
  max-width: none;
  font-size: clamp(38px, 7vw, 66px);
}

.legal-meta {
  color: #C8D3E5;
  margin-top: 10px;
  font-size: 15px;
}

.legal-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  padding: 56px 0 88px;
}

.legal-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.legal-toc a {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-sm);
}

.summary-box,
.limited-box {
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 32px;
}

.summary-box {
  background: var(--soft);
  border: 1px solid var(--line);
}

.limited-box {
  background: var(--red-soft);
  border: 1px solid #F5C9C2;
}

.legal-card h2 {
  font-size: 24px;
  margin: 42px 0 12px;
  padding-top: 4px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  font-size: 18px;
  margin: 26px 0 8px;
}

.legal-card p,
.legal-card li {
  color: var(--body);
}

.legal-card a {
  color: var(--red);
  font-weight: 700;
}

.legal-card ul {
  padding-left: 22px;
}

.legal-card li {
  margin: 8px 0;
}

code {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1px 5px;
  color: var(--ink);
  font-size: .92em;
}

@media (max-width: 980px) {
  .hero::before {
    background-position: center bottom 20px;
    background-size: 900px auto;
    opacity: .16;
  }

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

  .product-showcase,
  .hero-grid,
  .split-band,
  .cta-band,
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .grid-3,
  .pricing-grid,
  .trust-row,
  .step-grid,
  .faq-grid,
  .resource-grid,
  .product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .screenshot-card.wide {
    grid-column: span 2;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

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

  .nav-inner {
    height: 64px;
  }

  .nav-links > a:not(.nav-app) {
    display: none;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-app {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .language-switch {
    display: inline-flex;
    padding: 2px;
  }

  .language-switch a {
    min-width: 30px;
    min-height: 28px;
    font-size: 11px;
  }

  .brand-word {
    font-size: 20px;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 44px;
  }

  .hero::before {
    background-size: 720px auto;
    opacity: .12;
  }

  h1 {
    font-size: clamp(42px, 15vw, 64px);
  }

  .hero-proof,
  .grid-3,
  .pricing-grid,
  .trust-row,
  .step-grid,
  .faq-grid,
  .resource-grid,
  .compare,
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .screenshot-card.wide {
    grid-column: span 1;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-visual {
    border-radius: var(--radius);
  }

  .section {
    padding: 68px 0;
  }

  .product-showcase,
  .split-band {
    gap: 30px;
  }

  .card,
  .price-card,
  .compare-panel,
  .legal-card {
    padding: 22px;
  }

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

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

  .form-row input {
    width: 100%;
  }

  .founder-band {
    grid-template-columns: 1fr;
  }

  .founder-logo {
    width: 132px;
    height: 132px;
  }

  .founder-logo img {
    width: 102px;
    height: 102px;
  }

  .legal-top {
    align-items: flex-start;
  }

  .legal-hero .language-switch {
    display: inline-flex;
  }
}
