/* ============================================================
   home.css — GetAscend tanıtım sitesi.
   style.css burada yüklenmez; legal sayfalar ona bağlı kalır.

   Renk, tipografi ve kart dili uygulamadan alınmıştır. Telefon
   ekranları gerçek uygulama ekranlarının yeniden inşasıdır:
   402x874pt (iPhone 16 Pro) üzerinde birebir ölçülerle yazılır,
   sonra tek bir transform ile ölçeklenir.
   ============================================================ */

:root {
  --bg:        #08080C;
  --bg-2:      #0B0B11;
  --surface:   #101119;
  --surface-2: #16171F;
  --line:      rgba(255, 255, 255, 0.075);
  --line-2:    rgba(255, 255, 255, 0.16);

  --amber:     #F5A623;
  --amber-2:   #FFC163;
  --violet:    #7B5CFF;
  --cyan:      #5FE0D0;
  --green:     #3ECF8E;
  --blue:      #5B8DEF;
  --red:       #FF6B6B;

  --text:      #F4F3F1;
  --text-2:    #A8A9B2;
  --text-3:    #7C7D87;

  --display: 'Archivo', system-ui, sans-serif;
  --serif:   'Newsreader', Georgia, serif;
  --ui:      'Instrument Sans', system-ui, -apple-system, sans-serif;

  --gutter: clamp(20px, 5vw, 72px);
  --max: 1280px;
  --r: 18px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p, ul, figure, blockquote { margin: 0; }
ul { list-style: none; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--amber); color: #16120a; }

/* ---------- tipografi ---------- */

h1, h2 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

h1 { font-size: clamp(38px, 5.4vw, 76px); }
h2 { font-size: clamp(28px, 3.4vw, 46px); }
h1 em, h2 em { font-style: normal; color: var(--amber); }

.eyebrow {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.section { max-width: var(--max); margin: 0 auto; padding: clamp(72px, 9vw, 128px) var(--gutter); }
.sec-head { max-width: 800px; margin-bottom: clamp(32px, 4vw, 54px); }
.sec-head--center { margin-inline: auto; text-align: center; }

.sec-lede {
  font-size: clamp(15.5px, 1.25vw, 17.5px);
  color: var(--text-2);
  margin-top: 18px;
  max-width: 66ch;
}

.sec-head--center .sec-lede { margin-inline: auto; }

/* ---------- butonlar ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 0;
  border-radius: 100px;
  background: var(--amber);
  color: #17120A;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .2s var(--ease), transform .14s var(--ease);
}

.btn--sm { padding: 10px 20px; font-size: 13.5px; }
.btn--ghost { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1px var(--line-2); }
.btn--full { width: 100%; }

@media (hover: hover) and (pointer: fine) {
  .btn:hover { background: var(--amber-2); }
  .btn--ghost:hover { background: rgba(255,255,255,.05); box-shadow: inset 0 0 0 1px var(--text-3); }
}

.btn:active { transform: scale(.98); }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 26px;
  padding: 12px var(--gutter);
  background: rgba(8,8,12,.76);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}

.nav.is-stuck { border-bottom-color: var(--line); }

.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text b { font-family: var(--display); font-size: 17px; font-weight: 800; letter-spacing: -0.02em; }
.brand-text i { font-style: normal; font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }

.nav-links { display: flex; gap: 24px; }
.nav-links a { font-size: 14px; color: var(--text-2); transition: color .18s var(--ease); }

@media (hover: hover) and (pointer: fine) { .nav-links a:hover { color: var(--text); } }

/* ============================================================
   iPHONE 16 PRO
   Ekran 402x874pt olarak yazılır, --pw ile ölçeklenir.
   ============================================================ */

/* --pw is the SCREEN width, not the outer body. The frame grows by its
   own bezel on top of it — scaling 402pt to the outer width instead
   made the screen wider than the opening and the UI spilled out. */
/* --pwn is UNITLESS on purpose. scale() needs a bare number, and
   calc(348px / 402) yields a length — the transform is then invalid and
   silently dropped, leaving the screen at its full 402px and spilling
   out of the frame. Every length below is derived from the number. */
.iphone {
  --pwn: 330;
  --pw: calc(var(--pwn) * 1px);
  --pad: calc(var(--pwn) * 0.03px);
  --s: calc(var(--pwn) / 402);
  position: relative;
  width: calc(var(--pw) + var(--pad) * 2);
  padding: var(--pad);
  border-radius: calc(var(--pwn) * 0.175px);
  background: linear-gradient(150deg, #55565F 0%, #26272E 18%, #17181D 50%, #33343B 82%, #4A4B54 100%);
  box-shadow: 0 50px 110px rgba(0,0,0,.62), 0 0 0 1px rgba(255,255,255,.06);
}

.iphone-viewport {
  position: relative;
  width: var(--pw);
  height: calc(var(--pwn) * 874 / 402 * 1px);
  overflow: hidden;
  border-radius: calc(var(--pwn) * 0.137px);
  background: #000;
}

.iphone-screen {
  position: absolute;
  top: 0; left: 0;
  width: 402px;
  height: 874px;
  transform: scale(var(--s));
  transform-origin: top left;
  background: var(--bg-2);
  overflow: hidden;
}

/* yan tuşlar */
.iphone-btn { position: absolute; background: linear-gradient(180deg, #4A4B54, #2A2B32); border-radius: 2px; }
.iphone-btn--vol1 { left: -2px; top: 21%; width: 3px; height: 6%; }
.iphone-btn--vol2 { left: -2px; top: 30%; width: 3px; height: 6%; }
.iphone-btn--pwr  { right: -2px; top: 26%; width: 3px; height: 9%; }

.island {
  position: absolute;
  top: 13px; left: 50%;
  transform: translateX(-50%);
  width: 124px; height: 36px;
  border-radius: 100px;
  background: #000;
  z-index: 6;
}

.status {
  position: absolute;
  top: 20px; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 30px;
  font-size: 15px;
  font-weight: 600;
  z-index: 5;
}

.status-r { display: flex; align-items: center; gap: 5px; }
.status i { display: block; background: var(--text); border-radius: 1px; }
.sig { width: 15px; height: 10px; clip-path: polygon(0 70%,20% 70%,20% 100%,0 100%,25% 45%,45% 45%,45% 100%,25% 100%,50% 20%,70% 20%,70% 100%,50% 100%,75% 0,95% 0,95% 100%,75% 100%); }
.wifi { width: 14px; height: 10px; clip-path: polygon(50% 100%,0 35%,15% 22%,50% 55%,85% 22%,100% 35%); }
.batt { width: 22px; height: 11px; border-radius: 3px; background: transparent; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5); position: relative; }
.batt::after { content:""; position: absolute; inset: 2px; width: 60%; border-radius: 1px; background: var(--text); }

/* uygulama içerik alanı: status altı → tab bar üstü */
.app {
  position: absolute;
  top: 58px; left: 0; right: 0; bottom: 82px;
  padding: 0 14px;
  overflow: hidden;
}

/* Sabit yükseklikli pencere: kırpmayı bu yapar, böylece içerik durum
   çubuğunun ve tab bar'ın arkasına girer. */
.app--window { overflow: hidden; }
.app-inner { will-change: transform; padding-bottom: 24px; }

/* tab bar */
.tabs {
  position: absolute;
  left: 8px; right: 8px; bottom: 8px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-bottom: 10px;
  border-radius: 26px;
  background: rgba(20,20,26,.94);
  backdrop-filter: blur(8px);
  z-index: 5;
}

.tabs span { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 10px; color: var(--text-3); }
.tabs .on { color: var(--amber); }
.tb { width: 18px; height: 18px; background: currentColor; }
.tb--home { clip-path: polygon(50% 0,100% 42%,88% 42%,88% 100%,60% 100%,60% 66%,40% 66%,40% 100%,12% 100%,12% 42%,0 42%); }
.tb--an   { clip-path: polygon(0 60%,22% 60%,22% 100%,0 100%,39% 22%,61% 22%,61% 100%,39% 100%,78% 45%,100% 45%,100% 100%,78% 100%); }
.tb--eg   { clip-path: polygon(0 38%,28% 38%,28% 45%,72% 45%,72% 38%,100% 38%,100% 62%,72% 62%,72% 55%,28% 55%,28% 62%,0 62%); }
.tb--il   { clip-path: polygon(0 82%,32% 44%,54% 62%,100% 8%,100% 32%,58% 82%,34% 64%,10% 96%); }
.tb--pr   { clip-path: circle(26% at 50% 26%); }

/* ---------- ANA SAYFA ---------- */

.ah { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ah-av { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--amber); flex-shrink: 0; }
.ah-t { display: flex; flex-direction: column; gap: 3px; margin-right: auto; }
.ah-t b { font-size: 17px; font-weight: 600; }

.tg { align-self: flex-start; padding: 1px 8px; border-radius: 100px; border: 1px solid currentColor; font-size: 9px; font-weight: 700; letter-spacing: .06em; }
.tg--free { color: var(--amber); }

.ah-cr {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 8px 8px 13px;
  border: 1px solid rgba(245,166,35,.4);
  border-radius: 100px;
  font-size: 8.5px; letter-spacing: .08em; color: var(--text-2);
}
.ah-cr b { font-size: 15px; color: var(--text); }
.ah-cr i { display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: rgba(245,166,35,.16); color: var(--amber); font-style: normal; font-size: 13px; }

.card { border: 1px solid var(--line); border-radius: 18px; background: var(--surface); padding: 15px; }

/* Sol metin · orta halka · sağ aksiyon — uygulamadaki üç parçalı düzen.
   Buton mutlak konumdayken halkanın üstüne biniyordu. */
.card--score { display: flex; align-items: center; gap: 6px; }
.sc-l { flex: 1; min-width: 0; }
.sc-k { font-size: 9px; letter-spacing: .12em; color: var(--text-3); margin-bottom: 5px; }
.sc-n { font-family: var(--display); font-size: 44px; font-weight: 800; line-height: 1; color: var(--amber); letter-spacing: -0.03em; }
.sc-n small { font-size: 13px; color: var(--text-3); font-weight: 500; margin-left: 3px; }
.sc-d { display: inline-block; margin-top: 8px; padding: 4px 9px; border-radius: 100px; background: rgba(62,207,142,.14); color: var(--green); font-size: 10px; font-weight: 600; }
.sc-go { flex-shrink: 0; padding: 9px 11px; border: 1px solid var(--amber); border-radius: 100px; color: var(--amber); font-size: 10.5px; font-weight: 600; line-height: 1.25; text-align: center; }

.ring { position: relative; width: 104px; height: 104px; flex-shrink: 0; }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-track { fill: none; stroke: rgba(245,166,35,.1); stroke-width: 4; }
.ring-fill {
  fill: none; stroke: var(--amber); stroke-width: 4; stroke-linecap: round;
  stroke-dasharray: 327; stroke-dashoffset: 327;
  transition: stroke-dashoffset 1.7s var(--ease);
  filter: drop-shadow(0 0 4px rgba(245,166,35,.5));
}
.ring-mesh { position: absolute; inset: 0; width: 100%; height: 100%; }

.sec-t { display: flex; align-items: center; justify-content: space-between; font-size: 14px; font-weight: 600; margin: 16px 0 9px; }
.sec-t--in { margin: 0 0 10px; }
.dots { display: flex; gap: 4px; }
.dots i { width: 13px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.16); }
.dots i.on { background: var(--amber); }
.pill-ok { font-style: normal; padding: 3px 10px; border-radius: 100px; border: 1px solid var(--green); color: var(--green); font-size: 10px; font-weight: 600; }

.minis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.mini { border: 1px solid rgba(245,166,35,.22); border-radius: 13px; background: var(--surface); padding: 9px 7px; }
.mini span { display: block; font-size: 9.5px; color: var(--text-2); }
.mini b { font-family: var(--display); font-size: 21px; font-weight: 700; letter-spacing: -0.02em; }
.mini u { display: block; margin-top: 2px; font-size: 8px; color: var(--amber); text-decoration: none; }

.card--tasks { margin-top: 14px; }
.tasks { display: flex; flex-direction: column; gap: 7px; }
.tasks li { display: flex; align-items: center; gap: 9px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 12px; font-size: 11.5px; color: var(--text-2); }
.tasks li b { margin-left: auto; color: var(--green); font-size: 13px; }
.ti { width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0; }
.ti--b { background: rgba(91,141,239,.18); }
.ti--p { background: rgba(123,92,255,.18); }
.tasks .ok { color: var(--text-3); }

.card--coach { position: relative; overflow: hidden; margin-top: 12px; background: linear-gradient(120deg, rgba(123,92,255,.3), rgba(16,17,25,1) 70%); border-color: rgba(123,92,255,.34); }
.co-k { font-size: 10px; color: #C3B4FF; margin-bottom: 5px; }
.co-t { font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; }
.co-b { font-size: 10px; line-height: 1.5; color: var(--text-2); max-width: 74%; margin-bottom: 10px; }
.co-go { display: inline-block; padding: 7px 12px; border: 1px solid rgba(195,180,255,.5); border-radius: 100px; color: #C3B4FF; font-size: 10px; font-weight: 600; }
.co-orb { position: absolute; right: -18px; bottom: -14px; width: 118px; height: 118px; border-radius: 50%; opacity: .85; }

/* ---------- ANALİZLER ekranı ---------- */

.an-k { font-size: 10px; letter-spacing: .14em; color: var(--text-3); margin-bottom: 2px; }
.an-top { display: flex; align-items: center; justify-content: space-between; }
.an-h { font-family: var(--serif); font-size: 32px; font-weight: 500; }
.an-ai { padding: 8px 13px; border: 1px solid rgba(245,166,35,.4); border-radius: 100px; font-size: 11px; color: var(--amber); }
.an-s { font-size: 11.5px; color: var(--text-2); margin: 6px 0 14px; }

.an-hero { position: relative; border-radius: 16px; overflow: hidden; height: 190px; }
.an-hero img { width: 100%; height: 100%; object-fit: cover; }
.an-hero-t { position: absolute; inset: auto 0 0 0; padding: 14px; background: linear-gradient(to top, rgba(8,8,12,.94), transparent); }
.an-hero-k { font-size: 9px; letter-spacing: .12em; color: var(--amber); margin-bottom: 4px; }
.an-hero-h { font-family: var(--serif); font-size: 24px; }
.an-hero-b { font-size: 11px; color: var(--text-2); margin-bottom: 10px; }
.an-hero-go { display: inline-block; padding: 8px 16px; border-radius: 100px; background: var(--amber); color: #17120A; font-size: 11.5px; font-weight: 700; }

.an-secline { display: flex; align-items: baseline; justify-content: space-between; margin: 18px 0 2px; }
.an-secline b { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.an-secline em { font-style: normal; color: var(--amber); font-size: 15px; }
.an-secsub { font-size: 10.5px; color: var(--text-3); margin-bottom: 12px; }

.mods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mc { position: relative; height: 168px; border-radius: 15px; overflow: hidden; border: 1px solid var(--line); background: var(--surface-2); }
.mc::before { content:""; position: absolute; inset: 0; background: var(--mc, radial-gradient(circle at 70% 20%, rgba(245,166,35,.3), transparent 62%)); }
.mc--yuz   { --mc: radial-gradient(circle at 60% 25%, rgba(245,166,35,.32), rgba(20,14,8,.9) 70%); }
.mc--vucut { --mc: radial-gradient(circle at 60% 25%, rgba(160,166,180,.3), rgba(14,16,22,.92) 70%); }
.mc--durus { --mc: radial-gradient(circle at 60% 25%, rgba(123,92,255,.28), rgba(12,10,20,.92) 70%); }
.mc--goz   { --mc: radial-gradient(circle at 60% 25%, rgba(91,141,239,.26), rgba(10,12,20,.92) 70%); }
.mc--cilt  { --mc: radial-gradient(circle at 60% 25%, rgba(255,193,99,.34), rgba(22,16,10,.9) 70%); }
.mc--sac   { --mc: radial-gradient(circle at 60% 25%, rgba(200,110,60,.3), rgba(18,12,8,.92) 70%); }

.mc-i { position: absolute; top: 11px; right: 11px; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(0,0,0,.42); font-size: 13px; z-index: 2; }
.mc-lock { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); padding: 6px 12px; border: 1px solid rgba(245,166,35,.55); border-radius: 100px; background: rgba(8,8,12,.6); font-size: 10px; color: var(--amber); white-space: nowrap; z-index: 2; }
.mc-b { position: absolute; inset: auto 0 0 0; padding: 12px; z-index: 2; }
.mc-b b { display: block; font-size: 16px; font-weight: 600; }
.mc-b span { display: block; font-size: 10px; color: var(--text-2); margin: 2px 0 5px; }
.mc-b em { font-style: normal; font-size: 9px; color: var(--amber); }

.an-foot { margin-top: 14px; padding: 13px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); font-size: 10.5px; color: var(--text-2); }
.an-foot b { color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  overflow-x: clip;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 84px) var(--gutter) clamp(52px, 7vw, 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(30px, 4vw, 64px);
  align-items: center;
}

.hero-glow {
  position: absolute; right: -8%; top: 0;
  width: min(780px, 74vw); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(245,166,35,.17), rgba(123,92,255,.08) 44%, transparent 68%);
  filter: blur(16px);
  pointer-events: none;
}

.hero-copy { position: relative; }

.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px 7px 12px; margin-bottom: 22px;
  border: 1px solid var(--line); border-radius: 100px;
  background: var(--surface); font-size: 12.5px; color: var(--text-2);
}

.chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); animation: pulse 2.4s var(--ease) infinite; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245,166,35,.5); }
  70% { box-shadow: 0 0 0 8px rgba(245,166,35,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,166,35,0); }
}

.hero-lede { font-size: clamp(16px, 1.3vw, 18px); color: var(--text-2); max-width: 56ch; margin: 20px 0 28px; text-wrap: pretty; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 20px; font-size: 13px; color: var(--text-3); }
.hero-device { display: flex; justify-content: center; position: relative; }
.hero-device .iphone { --pwn: 344; }

/* ============================================================
   İSTATİSTİK ŞERİDİ
   ============================================================ */

.stats {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(26px, 3.4vw, 42px) var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 3vw, 40px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}

.stat b { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(32px, 3.4vw, 46px); line-height: 1; color: var(--amber); letter-spacing: -0.03em; margin-bottom: 9px; }
.stat span { font-size: 13.5px; color: var(--text-2); }

/* ============================================================
   ANALİZLER — sabitlenen telefon, kayan ekran
   ============================================================ */

.scroller { position: relative; }

.scroller-in {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}

.scroller-copy { padding: clamp(72px, 9vw, 128px) 0; position: sticky; top: 96px; }

.modlist { margin-top: 28px; border-top: 1px solid var(--line); }
.modlist li {
  display: grid; grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: baseline; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.modlist b { font-family: var(--display); font-size: 16px; font-weight: 700; }
.modlist span { font-size: 13px; color: var(--text-2); }
.modlist em { font-style: normal; font-size: 11.5px; color: var(--text-3); white-space: nowrap; }

/* Telefon, kaydırma boyunca sabit kalır; içerideki ekran ilerler.
   Yükseklik, ekran içeriğinin gerçek yol uzunluğuna (~270px) yakın bir
   parkur bırakacak şekilde seçildi — 280vh'de sayfa 1600px kayarken
   ekran 270px oynuyordu ve hareket ağır hissettiriyordu. */
.scroller-stage { height: 138vh; position: relative; }

.iphone--sticky {
  position: sticky;
  top: calc(50vh - (var(--pw) * 874 / 402) / 2);
  margin: 0 auto;
  --pwn: 322;
}

.scroller-hint {
  position: sticky;
  top: calc(50vh + (330px * 874 / 402) / 2 + 22px);
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 18px;
}

/* ============================================================
   SKOR KIRILIMI
   ============================================================ */

.switch { display: flex; width: fit-content; gap: 4px; padding: 4px; margin: 0 auto clamp(24px, 3vw, 34px); border-radius: 100px; background: rgba(255,255,255,.05); }

.sw {
  padding: 10px 22px; border: 0; border-radius: 100px;
  background: transparent; color: var(--text-3);
  font-family: var(--display); font-size: 13.5px; font-weight: 600; cursor: pointer;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}

.sw.is-on { background: rgba(245,166,35,.15); color: var(--amber); }
@media (hover: hover) and (pointer: fine) { .sw:not(.is-on):hover { color: var(--text); } }

.report[hidden] { display: none; }

.report-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 20px 28px;
  padding: 24px; margin-bottom: 14px;
  border: 1px solid var(--line); border-radius: var(--r); background: var(--surface);
}

.panel-k { font-size: 11px; letter-spacing: .13em; color: var(--text-3); margin-bottom: 8px; }
.panel-score { display: flex; align-items: baseline; gap: 9px; font-family: var(--display); font-weight: 800; font-size: 48px; line-height: 1; letter-spacing: -0.03em; color: var(--amber); }
.panel-score small { font-size: 15px; color: var(--text-3); font-weight: 500; }
.report[data-report="psl"] .panel-score { color: var(--cyan); }
.report-note { margin-top: 12px; font-size: 14px; color: var(--text-2); max-width: 46ch; }

.report-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { display: flex; flex-direction: column; gap: 3px; padding: 11px 16px; border: 1px solid var(--line); border-radius: 12px; }
.pill i { font-style: normal; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }
.pill b { font-size: 13.5px; font-weight: 600; }

.mgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.mgrid li { position: relative; padding: 18px 16px 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.mg-i { display: grid; place-items: center; width: 30px; height: 30px; margin-bottom: 12px; border-radius: 9px; background: rgba(255,255,255,.06); font-size: 14px; color: var(--text-2); }
.mgrid p { font-size: 13px; color: var(--text-2); margin-bottom: 8px; min-height: 2.4em; }
.mgrid b { display: block; font-family: var(--display); font-size: 30px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; margin-bottom: 12px; }
.mgrid b small { font-size: 12px; color: var(--text-3); font-weight: 500; margin-left: 2px; }

.badge { display: inline-block; padding: 3px 9px; border-radius: 100px; font-size: 10.5px; font-weight: 600; font-style: normal; border: 1px solid currentColor; }
.badge--exc, .badge--vg { color: var(--green); }
.badge--good { color: var(--blue); }
.badge--tier { color: var(--text-2); align-self: center; }

.mgrid i { position: absolute; left: 16px; right: 16px; bottom: 13px; height: 3px; border-radius: 100px; background: rgba(255,255,255,.08); overflow: hidden; }
.mgrid i::after { content:""; position: absolute; inset: 0; border-radius: inherit; transform: scaleX(0); transform-origin: left; background: var(--bar, linear-gradient(90deg, #C97F1B, var(--amber))); }
.report[data-report="psl"] .mgrid i::after { --bar: linear-gradient(90deg, #3FA9A0, var(--cyan)); }

.mgrid.is-filled i::after { transform: scaleX(var(--v)); transition: transform .9s var(--ease); }
.mgrid.is-filled li:nth-child(2) i::after { transition-delay: .05s; }
.mgrid.is-filled li:nth-child(3) i::after { transition-delay: .10s; }
.mgrid.is-filled li:nth-child(4) i::after { transition-delay: .15s; }
.mgrid.is-filled li:nth-child(5) i::after { transition-delay: .20s; }
.mgrid.is-filled li:nth-child(6) i::after { transition-delay: .25s; }
.mgrid.is-filled li:nth-child(7) i::after { transition-delay: .30s; }
.mgrid.is-filled li:nth-child(8) i::after { transition-delay: .35s; }

/* ============================================================
   EGZERSİZLER
   ============================================================ */

.ex-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.filters { display: flex; flex-wrap: wrap; gap: 9px; }

.filt {
  padding: 9px 20px; border-radius: 100px;
  border: 1px solid var(--line); background: transparent;
  color: var(--text-2); font-family: var(--ui); font-size: 13.5px; cursor: pointer;
  transition: color .2s var(--ease), border-color .2s var(--ease), background-color .2s var(--ease);
}

.filt--jaw { border-color: rgba(123,92,255,.4); color: #B7A4FF; }
.filt--face { border-color: rgba(245,166,35,.4); color: var(--amber-2); }
.filt--neck { border-color: rgba(91,141,239,.4); color: #9DBBF5; }
.filt--posture { border-color: rgba(62,207,142,.4); color: #8BE3BC; }
.filt.is-on { background: var(--amber); border-color: var(--amber); color: #17120A; font-weight: 700; }

@media (hover: hover) and (pointer: fine) { .filt:not(.is-on):hover { color: var(--text); } }

.ex-count { font-size: 13px; color: var(--text-3); }
.ex-count b { color: var(--text); font-weight: 600; }

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

.rt {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--surface); min-height: 300px;
  transition: border-color .28s var(--ease), transform .28s var(--ease);
}

.rt[hidden] { display: none; }
.rt--ai { border-color: rgba(245,166,35,.55); }
.rt img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.rt::after { content:""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,10,.96) 22%, rgba(6,6,10,.35) 58%, rgba(6,6,10,.18)); }

.rt-min, .rt-diff, .rt-area, .rt-ai { position: absolute; z-index: 2; border-radius: 100px; font-size: 10px; font-weight: 700; letter-spacing: .04em; }
.rt-min { left: 12px; top: 96px; padding: 5px 11px; background: rgba(6,6,10,.82); color: var(--text); }
.rt-area { left: 12px; top: 12px; padding: 4px 10px; border: 1px solid currentColor; }
.rt-diff { right: 12px; top: 12px; padding: 4px 10px; border: 1px solid currentColor; }
.rt-ai { left: 12px; top: 42px; padding: 4px 10px; background: rgba(6,6,10,.8); color: var(--amber); }

.rt-area--jaw { color: #B7A4FF; }
.rt-area--face { color: var(--amber-2); }
.rt-area--neck { color: #9DBBF5; }
.rt-area--posture { color: #8BE3BC; }
.rt-diff--easy { color: var(--green); }
.rt-diff--mid { color: var(--amber); }

.rt-body { position: absolute; z-index: 2; inset: auto 56px 16px 14px; }
.rt h3 { font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.rt p { font-size: 12.5px; color: var(--text-2); }

.rt-go { position: absolute; z-index: 2; right: 14px; bottom: 16px; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--amber); color: #17120A; font-size: 17px; font-weight: 700; }

@media (hover: hover) and (pointer: fine) { .rt:hover { border-color: var(--line-2); transform: translateY(-3px); } }

.ex-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 18px; }
.ex-facts > div { padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); text-align: center; }
.ex-facts b { display: block; font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--amber); margin-bottom: 5px; }
.ex-facts span { font-size: 12px; color: var(--text-3); }

/* ============================================================
   İLERLEME
   ============================================================ */

.prog-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: 16px; align-items: start; }
.chartcard, .areas { padding: 24px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); }

.chart-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.chart-now { font-family: var(--display); font-size: 42px; font-weight: 800; line-height: 1; letter-spacing: -0.03em; color: var(--amber); }
.chart-now small { display: block; font-size: 12px; color: var(--text-3); font-family: var(--ui); font-weight: 400; margin-top: 5px; }

.ranges { display: flex; gap: 4px; padding: 4px; border-radius: 100px; background: rgba(255,255,255,.05); }
.rg { padding: 8px 16px; border: 0; border-radius: 100px; background: transparent; color: var(--text-3); font-family: var(--ui); font-size: 12.5px; cursor: pointer; transition: color .2s var(--ease), background-color .2s var(--ease); }
.rg.is-on { background: rgba(245,166,35,.15); color: var(--amber); font-weight: 600; }

.chart { width: 100%; height: auto; display: block; overflow: visible; }
.chart-grid line { stroke: rgba(255,255,255,.055); }
.chart-line { stroke: var(--amber); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.chart-line.is-drawing { transition: stroke-dashoffset 1.3s var(--ease); }
.chart-line--2 { stroke: var(--green); stroke-width: 1.8; opacity: .5; }
.chart-area { fill: url(#gArea); }
.chart-dot { fill: var(--amber); stroke: var(--bg); stroke-width: 3; }
.chart-area, .chart-dot, .chart-tip { transition: opacity .7s var(--ease); }
.chart-axis text, .chart-x text, .chart-unit { fill: var(--text-3); font-family: var(--ui); font-size: 11px; }
.chart-unit { font-size: 9px; letter-spacing: .12em; }
.chart-tip { fill: var(--amber); font-family: var(--display); font-size: 17px; font-weight: 700; text-anchor: middle; }

.chart-legend { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 22px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--text-2); }
.chart-legend span { display: flex; align-items: center; gap: 7px; }
.chart-legend .k { width: 14px; height: 2px; border-radius: 2px; }
.k--ascend { background: var(--amber); }
.k--appear { background: var(--green); }

.area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 14px 0 18px; }
.area { position: relative; padding: 16px 14px 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--bg-2); }
.area-i { display: grid; place-items: center; width: 30px; height: 30px; margin-bottom: 10px; border-radius: 50%; border: 1px solid rgba(245,166,35,.4); color: var(--amber); font-size: 13px; }
.area b { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.area em { font-style: normal; font-family: var(--display); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.area u { display: block; margin-top: 3px; font-size: 11px; text-decoration: none; }
.area.up em, .area.up u { color: var(--green); }
.area.flat em, .area.flat u { color: var(--text-3); }
.area.down em, .area.down u { color: var(--red); }
.area i { position: absolute; left: 14px; right: 14px; bottom: 11px; height: 3px; border-radius: 100px; background: rgba(255,255,255,.07); overflow: hidden; }
.area i::after { content:""; position: absolute; inset: 0; border-radius: inherit; transform: scaleX(0); transform-origin: left; background: currentColor; }
.area.up i::after { background: var(--green); }
.area.flat i::after { background: var(--text-3); }
.area.down i::after { background: var(--red); }
.area-grid.is-filled i::after { transform: scaleX(var(--v)); transition: transform .9s var(--ease); }

.coachcard { position: relative; overflow: hidden; padding: 22px; border: 1px solid rgba(123,92,255,.26); border-radius: 16px; background: linear-gradient(155deg, rgba(123,92,255,.17), var(--bg-2) 58%); }
.coach-orb { position: absolute; right: -58px; top: -58px; width: 280px; height: 280px; opacity: .4; pointer-events: none; mask-image: radial-gradient(closest-side, #000 42%, transparent 82%); -webkit-mask-image: radial-gradient(closest-side, #000 42%, transparent 82%); }
.coach-k { position: relative; color: #C3B4FF; margin-bottom: 12px; }
.coachcard blockquote { position: relative; }
.coachcard blockquote p { font-size: 15px; line-height: 1.62; color: #DFDFE6; min-height: 6.4em; }
.coachcard blockquote p::after { content:""; display: inline-block; width: 2px; height: 1em; margin-left: 3px; vertical-align: -.14em; background: var(--violet); opacity: 0; }
.coachcard.is-typing blockquote p::after { opacity: 1; animation: caret 1s steps(1) infinite; }
@keyframes caret { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }
.coach-foot { position: relative; margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--line); font-size: 11.5px; color: var(--text-3); }

/* ============================================================
   FİYAT · GİZLİLİK · CTA · FOOTER
   ============================================================ */

.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; max-width: 960px; margin: 0 auto; }
.plan { position: relative; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); }
.plan--lead { border-color: rgba(245,166,35,.35); background: linear-gradient(165deg, rgba(245,166,35,.09), var(--surface) 60%); }
.plan-flag { position: absolute; top: -11px; left: 28px; padding: 4px 12px; border-radius: 100px; background: var(--amber); color: #17120A; font-size: 11px; font-weight: 700; }
.plan-name { font-family: var(--display); font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.plan--lead .plan-name { color: var(--amber); }
.plan-line { font-size: 15px; color: var(--text-2); margin-bottom: 22px; }
.plan ul { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.plan li { position: relative; padding-left: 24px; font-size: 14px; color: var(--text-2); }
.plan li::before { content:""; position: absolute; left: 2px; top: 9px; width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--amber); }
.plans-note { margin-top: 24px; text-align: center; font-size: 12.5px; color: var(--text-3); }

.privacy { border-top: 1px solid var(--line); background: radial-gradient(760px 340px at 50% 0%, rgba(245,166,35,.055), transparent 70%); }
.privacy-in { max-width: 900px; margin: 0 auto; text-align: center; }
.privacy .sec-lede { margin-inline: auto; }
.pv-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: clamp(34px, 4.6vw, 50px) 0 30px; }
.pv-facts > div { padding: 20px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); }
.pv-facts b { display: block; font-family: var(--display); font-size: 24px; font-weight: 800; color: var(--amber); margin-bottom: 6px; }
.pv-facts span { font-size: 13px; color: var(--text-3); }
.pv-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; font-size: 13.5px; color: var(--text-2); }
@media (hover: hover) and (pointer: fine) { .pv-links a:hover { color: var(--amber); } }

.cta { position: relative; overflow: hidden; text-align: center; padding: clamp(72px, 9vw, 122px) var(--gutter); border-top: 1px solid var(--line); }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(700px 340px at 50% 0%, rgba(245,166,35,.14), transparent 70%); }
.cta-in { position: relative; max-width: 640px; margin: 0 auto; }
.cta p { margin: 16px 0 30px; color: var(--text-2); }
.cta .hero-actions { justify-content: center; }

.foot { max-width: var(--max); margin: 0 auto; padding: 26px var(--gutter) 44px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 32px; border-top: 1px solid var(--line); }
.foot-brand { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 800; font-size: 16px; }
.foot-brand img { width: 26px; height: 26px; border-radius: 7px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 10px 24px; font-size: 13px; color: var(--text-3); }
@media (hover: hover) and (pointer: fine) { .foot-links a:hover { color: var(--text); } }

/* ============================================================
   GİRİŞ ANİMASYONU
   ============================================================ */

[data-anim] { opacity: 0; }
.no-js [data-anim] { opacity: 1; }
.no-js .scroller-stage { height: auto; }
.no-js .iphone--sticky { position: relative; top: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 680px; }
  .hero-device .iphone { --pwn: 318; }
  .routines { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .prog-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .scroller-in { grid-template-columns: 1fr; }
  .scroller-copy { position: static; padding-bottom: 24px; }
  .scroller-stage { height: 132vh; }
}

@media (max-width: 900px) {
  .mgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .report-head { flex-direction: column; }
  .ex-facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .plans { grid-template-columns: 1fr; }
  .pv-facts { grid-template-columns: 1fr; }
  .modlist li { grid-template-columns: 76px minmax(0, 1fr); }
  .modlist em { grid-column: 2; }
}

@media (max-width: 560px) {
  .routines { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .plan .btn { width: 100%; }
  .nav { gap: 12px; }
  .brand-text i { display: none; }
  .scroller-stage { height: 126vh; }
}

/* ============================================================
   AZALTILMIŞ HAREKET
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-anim] { opacity: 1 !important; transform: none !important; }
  .chip-dot { animation: none; }
  .coachcard.is-typing blockquote p::after { animation: none; opacity: 0; }
  .mgrid.is-filled i::after, .area-grid.is-filled i::after { transition: none; }
  .ring-fill { transition: none; stroke-dashoffset: 85; }
  .scroller-stage { height: auto; }
  .iphone--sticky { position: relative; top: 0; }
  .app--scroll { transform: none !important; }
}
