/* WidgetAim — widgetaim.com
   Renkler uygulamanın DesignTokens.swift / Theme.swift değerlerinden gelir.
   Ham ton → semantik rol → bileşen; bileşenler yalnız semantik değişkenleri kullanır. */

:root {
  /* Ham tonlar */
  --mist-50: #F6F8FB;
  --mist-100: #ECF0F5;
  --turquoise-200: #A8EAF0;
  --slate-900: #131A23;
  --slate-500: #65707C;
  --slate-400: #939FAD;
  --azur-50: #E6F0FD;
  --azur-200: #B9D7FB;
  --azur-300: #6FB6F7;
  --azur-500: #2479E8;
  --azur-600: #1C6AD6;
  --azur-700: #1650C4;
  --azur-950: #10223F;
  --pink-400: #E0679E;
  --peach-50: #FFEBDF;
  --peach-300: #FFC29A;
  --orange-400: #FB923C;
  --orange-600: #E8590C;
  --gold-300: #FFD166;
  --amber-400: #FBBF24;
  --mint-50: #E1F5EC;
  --mint-300: #86E3B8;
  --mint-700: #1E7A55;
  --teal-300: #5EEAD4;
  --sky-100: #DCE7FF;
  --blue-600: #2E63F5;

  /* Semantik roller */
  --bg: var(--mist-50);
  --bg-sunk: var(--mist-100);
  --surface: #FFFFFF;
  --text: var(--slate-900);
  --text-2: var(--slate-500);
  --text-3: var(--slate-400);
  --accent: var(--azur-600);
  --accent-strong: var(--azur-700);
  --accent-soft: var(--azur-50);
  --on-accent: #FFFFFF;
  --line: rgba(19, 26, 35, 0.08);
  --line-strong: rgba(19, 26, 35, 0.14);
  --shadow-sm: 0 1px 2px rgba(19, 26, 35, 0.06), 0 2px 8px rgba(19, 26, 35, 0.05);
  --shadow-md: 0 2px 6px rgba(19, 26, 35, 0.06), 0 12px 32px rgba(19, 26, 35, 0.10);
  --shadow-lg: 0 8px 24px rgba(19, 26, 35, 0.10), 0 40px 80px rgba(16, 34, 63, 0.18);

  /* Tipografi */
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  --font-rounded: ui-rounded, "SF Pro Rounded", -apple-system, system-ui, sans-serif;

  /* Hareket */
  --spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --radius-widget: 26px;
  --page: min(1180px, calc(100vw - 40px));
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.55 var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 8px; }

.wrap { width: var(--page); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(246, 248, 251, 0.78);
  backdrop-filter: saturate(1.6) blur(18px);
  -webkit-backdrop-filter: saturate(1.6) blur(18px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; letter-spacing: -0.02em; font-size: 19px; }
.brand-mark { width: 32px; height: 32px; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--text-2); font-size: 15px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 0; border-radius: 999px; padding: 12px 20px;
  font-weight: 600; font-size: 15px; text-decoration: none; white-space: nowrap;
  transition: transform .25s var(--spring), box-shadow .25s, background .2s;
}
.btn:active { transform: scale(0.96); }
.btn-dark { background: var(--text); color: var(--bg); box-shadow: var(--shadow-sm); }
.btn-dark:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: rgba(19, 26, 35, 0.06); }
.btn-ghost:hover { background: rgba(19, 26, 35, 0.1); }
.btn svg { width: 18px; height: 18px; }
.btn-store { padding: 10px 20px 10px 16px; }
.btn-store small { display: block; font-size: 11px; font-weight: 500; opacity: .7; line-height: 1.1; }
.btn-store b { display: block; font-size: 17px; line-height: 1.15; letter-spacing: -0.01em; }
.btn-store svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 140px 0 80px; overflow: clip; }
.aurora { position: absolute; inset: -20% -10% auto; height: 120%; z-index: -1; pointer-events: none; filter: blur(60px); opacity: .75; }
.aurora span { position: absolute; border-radius: 50%; animation: drift 22s ease-in-out infinite alternate; }
.aurora span:nth-child(1) { width: 46vw; height: 46vw; left: 48%; top: 4%; background: radial-gradient(circle, var(--azur-200), transparent 65%); }
.aurora span:nth-child(2) { width: 38vw; height: 38vw; left: 70%; top: 30%; background: radial-gradient(circle, var(--turquoise-200), transparent 65%); animation-duration: 28s; animation-delay: -6s; }
.aurora span:nth-child(3) { width: 30vw; height: 30vw; left: 38%; top: 40%; background: radial-gradient(circle, var(--mint-300), transparent 65%); animation-duration: 25s; animation-delay: -12s; opacity: .7; }
.aurora span:nth-child(4) { width: 26vw; height: 26vw; left: -6%; top: 0%; background: radial-gradient(circle, var(--gold-300), transparent 65%); animation-duration: 31s; opacity: .45; }
@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-4vw, 3vw) scale(1.08); }
  100% { transform: translate(3vw, -2vw) scale(0.96); }
}

.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.7); box-shadow: var(--shadow-sm);
  font-size: 14px; font-weight: 600; color: var(--text-2);
}
.eyebrow i { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; }
.eyebrow i svg { width: 12px; height: 12px; color: var(--on-accent); }
/* Uygulama künyesi: ikon + ad + tek satır (App Store listesi gibi) */
.app-lockup { display: inline-flex; align-items: center; gap: 14px; text-align: left; }
.app-lockup img { width: 64px; height: 64px; border-radius: 22.37%; flex: none; box-shadow: 0 1px 2px rgba(19, 26, 35, 0.08), 0 12px 28px -10px rgba(36, 121, 232, 0.5); }
.app-lockup b { display: block; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; color: var(--text); }
.app-lockup span { display: block; font-size: 15px; color: var(--text-2); }

h1, h2, h3 { font-family: var(--font-display); margin: 0; letter-spacing: -0.035em; line-height: 1.02; }
h1 { font-size: clamp(44px, 5.4vw, 78px); font-weight: 800; margin: 22px 0 22px; }
h1 .shift { display: block; position: relative; color: var(--accent); perspective: 600px; }
h1 .shift-word { display: inline-block; transition: transform .5s var(--spring), opacity .3s, filter .3s; }
h1 .shift-word.out { transform: translateY(-40%) rotateX(50deg); opacity: 0; filter: blur(6px); }
h1 .shift-word.in { transform: translateY(40%) rotateX(-50deg); opacity: 0; filter: blur(6px); transition: none; }
.lede { font-size: clamp(18px, 1.6vw, 21px); color: var(--text-2); max-width: 32em; margin: 0 0 32px; }
.lede b { color: var(--text); font-weight: 600; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.trust { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 28px; color: var(--text-2); font-size: 14px; font-weight: 500; }
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust svg { width: 16px; height: 16px; color: var(--mint-700); }

/* ---------- Phone ---------- */
.stage { position: relative; display: grid; place-items: center; perspective: 1600px; min-height: 700px; }
.phone {
  --tilt-x: 0deg; --tilt-y: 0deg;
  position: relative; width: 340px; height: 700px; border-radius: 58px; padding: 12px;
  background: linear-gradient(145deg, #262C36, #0E1115 60%, #222833);
  box-shadow: var(--shadow-lg), inset 0 0 0 1.5px rgba(255, 255, 255, 0.12), inset 0 0 0 5px #0E1115;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform .6s var(--ease-out);
}
.screen {
  position: relative; width: 100%; height: 100%; border-radius: 47px; overflow: hidden;
  background:
    radial-gradient(120% 70% at 20% 0%, #FFD9C2 0%, transparent 60%),
    radial-gradient(120% 70% at 100% 40%, #B9D7FB 0%, transparent 60%),
    radial-gradient(100% 60% at 0% 100%, #B8EBD3 0%, transparent 60%),
    linear-gradient(180deg, #F6EFE6, #E3ECF7);
  padding: 56px 18px 18px;
}
.island { position: absolute; top: 11px; left: 50%; translate: -50% 0; width: 104px; height: 31px; border-radius: 20px; background: #000; z-index: 3; }
.status { position: absolute; top: 15px; left: 30px; right: 26px; display: flex; justify-content: space-between; font: 600 15px/1 var(--font); color: #1a1a1a; z-index: 2; }
.status .icons { display: flex; gap: 6px; align-items: center; }
.status .icons i { display: block; background: #1a1a1a; border-radius: 2px; }
.home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.home-grid .w-medium { grid-column: span 2; }
.app-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 18px; padding: 0 6px; }
.app-row i { aspect-ratio: 1; border-radius: 14px; background: rgba(255, 255, 255, 0.55); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6); }
.dock {
  position: absolute; left: 12px; right: 12px; bottom: 12px; height: 84px; border-radius: 34px;
  background: rgba(255, 255, 255, 0.35); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 13px 18px;
}
.dock i { border-radius: 14px; background: rgba(255, 255, 255, 0.6); }

.float-chip {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 16px; background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md); font-size: 13px; font-weight: 600; white-space: nowrap;
  transform: translate3d(calc(var(--px, 0) * 1px), calc(var(--py, 0) * 1px), 60px);
  transition: transform .8s var(--ease-out);
}
.float-chip small { display: block; color: var(--text-2); font-weight: 500; font-size: 12px; }
.float-chip .dot { width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.float-chip .dot svg { width: 16px; height: 16px; }
.chip-a { top: 40px; left: -40px; }
.chip-b { bottom: 150px; right: -10px; }
.chip-c { bottom: 60px; left: 10px; }

/* Parmak dokunuşu göstergesi (otomatik demo) */
.finger {
  position: absolute; z-index: 20; width: 44px; height: 44px; margin: -22px 0 0 -22px; border-radius: 50%;
  background: rgba(19, 26, 35, 0.18); box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
  pointer-events: none; opacity: 0; transform: scale(1.4);
  transition: left .7s var(--ease-out), top .7s var(--ease-out), opacity .3s, transform .3s var(--spring);
}
.finger.show { opacity: 1; transform: scale(1); }
.finger.press { transform: scale(0.72); background: rgba(19, 26, 35, 0.3); }

/* ---------- Widget (ortak kart) ---------- */
.widget {
  --w-bg1: #FFFFFF; --w-bg2: #F3F3F7; --w-text: #17181C; --w-sec: #6B6D7A; --w-accent: #1C6AD6; --w-on: #FFFFFF;
  --w-num-font: var(--font-rounded); --w-num-weight: 700; --w-num-stretch: normal; --w-num-size: 30px;
  position: relative; border-radius: var(--radius-widget); overflow: hidden;
  background: linear-gradient(160deg, var(--w-bg1), var(--w-bg2));
  color: var(--w-text); padding: 14px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(16, 34, 63, 0.12);
  transition: background .5s, color .4s;
  font-family: var(--font);
}
.w-small { aspect-ratio: 1; }
.w-medium { aspect-ratio: 2.12; }
.w-head { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: -0.01em; }
.w-head svg { width: 14px; height: 14px; color: var(--w-accent); flex: none; }
.w-head .pill { margin-left: auto; font-size: 10px; font-weight: 700; padding: 3px 7px; border-radius: 999px; background: color-mix(in srgb, var(--w-accent) 16%, transparent); color: var(--w-accent); }
.w-num {
  white-space: nowrap;
  font-family: var(--w-num-font); font-weight: var(--w-num-weight); font-stretch: var(--w-num-stretch);
  font-size: var(--w-num-size); line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums;
  transition: font-size .35s var(--spring);
}
.w-num small { font-size: .45em; font-weight: 600; color: var(--w-sec); letter-spacing: 0; margin-left: 2px; }
.w-sub { font-size: 11px; color: var(--w-sec); font-weight: 600; margin-top: 3px; }
.w-bar { height: 6px; border-radius: 999px; background: color-mix(in srgb, var(--w-text) 10%, transparent); overflow: hidden; margin-top: 8px; }
.w-bar i { display: block; height: 100%; width: calc(var(--p, 0) * 100%); border-radius: inherit; background: var(--w-accent); transition: width .9s var(--spring); }
.w-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  border: 0; border-radius: 999px; height: 28px; padding: 0 11px;
  background: var(--w-accent); color: var(--w-on); font-size: 12px; font-weight: 700;
  transition: transform .2s var(--spring), filter .2s;
}
.w-btn:hover { filter: brightness(1.06); }
.w-btn:active, .w-btn.pressed { transform: scale(0.9); }
.w-btn svg { width: 12px; height: 12px; }

/* Küçük widget yerleşimi: başlık üstte, sahne ortada, rakam + buton altta */
.ws-body { position: absolute; inset: 36px 14px 14px; display: flex; flex-direction: column; justify-content: flex-end; gap: 5px; }
.ws-scene { position: absolute; right: 4px; top: 26px; width: 40%; height: 40%; }
[data-scene-host] > svg { width: 100%; height: 100%; overflow: visible; }
.w-small.center-scene .ws-scene { left: 0; right: 0; width: auto; top: 30px; height: 56%; }
.ws-foot { display: flex; align-items: center; justify-content: space-between; gap: 6px; position: relative; min-width: 0; }
.ws-foot .w-sub { margin-top: 0; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ws-foot .w-btn { height: 24px; padding: 0 8px; gap: 2px; font-size: 11px; flex: none; }
.ws-foot .w-btn svg { width: 10px; height: 10px; }

/* Orta: bilgi kartı */
.w-flash { display: flex; flex-direction: column; }
.flash { display: grid; grid-template-columns: 1fr auto; gap: 10px; flex: 1; min-height: 0; margin-top: 8px; }
.flash-card { position: relative; perspective: 800px; }
.flash-face {
  position: absolute; inset: 0; border-radius: 16px; padding: 10px 12px;
  display: flex; flex-direction: column; justify-content: center;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  transition: transform .7s var(--spring);
  background: color-mix(in srgb, var(--w-text) 5%, transparent);
}
.flash-face b { font-family: var(--font-display); font-size: 21px; letter-spacing: -0.02em; line-height: 1.1; }
.flash-face span { font-size: 11px; color: var(--w-sec); font-weight: 600; }
.flash-back { transform: rotateY(180deg); background: color-mix(in srgb, var(--w-accent) 14%, transparent); }
.flash-card.flipped .flash-front { transform: rotateY(-180deg); }
.flash-card.flipped .flash-back { transform: rotateY(0); }
.flash-side { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; }
.flash-count { font-family: var(--font-rounded); font-weight: 700; font-size: 22px; line-height: 1; letter-spacing: -0.02em; text-align: right; }
.flash-count small { display: block; font-size: 10px; line-height: 1.2; margin-top: 3px; color: var(--w-sec); text-align: right; }

/* Orta: liste */
.list { list-style: none; margin: 12px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px; }
.list li { line-height: 1.25; display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; transition: color .3s; min-width: 0; }
.list li .label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.list li .box {
  flex: none; width: 17px; height: 17px; border-radius: 6px;
  box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--w-text) 25%, transparent);
  display: grid; place-items: center; transition: background .25s, box-shadow .25s, transform .35s var(--spring);
}
.list li .box svg { width: 11px; height: 11px; color: var(--w-on); opacity: 0; transform: scale(.4); transition: opacity .2s, transform .35s var(--spring); }
.list li.done { color: var(--w-sec); }
.list li.done .label { text-decoration: line-through; text-decoration-color: color-mix(in srgb, var(--w-sec) 60%, transparent); }
.list li.done .box { background: var(--w-accent); box-shadow: none; }
.list li.done .box svg { opacity: 1; transform: scale(1); }
.list li.just .box { transform: scale(1.25); }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 120px 0; }
.kicker { font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
h2 { font-size: clamp(36px, 4.6vw, 62px); font-weight: 800; }
.section-lede { font-size: 19px; color: var(--text-2); max-width: 36em; margin: 20px 0 0; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-lede { margin-inline: auto; }

/* Scroll ile belirme */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Sentence → widget ---------- */
.compose { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.compose-panel {
  position: relative; border-radius: 36px; padding: 44px; min-height: 440px;
  background: linear-gradient(160deg, #FFFFFF, var(--bg-sunk));
  box-shadow: var(--shadow-md);
  display: grid; align-content: center; gap: 30px; overflow: hidden;
}
.prompt {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: 20px;
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--line-strong), var(--shadow-sm);
  font-size: 18px; font-weight: 500; min-height: 62px;
}
.prompt svg { width: 20px; height: 20px; color: var(--accent); flex: none; }
.prompt .typed { flex: 1; }
.caret { display: inline-block; width: 2px; height: 1.15em; background: var(--accent); vertical-align: -0.2em; margin-left: 2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.compose-out { position: relative; min-height: 210px; display: grid; grid-template-columns: minmax(0, 1fr); place-items: center; }
.compose-out .widget { width: min(420px, 100%); transition: opacity .4s, transform .6s var(--spring), filter .4s; }
.compose-out .widget.hidden { opacity: 0; transform: translateY(20px) scale(0.92); filter: blur(8px); }
.sparkles { position: absolute; inset: 0; pointer-events: none; }
.sparkles i { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: 0; }
.sparkles.go i { animation: spark .9s var(--ease-out) forwards; }
@keyframes spark {
  0% { opacity: 0; transform: translate(0, 0) scale(.4); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--sx), var(--sy)) scale(1); }
}
.pro-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 800; letter-spacing: .06em; padding: 4px 9px; border-radius: 8px; background: var(--text); color: var(--bg); vertical-align: middle; }
.steps-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 18px; }
.steps-list li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; }
.steps-list li b { display: block; font-size: 17px; }
.steps-list li span { color: var(--text-2); font-size: 16px; }
.steps-list .n { width: 40px; height: 40px; border-radius: 14px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); font-weight: 800; font-family: var(--font-rounded); }

/* ---------- Sentences (cümle seti demosu) ---------- */
.lang-panel { align-content: start; gap: 16px; min-height: 0; }
.lang-panel > * { min-width: 0; }
.lang-card { background: var(--surface); border-radius: 26px; padding: 22px 24px 22px; box-shadow: var(--shadow-sm); }
.lang-head { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-2); }
.lang-head svg { width: 16px; height: 16px; color: var(--accent); flex: none; }
.lang-head span { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lang-head b { font-size: 12px; font-weight: 800; color: var(--accent); font-variant-numeric: tabular-nums; }
.lang-sentence { margin: 16px 0 0; font-family: var(--font-display); font-size: clamp(26px, 2.6vw, 32px); line-height: 1.35; font-weight: 700; letter-spacing: -0.01em; }
.lang-unit { white-space: nowrap; }
.lang-word {
  font: inherit; color: inherit; letter-spacing: inherit; background: none; border: 0; padding: 0; margin: 0; cursor: pointer;
  border-radius: 8px; text-decoration: underline dotted rgba(19, 26, 35, .32); text-decoration-thickness: 2px; text-underline-offset: 7px;
  transition: background-color .2s, box-shadow .2s;
}
.lang-word:hover { background: var(--accent-soft); box-shadow: 0 0 0 4px var(--accent-soft); }
.lang-word:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.lang-word.added { color: var(--accent); text-decoration: underline solid var(--accent); text-decoration-thickness: 2px; }
.lang-word.spoken { background: var(--accent-soft); box-shadow: 0 0 0 4px var(--accent-soft); }
.lang-word.on, .lang-word.on:hover { background: var(--accent); color: var(--on-accent); box-shadow: 0 0 0 4px var(--accent); text-decoration-color: transparent; }
.lang-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.lang-listen, .lang-reveal { display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 16px; border-radius: 22px; font: inherit; font-size: 15px; font-weight: 600; cursor: pointer; transition: transform .3s var(--spring), background-color .2s; }
.lang-listen { border: 0; background: var(--accent); color: var(--on-accent); }
.lang-listen svg, .lang-reveal svg { width: 18px; height: 18px; }
.lang-reveal { background: transparent; color: var(--text-2); border: 1.5px dashed var(--line-strong); }
.lang-listen:active, .lang-reveal:active { transform: scale(.96); }
.lang-translation { flex-basis: 100%; margin: 0; font-size: 18px; color: var(--text-2); animation: langIn .45s var(--ease-out); }
.lang-sheet { background: var(--surface); border-radius: 22px; padding: 18px 20px 20px; box-shadow: var(--shadow-sm); min-height: 168px; display: grid; align-content: start; gap: 4px; }
.lang-sheet > * { animation: langIn .4s var(--ease-out); }
.lang-hint { margin: 0; align-self: center; color: var(--text-3); font-size: 16px; }
.lang-pos { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-2); }
.lang-lemma { font-family: var(--font-display); font-size: 28px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.15; }
.lang-gloss { font-size: 18px; font-weight: 500; }
.lang-in { font-size: 14px; color: var(--text-2); }
.lang-add { margin-top: 12px; height: 48px; border: 0; border-radius: 24px; background: var(--accent); color: var(--on-accent); font: inherit; font-size: 16px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: transform .3s var(--spring); }
.lang-add:active { transform: scale(.97); }
.lang-add svg { width: 16px; height: 16px; }
.lang-added { margin-top: 12px; height: 48px; border-radius: 24px; background: var(--mint-50); color: var(--mint-700); font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 8px; padding: 0 18px; }
.lang-added svg { width: 18px; height: 18px; }
.lang-added button { margin-left: auto; font: inherit; font-size: 15px; font-weight: 700; color: var(--mint-700); background: none; border: 0; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.lang-deck { display: flex; align-items: center; gap: 12px; padding: 0 6px; }
.lang-deck-ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); flex: none; }
.lang-deck-ico svg { width: 20px; height: 20px; }
.lang-deck b { display: block; font-size: 15px; }
.lang-deck small { display: block; font-size: 13px; color: var(--text-2); font-variant-numeric: tabular-nums; }
.lang-note { margin: 26px 0 0; color: var(--text-2); font-size: 15px; display: flex; align-items: flex-start; gap: 10px; }
.lang-note .pro-tag { flex: none; margin-top: 1px; }
@keyframes langIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- Scenes ---------- */
.scenes-band { background: linear-gradient(180deg, var(--bg), #EEF3F9 30%, #EEF3F9 70%, var(--bg)); }
.scene-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.scene-tile {
  --p: .35;
  position: relative; border: 0; text-align: left; padding: 18px 18px 16px; border-radius: 28px;
  background: var(--tile-bg, #fff); color: var(--tile-text, var(--text));
  box-shadow: var(--shadow-sm); aspect-ratio: 1 / 1.05;
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform .4s var(--spring), box-shadow .3s;
}
.scene-tile:hover { transform: translateY(-4px) rotate(-0.4deg); box-shadow: var(--shadow-md); }
.scene-tile:active { transform: scale(0.97); }
.scene-tile .art { flex: 1; position: relative; min-height: 0; margin-bottom: 10px; }
.scene-tile .art svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.scene-tile .meta { display: flex; justify-content: space-between; align-items: flex-end; gap: 8px; }
.scene-tile .meta b { font-size: 16px; letter-spacing: -0.01em; }
.scene-tile .meta span { display: block; font-size: 13px; opacity: .65; font-weight: 500; }
.scene-tile .plus {
  width: 34px; height: 34px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: var(--tile-accent, var(--accent)); color: var(--tile-on, #fff);
  transition: transform .3s var(--spring);
}
.scene-tile:hover .plus { transform: rotate(90deg); }
.scene-tile .plus svg { width: 16px; height: 16px; }
.scene-note { display: flex; gap: 12px; align-items: center; justify-content: center; margin-top: 36px; color: var(--text-2); font-size: 15px; font-weight: 500; }
.scene-note svg { width: 18px; height: 18px; color: var(--accent); }

/* Sahne SVG ayrıntıları — değişimde oynar, boşta durur */
.s-rise { transform: translateY(calc((1 - var(--p)) * var(--h) * 1px)); transition: transform 1s var(--spring); }
.s-moon-shadow { transform: translateX(calc(var(--p) * 98px)); transition: transform 1.1s var(--spring); }
/* Eşik öğeleri: --p, --at'yi geçince --on 0 → 1 olur (yaprak, kitap, taş) */
.s-leaf { --on: clamp(0, (var(--p) - var(--at)) * 1000, 1); transform-box: fill-box; transform-origin: var(--lo, 0% 100%); transform: scale(var(--on)); transition: transform .9s var(--spring); }
.s-drop-in { --on: clamp(0, (var(--p) - var(--at)) * 1000, 1); opacity: var(--on); transform: translateY(calc((1 - var(--on)) * -40px)); transition: opacity .2s, transform .8s var(--spring); }
.s-ring { stroke-dashoffset: calc(var(--c) * (1 - min(1, var(--p) * var(--m)))); transition: stroke-dashoffset 1.2s var(--spring); }
.s-trail { stroke-dasharray: 100; stroke-dashoffset: calc(100 - var(--p) * 100); transition: stroke-dashoffset 1.2s var(--spring); }
.s-coin { transform-box: fill-box; transform-origin: center; opacity: 0; }
.bump .s-coin { animation: coin-drop .9s cubic-bezier(.5, 0, .75, 0) forwards, coin-spin .9s linear; }
@keyframes coin-drop { 0% { opacity: 1; transform: translateY(-70px); } 85% { opacity: 1; transform: translateY(40px); } 100% { opacity: 0; transform: translateY(46px); } }
@keyframes coin-spin { 0%, 100% { scale: 1 1; } 25% { scale: .2 1; } 50% { scale: 1 1; } 75% { scale: .2 1; } }
.s-drop { opacity: 0; }
.bump .s-drop { animation: drop-fall .6s cubic-bezier(.5, 0, .75, 0) forwards; }
@keyframes drop-fall { 0% { opacity: 1; transform: translateY(-50px); } 90% { opacity: 1; } 100% { opacity: 0; transform: translateY(30px); } }
.bump .s-wave { animation: wave 1.2s var(--ease-out); }
@keyframes wave { 0% { transform: translateX(0); } 30% { transform: translateX(-8px) } 60% { transform: translateX(5px) } 100% { transform: translateX(0) } }
.s-star { transform-box: fill-box; transform-origin: center; }
.bump .s-star { animation: twinkle 1s var(--ease-out); animation-delay: var(--sd, 0s); }
@keyframes twinkle { 0%, 100% { transform: scale(1); opacity: .9; } 40% { transform: scale(1.9); opacity: 1; } }
.s-stem { transform-box: fill-box; transform-origin: 50% 100%; transform: scaleY(calc(.25 + var(--p) * .75)); transition: transform 1s var(--spring); }
.s-flame { transform-box: fill-box; transform-origin: 50% 100%; transform: scale(calc(.55 + var(--p) * .55)); transition: transform 1s var(--spring); }
.bump .s-flame-inner { animation: flick .9s var(--ease-out); transform-box: fill-box; transform-origin: 50% 100%; }
@keyframes flick { 0%, 100% { transform: scale(1) skewX(0); } 30% { transform: scale(1.12, 1.2) skewX(-6deg); } 60% { transform: scale(.96, .9) skewX(4deg); } }
.s-sand-top { transform-box: fill-box; transform-origin: 50% 100%; transform: scaleY(calc(1 - var(--p))); transition: transform 1.2s var(--ease-out); }
.s-sand-bot { transform-box: fill-box; transform-origin: 50% 100%; transform: scaleY(var(--p)); transition: transform 1.2s var(--ease-out); }
.s-stream { opacity: 0; }
.bump .s-stream { animation: stream 1.2s linear; }
@keyframes stream { 0%, 90% { opacity: 1; } 100% { opacity: 0; } }
.s-page { transform-box: fill-box; transform-origin: 50% 0%; }
.bump .s-page { animation: tear 1s var(--ease-out) forwards; }
@keyframes tear { 0% { transform: none; opacity: 1; } 30% { transform: rotate(-6deg) translateY(4px); } 100% { transform: rotate(-24deg) translate(-30px, 120px); opacity: 0; } }
/* ---------- Studio ---------- */
.studio { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
.studio > *, .hero-grid > *, .compose > * { min-width: 0; }
#studioWidget { width: 100%; display: grid; place-items: center; }
.studio-preview {
  position: sticky; top: 100px; border-radius: 40px; min-height: 520px; padding: 48px 32px;
  display: grid; place-items: center; gap: 26px;
  background:
    radial-gradient(80% 60% at 30% 10%, rgba(255, 217, 194, .9), transparent 70%),
    radial-gradient(80% 60% at 90% 90%, rgba(185, 215, 251, .9), transparent 70%),
    linear-gradient(160deg, #F4EEE6, #E6EEF8);
  box-shadow: inset 0 0 0 1px var(--line);
}
.studio-preview .widget { width: min(420px, 100%); }
.studio-preview .widget.w-small { width: 200px; }
.size-toggle { display: inline-flex; padding: 4px; border-radius: 999px; background: rgba(255, 255, 255, .7); box-shadow: var(--shadow-sm); }
.size-toggle button { border: 0; background: none; padding: 8px 18px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--text-2); transition: background .25s, color .25s; }
.size-toggle button[aria-pressed="true"] { background: var(--text); color: var(--bg); }

.controls { display: grid; gap: 30px; }
.control h3 { font-size: 15px; letter-spacing: 0; font-family: var(--font); font-weight: 700; margin-bottom: 12px; display: flex; justify-content: space-between; }
.control h3 span { color: var(--text-2); font-weight: 500; }
.swatches { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.swatch {
  position: relative; border: 0; aspect-ratio: 1; border-radius: 14px; padding: 0;
  background: linear-gradient(145deg, var(--s1), var(--s2));
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06);
  transition: transform .3s var(--spring), box-shadow .2s;
}
.swatch::after { content: ""; position: absolute; right: 7px; bottom: 7px; width: 9px; height: 9px; border-radius: 50%; background: var(--s3); }
.swatch:hover { transform: scale(1.08); }
.swatch[aria-pressed="true"] { box-shadow: 0 0 0 2.5px var(--bg), 0 0 0 4.5px var(--text); }
.segmented { display: grid; grid-template-columns: repeat(auto-fit, minmax(76px, 1fr)); gap: 8px; }
.segmented button {
  border: 0; border-radius: 16px; padding: 12px 8px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line-strong);
  font-size: 13px; font-weight: 600; color: var(--text-2); display: grid; justify-items: center; gap: 6px;
  transition: box-shadow .2s, color .2s, transform .25s var(--spring);
}
.segmented button:active { transform: scale(.96); }
.segmented button[aria-pressed="true"] { box-shadow: inset 0 0 0 2px var(--text); color: var(--text); }
.segmented button .glyph { font-size: 22px; line-height: 1; color: var(--text); }
.segmented svg { width: 34px; height: 22px; }

/* Stüdyo önizleme yerleşimleri */
.sw-split { display: grid; grid-template-columns: minmax(0, 1fr) 40%; height: calc(100% - 20px); gap: 8px; margin-top: 4px; }
.sw-split .col { min-width: 0; display: flex; flex-direction: column; justify-content: flex-end; gap: 2px; }
.sw-split .art svg, .sw-center .art svg { width: 100%; height: 100%; overflow: visible; }
.sw-center { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; height: calc(100% - 20px); }
.sw-center .art { height: 100%; aspect-ratio: 1; }
.sw-stats { display: grid; grid-template-columns: 1.2fr 1fr; gap: 12px; height: calc(100% - 20px); align-items: end; }
.sw-stats dl { margin: 0; display: grid; gap: 6px; }
.sw-stats dl div { display: flex; justify-content: space-between; font-size: 11px; padding: 5px 8px; border-radius: 9px; background: color-mix(in srgb, var(--w-text) 6%, transparent); }
.sw-stats dt { color: var(--w-sec); font-weight: 600; }
.sw-stats dd { margin: 0; font-weight: 700; font-family: var(--w-num-font); }
.sw-ring { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; height: calc(100% - 20px); }
.sw-ring .ring { width: 96px; height: 96px; position: relative; display: grid; place-items: center; }
.sw-ring .ring svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.sw-ring .days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-top: 10px; }
.sw-ring .days i { aspect-ratio: 1; border-radius: 6px; background: color-mix(in srgb, var(--w-text) 10%, transparent); }
.sw-ring .days i.on { background: var(--w-accent); }
.sw-ring .days span { font-size: 9px; font-weight: 700; color: var(--w-sec); text-align: center; }
.w-small .sw-split { grid-template-columns: 1fr; position: relative; }
.w-small .sw-split .art { position: absolute; right: -4px; top: -4px; width: 60%; height: 60%; }
.w-small .sw-center { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 4px; }
.w-small .sw-center .art { height: 82px; }
.w-small .sw-center .w-btn { display: none; }
.w-small .sw-stats { grid-template-columns: 1fr; }
.w-small .sw-stats dl div:nth-child(n+3) { display: none; }
.w-small .sw-ring { grid-template-columns: 1fr; justify-items: center; }
.w-small .sw-ring .ring { width: 104px; height: 104px; }
.w-small .sw-ring .side { display: none; }

/* ---------- Kinds ---------- */
.kinds { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.new-tag { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 3px 7px; border-radius: 7px; background: var(--accent-soft); color: var(--accent); vertical-align: 3px; margin-left: 4px; }
.kind {
  border-radius: 28px; padding: 28px; background: var(--surface); box-shadow: var(--shadow-sm);
  display: grid; gap: 10px; align-content: start; transition: transform .4s var(--spring), box-shadow .3s;
}
.kind:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.kind .ico { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: var(--k-bg); color: var(--k-fg); margin-bottom: 6px; }
.kind .ico svg { width: 24px; height: 24px; }
.kind h3 { font-size: 22px; letter-spacing: -0.02em; }
.kind p { margin: 0; color: var(--text-2); font-size: 16px; }
.kind .eg { font-size: 14px; color: var(--text-3); font-weight: 500; font-style: italic; }

/* ---------- Everywhere ---------- */
.places { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 8px; }
.place { border-radius: 24px; padding: 22px; background: rgba(255, 255, 255, .7); box-shadow: inset 0 0 0 1px var(--line); }
.place svg { width: 28px; height: 28px; color: var(--accent); margin-bottom: 14px; }
.place b { display: block; font-size: 17px; margin-bottom: 4px; }
.place span { color: var(--text-2); font-size: 15px; }

/* ---------- Privacy band ---------- */
.privacy-band {
  margin: 0 20px; border-radius: 48px; padding: 110px 0; color: #F2F7FF; overflow: hidden;
  background:
    radial-gradient(60% 80% at 10% 0%, rgba(36, 121, 232, .55), transparent 70%),
    radial-gradient(50% 70% at 100% 100%, rgba(94, 234, 212, .25), transparent 70%),
    var(--azur-950);
}
.privacy-band h2 { color: #fff; }
.privacy-band .kicker { color: var(--teal-300); }
.privacy-band .section-lede { color: rgba(242, 247, 255, .72); }
.priv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.priv { border-radius: 26px; padding: 26px; background: rgba(255, 255, 255, .06); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1); }
.priv svg { width: 26px; height: 26px; color: var(--teal-300); margin-bottom: 14px; }
.priv b { display: block; font-size: 18px; margin-bottom: 6px; color: #fff; }
.priv span { color: rgba(242, 247, 255, .7); font-size: 15px; }
.priv-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 36px; color: #fff; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, .3); padding-bottom: 2px; }
.priv-link:hover { border-color: #fff; }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 920px; margin-inline: auto; }
.plan { border-radius: 36px; padding: 38px; background: var(--surface); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.plan.pro { background: linear-gradient(165deg, #16243A, #131A23); color: #F2F7FF; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.plan.pro::before { content: ""; position: absolute; width: 380px; height: 380px; right: -140px; top: -160px; background: radial-gradient(circle, rgba(111, 182, 247, .55), transparent 65%); pointer-events: none; }
.plan h3 { font-size: 26px; letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px; }
.plan .price { font-family: var(--font-display); font-size: 52px; font-weight: 800; letter-spacing: -0.04em; margin: 18px 0 2px; line-height: 1; font-variant-numeric: tabular-nums; }
.plan .price small { font-size: 17px; font-weight: 600; letter-spacing: 0; opacity: .6; }
.plan .price-note { font-size: 14px; opacity: .6; min-height: 1.5em; }
.plan ul { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 13px; }
.plan li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; font-size: 16px; }
.plan li svg { width: 20px; height: 20px; margin-top: 2px; color: var(--mint-700); }
.plan.pro li svg { color: var(--teal-300); }
.plan li.head { grid-template-columns: 1fr; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; opacity: .55; margin-top: 6px; }
.billing { display: inline-flex; gap: 4px; padding: 4px; border-radius: 999px; background: rgba(255, 255, 255, .08); margin-top: 20px; position: relative; z-index: 1; align-self: flex-start; }
.billing button { border: 0; background: none; color: rgba(242, 247, 255, .7); padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; transition: background .2s, color .2s; }
.billing button[aria-pressed="true"] { background: #fff; color: var(--slate-900); }
.billing .save { font-size: 10px; font-weight: 800; color: var(--teal-300); margin-left: 4px; }
.billing button[aria-pressed="true"] .save { color: var(--mint-700); }
.fine { text-align: center; color: var(--text-3); font-size: 14px; margin-top: 26px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line-strong); }
.faq summary { list-style: none; cursor: pointer; padding: 24px 0; font-size: 19px; font-weight: 600; display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--bg-sunk); display: grid; place-items: center; transition: transform .35s var(--spring), background .2s; }
.faq summary i svg { width: 14px; height: 14px; }
.faq details[open] summary i { transform: rotate(45deg); background: var(--accent-soft); }
.faq details p { margin: 0 0 24px; color: var(--text-2); max-width: 44em; }

/* ---------- Final CTA / footer ---------- */
.final { text-align: center; padding: 120px 0 110px; }
.final-card {
  position: relative; border-radius: 48px; padding: 64px 24px 76px; color: #fff; overflow: hidden;
  background:
    radial-gradient(55% 70% at 100% 0%, rgba(62, 216, 228, .6), transparent 65%),
    radial-gradient(50% 60% at 0% 100%, rgba(16, 34, 63, .45), transparent 70%),
    linear-gradient(160deg, var(--azur-500), var(--azur-700));
  box-shadow: 0 40px 90px -40px rgba(22, 80, 196, .7);
}
.final h2 { font-size: clamp(42px, 6vw, 80px); color: #fff; }
.final-sub { margin: 18px 0 0; font-size: 17px; color: rgba(255, 255, 255, .82); }
.final .cta-row { justify-content: center; margin-top: 32px; }
.btn-light { background: #fff; color: var(--azur-700); box-shadow: 0 10px 28px -10px rgba(8, 24, 70, .55); }
.btn-light:hover { transform: translateY(-1px); }
.orbit { position: relative; height: 150px; margin-bottom: 44px; }
.orbit-icon { position: absolute; left: 50%; top: 50%; z-index: 2; width: 112px; height: 112px; transform: translate(-50%, -50%); border-radius: 22.37%; box-shadow: 0 20px 44px -14px rgba(8, 24, 70, .6); }
.orbit .widget { position: absolute; width: 120px; left: 50%; top: 50%; transform: translate(-50%, -50%) translate(var(--ox), var(--oy)) rotate(var(--or)); }

footer { border-top: 1px solid var(--line); padding: 40px 0 56px; color: var(--text-2); font-size: 14px; }
.foot { display: flex; flex-wrap: wrap; gap: 20px 40px; align-items: center; justify-content: space-between; }
.foot nav { display: flex; flex-wrap: wrap; gap: 22px; }
.foot a { text-decoration: none; }
.foot a:hover { color: var(--text); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; align-items: start; }
.foot-brand p { margin: 14px 0 0; max-width: 24em; line-height: 1.5; }
.foot-col { display: grid; gap: 10px; align-content: start; }
.foot-col b { color: var(--text); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.foot-col a { text-decoration: none; }
.foot-col a:hover { color: var(--text); }
.foot-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid, .compose, .studio { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero-copy { text-align: center; }
  .hero-copy .lede { margin-inline: auto; }
  .cta-row, .trust { justify-content: center; }
  .scene-grid { grid-template-columns: repeat(3, 1fr); }
  .studio-preview { position: relative; top: 0; min-height: 380px; }
  .places { grid-template-columns: 1fr 1fr; }
  .kinds, .priv-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-inner .btn { margin-left: auto; }
  .section { padding: 84px 0; }
  .stage { min-height: 620px; transform: scale(.88); margin: -30px 0; }
  .float-chip { display: none; }
  .scene-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .scene-tile { padding: 14px; border-radius: 22px; aspect-ratio: 1 / 1.2; }
  .scene-tile .meta b { font-size: 15px; }
  .scene-tile .meta span { font-size: 12px; }
  .scene-tile .plus { width: 30px; height: 30px; border-radius: 10px; }
  .kinds, .priv-grid, .plans, .places { grid-template-columns: 1fr; }
  .compose-panel { padding: 24px; min-height: 380px; border-radius: 28px; }
  .compose-out .widget.w-medium { aspect-ratio: auto; min-height: 150px; }
  .prompt { font-size: 16px; }
  .swatches { grid-template-columns: repeat(7, 1fr); gap: 7px; }
  .privacy-band { margin: 0 10px; border-radius: 32px; padding: 80px 0; }
  .plan { padding: 28px; }
  .final { padding: 84px 0 72px; }
  .final-card { border-radius: 32px; padding: 44px 18px 56px; }
  .orbit { transform: scale(.72); margin: -10px 0 24px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .aurora span { animation: none; }
}
