/* ============ motionall — ana sayfa ============ */

.landing { position: relative; overflow-x: hidden; }

/* --- hareketli aurora arka plan --- */
.aurora { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.aurora .blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
  will-change: transform;
}
.aurora .b1 { width: 44vw; height: 44vw; background: #4F9CF0; top: -14vw; left: -8vw;  animation: drift1 26s ease-in-out infinite; }
.aurora .b2 { width: 38vw; height: 38vw; background: #9184D9; top: 4vw;   right: -8vw; animation: drift2 31s ease-in-out infinite; }
.aurora .b3 { width: 34vw; height: 34vw; background: #B3A4FF; top: 62vh;  left: 18vw;  animation: drift3 24s ease-in-out infinite; opacity: .34; }
.aurora .b4 { width: 30vw; height: 30vw; background: #6B5FD0; top: 128vh; right: 6vw;  animation: drift1 29s ease-in-out infinite; opacity: .3; }
.aurora .grain {
  position: absolute; inset: 0; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(6vw,7vh) scale(1.16); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1.1); } 50% { transform: translate(-7vw,5vh) scale(.9); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(.95); } 50% { transform: translate(5vw,-6vh) scale(1.2); } }

.landing > *:not(.aurora) { position: relative; z-index: 1; }

/* Üst çubuk bu kuralın DIŞINDA kalmalı. `.landing > *:not(.aurora)` seçicisinin
   özgüllüğü (0,2,0) `.nav` kuralınınkinden (0,1,0) yüksek olduğu için app.css'teki
   `position: sticky; z-index: 20` eziliyordu: nav hem yapışkanlığını kaybediyor
   hem de hero ile aynı katmana (z-index 1) düşüyordu. Hero DOM'da sonra geldiği
   için üste biniyor, profil menüsü onun altında kalıp tıklanamıyordu. */
.landing > .nav { position: sticky; top: 0; z-index: 40; }

/* --- nav --- */
.landing .nav { background: rgba(10,9,18,.6); border-bottom-color: rgba(255,255,255,.07); }
/* --- nav bağlantıları ---
   Araçların hepsi çubukta yazıyor: menüye saklamak çubuğu boşaltıyordu,
   oysa istenen şey dolu ve düzenli görünmesi. Düzeni sağlayan üç kural:

   1) `white-space: nowrap` — bir bağlantının adı ASLA ikiye bölünmez.
      Şikâyet buydu: dar pencerede "Auto Jump" / "Cut" diye kırılıyordu.
   2) `flex-wrap: wrap` + satır aralığı — yer yetmediğinde bağlantılar
      bütün hâlde alt satıra iner, çubuk düzgün iki sıra olur.
   3) `flex-shrink: 0` — bağlantılar birbirini ezmez; sıkışma yerine
      taşma/alt satır olur, yani metin hep okunur boyda kalır. */
.nav-links {
  display: flex; flex-wrap: wrap; column-gap: 18px; row-gap: 7px;
  margin-left: 26px; align-items: center; min-width: 0;
}
.nav-links a {
  color: var(--ink-2); font-size: 13px; font-weight: 550; transition: .15s;
  white-space: nowrap; flex: 0 0 auto;
}
.nav-links a:hover { color: var(--ink); }

/* --- hero --- */
.hero {
  width: 100%; max-width: 1180px; margin: 0 auto; padding: 76px 32px 60px;
  display: grid; grid-template-columns: 1.12fr .88fr; gap: 50px; align-items: center;
  text-align: left;
}
.badge {
  display: inline-flex; gap: 9px; align-items: center; font-size: 12.5px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 26px;
  border: 1px solid rgba(255,255,255,.13); color: var(--ink-2);
  background: rgba(255,255,255,.05); backdrop-filter: blur(8px);
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--ok);
  box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: ping 2.2s ease-out infinite;
}
@keyframes ping { 70% { box-shadow: 0 0 0 9px rgba(52,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); } }

.hero h1 {
  font-size: clamp(34px, 4.4vw, 58px); letter-spacing: -.045em; line-height: 1.06;
  margin-bottom: 22px; font-weight: 700;
}
.hero h1 em {
  font-style: normal; position: relative;
  background: linear-gradient(100deg, #B3A4FF, #9184D9 32%, #4F9CF0 64%, #B3A4FF);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 7s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.hero .lead { font-size: 16.5px; color: var(--ink-2); max-width: 500px; margin: 0 0 30px; line-height: 1.65; }
.hero .lead b { color: var(--ink); font-weight: 650; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn.xl { padding: 15px 28px; font-size: 15.5px; border-radius: 13px; }
.btn.primary { box-shadow: 0 10px 34px -12px rgba(179,164,255,.65); }

.hero-meta { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.hero-meta span { font-size: 12.5px; color: var(--ink-3); }
.hero-meta b {
  display: block; font-size: 25px; letter-spacing: -.03em; color: var(--ink);
  font-weight: 700; margin-bottom: 1px;
}

/* --- hero telefon + canlı önizleme --- */
.hero-stage { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.phone {
  position: relative; width: min(276px, 74vw); aspect-ratio: 9/16;
  border-radius: 30px; padding: 9px; background: linear-gradient(160deg,#2b3040,#12141c);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.07);
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }
.phone canvas {
  width: 100%; height: 100%; display: block; border-radius: 22px; background: #000;
}
.hero-chip {
  font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; color: var(--ink-2);
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05);
}

/* --- kayan tarz şeridi --- */
.marquee {
  overflow: hidden; padding: 26px 0; margin: 10px 0 30px;
  border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; gap: 40px; width: max-content; animation: slide 38s linear infinite; align-items: center; }
.mq-word {
  font-size: 26px; font-weight: 700; letter-spacing: -.04em; white-space: nowrap;
  background: linear-gradient(100deg, #B3A4FF, #9184D9 50%, #4F9CF0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .5;
}
.mq-sep { color: var(--acc); opacity: .35; font-size: 13px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* --- bölümler --- */
.section { width: 100%; max-width: 1180px; margin: 0 auto; padding: 72px 32px; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.kicker {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--acc); margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(27px, 3.8vw, 42px); letter-spacing: -.04em; margin-bottom: 12px; }
.section-head p { color: var(--ink-2); margin: 0; font-size: 15px; }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 18px; }
.step-card {
  position: relative; padding: 30px 26px 26px; border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  border: 1px solid rgba(255,255,255,.09); overflow: hidden; transition: .3s;
}
.step-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--grad-90);
  transform: scaleX(0); transform-origin: left; transition: transform .45s ease;
}
.step-card.c2::before { background: linear-gradient(90deg, #9184D9, #4F9CF0); }
.step-card.c3::before { background: linear-gradient(90deg, #4F9CF0, #B3A4FF); }
.step-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.18); }
.step-card:hover::before { transform: scaleX(1); }
.step-num {
  font-size: 40px; font-weight: 700; letter-spacing: -.05em; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px; opacity: .85;
}
.step-card.c2 .step-num { background: linear-gradient(135deg,#9184D9,#4F9CF0); -webkit-background-clip: text; background-clip: text; }
.step-card.c3 .step-num { background: linear-gradient(135deg,#4F9CF0,#B3A4FF); -webkit-background-clip: text; background-clip: text; }
.step-card h3 { font-size: 19px; margin-bottom: 9px; }
.step-card p { color: var(--ink-2); margin: 0 0 16px; font-size: 14px; }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.ticks li { font-size: 12.5px; color: var(--ink-3); padding-left: 20px; position: relative; }
.ticks li::before { content: '✓'; position: absolute; left: 0; color: var(--ok); font-weight: 700; }
.ticks b { color: var(--ink-2); }

.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 16px; }
.feat {
  padding: 24px; border-radius: 18px; border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.028); transition: .28s;
}
.feat:hover { background: rgba(255,255,255,.06); border-color: color-mix(in srgb, var(--fc) 45%, transparent); transform: translateY(-3px); }
.feat-ic {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  font-size: 17px; margin-bottom: 15px; color: var(--fc);
  background: color-mix(in srgb, var(--fc) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--fc) 32%, transparent);
}
.feat h4 { font-size: 15.5px; margin-bottom: 7px; }
.feat p { color: var(--ink-2); margin: 0; font-size: 13.5px; }

/* Tarz vitrini kesintisiz akan bir şerit (bkz. js/landing.js → initStyles).
   Kenarlarda maske var: kartlar bölümün dışında kesilmiş gibi değil, karanlığa
   girerek çıkıyor. */
.style-showcase {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
/* Aralık `gap` ile DEĞİL kartın kendi sağ boşluğuyla veriliyor: gap kullanınca
   şeridin genişliği "10 kart + 9,5 aralık" oluyor ve -%50'lik dönüşte yarım
   aralıklık bir sıçrama görünüyordu. Boşluk kartın parçası olunca iki takım
   birbirinin tam üstüne oturuyor. */
.sh-track { display: flex; width: max-content; animation: slide 52s linear infinite; }
/* Fareyle üstüne gelince durur — akıp giden bir kartın adını okumak mümkün
   olmuyordu. */
.style-showcase:hover .sh-track { animation-play-state: paused; }
/* Kart artık bir "pin": tarzın gerçek kompozisyonu, adı da görselin üstünde.
   Ayrı bir alt gövde yok — ad ve tarif zemine vuran karartmanın içinde
   duruyor, böylece kartın tamamı işin kendisine ayrılıyor. */
.sh-card {
  width: 196px; flex: 0 0 196px; margin-right: 14px;
  border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.1);
  transition: transform .3s, box-shadow .3s; cursor: default;
}
.sh-card:hover { transform: translateY(-5px) scale(1.015); box-shadow: 0 26px 48px -24px rgba(0,0,0,.85); }

.sh-shot { position: relative; aspect-ratio: 9 / 16; overflow: hidden; background: #0f0e18; }
.sh-cv {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block;
  opacity: 0; transition: opacity .35s;
}
.sh-card.painted .sh-cv { opacity: 1; }

/* Yedek (tuval çizilemezse görünür kalır) */
.sh-prev {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; overflow: hidden; padding: 18px; text-align: center;
}
.sh-card.painted .sh-prev { opacity: 0; }
.sh-head { font-size: 30px; line-height: 1; }
.sh-head.sh-box { padding: 3px 10px; border-radius: 2px; }
.sh-sub { font-size: 11px; opacity: .85; }
.sh-accent { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; }

.sh-name {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 46px 13px 12px;
  /* Karartma AÇIK kartlarda da tutmalı: vitrinde beyaz zeminli tarzlar var ve
     zayıf bir gradyanda beyaz yazı onların üstünde okunmuyordu. */
  background: linear-gradient(to top,
    rgba(6,5,12,.97) 34%, rgba(6,5,12,.75) 62%, rgba(6,5,12,0));
}
.sh-name b { font-size: 13px; display: block; margin-bottom: 2px; color: #fff; }
.sh-name small {
  color: rgba(255,255,255,.72); font-size: 10.5px; line-height: 1.4; display: block;
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}

/* --- kapanış bandı --- */
.cta-band {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; align-items: center;
  padding: 46px; border-radius: 26px;
  background: linear-gradient(135deg, rgba(179,164,255,.09), rgba(79,156,240,.09) 55%, rgba(244,114,182,.08));
  border: 1px solid rgba(255,255,255,.11);
}
.cta-band h2 { font-size: clamp(26px,3.4vw,38px); letter-spacing: -.04em; margin-bottom: 12px; }
.cta-band p { color: var(--ink-2); margin: 0; max-width: 480px; font-size: 14.5px; line-height: 1.65; }
.format-cards { display: flex; gap: 14px; justify-content: center; }
.fmt { text-align: center; }
.fmt b { display: block; font-size: 14px; margin-top: 10px; }
.fmt small { color: var(--ink-3); font-size: 11px; }
.fmt-box {
  border: 2px solid rgba(255,255,255,.28); border-radius: 7px; margin: 0 auto;
  background: linear-gradient(150deg, rgba(179,164,255,.2), rgba(79,156,240,.16));
}
.fmt-box.r916 { width: 46px; height: 82px; }
.fmt-box.r169 { width: 82px; height: 46px; margin-top: 36px; }
.fmt-box.r11  { width: 62px; height: 62px; margin-top: 20px; }

.landing .foot {
  border-top: 1px solid rgba(255,255,255,.07); align-items: center;
  width: 100%; max-width: 1180px; margin: 40px auto 0;
}

/* --- scroll ile beliren animasyon --- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .aurora .blob, .phone, .marquee-track, .sh-track, .hero h1 em { animation: none; }
}

@media (max-width: 940px) {
  .sh-card { width: 164px; flex-basis: 164px; }
  .sh-head { font-size: 25px; }
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 52px; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-meta { justify-content: center; }
  .hero-stage { order: -1; }
  .cta-band { grid-template-columns: 1fr; padding: 32px; }
  .nav-links { display: none; }
}


/* Büyük bölüm başlığı */
.section-head h2.big { font-size: clamp(30px, 4.6vw, 50px); line-height: 1.05; }
.section-head .kicker { font-size: 12.5px; letter-spacing: .2em; }

/* Adım kartlarındaki rakamlar */
.step-num { font-size: 54px; }

/* Tıklanabilir stüdyo logosu */
.logo-btn {
  background: transparent; border: 1px solid transparent; cursor: pointer;
  color: inherit; font: inherit; padding: 5px 9px; border-radius: 9px;
  display: flex; align-items: center; gap: 9px; font-weight: 700; letter-spacing: -.03em;
  transition: .15s;
}
.logo-btn:hover { background: var(--bg-2); border-color: var(--line); }

/* Profil rozeti + kota kartı */
.profile {
  position: relative; display: flex; align-items: center; gap: 8px;
  padding: 4px 9px; cursor: pointer; border-radius: 999px;
  border: 1px solid transparent; transition: .14s; user-select: none;
}
.profile:hover, .profile.open { background: var(--bg-2); border-color: var(--line-2); }
.profile .pf-name { max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pf-caret { font-size: 10px; color: var(--ink-3); transition: transform .16s; }
.profile.open .pf-caret { transform: rotate(180deg); }
.avatar {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: var(--grad);
  color: var(--on-acc); display: grid; place-items: center; font-size: 11.5px; font-weight: 700;
  background-size: cover; background-position: center;
}
.profile-card {
  position: absolute; top: calc(100% + 8px); right: 0; width: 258px; z-index: 60;
  background: var(--bg-1); border: 1px solid var(--line-2); border-radius: 14px;
  padding: 15px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s, transform .16s, visibility .16s;
}
.profile.open .profile-card { opacity: 1; visibility: visible; transform: none; }
.pc-name { font-size: 13.5px; font-weight: 700; }
.pc-mail { font-size: 11.5px; color: var(--ink-3); margin-bottom: 12px; word-break: break-all; }
.pc-plan {
  display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 9px;
  border-radius: 99px; background: var(--bg-3); border: 1px solid var(--line-2);
  color: var(--acc); margin-bottom: 12px;
}
.pc-row { display: flex; align-items: center; gap: 9px; padding: 7px 0; font-size: 12.5px; }
.pc-row + .pc-row { border-top: 1px solid var(--line); }
.pc-row .k { color: var(--ink-2); }
.pc-row .v { margin-left: auto; font-weight: 700; font-variant-numeric: tabular-nums; }
.pc-bar { height: 5px; border-radius: 99px; background: var(--bg-3); overflow: hidden; margin-top: 8px; }
.pc-bar i { display: block; height: 100%; background: var(--grad-90); }
.pc-foot { font-size: 11px; color: var(--ink-3); margin-top: 11px; line-height: 1.45; }

/* Profil menüsü — Hesabım / Projelerim / Admin / Çıkış buraya taşındı. */
.pc-menu {
  display: flex; flex-direction: column; gap: 2px;
  margin-top: 12px; padding-top: 11px; border-top: 1px solid var(--line-2);
}
.pc-item {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  padding: 8px 9px; border-radius: 9px; border: none; background: transparent;
  color: var(--ink); font: inherit; font-size: 12.5px; font-weight: 600; cursor: pointer;
  transition: .12s;
}
.pc-item:hover { background: var(--bg-3); }
.pc-item .pc-ic { width: 16px; text-align: center; color: var(--ink-3); font-size: 13px; }
.pc-item.danger { color: var(--err); }
.pc-item.danger:hover { background: rgba(239,68,68,.12); }

/* ---------- hero vitrini (v0.3) ---------- */
.hero h1 { font-size: clamp(36px, 4.9vw, 64px); }
.hero .lead { font-size: 17px; }

.phone-shell { position: relative; display: grid; place-items: center; padding: 26px; }
.phone { width: min(300px, 78vw); }

/* dönen ışık halkaları */
.orbit {
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 1px solid rgba(255,255,255,.07);
}
.orbit.o1 {
  width: 118%; height: 84%;
  border-color: rgba(179,164,255,.16);
  animation: orbitSpin 18s linear infinite;
}
.orbit.o2 {
  width: 86%; height: 112%;
  border-color: rgba(79,156,240,.14);
  animation: orbitSpin 26s linear infinite reverse;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }

/* telefonun çevresinde süzülen etiketler */
.float-chip {
  position: absolute; z-index: 3; white-space: nowrap;
  font-size: 11.5px; font-weight: 700; letter-spacing: .02em;
  padding: 7px 12px; border-radius: 999px; color: var(--ink);
  background: rgba(16,18,25,.78); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 12px 30px -14px rgba(0,0,0,.9);
}
.float-chip.fc1 { top: 10%; left: -11%; animation: bobA 5.4s ease-in-out infinite; }
.float-chip.fc2 { top: 30%; right: -17%; animation: bobB 6.6s ease-in-out infinite; }
.float-chip.fc3 { bottom: 9%; left: -9%; animation: bobA 7.2s ease-in-out infinite .6s; }
@keyframes bobA { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-11px) } }
@keyframes bobB { 0%,100% { transform: translateY(0) } 50% { transform: translateY(9px) } }

.rec-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: #f87171; margin-right: 6px; vertical-align: middle;
  animation: recBlink 1.5s ease-in-out infinite;
}
@keyframes recBlink { 0%,100% { opacity: 1 } 50% { opacity: .25 } }

.hero-chip { transition: .25s; }
.hero-chip.pulse { animation: chipPop .5s cubic-bezier(.22,1.4,.36,1); }
@keyframes chipPop {
  0% { transform: scale(.86); opacity: .3; }
  100% { transform: scale(1); opacity: 1; }
}

.hero-progress {
  width: min(300px, 78vw); height: 3px; border-radius: 99px;
  background: rgba(255,255,255,.09); overflow: hidden;
}
.hero-progress i {
  display: block; height: 100%; width: 0;
  background: var(--grad-90);
}

.hero-meta { margin-top: 30px; }
.hero-meta span { display: flex; flex-direction: column; }

.nav-links a.active { color: var(--ink); }
.landing .foot a { color: var(--ink-2); font-size: 12.5px; }
.landing .foot a:hover { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .orbit, .float-chip, .rec-dot { animation: none; }
}
@media (max-width: 940px) {
  .float-chip.fc1 { left: 0; }
  .float-chip.fc2 { right: 0; }
  .float-chip.fc3 { left: 0; }
}


/* ============ planlar bölümü (madde 12) ============ */
.billing-switch { display: flex; justify-content: center; margin: -10px 0 34px; }
.bs-inner {
  display: inline-flex; align-items: center; gap: 4px; padding: 4px;
  border-radius: 999px; border: 1px solid var(--line-2); background: var(--bg-1);
}
.bs-inner button {
  border: none; background: transparent; color: var(--ink-3); cursor: pointer;
  font: inherit; font-size: 12.5px; font-weight: 700; padding: 8px 18px; border-radius: 999px;
  transition: .14s; display: inline-flex; align-items: center; gap: 8px;
}
.bs-inner button.active { background: var(--bg-3); color: var(--ink); }
.bs-save {
  font-size: 10.5px; font-weight: 700; letter-spacing: .03em; padding: 2px 7px;
  border-radius: 99px; background: rgba(52,211,153,.16); color: #34d399;
}

/* İki plan var (Free + Pro); genişlik ona göre — 1040 px'te iki kart
   uzayıp reklam panosuna dönüyordu. */
.plan-showcase {
  display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  max-width: 720px; margin: 0 auto;
}
.plan-tile {
  position: relative; display: flex; flex-direction: column; gap: 12px;
  padding: 26px 24px; border-radius: 20px;
  border: 1px solid var(--line-2); background: var(--bg-1);
}
.plan-tile.featured { border-color: var(--acc); box-shadow: 0 0 0 1px rgba(179,164,255,.22), var(--shadow); }
.plan-tile .pt-badge {
  position: absolute; top: -11px; left: 24px; font-size: 10.5px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; padding: 4px 11px; border-radius: 99px;
  background: var(--grad-90); color: var(--on-acc);
}
.plan-tile h3 { font-size: 17px; margin: 0; letter-spacing: -.02em; }
.pt-price { display: flex; align-items: baseline; gap: 6px; }
.pt-price b { font-size: 34px; letter-spacing: -.04em; }
.pt-price small { color: var(--ink-3); font-size: 12.5px; font-weight: 600; }
.pt-note { font-size: 11.5px; color: var(--ink-3); margin: -8px 0 0; min-height: 16px; }
.plan-tile ul { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.plan-tile li { font-size: 13px; color: var(--ink-2); display: flex; gap: 9px; align-items: flex-start; }
.plan-tile li::before { content: '✓'; color: var(--acc); font-weight: 700; flex: none; }
.plan-tile .btn { margin-top: auto; }

