/* ============================================================
   ANALIZ.HTML — Page-specific premium styles
   Inherits design tokens from style.css
   ============================================================ */

.page-analiz {
  background: var(--canvas);
  color: var(--ink);
  min-height: 100vh;
  padding-top: 60px;
  overflow-x: hidden;
}

.page-analiz::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(255,94,58,0.16), transparent 60%),
    radial-gradient(800px 550px at 85% 30%, rgba(140,90,220,0.14), transparent 60%),
    radial-gradient(700px 500px at 50% 95%, rgba(60,120,220,0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: auroraDrift 26s ease-in-out infinite alternate;
}

/* ---------- Top minibar ---------- */
.anbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 40px);
  background: rgba(10, 10, 18, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.anbar__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  padding: 6px 10px 6px 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.anbar__back svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease-spring); }
.anbar__back:hover { color: var(--ink); border-color: var(--accent); }
.anbar__back:hover svg { transform: translateX(-3px); }

.anbar__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.anbar__logo small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.34em;
  font-weight: 600;
  color: var(--muted-2);
  margin-top: 1px;
}
.anbar__logo-mark {
  width: 30px; height: 30px;
  color: var(--ink);
  display: inline-flex;
}
.anbar__logo-mark svg { width: 100%; height: 100%; border-radius: 8px; }

.anbar__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted-2);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(60,210,140,0.08), rgba(60,210,140,0.02));
}
.anbar__pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #5ee0a0;
  box-shadow: 0 0 0 3px rgba(94,224,160,0.22), 0 0 10px rgba(94,224,160,0.5);
  animation: livePulse 1.8s ease-in-out infinite;
}
@media (max-width: 640px) {
  .anbar__status { display: none; }
}

/* ---------- Page container ---------- */
.anpage {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
}
.ancontainer {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.anstage[hidden] { display: none !important; }
.anstage {
  animation: stageIn 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes stageIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Hero block (form page) ---------- */
.anhero {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.anhero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 22px;
}
.anhero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,94,58,0.2), 0 0 10px rgba(255,94,58,0.55);
  animation: livePulse 2s ease-in-out infinite;
}
.anhero__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 18px;
  max-width: 760px;
  margin-inline: auto;
}
.anhero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: #ff8b5e;
  filter: drop-shadow(0 2px 14px rgba(255,94,58,0.4));
}
.anhero__sub {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.55;
  color: var(--muted-2);
  max-width: 660px;
  margin-inline: auto;
}
.anhero__sub strong { color: var(--ink); font-weight: 600; }

.antrust {
  list-style: none;
  margin: 24px auto 0;
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  justify-content: center;
}
.antrust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.antrust li svg {
  width: 14px; height: 14px;
  color: #5ee0a0;
  flex-shrink: 0;
}

/* ---------- Form ---------- */
.anform {
  background: linear-gradient(180deg, rgba(22,22,31,0.85), rgba(17,17,28,0.6));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 32px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 1px 2px rgba(0,0,0,0.3),
    0 24px 56px -16px rgba(0,0,0,0.55),
    0 12px 28px -10px rgba(255,94,58,0.18);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  position: relative;
  overflow: hidden;
}
.anform::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,94,58,0.4) 30%, rgba(140,90,220,0.4) 50%, rgba(255,94,58,0.4) 70%, transparent);
}
.anform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 640px) {
  .anform__row { grid-template-columns: 1fr; gap: 12px; }
}
.anfield {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.anfield__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.anfield__label em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}
.anfield input,
.anfield select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  color: var(--ink);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-2);
  border-radius: 11px;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  letter-spacing: -0.005em;
}
.anfield input::placeholder { color: var(--muted); }
.anfield input:focus,
.anfield select:focus {
  outline: none;
  border-color: rgba(255,94,58,0.55);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(255,94,58,0.16);
}
.anfield select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 6l4 4 4-4' stroke='%23a8a8ba' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.anfield select option {
  background: #1a1a28;
  color: var(--ink);
}
.anfield__prefix {
  display: flex;
  align-items: stretch;
  position: relative;
}
.anfield__prefix .anfield__pre {
  display: inline-flex;
  align-items: center;
  padding: 0 0 0 16px;
  position: absolute;
  left: 0; top: 0; bottom: 0;
  color: var(--muted-2);
  font-weight: 500;
  pointer-events: none;
}
.anfield__prefix input { padding-left: 32px; }

.anform__legal {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px dashed var(--line-2);
  border-radius: 10px;
  font-size: 0.8rem;
  color: var(--muted-2);
  letter-spacing: -0.005em;
  margin-top: 4px;
  margin-bottom: 18px;
}
.anform__legal svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.anform__legal strong { color: var(--ink); font-weight: 600; }

/* Form hatası: butondan farklı, dikkat çekici, okunaklı uyarı kutusu */
.anform__error {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 14px 0 2px;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: #5af0a8;
  background: rgba(60, 224, 160, 0.13);
  border: 1px solid rgba(60, 224, 160, 0.5);
  border-left: 4px solid #34e89e;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(60,224,160,0.08), 0 10px 26px -12px rgba(60,224,160,0.45);
  animation: errIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.anform__error[hidden] { display: none; }
.anform__error::before {
  content: "!";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #06120c;
  background: #34e89e;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(60,224,160,0.6);
}
@keyframes errIn {
  0% { opacity: 0; transform: translateY(-8px); }
  60% { transform: translateY(2px); }
  100% { opacity: 1; transform: translateY(0); }
}

.anform__meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.76rem;
  color: var(--muted);
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.anbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform 0.4s var(--ease-spring), background 0.35s, box-shadow 0.45s, color 0.3s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
}
.anbtn svg { width: 14px; height: 14px; transition: transform 0.5s var(--ease-spring); }
.anbtn:hover svg:last-child { transform: translateX(4px); }
.anbtn--primary {
  background: linear-gradient(180deg, #ff8b5e 0%, #ff5e3a 55%, #c8341a 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -1px 0 rgba(0,0,0,0.25),
    0 2px 4px rgba(0,0,0,0.4),
    0 14px 32px -10px rgba(255,94,58,0.55),
    0 6px 16px -4px rgba(0,0,0,0.45);
  width: 100%;
}
.anbtn--primary:hover {
  background: linear-gradient(180deg, #ffa078 0%, #ff7048 55%, #d8442a 100%);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -1px 0 rgba(0,0,0,0.3),
    0 2px 4px rgba(0,0,0,0.45),
    0 22px 48px -10px rgba(255,94,58,0.7),
    0 12px 24px -4px rgba(0,0,0,0.55);
}
.anbtn--primary:active { transform: translateY(0); }
.anbtn--lg { padding: 16px 30px; font-size: 1rem; }
.anbtn--ghost {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.anbtn--ghost:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border-color: var(--accent);
}
.anbtn__ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
}
.anbtn__ic svg { width: 100%; height: 100%; }

/* ============================================================
   STAGE 2 — LOADING
   ============================================================ */
.anloader {
  display: grid;
  gap: 24px;
  padding: 36px clamp(20px, 3vw, 36px);
  background: linear-gradient(180deg, rgba(22,22,31,0.92), rgba(14,14,24,0.75));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 1px 2px rgba(0,0,0,0.4),
    0 32px 64px -16px rgba(0,0,0,0.6),
    0 16px 32px -10px rgba(255,94,58,0.22);
  position: relative;
  overflow: hidden;
}
.anloader::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from var(--grad-angle, 0deg),
    rgba(255,94,58,0.4),
    transparent 25%,
    transparent 75%,
    rgba(255,94,58,0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  border-radius: inherit;
  animation: spinBorder 8s linear infinite;
  pointer-events: none;
  opacity: 0.7;
}

.anloader__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.anloader__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ff5e3a;
  box-shadow: 0 0 0 4px rgba(255,94,58,0.18), 0 0 16px rgba(255,94,58,0.7);
  animation: livePulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
.anloader__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.anloader__sub {
  margin-left: auto;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  font-feature-settings: "tnum";
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}

/* Visual scanner */
.anloader__viz {
  position: relative;
  height: 120px;
  border-radius: 14px;
  background: radial-gradient(circle at 50% 50%, rgba(255,94,58,0.18), rgba(10,10,18,0.6) 70%);
  overflow: hidden;
  border: 1px solid var(--line);
}
.anloader__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255,94,58,0.45) 50%, transparent 100%);
  height: 30%;
  animation: anScan 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes anScan {
  0%, 100% { transform: translateY(-30%); opacity: 0.7; }
  50% { transform: translateY(330%); opacity: 1; }
}
.anloader__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,245,250,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,245,250,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black, transparent 90%);
}
.anloader__core {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.anloader__core svg {
  width: 90px; height: 90px;
  animation: spinSlow 8s linear infinite;
}
.anloader__core .anloader__ring {
  animation: ringFlow 2.5s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes ringFlow { to { stroke-dashoffset: -176; } }

/* Progress bar */
.anloader__progress {
  display: flex;
  align-items: center;
  gap: 14px;
}
.anloader__bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.anloader__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff5e3a 0%, #ff8b5e 50%, #b585ff 100%);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(255,94,58,0.6);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.anloader__fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 1.5s linear infinite;
}
@keyframes shimmer {
  to { transform: translateX(100%); }
}
.anloader__pct {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-feature-settings: "tnum";
  min-width: 52px;
  text-align: right;
}

/* Steps */
.anloader__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 280px;
  overflow: hidden;
  position: relative;
}
.anloader__step {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.86rem;
  color: var(--muted);
  letter-spacing: -0.005em;
  transition: all 0.5s var(--ease-smooth);
  opacity: 0;
  transform: translateY(8px);
  animation: stepFade 0.5s var(--ease-smooth) forwards;
}
.anloader__step.is-active {
  background: linear-gradient(180deg, rgba(255,94,58,0.10), rgba(255,94,58,0.04));
  border-color: rgba(255,94,58,0.42);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(255,94,58,0.18), 0 8px 18px -6px rgba(255,94,58,0.32);
}
.anloader__step.is-done {
  background: linear-gradient(180deg, rgba(60,210,140,0.06), rgba(60,210,140,0.02));
  border-color: rgba(60,210,140,0.22);
  color: var(--ink-2);
}
.anloader__step .step-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: all 0.3s;
}
.anloader__step.is-active .step-ic {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 12px rgba(255,94,58,0.5);
  animation: pulseRing 1.6s ease-in-out infinite;
}
@keyframes pulseRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,94,58,0.4), 0 0 12px rgba(255,94,58,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(255,94,58,0), 0 0 18px rgba(255,94,58,0.7); }
}
.anloader__step.is-done .step-ic {
  background: linear-gradient(135deg, #5ee0a0, #3cb87a);
  color: #050508;
}
.anloader__step .step-ic .step-tick { display: none; }
.anloader__step.is-done .step-ic .step-tick { display: inline-block; }
.anloader__step.is-done .step-ic .step-num { display: none; }
.anloader__step .step-meta {
  font-size: 0.72rem;
  color: var(--muted);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}

.anloader__step:nth-child(1) { animation-delay: 0s; }
.anloader__step:nth-child(2) { animation-delay: 0.08s; }
.anloader__step:nth-child(3) { animation-delay: 0.16s; }
.anloader__step:nth-child(4) { animation-delay: 0.24s; }
.anloader__step:nth-child(5) { animation-delay: 0.32s; }
.anloader__step:nth-child(6) { animation-delay: 0.40s; }
.anloader__step:nth-child(7) { animation-delay: 0.48s; }
.anloader__step:nth-child(8) { animation-delay: 0.56s; }
.anloader__step:nth-child(9) { animation-delay: 0.64s; }
.anloader__step:nth-child(10) { animation-delay: 0.72s; }
@keyframes stepFade {
  to { opacity: 1; transform: translateY(0); }
}

.anloader__live {
  font-family: 'Geist', monospace;
  font-size: 0.78rem;
  color: var(--muted-2);
  padding: 10px 14px;
  background: rgba(0,0,0,0.35);
  border-left: 2px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   STAGE 3 — RESULTS
   ============================================================ */
.anresult__head {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.anresult__eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #5ee0a0;
  background: linear-gradient(180deg, rgba(60,210,140,0.12), rgba(60,210,140,0.04));
  border: 1px solid rgba(60,210,140,0.32);
  border-radius: 999px;
  margin-bottom: 22px;
}
.anresult__eye .anhero__dot {
  background: #5ee0a0;
  box-shadow: 0 0 0 3px rgba(94,224,160,0.22), 0 0 10px rgba(94,224,160,0.55);
}
.anresult__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 18px;
}
.anresult__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: #ff8b5e;
  filter: drop-shadow(0 2px 14px rgba(255,94,58,0.4));
}
.anresult__sub {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--muted-2);
  max-width: 640px;
  margin-inline: auto;
}

/* Score card */
.anscore {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  padding: 28px;
  background: linear-gradient(160deg, rgba(22,22,31,0.92) 0%, rgba(17,17,28,0.78) 100%);
  border: 1px solid var(--line-2);
  border-radius: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 24px 48px -16px rgba(0,0,0,0.55),
    0 12px 28px -10px rgba(255,94,58,0.22);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.anscore::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
@media (max-width: 720px) {
  .anscore { grid-template-columns: 1fr; }
}
.anscore__main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 20px;
  border-right: 1px solid var(--line);
}
@media (max-width: 720px) {
  .anscore__main { padding-right: 0; border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
}
.anscore__label {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.anscore__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-feature-settings: "tnum";
}
.anscore__num small {
  font-size: 0.42em;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
/* Skor karşılaştırması: Siz vs Sektör ortalaması */
.anscore__vs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.anscore__vs-row {
  display: grid;
  grid-template-columns: 74px 1fr 36px;
  align-items: center;
  gap: 12px;
}
.anscore__vs-key {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted-2);
}
.anscore__vs-row--you .anscore__vs-key { color: var(--ink-2); }
.anscore__vs-track {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.anscore__vs-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.anscore__vs-fill.is-you {
  background: linear-gradient(90deg, #ff5e3a 0%, #ff8b5e 100%);
  box-shadow: 0 0 12px rgba(255,94,58,0.45);
}
.anscore__vs-fill.is-avg {
  background: linear-gradient(90deg, rgba(150,158,176,0.65), rgba(190,198,214,0.9));
}
.anscore__vs-val {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  text-align: right;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-feature-settings: "tnum";
}
.anscore__vs-row--you .anscore__vs-val { color: #ff8b5e; }
.anscore__gap {
  margin: 12px 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #ff8b5e;
}
.anscore__verdict {
  font-size: 0.88rem;
  color: var(--ink-2);
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: -0.01em;
}
.anscore__sub {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.anscore__sub li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.anscore__sub li:last-child { border-bottom: none; }
.anscore__sub-label {
  font-size: 0.84rem;
  color: var(--ink-2);
}
.anscore__sub-val {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  font-feature-settings: "tnum";
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.anscore__sub-val small { color: var(--muted); font-size: 0.7em; }
.anscore__sub-val.is-bad { color: #ff8b5e; }
.anscore__sub-val.is-mid { color: #ffb45a; }
.anscore__sub-val.is-ok { color: #5ee0a0; }

/* Block (weaknesses / opportunities / cases / projection) */
.anblock {
  background: linear-gradient(180deg, rgba(22,22,31,0.85) 0%, rgba(17,17,28,0.55) 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.anblock::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--bar, var(--accent)), transparent);
  opacity: 0.7;
}
.anblock--bad { --bar: #ff6a4d; }
.anblock--good { --bar: #4fd99a; }
.anblock--cases { --bar: #ff8b5e; }
.anblock--projection { --bar: #ff8b5e; }

.anblock__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 2px solid var(--bar, var(--accent));
}
.anblock__head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin: 4px 0 0;
}
.anblock__head h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: #ff8b5e;
}
.anblock__eye {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--bar, var(--muted-2));
  text-transform: uppercase;
  margin-bottom: 3px;
}

.anblock__list {
  list-style: none;
  counter-reset: ali;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.anblock__list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 4px 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 12px;
  position: relative;
  counter-increment: ali;
  transition: transform 0.35s, border-color 0.35s, background 0.35s;
}
.anblock__list li > .item-title,
.anblock__list li > .item-desc,
.anblock__list li > .item-meta { grid-column: 2; }
.anblock__list li:hover {
  transform: translateX(3px);
  border-color: rgba(255,94,58,0.25);
  background: rgba(255,255,255,0.04);
}
.anblock__list li::before {
  content: counter(ali, decimal-leading-zero);
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  width: 32px;
  height: 28px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--bar, var(--accent));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding-top: 1px;
  font-feature-settings: "tnum";
}
.anblock__list li .item-title {
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.005em;
  margin-bottom: 4px;
  display: block;
}
.anblock__list li .item-desc {
  font-size: 0.86rem;
  color: var(--muted-2);
  line-height: 1.55;
  letter-spacing: -0.005em;
}
.anblock__list li .item-desc strong {
  color: var(--ink);
  font-weight: 600;
}
.anblock__list li .item-meta {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--bar, var(--accent));
  letter-spacing: 0.04em;
  margin-top: 6px;
  padding: 3px 9px;
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Cases */
.ancases {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
@media (max-width: 720px) {
  .ancases { grid-template-columns: 1fr; }
}
.ancase {
  padding: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--line-2);
  border-radius: 14px;
  position: relative;
}
.ancase__brand {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.ancase__metric {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #ff8b5e;
  font-feature-settings: "tnum";
  margin-bottom: 8px;
}
.ancase__metric small { font-size: 0.5em; color: var(--muted); margin-left: 4px; }
.ancase__desc {
  font-size: 0.82rem;
  color: var(--ink-2);
  line-height: 1.45;
}

/* Projection */
.anproj {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 4px;
}
@media (max-width: 720px) {
  .anproj { grid-template-columns: 1fr 1fr; }
}
.anproj__item {
  padding: 18px 16px;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--line-2);
  border-radius: 12px;
  text-align: center;
}
.anproj__num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #ff8b5e;
  line-height: 1.05;
  font-feature-settings: "tnum";
  margin-bottom: 5px;
}
.anproj__label {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.anproj__note {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 14px;
  letter-spacing: -0.005em;
  font-style: italic;
}

/* Final CTA */
.ancta {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  padding: 32px;
  background:
    radial-gradient(800px 500px at 0% 0%, rgba(255,94,58,0.22), transparent 60%),
    radial-gradient(700px 500px at 100% 100%, rgba(255,94,58,0.09), transparent 60%),
    linear-gradient(180deg, #0e0e16, #15151d);
  border: 1px solid var(--line-2);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 32px 64px -16px rgba(0,0,0,0.55),
    0 16px 32px -10px rgba(255,94,58,0.22);
}
@media (max-width: 760px) {
  .ancta { grid-template-columns: 1fr; padding: 24px; }
}
.ancta__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ancta__eye {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.ancta__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.ancta__body h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: #ff8b5e;
}
.ancta__body p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.ancta__perks {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ancta__perks li {
  font-size: 0.86rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.ancta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
}
.ancta__actions .anbtn { width: 100%; }
.ancta__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted-2);
  letter-spacing: -0.005em;
  justify-content: center;
  text-align: center;
}
.ancta__meta svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.ancta__meta strong { color: var(--ink); font-weight: 600; }

/* CTA kıtlık şeridi */
.ancta__scarcity {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  padding: 8px 14px;
  margin-bottom: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #ffd0b0;
  background: rgba(255, 94, 58, 0.16);
  border: 1px solid rgba(255, 94, 58, 0.45);
  border-radius: 999px;
}
.ancta__scarcity strong { color: #fff; font-weight: 700; }
.ancta__scarcity-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff5e3a;
  box-shadow: 0 0 0 3px rgba(255,94,58,0.25), 0 0 10px rgba(255,94,58,0.7);
  animation: livePulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

/* CTA garanti rozeti */
.ancta__guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(60, 210, 140, 0.10);
  border: 1px solid rgba(60, 210, 140, 0.34);
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.ancta__guarantee svg { width: 18px; height: 18px; color: #5ee0a0; flex-shrink: 0; }
.ancta__guarantee strong { color: #fff; font-weight: 600; }

/* Footer */
.anfoot {
  position: relative;
  z-index: 1;
  padding: 24px clamp(20px, 4vw, 40px) 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.anfoot small {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.anfoot a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.anfoot a:hover { color: #ff8b5e; }

/* Property registration for spinBorder */
@property --grad-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes spinBorder {
  to { --grad-angle: 360deg; }
}

/* Rapor: hesaplanamayan alt-skor (örn. web sitesi girilmedi) sönük/nötr görünsün */
.anscore__sub-val.is-na {
  color: var(--muted-2);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  opacity: 0.9;
}
