/* Reset and app-aligned design tokens */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #5a5af0;
  --primary-dark: #4646cf;
  --primary-soft: #ededff;
  --secondary: #00b3a6;
  --secondary-soft: #e6f8f6;
  --background: #f4f4f8;
  --surface: #ffffff;
  --surface-secondary: #efeff4;
  --text: #121214;
  --text-secondary: #6b6b72;
  --text-tertiary: #a0a0a8;
  --success: #1aa262;
  --warning: #d99a00;
  --danger: #e0464c;
  --border: rgba(18, 18, 20, 0.07);
  --border-strong: rgba(18, 18, 20, 0.11);
  --shadow-card: 0 24px 70px rgba(18, 18, 20, 0.09), 0 2px 10px rgba(18, 18, 20, 0.04);
  --shadow-soft: 0 14px 40px rgba(18, 18, 20, 0.07);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --font-rounded: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --nav-height: 76px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 28px;
}

/* Navigation */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(18, 18, 20, 0.05);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-family: var(--font-rounded);
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 11px;
  box-shadow: 0 7px 18px rgba(90, 90, 240, 0.24);
}

.logo-icon:not(img) {
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #7777ff);
  font-size: 0.68rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 9px 15px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-soft);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px 9px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 12px;
  background: var(--surface-secondary);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Shared typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.section-heading {
  max-width: 680px;
  margin-bottom: 58px;
}

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

.section-heading-centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.section-title h2 {
  margin-top: 15px;
  color: var(--text);
  font-family: var(--font-rounded);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading p,
.section-title p {
  max-width: 600px;
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.section-heading-centered p,
.section-title p {
  margin-inline: auto;
}

/* Hero */
.hero {
  position: relative;
  padding: 164px 0 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 28%, rgba(0, 179, 166, 0.11), transparent 25%),
    radial-gradient(circle at 84% 58%, rgba(90, 90, 240, 0.16), transparent 34%),
    linear-gradient(180deg, #fafaff 0%, var(--surface) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 104px;
  left: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(90, 90, 240, 0.06);
  filter: blur(20px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 72px;
}

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

.hero h1 {
  margin-top: 22px;
  font-family: var(--font-rounded);
  font-size: clamp(3.4rem, 6.8vw, 5.8rem);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(110deg, var(--primary) 8%, var(--secondary) 88%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy > p {
  max-width: 620px;
  margin-top: 26px;
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.72;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 14px 30px rgba(90, 90, 240, 0.25), inset 0 1px rgba(255, 255, 255, 0.26);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 18px 38px rgba(90, 90, 240, 0.33), inset 0 1px rgba(255, 255, 255, 0.26);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--border-strong);
  box-shadow: 0 7px 20px rgba(18, 18, 20, 0.04);
}

.btn-secondary:hover {
  color: var(--primary);
  border-color: rgba(90, 90, 240, 0.3);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 24px;
  margin-top: 34px;
  list-style: none;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 650;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 4px rgba(0, 179, 166, 0.1);
}

.hero-visual {
  position: relative;
  min-height: 510px;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(24px);
}

.hero-glow-primary {
  width: 320px;
  height: 320px;
  top: 92px;
  left: 90px;
  background: rgba(90, 90, 240, 0.19);
}

.hero-glow-secondary {
  width: 220px;
  height: 220px;
  right: 8px;
  bottom: 36px;
  background: rgba(0, 179, 166, 0.17);
}

.hero-app-card {
  position: absolute;
  inset: 92px 58px auto 54px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 21px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.67)),
    linear-gradient(135deg, var(--primary-soft), var(--secondary-soft));
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-app-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -105px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(90, 90, 240, 0.15), rgba(0, 179, 166, 0.12));
}

.hero-app-card img {
  width: 116px;
  height: 116px;
  border-radius: 27px;
  box-shadow: 0 24px 44px rgba(90, 90, 240, 0.3);
}

.hero-app-card div {
  text-align: center;
}

.hero-app-card span {
  display: block;
  font-family: var(--font-rounded);
  font-size: 1.48rem;
  font-weight: 780;
  letter-spacing: -0.03em;
}

.hero-app-card strong {
  display: block;
  margin-top: 3px;
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 600;
}

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(18, 18, 20, 0.11);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.floating-chip small,
.floating-chip strong {
  display: block;
  line-height: 1.3;
}

.floating-chip small {
  color: var(--text-tertiary);
  font-size: 0.7rem;
  font-weight: 650;
}

.floating-chip strong {
  margin-top: 2px;
  color: var(--text);
  font-family: var(--font-rounded);
  font-size: 0.88rem;
  font-weight: 750;
}

.chip-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 11px;
  font-size: 0.93rem;
  font-weight: 800;
}

.chip-icon-primary { color: var(--primary); background: var(--primary-soft); }
.chip-icon-warning { color: var(--warning); background: #fff7dc; }
.chip-icon-secondary { color: var(--secondary); background: var(--secondary-soft); }

.chip-list { top: 25px; left: 0; }
.chip-budget { top: 250px; right: 0; }
.chip-stats { left: 36px; bottom: 10px; }

/* Real app screenshots */
.screenshot-section {
  padding: 112px 0 124px;
  overflow: hidden;
  background: var(--background);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 30px;
}

.screenshot-card {
  min-width: 0;
}

.screenshot-card-raised {
  transform: translateY(-36px);
}

.device-frame {
  padding: 9px;
  border: 1px solid rgba(18, 18, 20, 0.08);
  border-radius: 49px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 32px 80px rgba(18, 18, 20, 0.13), 0 2px 10px rgba(18, 18, 20, 0.05);
}

.device-frame img {
  width: 100%;
  border-radius: 40px;
}

.screenshot-card figcaption {
  display: flex;
  gap: 15px;
  padding: 24px 5px 0;
}

.screenshot-card figcaption > span {
  flex: 0 0 auto;
  padding-top: 3px;
  color: var(--primary);
  font-family: var(--font-rounded);
  font-size: 0.74rem;
  font-weight: 800;
}

.screenshot-card h3 {
  font-family: var(--font-rounded);
  font-size: 1.06rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.screenshot-card p {
  margin-top: 5px;
  color: var(--text-secondary);
  font-size: 0.87rem;
  line-height: 1.55;
}

/* Features */
.features {
  padding: 112px 0 124px;
  background: var(--surface);
}

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

.feature-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff, #fbfbfd);
  box-shadow: 0 8px 28px rgba(18, 18, 20, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(90, 90, 240, 0.17);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 13px;
  font-family: var(--font-rounded);
  font-size: 0.74rem;
  font-weight: 800;
}

.feature-icon-primary { color: var(--primary); background: var(--primary-soft); }
.feature-icon-secondary { color: var(--secondary); background: var(--secondary-soft); }
.feature-icon-success { color: var(--success); background: #e8f7ef; }
.feature-icon-warning { color: var(--warning); background: #fff6d9; }
.feature-icon-danger { color: var(--danger); background: #ffedef; }

.feature-card h3 {
  font-family: var(--font-rounded);
  font-size: 1.1rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin-top: 9px;
  color: var(--text-secondary);
  font-size: 0.91rem;
  line-height: 1.65;
}

/* CTA */
.cta {
  padding: 28px;
  background: var(--surface);
}

.cta .container {
  position: relative;
  padding: 80px 32px;
  overflow: hidden;
  border-radius: 34px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 82% 12%, rgba(63, 224, 208, 0.25), transparent 24%),
    radial-gradient(circle at 18% 100%, rgba(142, 143, 255, 0.28), transparent 32%),
    #121214;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content > span {
  color: #8e8fff;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta h2 {
  margin-top: 13px;
  font-family: var(--font-rounded);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.cta p {
  max-width: 540px;
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
}

.cta .btn-primary {
  color: var(--primary);
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.cta .btn-primary:hover {
  color: var(--primary-dark);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

/* Footer */
footer {
  margin-top: auto;
  padding: 72px 0 28px;
  color: #fff;
  background: #0a0a0d;
}

footer > .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand {
  max-width: 340px;
}

.footer-brand .logo {
  color: #fff;
}

.footer-brand .logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.footer-brand p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  gap: 72px;
}

.footer-links h4 {
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.71rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
}

.footer-links li + li {
  margin-top: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.76rem;
  text-align: center;
}

.footer-bottom .container {
  display: block;
}

/* Support and legal pages */
.page-header {
  padding: 150px 0 72px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(90, 90, 240, 0.13), transparent 46%),
    linear-gradient(180deg, #fafaff, var(--surface));
}

.page-header h1 {
  font-family: var(--font-rounded);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1;
}

.page-header p {
  max-width: 540px;
  margin: 18px auto 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.content-section {
  padding: 48px 0 112px;
  background: var(--surface);
}

.content-container {
  max-width: 820px;
  margin-inline: auto;
}

.content-container h2 {
  margin: 52px 0 18px;
  font-family: var(--font-rounded);
  font-size: 1.85rem;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.content-container h2:first-child {
  margin-top: 0;
}

.content-container h3 {
  margin: 32px 0 10px;
  font-family: var(--font-rounded);
  font-size: 1.18rem;
  font-weight: 740;
}

.content-container p,
.content-container ul,
.content-container ol {
  margin-bottom: 18px;
  color: var(--text-secondary);
  line-height: 1.78;
}

.content-container ul,
.content-container ol {
  padding-left: 24px;
}

.content-container li + li {
  margin-top: 8px;
}

.content-container hr {
  margin: 54px 0;
  border: 0;
  border-top: 1px solid var(--border);
}

.last-updated {
  display: inline-block;
  margin-top: 5px;
  color: var(--text-tertiary);
  font-size: 0.82rem;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin: 8px 0 58px;
}

.support-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 25px 28px;
  border: 1px solid rgba(90, 90, 240, 0.12);
  border-radius: var(--radius-lg);
  text-align: left;
  background: linear-gradient(135deg, var(--primary-soft), #fff 62%);
  box-shadow: var(--shadow-soft);
}

.support-card .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 15px;
  background: #fff;
  font-size: 1.35rem;
  box-shadow: 0 8px 18px rgba(90, 90, 240, 0.12);
}

.support-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.support-card p {
  margin: 2px 0 0;
  font-size: 0.86rem;
}

.support-card a {
  font-size: 0.9rem;
  font-weight: 700;
}

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

.faq-item,
.faq-item:first-child {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item.open {
  border-color: rgba(90, 90, 240, 0.2);
  box-shadow: 0 14px 36px rgba(18, 18, 20, 0.06);
}

.faq-question {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 21px;
  font-family: var(--font-rounded);
  font-size: 0.98rem;
  font-weight: 730;
  cursor: pointer;
  user-select: none;
}

.faq-question:focus-visible {
  outline: 3px solid rgba(90, 90, 240, 0.28);
  outline-offset: -3px;
}

.faq-question::after {
  content: "+";
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--primary);
  background: var(--primary-soft);
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 450;
  transition: transform 180ms ease;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 64px 21px 21px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.72;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Responsive */
@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-buttons,
  .hero-points {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 560px);
    margin-inline: auto;
  }

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

  .screenshot-card-raised {
    transform: none;
  }

  .screenshot-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 15px);
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 68px;
  }

  .container {
    padding-inline: 20px;
  }

  nav .container {
    padding-inline: 18px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-height) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 18px 18px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 40px rgba(18, 18, 20, 0.08);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 14px;
  }

  .hero {
    padding: 126px 0 78px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .hero-copy > p {
    font-size: 1.02rem;
  }

  .hero-visual {
    min-height: 440px;
    transform: scale(0.92);
    transform-origin: top center;
    margin-bottom: -36px;
  }

  .hero-app-card {
    inset-inline: 30px;
  }

  .chip-list { left: 0; }
  .chip-budget { right: 0; }
  .chip-stats { left: 12px; }

  .screenshot-section,
  .features {
    padding: 84px 0 94px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .screenshot-grid {
    display: flex;
    gap: 20px;
    width: calc(100% + 20px);
    padding: 4px 20px 30px 1px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .screenshot-grid::-webkit-scrollbar {
    display: none;
  }

  .screenshot-card,
  .screenshot-card:last-child {
    width: min(82vw, 330px);
    min-width: min(82vw, 330px);
    margin: 0;
    scroll-snap-align: start;
  }

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

  .feature-card {
    padding: 24px;
  }

  .feature-icon {
    margin-bottom: 28px;
  }

  .cta {
    padding: 16px;
  }

  .cta .container {
    padding: 64px 22px;
    border-radius: 28px;
  }

  footer > .container {
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
    gap: 32px;
  }

  .page-header {
    padding: 124px 0 58px;
  }

  .content-section {
    padding: 34px 0 84px;
  }

  .support-card {
    grid-template-columns: auto 1fr;
  }

  .support-card a {
    grid-column: 2;
  }

  .faq-answer {
    padding-right: 21px;
  }
}

@media (max-width: 430px) {
  .hero-buttons .btn {
    width: 100%;
  }

  .hero-points {
    flex-direction: column;
    align-items: center;
  }

  .hero-visual {
    min-height: 415px;
    transform: scale(0.82);
    margin-inline: -28px;
    margin-bottom: -70px;
  }

  .floating-chip {
    min-width: 166px;
  }

  .support-card {
    display: block;
    text-align: center;
  }

  .support-card .icon {
    margin: 0 auto 14px;
  }

  .support-card a {
    display: inline-block;
    margin-top: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
