/* ATA Quick Guide — havacılık / gökyüzü, ferah açık tema */
:root {
  --bg: #e2edf8;
  --bg-deep: #d0e2f4;
  --bg-elevated: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.92);
  --border: rgba(19, 47, 76, 0.11);
  --border-strong: rgba(19, 47, 76, 0.17);
  --text: #0c2744;
  --muted: #5a6f82;
  --accent: #0d6efd;
  --accent-dim: rgba(13, 110, 253, 0.14);
  --accent-hover: #0b5ed7;
  --sky-band: rgba(125, 185, 232, 0.38);
  --radius: 16px;
  --radius-sm: 10px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --shadow: 0 16px 48px rgba(15, 53, 80, 0.09);
  --shadow-soft: 0 6px 28px rgba(15, 53, 80, 0.07);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.3, 0.64, 1);
  --hero-phone-width: min(300px, 82vw);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: #f3f8fd;
  background-image:
    linear-gradient(165deg, #fafcfe 0%, #eef5fc 40%, #e4eef8 100%),
    radial-gradient(ellipse 110% 65% at 50% -8%, rgba(255, 255, 255, 0.95), transparent 55%),
    radial-gradient(ellipse 85% 50% at 92% 18%, var(--sky-band) 0%, transparent 48%),
    radial-gradient(ellipse 75% 45% at 6% 38%, rgba(160, 200, 245, 0.35), transparent 44%);
  background-attachment: fixed;
}

@media (prefers-reduced-motion: no-preference) {
  body::before {
    content: "";
    position: fixed;
    inset: -30%;
    z-index: -1;
    pointer-events: none;
    background:
      radial-gradient(ellipse 48% 40% at 70% 15%, rgba(8, 112, 217, 0.16), transparent 58%),
      radial-gradient(ellipse 44% 38% at 15% 58%, rgba(125, 185, 232, 0.22), transparent 52%);
    animation: ambient-drift 20s ease-in-out infinite alternate;
  }

  body::after {
    content: "";
    position: fixed;
    inset: -35%;
    z-index: -2;
    pointer-events: none;
    opacity: 0.65;
    background:
      radial-gradient(circle at 30% 40%, rgba(8, 112, 217, 0.09), transparent 42%),
      radial-gradient(circle at 75% 70%, rgba(125, 185, 232, 0.12), transparent 40%);
    animation: ambient-orbit 32s ease-in-out infinite alternate;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after {
    display: none;
  }
}

@keyframes ambient-drift {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  100% {
    transform: translate(-3%, 2%) rotate(1.8deg) scale(1.05);
  }
}

@keyframes ambient-orbit {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(4%, -3%);
  }
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

.container {
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ——— Üst bar ——— */
.app-top {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: visible;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s ease;
}

.app-top.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(19, 47, 76, 0.08);
  box-shadow: 0 10px 40px rgba(19, 47, 76, 0.07);
}

.app-top__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  min-height: 3.5rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  overflow: visible;
}

.app-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.app-brand:hover {
  color: var(--text);
}

.app-brand__mark {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

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

@media (prefers-reduced-motion: no-preference) {
  .app-brand__mark {
    transition: transform 0.45s var(--ease-spring), box-shadow 0.35s ease;
  }

  .app-brand:hover .app-brand__mark {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 8px 24px rgba(11, 107, 203, 0.2);
  }
}

.app-menu {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1rem;
  min-width: 0;
}

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

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

.app-menu a[aria-current="page"] {
  color: var(--accent);
}

@media (min-width: 1401px) {
  .app-menu {
    justify-content: center;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: thin;
  }
}

@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  .app-menu a {
    position: relative;
  }

  .app-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(11, 107, 203, 0.35));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out);
  }

  .app-menu a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .app-menu a:hover::after,
  .app-menu a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

/* ——— Butonlar ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s var(--ease-out), border-color 0.25s ease, transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(11, 107, 203, 0.28);
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(11, 107, 203, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--border-strong);
  color: var(--text);
}

.btn--ghost:hover {
  background: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn--ghost:active {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .btn--primary:hover,
  .btn--ghost:hover {
    transform: none;
  }
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* ——— Beta + mağaza ——— */
.beta-pill {
  margin: 0 0 1rem;
}

.beta-pill span {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0b4a9e;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.12) 0%, rgba(125, 185, 232, 0.22) 100%);
  border: 1px solid rgba(13, 110, 253, 0.2);
  border-radius: 999px;
}

@media (prefers-reduced-motion: no-preference) {
  .beta-pill span {
    animation: beta-glow 3.5s ease-in-out infinite;
  }
}

@keyframes beta-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.12);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(13, 110, 253, 0.06);
  }
}

.store-panel {
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: border-color 0.35s ease, box-shadow 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.store-panel--compact {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
}

.store-panel--compact .store-panel__copy {
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.55;
}

@media (prefers-reduced-motion: no-preference) {
  .store-panel:hover {
    border-color: rgba(13, 110, 253, 0.22);
    box-shadow: 0 16px 48px rgba(19, 47, 76, 0.1);
    transform: translateY(-3px);
  }
}

.store-panel__copy {
  margin: 0 0 1.15rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

.store-panel__copy strong {
  color: var(--text);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.store-badge {
  height: 48px;
  width: auto;
  max-width: 100%;
  display: block;
  opacity: 0.72;
  filter: saturate(0.65);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.45s var(--ease-spring);
}

.store-badge--apple {
  height: 40px;
}

.store-badge:hover {
  opacity: 0.88;
  filter: saturate(0.85);
  transform: translateY(-3px) scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .store-badge:hover {
    transform: none;
  }
}

.store-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.store-badge-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ——— Ana içerik ——— */
.app-content {
  padding-bottom: 4rem;
}

/* Dil değişimi: içerik çıkış / giriş (erişilebilirlik: azaltılmış hareket) */
@media (prefers-reduced-motion: no-preference) {
  @keyframes ata-lang-swap-out {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(0.45rem);
    }
  }

  @keyframes ata-lang-swap-in {
    from {
      opacity: 0;
      transform: translateY(-0.35rem);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes ata-lang-seg-nudge {
    0%,
    100% {
      transform: scale(1);
    }
    45% {
      transform: scale(1.05);
    }
  }

  main.app-content.ata-lang-swap-phase-out,
  .app-shell > footer.app-footer.ata-lang-swap-phase-out,
  header.app-top .app-menu.ata-lang-swap-phase-out {
    animation: ata-lang-swap-out 0.24s var(--ease-out) forwards;
    pointer-events: none;
  }

  main.app-content.ata-lang-swap-phase-in,
  .app-shell > footer.app-footer.ata-lang-swap-phase-in,
  header.app-top .app-menu.ata-lang-swap-phase-in {
    animation: ata-lang-swap-in 0.42s var(--ease-out) forwards;
  }

  .lang-seg.ata-lang-seg-nudge {
    animation: ata-lang-seg-nudge 0.42s var(--ease-spring);
  }
}

.app-hero {
  padding: 2.75rem 0 2rem;
  text-align: center;
  position: relative;
}

.app-hero::after {
  content: "";
  display: block;
  width: min(12rem, 50%);
  height: 3px;
  margin: 2rem auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, rgba(11, 107, 203, 0.35), rgba(125, 185, 232, 0.5), rgba(11, 107, 203, 0.35), transparent);
  opacity: 0.85;
  transform-origin: center;
}

@media (prefers-reduced-motion: no-preference) {
  .app-hero::after {
    animation: motion-line-in 1s var(--ease-out) 0.45s backwards;
  }
}

@keyframes motion-line-in {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 0.85;
  }
}

@media (min-width: 640px) {
  .app-hero {
    padding: 3.5rem 0 2.25rem;
  }
}

.app-hero__icon {
  width: clamp(7.25rem, 32vw, 11rem);
  height: clamp(7.25rem, 32vw, 11rem);
  margin: 0 auto 1.35rem;
  border-radius: clamp(1.2rem, 5vw, 2rem);
  overflow: hidden;
  border: none;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.45), transparent 58%),
    linear-gradient(155deg, rgba(11, 107, 203, 0.22), rgba(11, 107, 203, 0.06));
  box-shadow:
    0 24px 56px rgba(11, 107, 203, 0.18),
    0 0 0 1px rgba(11, 107, 203, 0.1);
  display: grid;
  place-items: center;
  padding: clamp(0.2rem, 1.2vw, 0.45rem);
}

@keyframes hero-icon-breathe {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-6px) scale(1.03);
  }
}

.app-hero__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 0;
  clip-path: none;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.12));
}

.app-hero h1 {
  margin: 0;
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.app-hero .lead {
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.65;
}

.app-hero .btn-row {
  justify-content: center;
}

@media (prefers-reduced-motion: no-preference) {
  .app-hero > * {
    animation: motion-fade-up 0.8s var(--ease-out) backwards;
  }

  .app-hero > .beta-pill {
    animation-delay: 0.05s;
  }

  .app-hero > .app-hero__icon {
    animation-delay: 0.1s;
  }

  .app-hero__icon img {
    animation: hero-icon-breathe 5s ease-in-out 0.95s infinite alternate;
  }

  .app-hero > h1 {
    animation-delay: 0.16s;
  }

  .app-hero > .lead {
    animation-delay: 0.22s;
  }

  .app-hero > .btn-row {
    animation-delay: 0.28s;
  }

  .app-hero > .store-panel {
    animation-delay: 0.38s;
  }
}

@keyframes motion-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ——— Landing (uygulama giriş sayfası + ATA koyu) ——— */
.landing-hero {
  padding-top: 2.25rem;
  text-align: left;
}

.landing-hero.app-hero::after {
  display: none;
}

.landing-hero .btn-row {
  justify-content: flex-start;
}

.landing-hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  overflow: visible;
}

.landing-hero__visual {
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  overflow: visible;
}

@media (min-width: 960px) {
  .landing-hero__grid {
    align-items: center;
    gap: 2.75rem;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  }
}

.landing-hero__copy {
  max-width: 38rem;
}

.landing-hero__subtitle {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.55;
}

.landing-hero h1 {
  text-align: left;
  font-size: clamp(1.75rem, 4.2vw, 2.5rem);
}

.landing-hero .lead {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.landing-hero .store-panel {
  text-align: left;
  background: #fff;
  box-shadow: 0 10px 40px rgba(15, 53, 80, 0.08), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  border-color: rgba(19, 47, 76, 0.09);
}

.landing-hero .store-panel__copy {
  margin-left: 0;
}

.landing-hero .store-badges {
  justify-content: flex-start;
}

[data-theme="dark"] .landing-hero .store-panel {
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  border-color: var(--border);
}

.landing-phones {
  position: relative;
  width: 100%;
  margin-inline: auto;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

@media (min-width: 960px) {
  .landing-phones {
    min-height: 440px;
    justify-content: center;
  }
}

/* Tek telefon: ince çerçeve, sola hafif eğik, yüzen gölge (referans mockup) */
.hero-device--iphone {
  line-height: 0;
  width: var(--hero-phone-width);
  max-width: 100%;
  transform: rotate(-7deg);
  filter: drop-shadow(0 28px 56px rgba(15, 53, 80, 0.2)) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.12));
}

.hero-device__iphone-inner {
  width: 100%;
  aspect-ratio: 390 / 844;
  border-radius: 1.45rem;
  padding: 0.34rem;
  background: linear-gradient(180deg, #2a2a2e 0%, #1c1c20 50%, #121214 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 0 1px rgba(0, 0, 0, 0.35) inset;
  display: flex;
  flex-direction: column;
}

.hero-device__screen {
  position: relative;
  flex: 1;
  min-height: 0;
  border-radius: 1.12rem;
  overflow: hidden;
  background: #000;
}

.hero-device__screen .hero-device__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  clip-path: inset(6% 0 6.5% 0);
}

/* Üst orta hap / kamera */
.hero-device__cam {
  position: absolute;
  top: 0.3rem;
  left: 50%;
  z-index: 2;
  width: clamp(3rem, 32%, 5rem);
  height: clamp(0.78rem, 4.5vw, 1.15rem);
  max-height: 1.2rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, #121214 0%, #050506 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.hero-device__cam::before {
  content: "";
  position: absolute;
  left: 14%;
  top: 50%;
  width: 0.22rem;
  height: 0.22rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #3a3a40, #1a1a1e);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.hero-device__cam::after {
  content: "";
  position: absolute;
  right: 11%;
  top: 50%;
  width: 0.52rem;
  height: 0.52rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.15), transparent 42%),
    radial-gradient(circle at 35% 35%, #1e4d38, #0a1f14 70%);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.65),
    inset -0.05rem -0.05rem 0.12rem rgba(0, 0, 0, 0.4);
}

@media (max-width: 959px) {
  .landing-hero__grid {
    grid-template-columns: 1fr;
  }

  .landing-hero__visual {
    order: -1;
  }

  .landing-phones {
    min-height: 400px;
  }

  .hero-device--iphone {
    transform: rotate(-5deg);
    filter: drop-shadow(0 22px 44px rgba(15, 53, 80, 0.18)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  }
}

@media (prefers-reduced-motion: no-preference) {
  .landing-hero .landing-hero__copy > * {
    animation: motion-fade-up 0.8s var(--ease-out) backwards;
  }

  .landing-hero .landing-hero__copy > *:nth-child(1) {
    animation-delay: 0.05s;
  }

  .landing-hero .landing-hero__copy > *:nth-child(2) {
    animation-delay: 0.1s;
  }

  .landing-hero .landing-hero__copy > *:nth-child(3) {
    animation-delay: 0.14s;
  }

  .landing-hero .landing-hero__copy > *:nth-child(4) {
    animation-delay: 0.18s;
  }

  .landing-hero .landing-hero__copy > *:nth-child(5) {
    animation-delay: 0.22s;
  }

  .landing-hero .landing-hero__copy > *:nth-child(6) {
    animation-delay: 0.28s;
  }

  .landing-hero .landing-hero__visual {
    animation: motion-fade-up 0.85s var(--ease-out) 0.16s backwards;
  }
}

.showcase-section {
  padding: 2.5rem 0 0.5rem;
  border-top: 1px solid var(--border);
}

.showcase-strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .showcase-strip {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.showcase-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-soft);
}

.showcase-card img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

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

@media (min-width: 700px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

.feature-card {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.3s ease, box-shadow 0.35s ease, transform 0.4s var(--ease-out);
}

@media (prefers-reduced-motion: no-preference) {
  .feature-card:hover {
    border-color: rgba(8, 112, 217, 0.22);
    box-shadow: 0 14px 40px rgba(15, 53, 80, 0.1);
    transform: translateY(-2px);
  }
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.feature-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}

.landing-quote {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.landing-quote__inner {
  margin: 0;
  padding: 1.5rem 1.65rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
}

.landing-quote__inner p {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
}

.landing-quote__inner footer {
  font-size: 0.8rem;
  color: var(--muted);
}

.landing-quote__inner cite {
  font-style: normal;
  font-weight: 600;
}

[data-theme="dark"] .feature-card:hover {
  border-color: rgba(10, 132, 255, 0.28);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .hero-device__iphone-inner {
  background: linear-gradient(180deg, #242428 0%, #161618 50%, #0c0c0e 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 0 0 1px rgba(0, 0, 0, 0.5) inset;
}

[data-theme="dark"] .hero-device--iphone {
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.45)) drop-shadow(0 14px 28px rgba(0, 0, 0, 0.3));
}

/* Hover: pointer:fine hibrit PC’lerde çoğu zaman false oluyor; sadece (hover: hover) */
@media (hover: hover) {
  @media (prefers-reduced-motion: no-preference) {
    .landing-phones .hero-device--iphone {
      transition:
        transform 0.55s var(--ease-out),
        filter 0.55s var(--ease-out);
    }

    .landing-phones .hero-device__iphone-inner {
      transition: box-shadow 0.55s var(--ease-out);
    }

    .landing-phones .hero-device--iphone:hover {
      transform: rotate(-4deg) scale(1.06) translateY(-14px);
      filter: drop-shadow(0 44px 76px rgba(15, 53, 80, 0.28)) drop-shadow(0 22px 44px rgba(0, 0, 0, 0.15));
    }

    .landing-phones .hero-device--iphone:hover .hero-device__iphone-inner {
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.11) inset,
        0 0 0 1px rgba(0, 0, 0, 0.3) inset,
        0 0 40px rgba(13, 110, 253, 0.18);
    }

    [data-theme="dark"] .landing-phones .hero-device--iphone:hover {
      transform: rotate(-4deg) scale(1.06) translateY(-14px);
      filter: drop-shadow(0 48px 80px rgba(0, 0, 0, 0.6)) drop-shadow(0 26px 52px rgba(0, 0, 0, 0.38));
    }

    [data-theme="dark"] .landing-phones .hero-device--iphone:hover .hero-device__iphone-inner {
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 0 0 1px rgba(0, 0, 0, 0.42) inset,
        0 0 44px rgba(10, 132, 255, 0.22);
    }
  }
}

@media (hover: hover) and (max-width: 959px) {
  @media (prefers-reduced-motion: no-preference) {
    .landing-phones .hero-device--iphone:hover,
    [data-theme="dark"] .landing-phones .hero-device--iphone:hover {
      transform: rotate(-3deg) scale(1.04) translateY(-10px);
    }
  }
}

/* Bölümler */
.section {
  padding: 2.75rem 0;
  border-top: 1px solid var(--border);
}

.section__head {
  margin-bottom: 1.5rem;
  max-width: 40rem;
}

.section__head h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.section__head p + p {
  margin-top: 0.75rem;
}

.feedback-maintenance {
  margin: 0 0 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--accent-dim);
  border: 1px solid rgba(8, 112, 217, 0.2);
  border-radius: var(--radius-sm);
}

[data-theme="dark"] .feedback-maintenance {
  background: rgba(10, 132, 255, 0.12);
  border-color: rgba(10, 132, 255, 0.28);
}

.feedback-maintenance--solo {
  max-width: 40rem;
  margin-top: 0.5rem;
}

.placeholder-text {
  color: var(--muted);
  font-style: italic;
}

.cta-strip {
  margin-top: 0.5rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(11, 107, 203, 0.2);
  background: linear-gradient(135deg, rgba(11, 107, 203, 0.08) 0%, rgba(255, 255, 255, 0.9) 100%);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease, border-color 0.35s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .cta-strip:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(11, 107, 203, 0.12);
    border-color: rgba(11, 107, 203, 0.28);
  }
}

@media (min-width: 560px) {
  .cta-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-strip p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text);
}

/* ——— Credits ——— */
.credits-block {
  padding: 2.5rem 0 1rem;
}

.credits-block--spotlight {
  padding: 3.5rem 0;
}

.credits-block--spotlight .credits-card {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.credits-block--spotlight .credits-list dt {
  text-align: center;
}

.credits-block--spotlight .credits-list dd {
  text-align: center;
}

.credits-card {
  max-width: 32rem;
  margin: 0 auto;
  padding: 1.5rem 1.65rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.45s var(--ease-out), border-color 0.35s ease, transform 0.45s var(--ease-out);
  text-align: center;
}

@media (prefers-reduced-motion: no-preference) {
  .credits-card:hover {
    box-shadow: 0 20px 48px rgba(19, 47, 76, 0.09);
    border-color: rgba(11, 107, 203, 0.18);
    transform: translateY(-3px);
  }
}

.credits-card h2 {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--text);
}

.credits-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.credits-list dt {
  margin: 0;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.credits-list dt:first-of-type {
  padding-top: 0;
  border-top: none;
}

.credits-list dd {
  margin: 0.15rem auto 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
  max-width: 28rem;
}

/* ——— İndir / releases ——— */
.page-intro {
  padding: 2.5rem 0 1rem;
}

@media (prefers-reduced-motion: no-preference) {
  .page-intro--hero > * {
    animation: motion-fade-up 0.75s var(--ease-out) backwards;
  }

  .page-intro--hero > h1 {
    animation-delay: 0.06s;
  }

  .page-intro--hero > .lead {
    animation-delay: 0.14s;
  }
}

.page-intro h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.page-intro .lead {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.section-block {
  margin-bottom: 2.5rem;
}

.section-block h2 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.version-card {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.4s ease, border-color 0.35s ease, transform 0.4s var(--ease-out);
}

@media (prefers-reduced-motion: no-preference) {
  .version-card:hover {
    box-shadow: 0 16px 40px rgba(19, 47, 76, 0.09);
    transform: translateY(-2px);
  }
}

.version-card--latest {
  border-color: rgba(11, 107, 203, 0.35);
  background: linear-gradient(165deg, rgba(11, 107, 203, 0.08) 0%, var(--bg-card) 45%);
}

.version-card__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
}

.version-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border-radius: 4px;
}

.version-meta {
  font-size: 0.875rem;
  color: var(--muted);
}

.btn-dl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.35rem;
  padding: 0.65rem 1.2rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
  box-shadow: 0 4px 12px rgba(11, 107, 203, 0.25);
}

.btn-dl:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(11, 107, 203, 0.32);
}

.btn-dl:active {
  transform: translateY(0);
}

.btn-dl:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.subhead-ch {
  margin: 1.15rem 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.changelog-list {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text);
}

.changelog-list li {
  margin-bottom: 0.35rem;
}

.older-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.older-item {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.3s ease, box-shadow 0.35s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .older-item:hover {
    border-color: rgba(11, 107, 203, 0.2);
    box-shadow: 0 10px 28px rgba(19, 47, 76, 0.08);
  }
}

.older-item__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 0.35rem;
}

.older-item a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
}

.older-item a:hover {
  color: var(--accent-hover);
}

.muted {
  color: var(--muted);
  font-size: 0.875rem;
}

.alert-soft {
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #8b4513;
  background: rgba(255, 200, 120, 0.25);
  border: 1px solid rgba(200, 120, 40, 0.35);
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.history-block {
  margin-bottom: 1.35rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.history-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.history-block__title {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.comments-note {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

.comments-wrap {
  min-height: 200px;
  margin-top: 0.35rem;
  padding: 0.65rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: border-color 0.3s ease, box-shadow 0.35s ease;
}

.comments-wrap:focus-within {
  border-color: rgba(8, 112, 217, 0.28);
  box-shadow: 0 0 0 3px rgba(8, 112, 217, 0.08);
}

@media (prefers-reduced-motion: no-preference) {
  .section.reveal.is-inview .section__head h2,
  .section-block.reveal.is-inview > h2:first-of-type {
    animation: head-slide-in 0.65s var(--ease-out) both;
  }

  .credits-block.reveal.is-inview .credits-card {
    animation: card-lift-in 0.75s var(--ease-out) 0.08s both;
  }

  .store-panel {
    animation: panel-soft-glow 10s ease-in-out infinite alternate;
  }

  .app-menu a {
    transition: color 0.25s ease, transform 0.35s var(--ease-spring);
  }

  .app-menu a:hover {
    transform: translateY(-2px);
  }
}

@keyframes head-slide-in {
  from {
    opacity: 0;
    transform: translateX(-14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes card-lift-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes panel-soft-glow {
  from {
    box-shadow: var(--shadow-soft);
  }
  to {
    box-shadow: 0 12px 40px rgba(8, 112, 217, 0.12), var(--shadow-soft);
  }
}

/* ——— Nasıl yüklenir ——— */
.prose {
  max-width: 42rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
}

.prose h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

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

.prose p {
  margin: 0 0 0.85rem;
}

.prose ol,
.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  color: var(--text);
}

.prose li {
  margin-bottom: 0.45rem;
}

.prose li::marker {
  color: var(--muted);
}

.prose .note {
  margin: 0.75rem 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  color: var(--muted);
}

.prose .placeholder {
  margin: 0 0 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.85);
  color: var(--muted);
  font-style: italic;
}

.prose code {
  color: var(--accent);
  font-size: 0.88em;
}

/* ——— Footer ——— */
.app-footer {
  margin-top: auto;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.45);
}

.app-footer p,
.app-footer__line {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.65;
}

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

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.app-shell .app-content {
  flex: 1;
}

/* ——— Tema: gece ——— */
[data-theme="dark"] {
  color-scheme: dark;
}

[data-theme="dark"] :root,
[data-theme="dark"] {
  --bg: #0a0a0a;
  --bg-deep: #121212;
  --bg-elevated: #1a1a1a;
  --bg-card: rgba(30, 30, 30, 0.94);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --muted: #a1a1a6;
  --accent: #0a84ff;
  --accent-dim: rgba(10, 132, 255, 0.16);
  --accent-hover: #409cff;
  --sky-band: rgba(10, 132, 255, 0.1);
  --shadow: 0 16px 56px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 10px 36px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] body {
  background-color: #000000;
  background-image:
    linear-gradient(180deg, #121212 0%, #0a0a0a 38%, #000000 100%);
  background-attachment: fixed;
}

[data-theme="dark"] body::before {
  background:
    radial-gradient(ellipse 55% 45% at 20% 15%, rgba(10, 132, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 25%, rgba(10, 132, 255, 0.08), transparent 50%);
}

[data-theme="dark"] body::after {
  background:
    radial-gradient(circle at 40% 60%, rgba(10, 132, 255, 0.06), transparent 42%),
    radial-gradient(circle at 78% 45%, rgba(10, 132, 255, 0.05), transparent 38%);
  opacity: 0.6;
}

[data-theme="dark"] .app-top {
  background: rgba(18, 18, 18, 0.88);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

[data-theme="dark"] .app-top.is-scrolled {
  background: rgba(12, 17, 24, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .beta-pill span {
  color: #b8d9ff;
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.2) 0%, rgba(10, 132, 255, 0.08) 100%);
  border-color: rgba(10, 132, 255, 0.35);
}

[data-theme="dark"] .btn--primary {
  color: #ffffff;
}

[data-theme="dark"] .btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-strong);
  color: var(--text);
}

[data-theme="dark"] .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .app-footer {
  background: rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .app-hero__icon {
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.1), transparent 55%),
    linear-gradient(155deg, rgba(77, 163, 255, 0.22), rgba(20, 30, 42, 0.55));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .comments-wrap {
  background: var(--bg-elevated);
}

[data-theme="dark"] .comments-wrap:focus-within {
  border-color: rgba(77, 163, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.1);
}

[data-theme="dark"] .prose .note,
[data-theme="dark"] .prose .placeholder {
  background: rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .alert-soft {
  color: #f0d0a8;
  background: rgba(200, 120, 40, 0.18);
  border-color: rgba(255, 160, 80, 0.28);
}

[data-theme="dark"] .version-badge {
  color: #ffffff;
}

/* ——— Üst bar: dil + tema ——— */
.app-controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.lang-seg {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.lang-seg button {
  margin: 0;
  padding: 0.35rem 0.65rem;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  transition: background 0.25s var(--ease-out), color 0.2s ease, transform 0.2s ease;
}

.lang-seg button:hover {
  color: var(--text);
}

.lang-seg button.is-active {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(11, 107, 203, 0.35);
}

[data-theme="dark"] .lang-seg button.is-active {
  color: #ffffff;
}

.theme-toggle {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 0.35s var(--ease-spring), border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-soft);
}

.theme-toggle:hover {
  border-color: rgba(11, 107, 203, 0.35);
  transform: scale(1.06);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Orta genişlik + uzun menü metinleri (ör. “Nasıl yüklenir”): menü tam genişlik 2. satır */
@media (max-width: 1400px) {
  .app-brand {
    order: 1;
  }

  .app-controls {
    order: 2;
    margin-left: auto;
  }

  .app-menu {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.45rem;
    padding-top: 0.15rem;
    border-top: 1px solid var(--border);
  }

  .app-menu a {
    flex-shrink: 0;
  }
}

/* Çok dar ekran: yatay kaydırma yedek */
@media (max-width: 480px) {
  .app-menu {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
    border-top: none;
    padding-top: 0;
  }
}

/* ——— Simge: beyaz çerçeve gider ——— */
.app-brand__mark {
  border: none;
  background: var(--icon-pad, rgba(11, 107, 203, 0.06));
}

[data-theme="dark"] .app-brand__mark {
  --icon-pad: rgba(255, 255, 255, 0.06);
}

.app-brand__mark img {
  object-fit: contain;
  padding: 2px;
  clip-path: inset(1px round 7px);
}

.credits-list dt {
  text-align: center;
}

/* ——— Scroll reveal ——— */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
    transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
  }

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

  .reveal-stagger-1 {
    transition-delay: 0.06s;
  }

  .reveal-stagger-2 {
    transition-delay: 0.12s;
  }

  .reveal-stagger-3 {
    transition-delay: 0.18s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  .btn-dl:hover {
    transform: none;
  }
}
