:root {
  color-scheme: light dark;
  --bg: #f4f4f5;
  --bg-elevated: #ffffff;
  --text: #18181b;
  --text-muted: #52525b;
  --border: #e4e4e7;
  --accent: #10a37f;
  --accent-hover: #0e906f;
  --accent-soft: rgba(16, 163, 127, 0.08);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.08);
  --radius: 8px;
  --radius-sm: 6px;
  --max-width: 1080px;
  --header-height: 64px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111113;
    --bg-elevated: #1c1c1f;
    --text: #f4f4f5;
    --text-muted: #a1a1aa;
    --border: #2e2e33;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.4);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  text-decoration: underline;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 0 0 8px 8px;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand:hover {
  text-decoration: none;
}

.brand__icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: block;
  flex-shrink: 0;
  overflow: hidden;
}

.brand__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.nav__links a:hover {
  color: var(--text);
}

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

.lang-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg-elevated);
}

.lang-toggle button {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
}

.lang-toggle button.is-active {
  background: var(--accent-soft);
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 120ms ease, border-color 120ms ease;
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--secondary {
  background: var(--bg-elevated);
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}

/* Hero */
.hero {
  padding: 64px 0 72px;
  border-bottom: 1px solid var(--border);
}

.hero__copy--solo {
  max-width: 640px;
}

.hero__copy--solo .hero__lead {
  max-width: none;
}

.hero__badge {
  display: inline-block;
  padding: 4px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.hero__badge-dot {
  display: none;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero__lead {
  margin: 0 0 28px;
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__meta svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

/* Demo mockup */
.demo {
  position: relative;
}

.demo__window {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.demo__toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 70%, var(--bg-elevated));
}

.demo__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}

.demo__dot:nth-child(2) {
  background: #febc2e;
}

.demo__dot:nth-child(3) {
  background: #28c840;
}

.demo__url {
  margin-left: 10px;
  flex: 1;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.demo__content {
  padding: 28px 24px 32px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.demo__content code {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.88em;
}

.demo__selection {
  background: rgba(16, 163, 127, 0.18);
  color: var(--text);
  border-radius: 4px;
  padding: 1px 2px;
  position: relative;
}

.demo__trigger {
  position: absolute;
  right: -28px;
  top: -10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(16, 163, 127, 0.4);
}

.demo__overlay {
  position: absolute;
  right: 18px;
  bottom: 24px;
  width: min(280px, 88%);
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-lg);
}

.demo--code .demo__content {
  padding: 20px 24px 80px;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.65;
  background: color-mix(in srgb, var(--bg) 50%, var(--bg-elevated));
}

.demo--code .demo__line {
  display: block;
  color: var(--text-muted);
}

.demo--code .demo__line--hl {
  color: var(--text);
}

.demo--code .demo__kw {
  color: #8250df;
}

@media (prefers-color-scheme: dark) {
  .demo--code .demo__kw {
    color: #bc8cff;
  }
}

.demo--code .demo__overlay {
  left: 24px;
  right: auto;
  bottom: 20px;
  width: min(300px, calc(100% - 48px));
}

.demo--code .demo__selection {
  background: rgba(16, 163, 127, 0.15);
}

/* Showcase — iki önizleme */
.showcase {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

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

.showcase__caption {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.showcase__caption strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.showcase__nested {
  margin-top: 48px;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.demo--nested-stack .demo__window {
  overflow: hidden;
}

.demo__nested-scene {
  position: relative;
  min-height: 300px;
  padding: 18px 20px 24px;
}

.demo__bg-text {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.demo__bg-text p {
  margin: 0 0 12px;
}

.demo__bg-text code {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.88em;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 1px 5px;
  border-radius: 4px;
}

.demo__overlay--stack {
  width: min(290px, calc(100% - 32px));
}

.demo__overlay--primary {
  z-index: 2;
  right: 16px;
  bottom: 20px;
  left: auto;
  top: auto;
}

.demo__overlay--nested {
  z-index: 3;
  left: 12px;
  top: 28px;
  right: auto;
  bottom: auto;
  padding: 12px 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-color: var(--border);
  color: var(--text);
  box-shadow: var(--shadow-lg);
}

.demo__nested-blur {
  position: absolute;
  inset: 0;
  padding: 14px 16px;
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--text-muted);
  filter: blur(4px);
  opacity: 0.85;
  pointer-events: none;
  user-select: none;
}

.demo__nested-blur p {
  margin: 0 0 10px;
}

.demo__overlay-inner {
  position: relative;
  z-index: 1;
}

@media (prefers-color-scheme: dark) {
  .demo__overlay--nested {
    background: rgba(31, 32, 35, 0.72);
  }
}

.demo__selection--inline {
  position: relative;
  display: inline;
  padding: 0 1px;
}

.demo__selection--inline .demo__trigger {
  position: relative;
  right: auto;
  top: auto;
  display: inline-grid;
  width: 16px;
  height: 16px;
  font-size: 0.65rem;
  vertical-align: middle;
  margin-left: 2px;
}

/* Tools — ekran görüntüsü & arşiv */
.tools {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.tool {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.tool--reverse .tool__copy {
  order: 2;
}

.tool--reverse .demo {
  order: 1;
}

.tool h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.tool p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.tool__list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

/* Capture mockup */
.demo__capture-body {
  position: relative;
  padding: 20px;
  min-height: 220px;
  background: color-mix(in srgb, var(--bg) 40%, var(--bg-elevated));
}

.demo__capture-page {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  opacity: 0.55;
}

.demo__capture-sidebar {
  height: 140px;
  border-radius: var(--radius-sm);
  background: var(--border);
}

.demo__capture-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo__capture-chart {
  height: 90px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: repeating-linear-gradient(
    90deg,
    var(--accent-soft) 0,
    var(--accent-soft) 8px,
    transparent 8px,
    transparent 16px
  );
}

.demo__capture-label {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
}

.demo__capture-region {
  position: absolute;
  top: 48px;
  right: 32px;
  width: 140px;
  height: 72px;
  border: 2px dashed var(--accent);
  border-radius: var(--radius-sm);
  background: rgba(16, 163, 127, 0.06);
}

.demo__capture-region-label {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.demo__overlay--capture {
  left: auto;
  right: 16px;
  bottom: 16px;
  width: min(260px, calc(100% - 32px));
}

/* Archive mockup */
.demo__archive-body {
  padding: 16px 18px 18px;
}

.demo__archive-search {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  background: var(--bg);
}

.demo__archive-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.demo__archive-item {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
}

.demo__archive-term {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.demo__archive-excerpt {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  line-height: 1.45;
}

.demo__archive-source {
  font-size: 0.72rem;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.demo__archive-actions {
  display: flex;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.demo__archive-actions span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.demo__overlay-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.demo__overlay-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.demo__overlay-text {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.55;
}

/* Sections */
.section {
  padding: 88px 0;
}

.section--alt {
  background: color-mix(in srgb, var(--bg-elevated) 55%, var(--bg));
  border-block: 1px solid var(--border);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.section__eyebrow {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.section__header h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
}

.section__header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.step__num {
  font-size: 0.8rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.feature {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.feature__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.feature__icon svg {
  width: 100%;
  height: 100%;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.feature p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mode-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.mode-card--highlight {
  border-left: 3px solid var(--accent);
}

.mode-card__label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mode-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.mode-card p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

.mode-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.mode-card li + li {
  margin-top: 6px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.privacy-item {
  text-align: left;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.privacy-item:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.privacy-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.privacy-item__marker {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 12px;
}

.privacy-item h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.privacy-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.install {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.install.install--solo {
  grid-template-columns: 1fr;
  max-width: 520px;
  width: 100%;
  margin-inline: auto;
  justify-items: stretch;
}

.install__box {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
}

.install__box h3 {
  margin: 0 0 16px;
}

.install ol {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
}

.install li + li {
  margin-top: 10px;
}

.install code {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.88em;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 6px;
}

.install__note {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--text);
  font-size: 0.9rem;
}

.cta-banner {
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  text-align: center;
}

.cta-banner h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.cta-banner p {
  margin: 0 auto 20px;
  max-width: 480px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer__brand p {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 28rem;
}

.footer__col h4 {
  margin: 0 0 12px;
  font-size: 0.9rem;
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.footer__col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer__col a:hover {
  color: var(--text);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Privacy page */
.page-hero {
  padding: 56px 0 32px;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.page-hero p {
  margin: 0;
  color: var(--text-muted);
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.prose h2 {
  margin: 36px 0 12px;
  font-size: 1.25rem;
}

.prose h3 {
  margin: 24px 0 8px;
  font-size: 1.05rem;
}

.prose p,
.prose li {
  color: var(--text-muted);
}

.prose ul {
  padding-left: 20px;
}

.prose hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* Responsive */
@media (max-width: 960px) {
  .modes,
  .install,
  .footer__grid,
  .showcase__grid,
  .tool {
    grid-template-columns: 1fr;
  }

  .tool--reverse .tool__copy,
  .tool--reverse .demo {
    order: unset;
  }

  .privacy-item:nth-child(odd) {
    border-right: 0;
  }

  .privacy-item:nth-last-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .steps,
  .features,
  .privacy-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 48px;
  }
}

@media (max-width: 720px) {
  .nav__links,
  .nav__actions .btn--primary {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav.is-open {
    position: fixed;
    inset: var(--header-height) 0 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 20px;
  }

  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav.is-open .nav__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav.is-open .nav__actions .btn--primary {
    display: inline-flex;
  }

  .steps,
  .features,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .cta-banner {
    padding: 36px 24px;
  }
}
