:root {
  --bg: #0a120e;
  --surface: #101a14;
  --surface-2: #14211a;
  --line: #1d2c22;
  --ink: #e9f3ec;
  --muted: #8da89a;
  --accent: #00e386;
  --accent-dim: rgba(0, 227, 134, 0.12);
  --blue: #3b82f6;
  --amber: #f5b04a;
  --display: 'Space Grotesk', sans-serif;
  --body: 'IBM Plex Sans', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection {
  background: var(--accent);
  color: #04130b;
}
h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.15;
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Arka plan dokusu: ince grid + accent glow ── */
.bg-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 480px at 78% -10%, rgba(0, 227, 134, 0.07), transparent 60%),
    radial-gradient(700px 500px at 8% 28%, rgba(59, 130, 246, 0.045), transparent 60%);
}
.bg-field::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(141, 168, 154, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 168, 154, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 75%);
}

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 18, 14, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
}
.logo-c {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--blue);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.logo:hover .logo-c {
  transform: rotate(-8deg) scale(1.08);
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  color: var(--muted);
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a:hover::after {
  width: 100%;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s,
    background 0.2s,
    border-color 0.2s;
}
.btn-primary {
  background: var(--accent);
  color: #04130b;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 227, 134, 0.32);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

/* ── Hero ── */
.hero {
  padding: 88px 0 40px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0, 227, 134, 0.25);
  border-radius: 999px;
  padding: 6px 14px;
  background: var(--accent-dim);
}
.kicker .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 60px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 22px 0 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero p.lead {
  font-size: 18.5px;
  color: var(--muted);
  max-width: 33em;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--muted);
  font-family: var(--mono);
}

/* Hero görseli: tilt + agent feed */
.hero-visual {
  position: relative;
}
.shot-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 227, 134, 0.06);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s;
  will-change: transform;
}
.hero-visual:hover .shot-frame {
  transform: perspective(1400px) rotateY(-2deg) rotateX(0.5deg) scale(1.015);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(0, 227, 134, 0.1);
}
.agent-feed {
  position: absolute;
  left: -34px;
  bottom: -30px;
  width: 320px;
  background: rgba(13, 22, 17, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 227, 134, 0.28);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}
.agent-feed-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.agent-feed-head .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
.agent-feed-line {
  color: var(--muted);
  min-height: 19px;
  white-space: nowrap;
  overflow: hidden;
}
.agent-feed-line.done {
  color: var(--ink);
}
.agent-feed-line .ok {
  color: var(--accent);
}
.caret {
  display: inline-block;
  width: 7px;
  height: 13px;
  background: var(--accent);
  vertical-align: -2px;
  animation: blink 0.9s steps(1) infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* ── Aciliyet şeridi ── */
.urgency {
  margin: 72px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 176, 74, 0.05);
}
.urgency-in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 24px;
  flex-wrap: wrap;
  text-align: center;
}
.urgency strong {
  color: var(--amber);
  font-family: var(--display);
}
.countdown {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--amber);
  border: 1px solid rgba(245, 176, 74, 0.35);
  padding: 4px 12px;
  border-radius: 8px;
}

/* ── Bölümler ── */
section {
  padding: 92px 0 0;
}
.sec-kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.sec-title {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 12px 0 14px;
}
.sec-lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 38em;
}

/* ── Üç eksen ── */
.axes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.axis {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s,
    box-shadow 0.35s;
}
.axis:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 227, 134, 0.4);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}
.axis-no {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.15em;
}
.axis h3 {
  font-size: 21px;
  margin: 12px 0 10px;
}
.axis p {
  color: var(--muted);
  font-size: 15px;
}

/* ── Çift defter demo ── */
.ledger-demo {
  margin-top: 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.switch {
  display: inline-flex;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
  margin-top: 22px;
}
.switch button {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 20px;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  transition: all 0.25s;
}
.switch button.active {
  background: var(--accent);
  color: #04130b;
}
.switch button:not(.active):hover {
  color: var(--ink);
}
.ledger-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 13px 18px;
  font-size: 14.5px;
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s;
}
.lrow .tag {
  font-family: var(--mono);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.lrow[data-ledger='corporate'] .tag {
  background: rgba(59, 130, 246, 0.15);
  color: #7eb1ff;
}
.lrow[data-ledger='individual'] .tag {
  background: rgba(0, 227, 134, 0.13);
  color: var(--accent);
}
.lrow.hidden-row {
  opacity: 0.12;
  transform: translateX(14px) scale(0.985);
}
.lrow .amt {
  font-family: var(--display);
  font-weight: 600;
  white-space: nowrap;
}
.lrow .desc {
  flex: 1;
}

/* ── Ürün turu ── */
.tour {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-top: 48px;
}
.tour .shot-frame {
  transform: perspective(1400px) rotateY(5deg) rotateX(1.5deg);
}
.tour .hero-visual:hover .shot-frame {
  transform: perspective(1400px) rotateY(1.5deg) rotateX(0.5deg) scale(1.012);
}
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.feat:hover {
  background: var(--surface);
  border-color: var(--line);
  transform: translateX(6px);
}
.feat-ic {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 227, 134, 0.22);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.feat-ic svg {
  width: 17px;
  height: 17px;
}
.feat b {
  font-family: var(--display);
  font-size: 15.5px;
  display: block;
}
.feat span {
  color: var(--muted);
  font-size: 14px;
}

/* ── Modül grid ── */
.modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 44px;
}
.mod {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 20px 18px;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s;
}
.mod:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 227, 134, 0.35);
}
.mod b {
  font-family: var(--display);
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}
.mod span {
  font-size: 13px;
  color: var(--muted);
}

/* ── Beyin / dogfooding ── */
.brain {
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(160deg, var(--surface) 0%, rgba(0, 227, 134, 0.045) 100%);
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.brain-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
}
.node {
  border: 1px solid var(--line);
  background: var(--surface-2);
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.node:hover {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(0, 227, 134, 0.12);
}
.node b {
  font-family: var(--display);
  font-size: 16px;
  display: block;
}
.node span {
  font-size: 11.5px;
  color: var(--muted);
}
.link-line {
  width: 84px;
  height: 2px;
  background: rgba(0, 227, 134, 0.25);
  position: relative;
}
.link-line::after {
  content: '';
  position: absolute;
  top: -2.5px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: travel 2.4s linear infinite;
}
@keyframes travel {
  0% {
    left: 0;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    left: calc(100% - 7px);
    opacity: 0;
  }
}

/* ── Karşılaştırma ── */
.compare {
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.compare th,
.compare td {
  padding: 15px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.compare th {
  font-family: var(--display);
  font-size: 14px;
  background: var(--surface);
}
.compare td:first-child,
.compare th:first-child {
  text-align: left;
}
.compare tr:last-child td {
  border-bottom: none;
}
.compare .us {
  background: rgba(0, 227, 134, 0.05);
}
.compare th.us {
  color: var(--accent);
}
.yes {
  color: var(--accent);
  font-weight: 600;
}
.no {
  color: #5b6f63;
}
.compare tbody tr {
  transition: background 0.2s;
}
.compare tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}
.compare-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

/* ── Erken erişim ── */
.early {
  margin-top: 48px;
  text-align: center;
  border: 1px solid rgba(0, 227, 134, 0.3);
  border-radius: 22px;
  padding: 58px 32px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 280px at 50% -40%, rgba(0, 227, 134, 0.13), transparent 70%),
    var(--surface);
}
.early h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin-bottom: 12px;
}
.early p {
  color: var(--muted);
  max-width: 36em;
  margin: 0 auto 28px;
}

/* ── SSS ── */
.faq {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  padding: 0 22px;
  transition: border-color 0.25s;
}
.faq details:hover,
.faq details[open] {
  border-color: rgba(0, 227, 134, 0.3);
}
.faq summary {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15.5px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: '+';
  color: var(--accent);
  font-size: 20px;
  transition: transform 0.25s;
  flex: none;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq details p {
  color: var(--muted);
  font-size: 14.5px;
  padding-bottom: 18px;
}

footer {
  margin-top: 96px;
  border-top: 1px solid var(--line);
  padding: 40px 0 48px;
}
.foot-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13.5px;
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.hero .reveal {
  transition-duration: 0.85s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .ledger-demo,
  .tour,
  .brain {
    grid-template-columns: 1fr;
  }
  .axes {
    grid-template-columns: 1fr;
  }
  .modules {
    grid-template-columns: repeat(2, 1fr);
  }
  .agent-feed {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
  .shot-frame,
  .tour .shot-frame {
    transform: none;
  }
  .nav-links {
    display: none;
  }
  .compare {
    overflow-x: auto;
  }
  .compare table {
    min-width: 640px;
  }
}

/* ── Çok sayfalı site ekleri ── */
.page-hero {
  padding: 72px 0 8px;
}
.page-hero h1 {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 14px 0 12px;
}
.page-hero .lead {
  font-size: 17.5px;
  color: var(--muted);
  max-width: 36em;
}
.nav-links a.active {
  color: var(--ink);
}
.nav-links a.active::after {
  width: 100%;
}
.cta-band {
  margin-top: 88px;
}
.crumb {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.crumb a {
  color: var(--accent);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  margin-top: 44px;
}
@media (max-width: 960px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* ── Premium kompozisyon (v3.1 — Soft şablonu kalitesi, Castintech kimliği) ── */
.hero h1 {
  font-size: clamp(40px, 5.6vw, 70px);
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}
.float-card {
  position: absolute;
  z-index: 3;
  background: rgba(13, 22, 17, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 17px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  animation: floaty 6s ease-in-out infinite;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.float-card:hover {
  border-color: rgba(0, 227, 134, 0.45);
}
.float-card b {
  font-family: var(--display);
  font-size: 21px;
  display: block;
  line-height: 1.2;
}
.float-card .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}
.float-card .delta {
  color: var(--accent);
  font-size: 12px;
  font-family: var(--mono);
  display: block;
  margin-top: 2px;
}
.spark {
  display: block;
  margin-top: 8px;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

.stat-band {
  margin-top: 92px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.stat-band-in {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 38px 24px;
  text-align: center;
  border-left: 1px solid var(--line);
  transition: background 0.3s;
}
.stat:hover {
  background: rgba(0, 227, 134, 0.04);
}
.stat:first-child {
  border-left: none;
}
.stat b {
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 46px);
  color: var(--accent);
  display: block;
  letter-spacing: -0.02em;
}
.stat > span {
  color: var(--muted);
  font-size: 13.5px;
}
.stat b span {
  font-size: inherit;
  color: inherit;
}

.marquee {
  overflow: hidden;
  padding: 76px 0 0;
  user-select: none;
}
.marquee-track {
  display: inline-flex;
  gap: 52px;
  white-space: nowrap;
  will-change: transform;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(44px, 6.5vw, 84px);
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(141, 168, 154, 0.38);
  animation: slide 30s linear infinite;
}
.marquee-track .solid {
  color: var(--accent);
  -webkit-text-stroke: 0;
}
.marquee-track .star {
  color: rgba(0, 227, 134, 0.5);
  -webkit-text-stroke: 0;
}
@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
  .float-card {
    animation: none;
  }
}
@media (max-width: 960px) {
  .stat-band-in {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat {
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .float-card {
    display: none;
  }
  .glow-orb {
    display: none;
  }
}

/* ── v3.2 iç sayfa dokuları ── */
.page-hero {
  position: relative;
}
.mod {
  position: relative;
  overflow: hidden;
}
.mod::after {
  content: '';
  position: absolute;
  right: 14px;
  bottom: 12px;
  width: 46px;
  height: 18px;
  background: repeating-linear-gradient(90deg, rgba(0, 227, 134, 0.55) 0 3px, transparent 3px 9px);
  -webkit-mask-image: linear-gradient(180deg, transparent, black);
  mask-image: linear-gradient(180deg, transparent, black);
  opacity: 0.22;
  transition:
    opacity 0.3s,
    transform 0.3s;
  pointer-events: none;
}
.mod:hover::after {
  opacity: 0.9;
  transform: translateY(-2px);
}
.ledger-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding: 13px 18px;
  border-radius: 11px;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 227, 134, 0.25);
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
}
.ledger-total .amt {
  color: var(--accent);
  font-size: 18px;
  transition: opacity 0.3s;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 13px;
  margin-top: 16px;
}
.chip .ok {
  color: var(--accent);
}
