/* ═══════════════════════════════════════════
   ozellik.css : ozellik tanitim sayfalari ortak stiller
   styles.css tokenlarini kullanir, yenisini tanimlamaz
   Demolar dil icermez: metin yerine iskelet cizgiler
   ═══════════════════════════════════════════ */

/* ── Hero (split) ── */
.fx-hero {
  padding: 140px 0 70px;
}
.fx-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}
.fx-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 18px 0 18px;
}
.fx-hero h1 em { font-style: italic; color: var(--violet); }
.fx-hero .fx-sub {
  color: var(--ink-dim);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 520px;
}
.fx-hero-ctas { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

/* ── Cerceveli uygulama penceresi (video / demo kabugu) ── */
.fx-window {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
body[data-theme="light"] .fx-window { box-shadow: 0 30px 80px rgba(10, 14, 26, 0.12); }
.fx-window-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-elev);
}
.fx-window-bar .traffic { display: flex; gap: 6px; }
.fx-window-bar .traffic span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line-soft);
}
.fx-window-bar .traffic span:nth-child(1) { background: #ff5f57; }
.fx-window-bar .traffic span:nth-child(2) { background: #febc2e; }
.fx-window-bar .traffic span:nth-child(3) { background: #28c840; }
.fx-window-title {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}
.fx-window video, .fx-window img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Derin bolum (alternatif yerlesim) ── */
.fx-deep { padding: 90px 0; }
.fx-deep-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.fx-deep-grid.flip > .fx-copy { order: 2; }
.fx-deep-grid.flip > .fx-demo { order: 1; }
.fx-copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 14px 0 14px;
}
.fx-copy h2 em { font-style: italic; color: var(--ink-dim); }
.fx-copy p { color: var(--ink-dim); font-size: 15px; line-height: 1.75; }
.fx-copy p + p { margin-top: 12px; }
.fx-points { list-style: none; margin-top: 20px; display: grid; gap: 10px; padding: 0; }
.fx-points li {
  display: flex; gap: 10px; align-items: baseline;
  color: var(--ink-dim); font-size: 14px; line-height: 1.6;
}
.fx-points li::before { content: "✓"; color: var(--emerald); font-weight: 700; }
.fx-tierline {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.fx-tierline strong { color: var(--accent); font-weight: 500; }

/* ── Demo sahnesi ortak ── */
.fx-stage {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(120% 100% at 50% 0%, var(--accent-soft), transparent 55%),
    var(--bg-card);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 36px;
}

/* Iskelet mail karti (dil yok) */
.fx-mail {
  width: min(340px, 100%);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--bg-elev);
  padding: 18px;
  position: relative;
}
.fx-stage .ln { height: 9px; border-radius: 6px; background: var(--line-soft); margin-top: 10px; }
.fx-stage .ln.w60 { width: 60%; }
.fx-stage .ln.w85 { width: 85%; }
.fx-stage .ln.w40 { width: 40%; }
.fx-mail .fx-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  margin-bottom: 4px;
}

/* ── DEMO 1: kendini imha ── */
@keyframes fx-burnCycle {
  0%, 55% { opacity: 1; filter: blur(0); transform: scale(1); }
  70% { opacity: 0.55; filter: blur(2px); transform: scale(0.985) rotate(-0.4deg); }
  82% { opacity: 0; filter: blur(10px); transform: scale(0.94); }
  92% { opacity: 0; filter: blur(0); transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes fx-fuse { 0% { width: 100%; } 78% { width: 0%; } 100% { width: 0%; } }
@keyframes fx-ember {
  0%, 54% { opacity: 0; transform: translateY(0) scale(0.6); }
  62% { opacity: 1; }
  85% { opacity: 0; transform: translateY(-70px) scale(1.15); }
  100% { opacity: 0; }
}
.fx-burn .fx-mail { animation: fx-burnCycle 7s ease-in-out infinite; }
.fx-fuse {
  height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--violet), var(--accent));
  margin-top: 16px;
  animation: fx-fuse 7s linear infinite;
}
.fx-ember {
  position: absolute;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 10px var(--violet);
  animation: fx-ember 7s ease-out infinite;
  pointer-events: none;
}
.fx-ember.e2 { left: 38%; bottom: 34%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation-delay: 0.4s; }
.fx-ember.e3 { left: 62%; bottom: 40%; animation-delay: 0.9s; }
.fx-ember.e1 { left: 50%; bottom: 30%; animation-delay: 0.1s; }
.fx-timerchip {
  position: absolute; top: -12px; right: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  background: var(--accent); color: #fff;
  padding: 4px 10px; border-radius: 100px;
}

/* ── DEMO 2: okundu bilgisi ── */
.fx-thread { width: min(340px, 100%); display: grid; gap: 14px; }
.fx-bubble {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--bg-elev);
  padding: 14px 16px 12px;
  position: relative;
  width: 86%;
}
.fx-bubble.mine { justify-self: end; background: var(--accent-soft); border-color: var(--accent); }
.fx-ticks {
  position: absolute; right: 12px; bottom: 8px;
  font-size: 13px; font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: -0.35em;
}
@keyframes fx-tickSeen {
  0%, 40% { color: var(--ink-mute); text-shadow: none; }
  55%, 90% { color: var(--emerald); text-shadow: 0 0 12px rgba(16, 185, 129, 0.7); }
  100% { color: var(--ink-mute); }
}
.fx-bubble.mine .fx-ticks { animation: fx-tickSeen 6s ease-in-out infinite; }
@keyframes fx-pulseRing {
  0%, 40% { opacity: 0; transform: scale(0.4); }
  55% { opacity: 0.9; transform: scale(0.7); }
  90% { opacity: 0; transform: scale(1.8); }
  100% { opacity: 0; }
}
.fx-pulse {
  position: absolute; right: 6px; bottom: 2px;
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--emerald);
  animation: fx-pulseRing 6s ease-out infinite;
  pointer-events: none;
}

/* ── DEMO 3: guvenli dis paylasim ── */
.fx-vaultcard {
  width: min(340px, 100%);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--bg-elev);
  padding: 22px;
  text-align: center;
}
.fx-lock {
  width: 52px; height: 52px; margin: 0 auto 16px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.fx-lock svg { width: 26px; height: 26px; }
.fx-linkchip {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-mute);
  border: 1px dashed var(--line-soft);
  border-radius: 100px;
  padding: 8px 14px;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.fx-dots { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.fx-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line-soft);
}
@keyframes fx-dotFill {
  0%, 20% { background: var(--line-soft); }
  40%, 85% { background: var(--accent); box-shadow: 0 0 8px var(--accent-soft); }
  100% { background: var(--line-soft); }
}
.fx-dots span { animation: fx-dotFill 5s ease-in-out infinite; }
.fx-dots span:nth-child(2) { animation-delay: 0.25s; }
.fx-dots span:nth-child(3) { animation-delay: 0.5s; }
.fx-dots span:nth-child(4) { animation-delay: 0.75s; }
.fx-dots span:nth-child(5) { animation-delay: 1s; }
@keyframes fx-shieldGlow {
  0%, 30% { box-shadow: 0 0 0 rgba(99, 91, 255, 0); }
  60% { box-shadow: 0 0 34px rgba(99, 91, 255, 0.35); }
  100% { box-shadow: 0 0 0 rgba(99, 91, 255, 0); }
}
.fx-vaultcard { animation: fx-shieldGlow 5s ease-in-out infinite; }

/* ── CTA bandi ── */
.fx-cta {
  text-align: center;
  padding: 100px 0 120px;
}
.fx-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.fx-cta h2 em { font-style: italic; color: var(--violet); }
.fx-cta p { color: var(--ink-dim); max-width: 520px; margin: 0 auto 30px; line-height: 1.7; }
.fx-cta .fx-hero-ctas { justify-content: center; }

/* ── Duyarlilik + hareket azaltma ── */
@media (max-width: 960px) {
  .fx-hero-grid, .fx-deep-grid { grid-template-columns: 1fr; gap: 36px; }
  .fx-deep-grid.flip > .fx-copy { order: 1; }
  .fx-deep-grid.flip > .fx-demo { order: 2; }
  .fx-deep { padding: 60px 0; }
  .fx-stage { min-height: 300px; }
}
@media (prefers-reduced-motion: reduce) {
  .fx-burn .fx-mail, .fx-fuse, .fx-ember, .fx-bubble.mine .fx-ticks,
  .fx-pulse, .fx-dots span, .fx-vaultcard { animation: none; }
}

/* ── Geri Al seridi ── */
.fx-undo {
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(120deg, var(--accent-soft), transparent 55%),
    var(--bg-card);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}
.fx-undo h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.16;
  letter-spacing: -0.015em;
  margin: 12px 0 12px;
}
.fx-undo h2 em { font-style: italic; color: var(--violet); }
.fx-undo p { color: var(--ink-dim); font-size: 14.5px; line-height: 1.7; }
.fx-undo-toast {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--bg-elev);
  padding: 16px 18px;
  max-width: 340px;
  margin-left: auto;
}
@keyframes fx-undoNudge {
  0%, 60% { transform: translateX(0); }
  70% { transform: translateX(-8px) rotate(-8deg); }
  80%, 100% { transform: translateX(0); }
}
.fx-undo-ico {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  animation: fx-undoNudge 5s ease-in-out infinite;
}
.fx-undo-ico svg { width: 20px; height: 20px; }
.fx-undo-body { flex: 1; min-width: 0; }
.fx-undo-body .ln { height: 9px; border-radius: 6px; background: var(--line-soft); width: 70%; }
@keyframes fx-undoFuse { 0% { width: 100%; } 92% { width: 0%; } 100% { width: 0%; } }
.fx-undo-fuse {
  height: 4px;
  border-radius: 4px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--accent), var(--violet));
  animation: fx-undoFuse 5s linear infinite;
}
@media (max-width: 960px) {
  .fx-undo { grid-template-columns: 1fr; padding: 32px 26px; gap: 26px; }
  .fx-undo-toast { margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .fx-undo-ico, .fx-undo-fuse { animation: none; }
}

/* ── DEMO 4: belge editoru (yazan sayfa) ── */
.fx-sheet {
  width: min(300px, 100%);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: var(--bg-elev);
  padding: 26px 24px 30px;
  position: relative;
}
.fx-sheet-toolbar {
  display: flex; gap: 6px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.fx-sheet-toolbar i {
  width: 18px; height: 18px; border-radius: 5px;
  background: var(--line-soft);
}
.fx-sheet-toolbar i:nth-child(1) { background: var(--accent-soft); }
.fx-sheet .tln {
  height: 8px; border-radius: 5px;
  background: var(--line-soft);
  margin-top: 11px;
  transform-origin: left center;
}
@keyframes fx-type {
  0% { transform: scaleX(0); }
  55%, 100% { transform: scaleX(1); }
}
.fx-sheet .tln { animation: fx-type 6s ease-out infinite; }
.fx-sheet .tln:nth-child(2) { animation-delay: 0.5s; width: 92%; }
.fx-sheet .tln:nth-child(3) { animation-delay: 1.1s; width: 78%; }
.fx-sheet .tln:nth-child(4) { animation-delay: 1.7s; width: 88%; }
.fx-sheet .tln:nth-child(5) { animation-delay: 2.3s; width: 52%; }
@keyframes fx-caret { 0%, 45% { opacity: 1; } 50%, 95% { opacity: 0; } 100% { opacity: 1; } }
.fx-caret {
  position: absolute;
  width: 2px; height: 14px;
  background: var(--accent);
  bottom: 27px; left: calc(24px + 52%);
  animation: fx-caret 1.1s steps(1) infinite;
}

/* ── DEMO 5: imza alani + parafe (cizilen imza) ── */
.fx-signsheet { padding-bottom: 22px; }
@keyframes fx-fieldDrop {
  0%, 10% { transform: translate(60px, -46px) scale(0.96); opacity: 0; }
  22% { opacity: 1; }
  30%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
}
.fx-sigfield {
  margin-top: 16px;
  border: 1.5px dashed var(--accent);
  border-radius: 8px;
  background: var(--accent-soft);
  height: 64px;
  position: relative;
  animation: fx-fieldDrop 7s ease-out infinite;
}
.fx-sigfield svg { position: absolute; inset: 8px 14px; width: calc(100% - 28px); height: 48px; }
.fx-sigfield path {
  fill: none;
  stroke: var(--violet);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
}
@keyframes fx-signDraw {
  0%, 38% { stroke-dashoffset: 240; }
  70%, 92% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 240; }
}
.fx-sigfield path { animation: fx-signDraw 7s ease-in-out infinite; }

/* ── DEMO 6: delil zinciri ── */
.fx-chain { width: min(300px, 100%); display: grid; gap: 0; }
.fx-chainblock {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--bg-elev);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fx-chainblock .dot {
  flex: none;
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid var(--accent);
}
.fx-chainblock .bln { flex: 1; }
.fx-chainblock .bln .ln { margin-top: 0; }
.fx-chainblock .bln .ln + .ln { margin-top: 7px; }
.fx-chainlink {
  width: 2px; height: 22px;
  background: var(--line-soft);
  margin-left: 27px;
}
@keyframes fx-chainGlow {
  0%, 100% { border-color: var(--line-soft); box-shadow: none; }
  12%, 22% { border-color: var(--accent); box-shadow: 0 0 22px rgba(99, 91, 255, 0.25); }
}
.fx-chain .fx-chainblock { animation: fx-chainGlow 6s ease-in-out infinite; }
.fx-chain .fx-chainblock:nth-child(3) { animation-delay: 1s; }
.fx-chain .fx-chainblock:nth-child(5) { animation-delay: 2s; }
.fx-chain .fx-chainblock .dot { transition: none; }
.fx-sealrow {
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--emerald);
}
.fx-sealrow .seal {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.7);
}
@media (prefers-reduced-motion: reduce) {
  .fx-sheet .tln, .fx-caret, .fx-sigfield, .fx-sigfield path,
  .fx-chain .fx-chainblock { animation: none; }
  .fx-sheet .tln { transform: scaleX(1); }
  .fx-sigfield path { stroke-dashoffset: 0; }
}

/* ── DEMO 7: randevu slotlari ── */
.fx-slots { width: min(300px, 100%); display: grid; gap: 10px; }
.fx-slot {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: var(--bg-elev);
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
}
.fx-slot .ln { margin-top: 0; width: 44%; }
.fx-slot .sl-check {
  margin-left: auto;
  font-weight: 700;
  font-size: 13px;
  color: var(--emerald);
  opacity: 0;
}
@keyframes fx-slotPick {
  0%, 25% { border-color: var(--line-soft); background: var(--bg-elev); }
  38%, 82% { border-color: var(--accent); background: var(--accent-soft); box-shadow: 0 0 24px rgba(99, 91, 255, 0.2); }
  100% { border-color: var(--line-soft); background: var(--bg-elev); }
}
@keyframes fx-slotCheck {
  0%, 40% { opacity: 0; transform: scale(0.5); }
  52%, 82% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; }
}
.fx-slot.pick { animation: fx-slotPick 6s ease-in-out infinite; }
.fx-slot.pick .sl-check { animation: fx-slotCheck 6s ease-in-out infinite; }

/* ── DEMO 8: RSVP cipleri ── */
.fx-invite {
  width: min(320px, 100%);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--bg-elev);
  padding: 20px;
}
.fx-invite-head { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.fx-invite-cal {
  flex: none;
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  position: relative;
}
.fx-invite-cal::before {
  content: "";
  position: absolute; inset: 9px 8px auto 8px;
  height: 3px; border-radius: 2px;
  background: var(--accent);
}
.fx-invite-cal::after {
  content: "";
  position: absolute; inset: auto 8px 8px 8px;
  height: 11px; border-radius: 3px;
  background: var(--line-soft);
}
.fx-invite-head .bln { flex: 1; }
.fx-rsvp { display: flex; gap: 10px; margin-top: 14px; }
.fx-rsvp span {
  flex: 1;
  height: 38px;
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
  color: var(--ink-mute);
}
@keyframes fx-rsvpYes {
  0%, 30% { border-color: var(--line-soft); color: var(--ink-mute); background: transparent; box-shadow: none; }
  45%, 85% { border-color: var(--emerald); color: var(--emerald); background: rgba(16, 185, 129, 0.1); box-shadow: 0 0 18px rgba(16, 185, 129, 0.25); }
  100% { border-color: var(--line-soft); color: var(--ink-mute); background: transparent; }
}
.fx-rsvp span.yes { animation: fx-rsvpYes 6s ease-in-out infinite; }

/* ── DEMO 9: caldav karti ── */
.fx-meetcard { text-align: center; }
.fx-meetcard .fx-lock { border-radius: 50%; }
@media (prefers-reduced-motion: reduce) {
  .fx-slot.pick, .fx-slot.pick .sl-check, .fx-rsvp span.yes { animation: none; }
}

/* ── DEMO 10: sifreli yukleme (kilit + ilerleme) ── */
.fx-upl {
  width: min(320px, 100%);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--bg-elev);
  padding: 20px;
}
.fx-upl-row { display: flex; align-items: center; gap: 12px; }
.fx-upl-file {
  flex: none;
  width: 38px; height: 46px;
  border: 1.5px solid var(--line-soft);
  border-radius: 7px;
  position: relative;
  background: var(--bg-card);
}
.fx-upl-file::before {
  content: "";
  position: absolute; inset: 9px 7px auto 7px;
  height: 3px; border-radius: 2px; background: var(--line-soft);
  box-shadow: 0 7px 0 var(--line-soft), 0 14px 0 var(--line-soft);
}
.fx-upl-bar {
  flex: 1;
  height: 8px; border-radius: 6px;
  background: var(--line-soft);
  overflow: hidden;
  position: relative;
}
.fx-upl-bar i {
  position: absolute; inset: 0 auto 0 0;
  width: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--accent), var(--violet));
  transform-origin: left center;
}
@keyframes fx-uplFill { 0% { transform: scaleX(0); } 55%, 100% { transform: scaleX(1); } }
.fx-upl-bar i { animation: fx-uplFill 6s ease-in-out infinite; }
.fx-upl-lock {
  flex: none;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  color: var(--ink-mute);
}
.fx-upl-lock svg { width: 17px; height: 17px; }
@keyframes fx-uplLock {
  0%, 52% { color: var(--ink-mute); background: var(--accent-soft); box-shadow: none; }
  62%, 92% { color: var(--emerald); background: rgba(16, 185, 129, 0.12); box-shadow: 0 0 18px rgba(16, 185, 129, 0.3); }
  100% { color: var(--ink-mute); background: var(--accent-soft); }
}
.fx-upl-lock { animation: fx-uplLock 6s ease-in-out infinite; }
.fx-upl-meta { margin-top: 14px; }
.fx-upl-meta .ln { margin-top: 8px; }

/* ── DEMO 11: fragment anahtar (linkin icinde) ── */
.fx-frag {
  width: min(330px, 100%);
  text-align: center;
}
.fx-fragchip {
  display: flex;
  align-items: center;
  border: 1px dashed var(--line-soft);
  border-radius: 100px;
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-mute);
  justify-content: center;
  gap: 2px;
  white-space: nowrap;
}
.fx-fragchip .fragkey {
  color: var(--violet);
  font-weight: 700;
}
@keyframes fx-fragGlow {
  0%, 35% { text-shadow: none; }
  50%, 85% { text-shadow: 0 0 14px rgba(167, 139, 250, 0.9); }
  100% { text-shadow: none; }
}
.fx-fragchip .fragkey { animation: fx-fragGlow 5s ease-in-out infinite; }
.fx-frag-note {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}
.fx-frag-note .no-eye {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--line-soft);
  position: relative;
}
.fx-frag-note .no-eye::before {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 7px; height: 7px; border-radius: 50%;
  border: 1.5px solid var(--ink-mute);
  transform: translate(-50%, -50%);
}
.fx-frag-note .no-eye::after {
  content: "";
  position: absolute; left: 2px; top: 50%;
  width: 15px; height: 1.5px;
  background: var(--ink-mute);
  transform: rotate(-38deg);
}

/* ── DEMO 12: dosya karolari (tasima) ── */
.fx-tiles {
  width: min(300px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.fx-tile {
  aspect-ratio: 1;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--bg-elev);
  position: relative;
}
.fx-tile::before {
  content: "";
  position: absolute; inset: auto 12px 12px 12px;
  height: 5px; border-radius: 3px;
  background: var(--line-soft);
}
.fx-tile::after {
  content: "";
  position: absolute; inset: 12px auto auto 12px;
  width: 16px; height: 13px; border-radius: 4px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
}
@keyframes fx-tileDrag {
  0%, 20% { transform: translate(0, 0); box-shadow: none; }
  35% { transform: translate(-20px, -14px) rotate(-3deg); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4); }
  55% { transform: translate(-104px, 0) rotate(0); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4); }
  70%, 100% { transform: translate(-104px, 0); box-shadow: none; }
}
.fx-tile.drag { animation: fx-tileDrag 6s ease-in-out infinite; z-index: 2; }
@keyframes fx-tileTarget {
  0%, 45% { border-color: var(--line-soft); }
  55%, 80% { border-color: var(--emerald); box-shadow: 0 0 18px rgba(16, 185, 129, 0.2); }
  100% { border-color: var(--line-soft); }
}
.fx-tile.target { animation: fx-tileTarget 6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .fx-upl-bar i, .fx-upl-lock, .fx-fragchip .fragkey, .fx-tile.drag, .fx-tile.target { animation: none; }
  .fx-upl-bar i { transform: scaleX(1); }
}

/* ── GUVENLIK: stat bandi ── */
.fx-secstats {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 5vw, 64px);
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 20px 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fx-secstat { text-align: center; }
.fx-secstat .v {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.fx-secstat .k {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}

/* ── DEMO 13: SRP (parola sunucuya gitmez) ── */
.fx-srp {
  width: min(360px, 100%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.fx-srp-box {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--bg-elev);
  padding: 16px 14px;
  text-align: center;
}
.fx-srp-box .cap {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.fx-srp-dots { display: flex; gap: 6px; justify-content: center; }
.fx-srp-dots i {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
}
.fx-srp-hash {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--emerald);
  letter-spacing: 0.06em;
  overflow: hidden;
  white-space: nowrap;
}
.fx-srp-wall {
  width: 46px;
  height: 84px;
  position: relative;
}
.fx-srp-wall::before {
  content: "";
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 3px;
  border-radius: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--violet), var(--accent));
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.5);
}
@keyframes fx-srpTravel {
  0%, 22% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(52px); opacity: 1; }
  56% { transform: translateX(58px); opacity: 0; }
  60% { transform: translateX(0); opacity: 0; }
  68%, 100% { transform: translateX(0); opacity: 1; }
}
.fx-srp-dots i { animation: fx-srpTravel 5s ease-in-out infinite; }
.fx-srp-dots i:nth-child(2) { animation-delay: 0.12s; }
.fx-srp-dots i:nth-child(3) { animation-delay: 0.24s; }
.fx-srp-dots i:nth-child(4) { animation-delay: 0.36s; }
@keyframes fx-srpHash {
  0%, 40% { opacity: 0.25; }
  55%, 90% { opacity: 1; }
  100% { opacity: 0.25; }
}
.fx-srp-hash { animation: fx-srpHash 5s ease-in-out infinite; }

/* ── DEMO 14: anahtar-kilit (E2E) ── */
.fx-keylock {
  width: min(320px, 100%);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--bg-elev);
  padding: 26px 22px;
  text-align: center;
  position: relative;
}
.fx-keylock .env {
  width: 76px; height: 54px;
  margin: 0 auto;
  border: 2px solid var(--ink-dim);
  border-radius: 8px;
  position: relative;
}
.fx-keylock .env::before {
  content: "";
  position: absolute; inset: 0;
  clip-path: polygon(0 0, 50% 55%, 100% 0);
  background: var(--accent-soft);
  border-bottom: 2px solid var(--ink-dim);
}
.fx-keylock .pad {
  position: absolute;
  left: 50%; top: 56px;
  transform: translateX(-50%);
  width: 26px; height: 20px;
  border-radius: 6px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(99, 91, 255, 0.45);
}
.fx-keylock .pad::before {
  content: "";
  position: absolute;
  left: 50%; top: -9px;
  transform: translateX(-50%);
  width: 14px; height: 12px;
  border: 3px solid var(--accent);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}
@keyframes fx-keyGo {
  0%, 20% { transform: translate(-70px, 46px) rotate(-20deg); opacity: 0; }
  32% { opacity: 1; }
  50% { transform: translate(-16px, 62px) rotate(0); opacity: 1; }
  62%, 78% { transform: translate(-12px, 62px) rotate(8deg); opacity: 1; }
  90%, 100% { transform: translate(-12px, 62px) rotate(8deg); opacity: 0; }
}
.fx-keylock .key {
  position: absolute;
  left: 50%; top: 0;
  width: 34px; height: 12px;
  color: var(--emerald);
  animation: fx-keyGo 6s ease-in-out infinite;
}
.fx-keylock .key svg { width: 100%; height: 100%; }
@keyframes fx-padOpen {
  0%, 55% { background: var(--accent); }
  66%, 90% { background: var(--emerald); box-shadow: 0 0 22px rgba(16, 185, 129, 0.55); }
  100% { background: var(--accent); }
}
.fx-keylock .pad { animation: fx-padOpen 6s ease-in-out infinite; }
.fx-keylock .cap-b {
  margin-top: 74px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ── DEMO 15: 24 kelime (BIP-39) ── */
.fx-seed {
  width: min(330px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.fx-seed i {
  height: 26px;
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  background: var(--bg-elev);
  position: relative;
  overflow: hidden;
}
.fx-seed i::before {
  content: "";
  position: absolute;
  left: 7px; right: 7px; top: 50%;
  height: 5px;
  border-radius: 3px;
  background: var(--line-soft);
  transform: translateY(-50%);
}
@keyframes fx-seedFill {
  0%, 8% { border-color: var(--line-soft); }
  12%, 88% { border-color: var(--violet); box-shadow: 0 0 10px rgba(167, 139, 250, 0.25); }
  100% { border-color: var(--line-soft); }
}
.fx-seed i { animation: fx-seedFill 8s ease-in-out infinite; }

/* ── DEMO 16: donanim anahtari ── */
.fx-hwkey {
  width: min(300px, 100%);
  text-align: center;
  position: relative;
  padding: 30px 0 10px;
}
.fx-hwring {
  width: 110px; height: 110px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px dashed var(--line-soft);
  position: relative;
}
@keyframes fx-hwRingOk {
  0%, 42% { border-color: var(--line-soft); box-shadow: none; }
  55%, 85% { border-color: var(--emerald); box-shadow: 0 0 28px rgba(16, 185, 129, 0.3); }
  100% { border-color: var(--line-soft); }
}
.fx-hwring { animation: fx-hwRingOk 6s ease-in-out infinite; }
@keyframes fx-hwTap {
  0%, 20% { transform: translate(-50%, -110px); opacity: 0; }
  35% { opacity: 1; }
  48%, 62% { transform: translate(-50%, -34px); opacity: 1; }
  80%, 100% { transform: translate(-50%, -110px); opacity: 0; }
}
.fx-hwstick {
  position: absolute;
  left: 50%; top: 50%;
  width: 30px; height: 64px;
  border-radius: 8px 8px 12px 12px;
  background: linear-gradient(180deg, var(--bg-elev), var(--line-soft));
  border: 1px solid var(--line-soft);
  animation: fx-hwTap 6s ease-in-out infinite;
}
.fx-hwstick::before {
  content: "";
  position: absolute;
  left: 50%; top: 10px;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}
@media (prefers-reduced-motion: reduce) {
  .fx-srp-dots i, .fx-srp-hash, .fx-keylock .key, .fx-keylock .pad,
  .fx-seed i, .fx-hwring, .fx-hwstick { animation: none; }
}

/* ═══════ STATUS SAYFASI ═══════ */
.st-hero { padding: 150px 0 60px; text-align: center; }
.st-ring-wrap {
  position: relative;
  width: 190px; height: 190px;
  margin: 0 auto 30px;
}
.st-ring-core {
  position: absolute; inset: 54px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.85), rgba(16, 185, 129, 0.25) 70%);
  box-shadow: 0 0 50px rgba(16, 185, 129, 0.5);
}
.st-ring-core::after {
  content: "✓";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; font-weight: 700; color: #fff;
}
@keyframes st-ripple {
  0% { transform: scale(0.42); opacity: 0.9; }
  100% { transform: scale(1.15); opacity: 0; }
}
.st-ripple {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--emerald);
  animation: st-ripple 3s ease-out infinite;
}
.st-ripple.r2 { animation-delay: 1s; }
.st-ripple.r3 { animation-delay: 2s; }
.st-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.st-hero h1 em { font-style: italic; color: var(--emerald); }
.st-hero .st-time {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

/* Servis satirlari */
.st-board {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-card);
  overflow: hidden;
}
.st-row {
  display: grid;
  grid-template-columns: 240px 1fr 90px;
  gap: 20px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}
.st-row:last-child { border-bottom: none; }
.st-svc { display: flex; align-items: center; gap: 10px; min-width: 0; }
.st-svc .nm { font-weight: 600; font-size: 14px; color: var(--ink); }
@keyframes st-dotBreath { 0%, 100% { box-shadow: 0 0 4px rgba(16,185,129,0.6); } 50% { box-shadow: 0 0 12px rgba(16,185,129,0.9); } }
.st-dot {
  flex: none;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--emerald);
  animation: st-dotBreath 2.4s ease-in-out infinite;
}
.st-bars { display: flex; gap: 2px; align-items: flex-end; height: 30px; }
.st-bars i {
  flex: 1;
  height: 100%;
  border-radius: 2px;
  background: var(--emerald);
  opacity: 0.75;
  min-width: 3px;
  transform-origin: bottom;
  animation: st-barIn 0.8s ease-out backwards;
}
@keyframes st-barIn { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.st-bars i:hover { opacity: 1; }
.st-bars i.warn { background: #f59e0b; }
.st-up {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--emerald);
  text-align: right;
}
.st-legend {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  margin-top: 12px;
}

/* Edge / PoP bandi */
.st-pops {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.st-pop {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  padding: 7px 14px;
  display: flex; align-items: center; gap: 8px;
}
.st-pop::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald);
  animation: st-dotBreath 2.4s ease-in-out infinite;
}
.st-pop:nth-child(2n)::before { animation-delay: 0.5s; }
.st-pop:nth-child(3n)::before { animation-delay: 1.1s; }

/* Gecikme grafigi */
.st-spark {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-card);
  padding: 24px;
}
.st-spark svg { width: 100%; height: 120px; display: block; }
.st-spark .grid-line { stroke: var(--line); stroke-width: 1; }
.st-spark .lat-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: st-draw 3s ease-out forwards;
}
.st-spark .lat-fill { fill: url(#latgrad); opacity: 0.35; }
@keyframes st-draw { to { stroke-dashoffset: 0; } }
.st-spark-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.st-spark-head .t { font-weight: 600; font-size: 14px; }
.st-spark-head .v { font-family: var(--mono); font-size: 12px; color: var(--accent); }

/* Olay gecmisi */
.st-inc {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-card);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.st-inc .d { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); white-space: nowrap; }
.st-inc .tt { font-weight: 600; font-size: 13.5px; color: var(--ink); }
.st-inc .ds { font-size: 13px; color: var(--ink-dim); margin-top: 4px; line-height: 1.6; }
.st-inc .tag {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.12em;
  color: var(--emerald);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 100px;
  padding: 3px 10px;
  white-space: nowrap;
}
@media (max-width: 800px) {
  .st-row { grid-template-columns: 1fr; gap: 10px; }
  .st-up { text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  .st-ripple, .st-dot, .st-pop::before, .st-bars i, .st-spark .lat-line { animation: none; }
  .st-spark .lat-line { stroke-dashoffset: 0; }
}

/* ── DEMO 17: Calendly tarzi randevu widget (el yapimi) ── */
.cald {
  width: 340px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: var(--bg-elev);
  padding: 18px 20px 20px;
  position: relative;
  overflow: hidden;
}
.cald-head { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line-soft); }
.cald-ava {
  flex: none;
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--violet));
}
.cald-head .bln { flex: 1; }
.cald-dur {
  flex: none;
  display: flex; align-items: center; gap: 6px;
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
}
.cald-dur::before {
  content: "";
  width: 10px; height: 10px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
}
.cald-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding: 16px 0 4px;
}
.cald-grid i {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent-soft);
  position: relative;
}
.cald-grid i.off { background: transparent; border: 1px solid var(--line); }
@keyframes cald-datePick {
  0%, 21% { background: var(--accent-soft); box-shadow: none; }
  26%, 92% { background: var(--accent); box-shadow: 0 0 16px rgba(99, 91, 255, 0.5); }
  100% { background: var(--accent-soft); }
}
.cald-grid i.pick { animation: cald-datePick 9s ease-in-out infinite; }
.cald-slots {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
@keyframes cald-slotsIn {
  0%, 27% { opacity: 0; transform: translateY(10px); }
  33%, 94% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; }
}
.cald-slots { animation: cald-slotsIn 9s ease-in-out infinite; }
.cald-slots span {
  flex: 1;
  height: 34px;
  border: 1px solid var(--line-soft);
  border-radius: 9px;
  position: relative;
  overflow: hidden;
}
.cald-slots span::before {
  content: "";
  position: absolute;
  left: 22%; right: 22%; top: 50%;
  height: 6px; border-radius: 4px;
  transform: translateY(-50%);
  background: var(--line-soft);
}
@keyframes cald-slotPick {
  0%, 51% { border-color: var(--line-soft); background: transparent; }
  57%, 92% { border-color: var(--accent); background: var(--accent-soft); }
  100% { border-color: var(--line-soft); }
}
.cald-slots span.pick { animation: cald-slotPick 9s ease-in-out infinite; }
@keyframes cald-ok {
  0%, 60% { opacity: 0; transform: scale(0.4); }
  67%, 90% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; }
}
.cald-ok {
  position: absolute;
  right: 14px; bottom: 12px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--emerald);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
  animation: cald-ok 9s ease-in-out infinite;
}
@keyframes cald-cursor {
  0%, 8% { transform: translate(258px, 210px); opacity: 0; }
  14% { opacity: 1; }
  20% { transform: translate(148px, 132px); }
  24% { transform: translate(148px, 132px) scale(0.82); }
  28% { transform: translate(148px, 132px) scale(1); }
  46% { transform: translate(160px, 232px); }
  52% { transform: translate(160px, 232px) scale(0.82); }
  56%, 62% { transform: translate(160px, 232px) scale(1); opacity: 1; }
  70%, 100% { transform: translate(258px, 260px); opacity: 0; }
}
.cald-cursor {
  position: absolute;
  left: 0; top: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(99, 91, 255, 0.35);
  animation: cald-cursor 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}
@media (prefers-reduced-motion: reduce) {
  .cald-grid i.pick, .cald-slots, .cald-slots span.pick, .cald-ok, .cald-cursor { animation: none; }
  .cald-slots { opacity: 1; }
}

/* cald: onay toast'u (Calendly hero hissi) */
@keyframes cald-toastIn {
  0%, 60% { opacity: 0; transform: translateY(26px) scale(0.95); }
  68%, 92% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(26px) scale(0.95); }
}
.cald-toast {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: min(300px, 80%);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(16, 185, 129, 0.45);
  border-radius: 12px;
  background: var(--bg-elev);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  padding: 12px 14px;
  z-index: 4;
}
.cald-toast-wrap { animation: cald-toastIn 9s ease-in-out infinite; position: absolute; inset: 0; pointer-events: none; }
.cald-toast .ic {
  flex: none;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--emerald);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.cald-toast .bln { flex: 1; }
.cald-toast .ln { margin-top: 0; }
.cald-toast .ln + .ln { margin-top: 7px; }
@media (prefers-reduced-motion: reduce) { .cald-toast-wrap { animation: none; opacity: 0; } }

/* ── DEMO 18: kisi karti (zengin rehber) ── */
.fx-person {
  width: min(330px, 100%);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--bg-elev);
  padding: 20px;
}
.fx-person-head { display: flex; gap: 14px; align-items: center; }
.fx-person-ava {
  flex: none;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  position: relative;
}
@keyframes fx-cakeGlow {
  0%, 60% { opacity: 0; transform: scale(0.5); }
  70%, 92% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; }
}
.fx-person-ava::after {
  content: "";
  position: absolute;
  right: -4px; bottom: -4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--emerald);
  border: 2px solid var(--bg-elev);
  animation: fx-cakeGlow 7s ease-in-out infinite;
}
.fx-person-rows { margin-top: 16px; display: grid; gap: 12px; }
.fx-person-row { display: flex; gap: 10px; align-items: center; }
.fx-person-row .ic {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 7px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.fx-person-row .ic svg { width: 13px; height: 13px; }
.fx-person-row .ln { flex: 1; margin-top: 0; }
@keyframes fx-rowIn {
  0%, 8% { opacity: 0; transform: translateX(-8px); }
  14%, 100% { opacity: 1; transform: translateX(0); }
}
.fx-person-row { animation: fx-rowIn 7s ease-out infinite; }
.fx-person-row:nth-child(2) { animation-delay: 0.35s; }
.fx-person-row:nth-child(3) { animation-delay: 0.7s; }
.fx-person-row:nth-child(4) { animation-delay: 1.05s; }

/* ── DEMO 19: vcard tasima ── */
.fx-vcf { width: min(320px, 100%); text-align: center; position: relative; }
.fx-vcf-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px dashed var(--accent);
  border-radius: 100px;
  padding: 9px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  background: var(--accent-soft);
}
@keyframes fx-vcfDrop {
  0%, 12% { transform: translateY(-34px); opacity: 0; }
  22% { opacity: 1; }
  34%, 100% { transform: translateY(0); opacity: 1; }
}
.fx-vcf-chip { animation: fx-vcfDrop 7s ease-out infinite; }
.fx-vcf-list { margin-top: 18px; display: grid; gap: 9px; }
.fx-vcf-list .fx-vcf-row {
  display: flex; gap: 10px; align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: var(--bg-elev);
  padding: 9px 12px;
}
.fx-vcf-row .dotava {
  flex: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  opacity: 0.85;
}
.fx-vcf-row .ln { flex: 1; margin-top: 0; }
@keyframes fx-vcfRow {
  0%, 30% { opacity: 0; transform: scale(0.96); }
  38%, 100% { opacity: 1; transform: scale(1); }
}
.fx-vcf-list .fx-vcf-row { animation: fx-vcfRow 7s ease-out infinite; }
.fx-vcf-list .fx-vcf-row:nth-child(2) { animation-delay: 0.4s; }
.fx-vcf-list .fx-vcf-row:nth-child(3) { animation-delay: 0.8s; }

/* ── DEMO 20: yazarken hatirlar (autocomplete) ── */
.fx-auto { width: min(320px, 100%); }
.fx-auto-input {
  border: 1px solid var(--accent);
  border-radius: 10px;
  background: var(--bg-elev);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.fx-auto-input .ln { width: 34%; margin-top: 0; }
@keyframes fx-caretB { 0%, 45% { opacity: 1; } 50%, 95% { opacity: 0; } 100% { opacity: 1; } }
.fx-auto-input .caret {
  width: 2px; height: 15px;
  background: var(--accent);
  animation: fx-caretB 1s steps(1) infinite;
}
.fx-auto-drop {
  margin-top: 8px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--bg-elev);
  overflow: hidden;
}
.fx-auto-row {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}
.fx-auto-row:last-child { border-bottom: none; }
.fx-auto-row .dotava {
  flex: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--violet));
}
.fx-auto-row .ln { flex: 1; margin-top: 0; }
@keyframes fx-autoPick {
  0%, 40% { background: transparent; }
  50%, 88% { background: var(--accent-soft); }
  100% { background: transparent; }
}
.fx-auto-row.pick { animation: fx-autoPick 6s ease-in-out infinite; }
@keyframes fx-autoDropIn {
  0%, 18% { opacity: 0; transform: translateY(6px); }
  26%, 96% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; }
}
.fx-auto-drop { animation: fx-autoDropIn 6s ease-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .fx-person-ava::after, .fx-person-row, .fx-vcf-chip, .fx-vcf-list .fx-vcf-row,
  .fx-auto-input .caret, .fx-auto-row.pick, .fx-auto-drop { animation: none; }
}

/* ═══════════ BIO SAYFASI DEMOLARI ═══════════ */

/* ── BIO DEMO 1 (hero): mini telefon, ikon sırası + bloklar (dil yok) ── */
.fx-bp {
  width: 250px;
  border: 6px solid #0b0d13;
  border-radius: 44px;
  background: #0b0d13;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
  margin: 0 auto;
}
.fx-bp-notch {
  position: absolute;
  top: 11px; left: 50%;
  transform: translateX(-50%);
  width: 84px; height: 23px;
  border-radius: 999px;
  background: #000;
  z-index: 2;
}
.fx-bp-screen {
  border-radius: 38px;
  height: 470px;
  overflow: hidden;
  padding: 48px 16px 20px;
  background:
    radial-gradient(120% 70% at 50% 0%, var(--accent-soft), transparent 60%),
    var(--bg-elev);
}
.fx-bp-ava {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  margin: 0 auto 10px;
}
.fx-bp .ln { margin-left: auto; margin-right: auto; }
.fx-bp-icons { display: flex; justify-content: center; gap: 7px; margin: 14px 0 4px; }
.fx-bp-icons span {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--line-soft);
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-dim);
}
.fx-bp-icons svg { width: 11px; height: 11px; }
@keyframes fx-bpIconPop {
  0%, 8% { transform: scale(0); opacity: 0; }
  14%, 86% { transform: scale(1); opacity: 1; }
  94%, 100% { transform: scale(0); opacity: 0; }
}
.fx-bp-icons span { animation: fx-bpIconPop 7s ease-in-out infinite; }
.fx-bp-icons span:nth-child(2) { animation-delay: 0.12s; }
.fx-bp-icons span:nth-child(3) { animation-delay: 0.24s; }
.fx-bp-icons span:nth-child(4) { animation-delay: 0.36s; }
.fx-bp-icons span:nth-child(5) { animation-delay: 0.48s; }
.fx-bp-icons span:nth-child(6) { animation-delay: 0.6s; }
.fx-bp-btn {
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  background: var(--bg-card);
  height: 34px;
  margin-top: 10px;
  display: flex; align-items: center; justify-content: center;
}
.fx-bp-btn .ln { margin-top: 0; height: 7px; }
.fx-bp-btn.accent { background: var(--accent-soft); border-color: var(--accent); }
@keyframes fx-bpTap {
  0%, 42%, 100% { transform: scale(1); }
  47% { transform: scale(0.96); }
  52% { transform: scale(1); }
}
.fx-bp-btn.accent { animation: fx-bpTap 7s ease-in-out infinite; }

/* ── BIO DEMO 2: e-posta adi → bio adresi (dil yok) ── */
.fx-bioaddr { width: min(320px, 100%); display: grid; gap: 14px; justify-items: center; }
.fx-bioaddr-chip {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--bg-elev);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.fx-bioaddr-chip .ic {
  flex: none;
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.fx-bioaddr-chip .ic svg { width: 15px; height: 15px; }
.fx-bioaddr-chip .ln { flex: 1; margin-top: 0; }
.fx-bioaddr-arrow { color: var(--ink-dim); }
.fx-bioaddr-arrow svg { width: 20px; height: 20px; }
@keyframes fx-bioAddrGlow {
  0%, 45%, 100% { border-color: var(--line-soft); box-shadow: none; }
  60%, 80% { border-color: var(--accent); box-shadow: 0 8px 30px var(--accent-soft); }
}
.fx-bioaddr-chip.out { animation: fx-bioAddrGlow 6s ease-in-out infinite; }

/* ── BIO DEMO 3: sosyal ikon sirasi buyuk (dil yok) ── */
.fx-bioicons {
  display: grid;
  grid-template-columns: repeat(5, 46px);
  gap: 12px;
}
.fx-bioicons span {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-soft);
  background: var(--bg-elev);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.fx-bioicons svg { width: 20px; height: 20px; }
@keyframes fx-bioIconWave {
  0%, 100% { transform: translateY(0); border-color: var(--line-soft); }
  50% { transform: translateY(-6px); border-color: var(--accent); }
}
.fx-bioicons span { animation: fx-bioIconWave 4.5s ease-in-out infinite; }
.fx-bioicons span:nth-child(2) { animation-delay: 0.15s; }
.fx-bioicons span:nth-child(3) { animation-delay: 0.3s; }
.fx-bioicons span:nth-child(4) { animation-delay: 0.45s; }
.fx-bioicons span:nth-child(5) { animation-delay: 0.6s; }
.fx-bioicons span:nth-child(6) { animation-delay: 0.75s; }
.fx-bioicons span:nth-child(7) { animation-delay: 0.9s; }
.fx-bioicons span:nth-child(8) { animation-delay: 1.05s; }
.fx-bioicons span:nth-child(9) { animation-delay: 1.2s; }
.fx-bioicons span:nth-child(10) { animation-delay: 1.35s; }

/* ── BIO DEMO 4: blok yigini + gomme kutusu (dil yok) ── */
.fx-bioblocks { width: min(300px, 100%); }
.fx-bioblocks .fx-bp-btn { height: 40px; border-radius: 12px; }
.fx-bioembed {
  margin-top: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--bg-elev);
  aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-dim);
}
.fx-bioembed .play {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.fx-bioembed .play svg { width: 16px; height: 16px; margin-left: 2px; }
@keyframes fx-bioPlayPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-soft); }
  50% { box-shadow: 0 0 0 12px transparent; }
}
.fx-bioembed .play { animation: fx-bioPlayPulse 3.5s ease-in-out infinite; }

/* ── BIO DEMO 5: anonim sayac cubuklari (dil yok) ── */
.fx-biostats {
  width: min(300px, 100%);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--bg-elev);
  padding: 22px 20px 16px;
}
.fx-biostats-bars {
  display: flex; align-items: flex-end; gap: 8px;
  height: 90px;
}
.fx-biostats-bars i {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-bottom: none;
  transform-origin: bottom;
}
@keyframes fx-bioBarGrow {
  0%, 10% { transform: scaleY(0.2); }
  40%, 85% { transform: scaleY(1); }
  100% { transform: scaleY(0.2); }
}
.fx-biostats-bars i { animation: fx-bioBarGrow 6s ease-in-out infinite; }
.fx-biostats-bars i:nth-child(1) { height: 34%; }
.fx-biostats-bars i:nth-child(2) { height: 52%; animation-delay: 0.1s; }
.fx-biostats-bars i:nth-child(3) { height: 44%; animation-delay: 0.2s; }
.fx-biostats-bars i:nth-child(4) { height: 70%; animation-delay: 0.3s; }
.fx-biostats-bars i:nth-child(5) { height: 58%; animation-delay: 0.4s; }
.fx-biostats-bars i:nth-child(6) { height: 88%; animation-delay: 0.5s; }
.fx-biostats-bars i:nth-child(7) { height: 76%; animation-delay: 0.6s; }
.fx-biostats-foot { display: flex; gap: 10px; align-items: center; margin-top: 14px; }
.fx-biostats-foot .ic {
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.fx-biostats-foot .ic svg { width: 14px; height: 14px; }
.fx-biostats-foot .ln { flex: 1; margin-top: 0; }

@media (prefers-reduced-motion: reduce) {
  .fx-bp-icons span, .fx-bp-btn.accent, .fx-bioaddr-chip.out,
  .fx-bioicons span, .fx-bioembed .play, .fx-biostats-bars i { animation: none; }
}

/* BIO mağaza demo */
.fx-store{display:grid;grid-template-columns:1fr 1fr;gap:14px;width:min(340px,100%)}
.fx-store-card{background:var(--bg-card);border:1px solid var(--line);border-radius:14px;padding:12px;display:flex;flex-direction:column;gap:8px}
.fx-store-card .im{aspect-ratio:4/3;border-radius:9px;background:linear-gradient(135deg,rgba(99,91,255,.35),rgba(0,212,255,.18))}
.fx-store-card .im.g2{background:linear-gradient(135deg,rgba(167,139,250,.4),rgba(99,91,255,.15))}
.fx-store-card .im.g3{background:linear-gradient(135deg,rgba(0,212,255,.3),rgba(167,139,250,.2))}
.fx-store-card .im.g4{background:linear-gradient(135deg,rgba(16,185,129,.28),rgba(99,91,255,.18))}
.fx-store-card .fiyat{font-family:var(--mono);font-size:13px;color:var(--accent);font-weight:600}

.pk-soon{font-size:10.5px;text-transform:uppercase;letter-spacing:.07em;color:var(--accent);white-space:nowrap}

/* ─── SSS (Sık sorulanlar) kartı — özellik sayfaları ─── */
.card-sss{padding:90px 0 110px}
.card-sss h2{text-align:center;font-size:clamp(26px,3.2vw,34px);margin:0 0 30px}
.card-sss .sss-item{max-width:820px;margin:0 auto 12px;border:1px solid var(--line);border-radius:14px;background:var(--bg-card);overflow:hidden}
.card-sss .sss-item summary{cursor:pointer;list-style:none;padding:18px 22px;display:flex;justify-content:space-between;align-items:center;gap:14px}
.card-sss .sss-item summary::-webkit-details-marker{display:none}
.card-sss .sss-item summary::after{content:"+";font-size:1.3rem;color:var(--ink-dim);flex:none;transition:transform .2s}
.card-sss .sss-item[open] summary::after{transform:rotate(45deg)}
.card-sss .sss-item summary h3{font-family:var(--sans);font-size:1.02rem;font-weight:600;margin:0;line-height:1.45;text-align:left}
.card-sss .sss-item p{margin:0;padding:0 22px 20px;line-height:1.65;color:var(--ink-dim)}
.card-sss .sss-item p a{color:inherit;text-decoration:underline}

/* ─── Metin içi bağlamsal linkler (SEO iç link deseni) ─── */
.section-sub a,.vault-text a,.fx-copy a,.fx-undo a,.feature p a,.fx-tierline a,.fx-cta p a,.final-cta p a{color:inherit;text-decoration:underline;text-underline-offset:3px}
.section-sub a:hover,.vault-text a:hover,.fx-copy a:hover,.fx-undo a:hover,.feature p a:hover,.fx-tierline a:hover,.fx-cta p a:hover,.final-cta p a:hover{color:var(--ink)}
