:root {
  --brand: #e4563f;
  --brand-deep: #c44733;
  --brand-soft: #ff7a62;
  --mint: #2f9b5b;
  --sun: #f0b429;
  --ink: #141312;
  --ink-soft: #2a2826;
  --muted: #6e6b65;
  --line: #d6d3cd;
  --paper: #f7f6f3;
  --paper-deep: #ebe8e2;
  --surface: #ffffff;
  --on-brand: #ffffff;
  --shadow: 0 24px 60px rgba(20, 19, 18, 0.12);
  --radius: 18px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(1100px 520px at 8% -8%, rgba(228, 86, 63, 0.16), transparent 55%),
    radial-gradient(900px 480px at 100% 0%, rgba(47, 155, 91, 0.1), transparent 52%),
    linear-gradient(180deg, #faf9f7 0%, var(--paper) 42%, #f3f1ec 100%);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(247, 246, 243, 0.82);
  border-bottom: 1px solid rgba(214, 211, 205, 0.7);
}

.header-home {
  position: fixed;
  inset-inline: 0;
  background: rgba(12, 10, 10, 0.35);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header-home .brand,
.header-home .nav-links a,
.header-home .menu-toggle {
  color: #fafaf8;
}

.header-home .nav-links a {
  color: rgba(250, 250, 248, 0.72);
}

.header-home .nav-links a:hover {
  color: #fff;
}

.header-home .menu-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.header-home.is-scrolled {
  background: rgba(247, 246, 243, 0.92);
  border-bottom-color: rgba(214, 211, 205, 0.7);
}

.header-home.is-scrolled .brand,
.header-home.is-scrolled .menu-toggle {
  color: var(--ink);
}

.header-home.is-scrolled .nav-links a {
  color: var(--muted);
}

.header-home.is-scrolled .nav-links a:hover {
  color: var(--ink);
}

.header-home.is-scrolled .menu-toggle {
  background: var(--surface);
  border-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  display: none;
  z-index: 1;
}

.nav-end {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  z-index: 1;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  gap: 0.15rem;
}

.site-header:not(.header-home) .lang-switch,
.header-home.is-scrolled .lang-switch {
  border-color: var(--line);
  background: var(--surface);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: inherit;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0.65;
}

.header-home .lang-btn {
  color: #fafaf8;
}

.site-header:not(.header-home) .lang-btn,
.header-home.is-scrolled .lang-btn {
  color: var(--ink);
}

.lang-btn.is-active {
  opacity: 1;
  background: var(--brand);
  color: #fff !important;
}

@media (min-width: 860px) {
  .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 1.75rem;
  }

  .nav-cta {
    display: inline-flex;
  }
}

/* —— Cursor glow (desktop) —— */
.cursor-glow {
  display: none !important;
}

/* —— Hero —— */
.hero-stage {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6.5rem 0 4rem;
  overflow: hidden;
  color: #fafaf8;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(155deg, #1a1210 0%, #0f0e0d 42%, #2a1814 100%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  will-change: transform;
}

.blob-a {
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  top: -12%;
  left: -8%;
  background: rgba(228, 86, 63, 0.55);
  animation: blob-drift 14s ease-in-out infinite alternate;
}

.blob-b {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  right: -6%;
  top: 18%;
  background: rgba(47, 155, 91, 0.35);
  animation: blob-drift 18s ease-in-out infinite alternate-reverse;
}

.blob-c {
  width: min(45vw, 340px);
  height: min(45vw, 340px);
  left: 35%;
  bottom: -10%;
  background: rgba(240, 180, 41, 0.28);
  animation: blob-drift 12s ease-in-out infinite alternate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 40% 40%, #000 20%, transparent 72%);
  opacity: 0.5;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background: url("../assets/hero-grain.svg");
  background-size: 180px;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

@media (min-width: 960px) {
  .hero-stage {
    padding: 7rem 0 5rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    min-height: calc(100svh - 12rem);
  }

  .hero-copy {
    max-width: 36rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 2.8vw, 2.75rem);
    max-width: 18ch;
  }

  .hero-lead {
    font-size: 1.15rem;
    max-width: 36ch;
  }

  .hero-visual {
    min-height: 560px;
    justify-content: flex-end;
  }

  .phone-orbit {
    width: min(100%, 400px);
  }

  .blob-a {
    width: 640px;
    height: 640px;
  }

  .blob-b {
    width: 500px;
    height: 500px;
  }

  .chip-1 { left: -14%; }
  .chip-2 { right: -16%; }
  .chip-3 { left: -10%; }
}

@media (min-width: 1200px) {
  :root {
    --max: 1240px;
  }

  .phone-orbit {
    width: 440px;
  }
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.88;
  margin: 0 0 1.1rem;
  color: #fff;
  text-shadow: 0 0 48px rgba(228, 86, 63, 0.45);
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.8vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  max-width: 16ch;
}

.word-swap {
  display: inline-grid;
  vertical-align: bottom;
  color: var(--brand-soft);
}

.word-swap span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(0.35em);
  animation: word-cycle 8s ease-in-out infinite;
}

/* İlk kelime her zaman görünsün (animasyon gelmeden boş kalmasın) */
.word-swap span:first-child {
  opacity: 1;
  transform: none;
}

.word-swap span:nth-child(1) {
  animation-delay: 0s;
}
.word-swap span:nth-child(2) {
  animation-delay: 2s;
}
.word-swap span:nth-child(3) {
  animation-delay: 4s;
}
.word-swap span:nth-child(4) {
  animation-delay: 6s;
}

.hero-lead {
  margin: 0 0 1.75rem;
  color: rgba(250, 250, 248, 0.78);
  font-size: 1.08rem;
  max-width: 32ch;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero-scroll-hint span {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--brand), transparent);
  animation: scroll-line 1.6s ease-in-out infinite;
}

/* —— Phone visual —— */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  min-height: 300px;
}

.phone-orbit {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 10 / 16;
}

.orbit-ring {
  position: absolute;
  inset: -8%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.orbit-ring::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sun);
  top: 12%;
  left: 50%;
  box-shadow: 0 0 20px rgba(240, 180, 41, 0.7);
}

.phone {
  position: absolute;
  inset: 6% 12%;
  border-radius: 36px;
  background: linear-gradient(160deg, #2a2422, #121110);
  border: 2px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: rotateY(-12deg) rotateX(6deg);
  animation: phone-float 5.5s ease-in-out infinite;
  overflow: hidden;
  color: #fff;
}

.phone-notch {
  width: 38%;
  height: 18px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: #0a0909;
}

.phone-screen {
  padding: 1.1rem 1rem 1.25rem;
}

.phone-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.phone-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  margin-bottom: 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-card strong {
  font-size: 0.95rem;
}

.phone-card span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.phone-card-a {
  animation: card-in 0.8s ease both 0.4s;
}

.phone-card-b {
  background: rgba(228, 86, 63, 0.28);
  border-color: rgba(228, 86, 63, 0.35);
  animation: card-in 0.8s ease both 0.7s;
}

.phone-wave {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
  margin-top: 1.2rem;
  padding: 0 0.25rem;
}

.phone-wave i {
  flex: 1;
  display: block;
  border-radius: 999px;
  background: linear-gradient(to top, var(--brand), var(--sun));
  animation: wave 1.1s ease-in-out infinite;
}

.phone-wave i:nth-child(1) { height: 35%; animation-delay: 0s; }
.phone-wave i:nth-child(2) { height: 60%; animation-delay: 0.1s; }
.phone-wave i:nth-child(3) { height: 85%; animation-delay: 0.2s; }
.phone-wave i:nth-child(4) { height: 50%; animation-delay: 0.3s; }
.phone-wave i:nth-child(5) { height: 95%; animation-delay: 0.15s; }
.phone-wave i:nth-child(6) { height: 45%; animation-delay: 0.25s; }
.phone-wave i:nth-child(7) { height: 70%; animation-delay: 0.05s; }

.float-chip {
  position: absolute;
  z-index: 2;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  animation: chip-float 4.5s ease-in-out infinite;
  color: #fff;
}

.chip-1 {
  top: 8%;
  left: -6%;
  animation-delay: 0s;
}

.chip-2 {
  top: 42%;
  right: -10%;
  animation-delay: 0.8s;
}

.chip-3 {
  bottom: 12%;
  left: -4%;
  animation-delay: 1.4s;
}

/* —— Buttons —— */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-lg {
  padding: 1.05rem 1.45rem;
  font-size: 1rem;
}

.btn-ico {
  font-size: 1.05rem;
  line-height: 1;
}

.btn-brand {
  background: var(--brand);
  color: var(--on-brand);
  box-shadow: 0 12px 30px rgba(228, 86, 63, 0.35);
}

.btn-brand:hover {
  background: var(--brand-deep);
}

.btn-pulse {
  animation: pulse-glow 2.4s ease-in-out infinite;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

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

.btn-line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

/* —— Marquee —— */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--brand);
  color: #fff;
  padding: 0.95rem 0;
  border-block: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: -1px;
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  animation: marquee 28s linear infinite;
}

.marquee-track span:nth-child(even) {
  opacity: 0.45;
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

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

.vibe-list {
  display: grid;
  gap: 0;
}

.vibe-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.35s ease, background 0.35s ease;
}

.vibe-row:last-child {
  border-bottom: 1px solid var(--line);
}

.vibe-row:hover {
  padding-left: 0.75rem;
}

.vibe-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--brand);
  line-height: 1;
  padding-top: 0.2rem;
}

.vibe-row h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.03em;
}

.vibe-row p {
  margin: 0;
  color: var(--muted);
  max-width: 42ch;
}

/* —— Download —— */
.download-stage {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #1c1412 0%, #2a1a16 50%, #e4563f 140%);
  color: #fff;
  border: 0;
}

.download-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
  animation: blob-drift 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.download-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.download-panel h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.download-panel > div > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  max-width: 38ch;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  line-height: 0;
  border-radius: 10px;
  transition: transform 0.2s ease, filter 0.2s ease;
  text-decoration: none;
}

.store-badge img {
  width: 168px;
  height: auto;
  display: block;
}

@media (min-width: 960px) {
  .store-badge img {
    width: 180px;
  }
}

.store-badge:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.08);
}

.store-badge:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.download-panel a[href^="mailto"] {
  color: #ffb4a6;
  font-weight: 700;
}

.coming-soon {
  position: fixed;
  left: 50%;
  bottom: 1.75rem;
  z-index: 100;
  transform: translateX(-50%) translateY(12px);
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  background: rgba(20, 19, 18, 0.92);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.coming-soon.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Language panels — avoid FOUC before JS */
html[data-lang="en"] [data-lang-panel="tr"] {
  display: none !important;
}
html[data-lang="tr"] [data-lang-panel="en"],
html:not([data-lang]) [data-lang-panel="en"] {
  display: none !important;
}
html[data-lang="en"] [data-lang-panel="en"] {
  display: block !important;
}

.store-note {
  margin-top: 0.9rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.92rem;
}

@media (min-width: 860px) {
  .download-panel {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .nav-cta {
    display: inline-flex;
  }
}

/* —— Contact teaser —— */
.contact-teaser {
  padding-block: clamp(3rem, 7vw, 4.5rem);
}

.contact-teaser-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.5rem;
  border-top: 2px solid var(--ink);
}

.contact-teaser h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.04em;
}

.contact-teaser p {
  margin: 0;
  color: var(--muted);
}

/* —— Contact page —— */
.mail-hero {
  display: inline-block;
  margin: 0.5rem 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: var(--brand);
  transition: transform 0.2s ease;
}

.mail-hero:hover {
  transform: translateX(4px);
}

.contact-grid {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 32rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(228, 86, 63, 0.35);
  border-color: var(--brand);
}

.form-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* —— Footer —— */
.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-tag {
  color: var(--muted);
  margin: 0.85rem 0 0;
  max-width: 28ch;
}

.footer-copy {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
}

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

.site-footer li + li {
  margin-top: 0.45rem;
}

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

.site-footer a:hover {
  color: var(--brand);
}

/* —— Legal pages —— */
.legal-page {
  padding: 3rem 0 4.5rem;
}

.legal-page article {
  max-width: 46rem;
}

.legal-page h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.04em;
}

.legal-page .meta {
  color: var(--muted);
  margin-bottom: 2rem;
}

.legal-page h2 {
  margin: 2rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
}

.legal-page ul {
  padding-left: 1.2rem;
}

.legal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
}

.legal-strip a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

/* —— Mobile nav —— */
.menu-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-weight: 700;
  cursor: pointer;
  color: inherit;
}

@media (min-width: 860px) {
  .menu-toggle {
    display: none;
  }
}

@media (max-width: 859px) {
  .nav-links {
    display: none !important;
    position: absolute;
    right: 0;
    top: 4.1rem;
    flex-direction: column;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow);
    min-width: 180px;
    z-index: 50;
  }

  .header-home .nav-links {
    background: #1a1514;
    border-color: rgba(255, 255, 255, 0.12);
  }

  .header-home .nav-links a {
    color: rgba(250, 250, 248, 0.85);
  }

  .header-home.is-scrolled .nav-links {
    background: var(--surface);
    border-color: var(--line);
  }

  .header-home.is-scrolled .nav-links a {
    color: var(--muted);
  }

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

/* —— Reveal: content always visible (animation is progressive) —— */
[data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}

/* —— Keyframes —— */
@keyframes shimmer {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

@keyframes blob-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(40px, 30px) scale(1.12);
  }
}

@keyframes word-cycle {
  0%,
  5% {
    opacity: 0;
    transform: translateY(0.35em);
  }
  10%,
  22% {
    opacity: 1;
    transform: none;
  }
  28%,
  100% {
    opacity: 0;
    transform: translateY(-0.25em);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes phone-float {
  0%,
  100% {
    transform: rotateY(-12deg) rotateX(6deg) translateY(0);
  }
  50% {
    transform: rotateY(-8deg) rotateX(4deg) translateY(-12px);
  }
}

@keyframes chip-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.55);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scroll-line {
  0%,
  100% {
    opacity: 0.25;
    transform: scaleY(0.6);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 12px 30px rgba(228, 86, 63, 0.35);
  }
  50% {
    box-shadow: 0 12px 42px rgba(228, 86, 63, 0.65);
  }
}

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

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
