:root {
  color-scheme: dark;
  --bg: #08090b;
  --surface: #101216;
  --surface-raised: #171a20;
  --surface-soft: #1d2027;
  --text: #f7f8fa;
  --muted: #aeb4c0;
  --muted-strong: #c8cdd6;
  --border: #2b303a;
  --border-soft: rgba(255, 255, 255, 0.09);
  --yellow-start: #fff36a;
  --yellow: #facc15;
  --yellow-end: #f59e0b;
  --on-yellow: #17130a;
  --success: #4ade80;
  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --gradient: linear-gradient(135deg, var(--yellow-start) 0%, var(--yellow) 48%, var(--yellow-end) 100%);
  --shadow-xl: 0 32px 90px rgba(0, 0, 0, 0.45);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

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

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

[data-language="tr"] [data-copy="en"],
[data-language="en"] [data-copy="tr"] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--gradient);
  color: var(--on-yellow);
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(8, 9, 11, 0.82);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--border-soft);
  background: rgba(8, 9, 11, 0.94);
}

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

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  border-radius: 8px;
}

.brand-mark,
.cta-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 10px 10px 14px 8px;
  background: var(--gradient);
  color: var(--on-yellow);
  font-size: 22px;
  font-style: italic;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 12px 40px rgba(250, 204, 21, 0.15);
  transform: skew(-6deg);
}

.brand-mark {
  width: 38px;
  height: 38px;
  font-size: 20px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand-copy span {
  margin-top: 5px;
  color: #bbc2d2;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.23em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav a,
.mobile-nav a,
.footer-links a {
  color: var(--muted-strong);
  transition: color 180ms ease, background-color 180ms ease;
}

.desktop-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 12px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--yellow-start);
}

.desktop-nav a:hover {
  background: rgba(255, 255, 255, 0.045);
}

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

.language-button,
.menu-button {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.language-button:hover,
.menu-button:hover {
  border-color: rgba(250, 204, 21, 0.5);
  background: var(--surface-raised);
  color: var(--yellow-start);
}

.menu-button {
  display: none;
}

.mobile-nav {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--gradient);
  color: var(--on-yellow);
  box-shadow: 0 11px 30px rgba(245, 158, 11, 0.14);
}

.button-primary:hover {
  box-shadow: 0 14px 40px rgba(245, 158, 11, 0.22);
}

.button-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(250, 204, 21, 0.4);
  background: rgba(250, 204, 21, 0.055);
}

.button-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 13px;
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 76px;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -180px;
  left: 54%;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.16), transparent 68%);
}

.hero-glow-two {
  bottom: -160px;
  left: -260px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.07), transparent 68%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.25fr);
  align-items: center;
  gap: 64px;
}

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

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.1);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  margin: 20px 0 24px;
  font-size: clamp(3rem, 6.4vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 em {
  display: block;
  background: var(--gradient);
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.hero-points > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-points svg {
  width: 16px;
  height: 16px;
  color: var(--yellow);
  stroke-width: 2.2;
}

.product-stage {
  position: relative;
  min-width: 0;
  padding: 48px 0;
}

.stage-badge {
  position: absolute;
  top: 0;
  right: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(16, 18, 22, 0.92);
  color: var(--muted-strong);
  font-size: 11px;
  font-weight: 750;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.stage-badge .status-dot {
  width: 6px;
  height: 6px;
  box-shadow: none;
}

.window-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  background: #0c0e12;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(250, 204, 21, 0.07), 0 0 100px rgba(250, 204, 21, 0.09);
}

.window-bar {
  display: flex;
  height: 34px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #15171c;
}

.window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444a56;
}

.window-bar b {
  margin-left: auto;
  color: #858c99;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.window-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 846 / 473;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: rgba(23, 26, 32, 0.93);
  color: var(--muted-strong);
  font-size: 11px;
  font-weight: 750;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.floating-card svg {
  width: 17px;
  height: 17px;
  color: var(--yellow);
}

.floating-card-top {
  top: 78px;
  left: -28px;
}

.floating-card-bottom {
  right: -18px;
  bottom: 8px;
}

.proof-strip {
  border-block: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.018);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  display: flex;
  min-height: 128px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px;
  border-right: 1px solid var(--border-soft);
}

.proof-grid > div:last-child {
  border-right: 0;
}

.proof-grid strong {
  color: var(--yellow-start);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.proof-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.section {
  padding: 112px 0;
}

.section-contrast {
  border-block: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.01));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.section-heading h2,
.compatibility-card h2,
.cta-card h2,
.legal-hero h1 {
  margin: 13px 0 15px;
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.section-heading p,
.compatibility-card p,
.cta-card p,
.legal-hero p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

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

.feature-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  transition: border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.feature-card::after {
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.09), transparent 68%);
  content: "";
  pointer-events: none;
}

.feature-card:hover {
  border-color: rgba(250, 204, 21, 0.32);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.feature-card-wide {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: start;
  gap: 22px;
}

.icon-tile {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 54px;
  place-items: center;
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: 14px;
  background: rgba(250, 204, 21, 0.07);
  color: var(--yellow);
}

.feature-card-wide .icon-tile {
  margin-bottom: 0;
}

.icon-tile svg {
  width: 25px;
  height: 25px;
}

.card-kicker {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.feature-card h3 {
  margin: 9px 0 12px;
  font-size: 23px;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

.feature-card p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.step-number {
  display: inline-flex;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.step h3 {
  margin: 76px 0 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.library-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  align-items: center;
  gap: 80px;
}

.library-grid .section-heading {
  margin-bottom: 0;
}

.scope-note {
  display: flex;
  margin-top: 26px;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 650;
}

.scope-note svg {
  flex: 0 0 auto;
  color: var(--yellow);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.category-card {
  display: flex;
  min-height: 94px;
  align-items: center;
  gap: 17px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.category-card:hover {
  border-color: rgba(250, 204, 21, 0.3);
  background: var(--surface-raised);
}

.category-card span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: var(--gradient);
  color: var(--on-yellow);
  font-size: 11px;
  font-weight: 900;
}

.category-card strong {
  font-size: 14px;
}

.compatibility-section {
  padding-top: 16px;
}

.compatibility-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 50px;
  padding: 46px;
  border: 1px solid rgba(250, 204, 21, 0.22);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 90% 0%, rgba(250, 204, 21, 0.13), transparent 38%), var(--surface);
}

.compatibility-card h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.compatibility-list {
  display: grid;
  gap: 10px;
}

.compatibility-list > span {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
}

.compatibility-list svg {
  width: 17px;
  height: 17px;
  color: var(--yellow);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.faq-layout .section-heading {
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--text);
  font-size: 15px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary svg {
  flex: 0 0 auto;
  color: var(--yellow);
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 42px 24px 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  padding-top: 30px;
}

.cta-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 46px;
  overflow: hidden;
  border: 1px solid rgba(250, 204, 21, 0.25);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 90% 10%, rgba(250, 204, 21, 0.18), transparent 38%), linear-gradient(145deg, #171a20, #101216);
}

.cta-mark {
  width: 64px;
  height: 64px;
  border-radius: 15px 15px 20px 12px;
  font-size: 32px;
}

.cta-card h2 {
  max-width: 680px;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.015);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.7fr);
  gap: 50px;
  padding-block: 60px;
}

.footer-grid > div:first-child p {
  max-width: 310px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 13px;
}

.footer-links a[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.62;
}

.footer-bottom {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--border-soft);
  color: #858c99;
  font-size: 11px;
}

.footer-bottom span:last-child {
  max-width: 660px;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms cubic-bezier(0.16, 1, 0.3, 1), transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-main {
  min-height: 70vh;
}

.legal-hero {
  padding: 90px 0 36px;
}

.legal-hero h1 {
  max-width: 760px;
}

.legal-content {
  display: grid;
  max-width: 850px;
  gap: 34px;
  padding: 28px 0 110px;
}

.legal-content section {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 15px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-weight: 750;
}

@media (max-width: 1060px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav:not([hidden]) {
    display: block;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-grid,
  .library-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

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

  .product-stage {
    width: min(92%, 850px);
    margin-inline: auto;
  }

  .library-grid .section-heading,
  .faq-layout .section-heading {
    max-width: 720px;
  }

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

  .cta-card .button {
    grid-column: 2;
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
  }
}

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

  .nav-shell {
    min-height: 68px;
    gap: 12px;
  }

  .nav-actions .button-small {
    display: none;
  }

  .hero {
    padding: 58px 0 52px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.25rem);
  }

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

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

  .product-stage {
    width: 100%;
    padding-block: 34px;
  }

  .stage-badge {
    top: 0;
    right: 0;
  }

  .floating-card {
    display: none;
  }

  .window-frame {
    border-radius: 12px;
  }

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

  .proof-grid > div {
    min-height: 112px;
    padding: 18px;
  }

  .proof-grid > div:nth-child(2) {
    border-right: 0;
  }

  .proof-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border-soft);
  }

  .section {
    padding: 82px 0;
  }

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

  .feature-grid,
  .steps,
  .compatibility-card {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .step {
    min-height: 0;
  }

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

  .icon-tile,
  .feature-card-wide .icon-tile {
    margin-bottom: 36px;
  }

  .step h3 {
    margin-top: 46px;
  }

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

  .compatibility-section {
    padding-top: 0;
  }

  .compatibility-card,
  .cta-card {
    padding: 30px;
  }

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

  .cta-card .button {
    grid-column: auto;
    justify-self: stretch;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 22px;
  }

  .footer-bottom span:last-child {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .brand-copy span {
    display: none;
  }

  .hero-points {
    display: grid;
  }

  .proof-grid strong {
    font-size: 23px;
  }

  .proof-grid span {
    font-size: 11px;
  }

  .feature-card,
  .step,
  .compatibility-card,
  .cta-card {
    padding: 24px;
  }

  .category-card {
    padding: 16px;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
