@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&family=Newsreader:opsz,wght@6..72,600;6..72,700&display=swap');

:root {
  --bg: #f4f1ea;
  --paper: #fffaf0;
  --paper-2: #ebe6dc;
  --ink: #10151c;
  --ink-2: #293241;
  --muted: #71706a;
  --line: #d7d0c1;
  --line-dark: #28313d;
  --navy: #101827;
  --blue: #1f5eff;
  --cyan: #00a7c7;
  --green: #16a66a;
  --red: #d94b4b;
  --amber: #e5a928;
  --radius: 18px;
  --shadow: 14px 14px 0 rgba(16, 21, 28, .10);
  --shadow-dark: 14px 14px 0 rgba(16, 21, 28, .24);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(16,21,28,.035) 1px, transparent 1px),
    linear-gradient(rgba(16,21,28,.035) 1px, transparent 1px),
    var(--bg);
  background-size: 38px 38px;
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1240px, calc(100% - 40px)); margin: 0 auto; }
.mono { font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

/* ===================== TOP STRIP ===================== */
.top-strip {
  background: var(--navy);
  color: #f8f3e8;
  border-bottom: 3px solid var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: -.02em;
}
.top-strip .container {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.strip-live { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; }
.pulse { width: 10px; height: 10px; background: var(--green); border: 2px solid #d8ffe9; box-shadow: 0 0 0 4px rgba(22,166,106,.18); display:inline-block; }

/* ===================== NAV ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 241, 234, .92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--ink);
}
.nav-shell {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1.08fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; width: fit-content; }
.brand-mark,
.footer-brand-mark {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--ink); color: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--amber);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 800; letter-spacing: -.08em;
}
.brand-text strong { display: block; font-family: "Newsreader", Georgia, serif; font-size: 25px; line-height: .95; letter-spacing: -.045em; }
.brand-text span { display: block; margin-top: 5px; color: var(--muted); font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.menu { display: flex; align-items: center; border: 2px solid var(--ink); background: var(--paper); box-shadow: 7px 7px 0 rgba(16,21,28,.13); }
.menu a { padding: 13px 15px; border-right: 2px solid var(--ink); color: var(--ink-2); font-size: 13px; font-weight: 800; white-space: nowrap; transition: .18s ease; }
.menu a:last-child { border-right: 0; }
.menu a:hover { background: var(--amber); color: var(--ink); }

.nav-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }

/* ===================== BUTTONS ===================== */
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 2px solid var(--ink);
  font-weight: 900;
  cursor: pointer;
  transition: .18s ease;
  box-shadow: 6px 6px 0 rgba(16,21,28,.16);
  white-space: nowrap;
  text-decoration: none;
  font-family: inherit;
  font-size: 14px;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 9px 9px 0 rgba(16,21,28,.18); }
.btn-primary { background: var(--blue); color: white; }
.btn-login   { background: var(--paper); color: var(--ink); }
.btn-dark    { background: var(--ink); color: var(--paper); }
.btn-danger  { background: var(--red); color: white; }

/* ===================== HERO ===================== */
.hero { padding: 54px 0 42px; border-bottom: 2px solid var(--line); }
.hero-layout { display: grid; grid-template-columns: 1.02fr .98fr; gap: 34px; align-items: stretch; }
.hero-copy {
  min-height: 650px; display: flex; flex-direction: column; justify-content: space-between;
  border: 2px solid var(--ink); background: var(--paper); box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 52px); position: relative; overflow: hidden;
}
.hero-copy::after {
  content: "BACKUP / SQL / REPORT";
  position: absolute; right: -88px; top: 42%; transform: rotate(90deg);
  font-family: "IBM Plex Mono", monospace; font-weight: 700; letter-spacing: .18em; font-size: 12px; color: rgba(16,21,28,.22);
}
.eyebrow {
  width: fit-content; display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 12px; background: #e9f7f9; border: 2px solid var(--ink); color: var(--ink);
  font-family: "IBM Plex Mono", monospace; font-size: 12px; font-weight: 800;
  box-shadow: 5px 5px 0 rgba(0,167,199,.18);
}
.eyebrow span { color: var(--blue); font-size: 18px; }
h1 { max-width: 760px; margin: 30px 0 24px; font-family: "Newsreader", Georgia, serif; font-size: clamp(54px, 7.6vw, 112px); line-height: .84; letter-spacing: -.07em; font-weight: 700; }
.hero-title-accent { display: inline; background: linear-gradient(transparent 60%, rgba(229,169,40,.75) 0); padding: 0 .04em; }
.blue-word { color: var(--blue); font-style: italic; }
.lead { max-width: 690px; color: var(--ink-2); font-size: 19px; line-height: 1.75; font-weight: 500; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.mini-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 2px solid var(--ink); background: var(--paper-2); margin-top: 30px; }
.proof-item { padding: 20px; border-right: 2px solid var(--ink); min-height: 122px; background: rgba(255,250,240,.72); }
.proof-item:last-child { border-right: 0; }
.proof-item b { display: block; font-family: "IBM Plex Mono", monospace; font-size: 36px; line-height: 1; letter-spacing: -.08em; }
.proof-item small { display: block; margin-top: 10px; color: var(--muted); font-weight: 800; line-height: 1.32; }

/* Visual Stage */
.visual-stage { min-height: 650px; border: 2px solid var(--ink); background: var(--navy); color: var(--paper); box-shadow: var(--shadow-dark); padding: 22px; position: relative; overflow: hidden; }
.visual-stage::before { content: ""; position: absolute; inset: 22px; border: 1px dashed rgba(255,250,240,.24); pointer-events: none; }
.halo { display: none; }
.orbit-card { position: absolute; z-index: 2; width: 160px; padding: 14px; background: var(--paper); color: var(--ink); border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--amber); }
.orbit-card strong { display: block; margin-top: 5px; font-family: "IBM Plex Mono", monospace; font-size: 25px; letter-spacing: -.08em; }
.orbit-card span { color: var(--muted); font-size: 12px; font-weight: 900; }
.oc-1 { top: 38px; right: 38px; }
.oc-2 { bottom: 38px; left: 38px; box-shadow: 6px 6px 0 var(--cyan); }
.oc-3 { right: 64px; bottom: 108px; box-shadow: 6px 6px 0 var(--green); }

.command-card { position: relative; z-index: 1; width: min(510px, calc(100% - 20px)); margin: 112px auto 0; transform: rotate(-1.2deg); border: 2px solid var(--paper); box-shadow: 16px 16px 0 rgba(0,0,0,.28); background: #0b111c; }
.command-inner { overflow: hidden; }
.terminal-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: var(--paper); color: var(--ink); border-bottom: 2px solid var(--paper); font-family: "IBM Plex Mono", monospace; }
.dots { display: flex; gap: 7px; }
.dots i { width: 11px; height: 11px; border: 2px solid var(--ink); display: block; }
.dots i:nth-child(1) { background: var(--red); }
.dots i:nth-child(2) { background: var(--amber); }
.dots i:nth-child(3) { background: var(--green); }
.terminal-title { font-size: 12px; font-weight: 800; }
.backup-panel { padding: 18px; }
.panel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 12px; }
.panel-metric { padding: 15px; border: 1px solid rgba(255,250,240,.20); background: rgba(255,250,240,.06); }
.panel-metric span { display: block; color: rgba(255,250,240,.58); font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.panel-metric b { display: block; margin-top: 7px; font-family: "IBM Plex Mono", monospace; font-size: 32px; line-height: 1; letter-spacing: -.08em; }
.run-box { padding: 16px; border: 1px solid rgba(255,250,240,.22); background: rgba(31,94,255,.14); margin-bottom: 12px; }
.run-line { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 13px; }
.run-line strong { font-family: "IBM Plex Mono", monospace; font-size: 13px; word-break: break-word; }
.run-line span { padding: 6px 8px; border: 1px solid rgba(255,250,240,.32); color: #9cf8d0; font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 800; white-space: nowrap; }
.meter { height: 13px; background: rgba(255,250,240,.12); border: 1px solid rgba(255,250,240,.20); overflow: hidden; }
.meter i { display: block; height: 100%; width: 86%; background: repeating-linear-gradient(45deg, var(--green) 0 10px, #61e5b0 10px 20px); animation: load 2.7s ease-in-out infinite alternate; }
.log-list { display: grid; gap: 8px; }
.log-row { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; padding: 10px; border: 1px solid rgba(255,250,240,.16); background: rgba(255,250,240,.045); }
.log-icon { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,250,240,.24); font-family: "IBM Plex Mono", monospace; font-weight: 800; }
.log-row h4 { font-family: "IBM Plex Mono", monospace; font-size: 12px; }
.log-row p { color: rgba(255,250,240,.54); font-size: 12px; margin-top: 2px; }
.ok, .fail { font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 800; }
.ok { color: #8af0bf; }
.fail { color: #ff9ca2; }

/* ===================== SECTIONS ===================== */
.section { padding: 74px 0; }
.section-head { display: grid; grid-template-columns: 250px 1fr; gap: 28px; align-items: start; margin-bottom: 30px; border-top: 2px solid var(--ink); padding-top: 24px; }
.section-kicker { color: var(--blue); font-family: "IBM Plex Mono", monospace; font-weight: 800; letter-spacing: .04em; font-size: 12px; text-transform: uppercase; }
.section-head h2 { font-family: "Newsreader", Georgia, serif; font-size: clamp(38px, 5vw, 72px); line-height: .92; letter-spacing: -.06em; font-weight: 700; max-width: 840px; }
.section-head p { grid-column: 2; max-width: 760px; color: var(--muted); font-size: 18px; line-height: 1.75; margin-top: -12px; }

.flow-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; }
.big-card, .stack-card, .feature-tile, .price-card, .integration-chip, .footer-brand-box, .footer-column { background: var(--paper); border: 2px solid var(--ink); box-shadow: var(--shadow); }
.big-card { padding: 28px; min-height: 500px; }
.flow-title { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 2px solid var(--ink); }
.number-badge { width: 48px; height: 48px; display: grid; place-items: center; background: var(--ink); color: var(--paper); font-family: "IBM Plex Mono", monospace; font-weight: 800; box-shadow: 5px 5px 0 var(--amber); }
.flow-title h3, .stack-card h3, .feature-tile h3, .price-card h3 { font-family: "Newsreader", Georgia, serif; font-size: 31px; line-height: .98; letter-spacing: -.045em; }
.pipeline { display: grid; gap: 12px; }
.pipeline-step { display: grid; grid-template-columns: 60px 1fr auto; gap: 14px; align-items: center; padding: 15px; border: 2px solid var(--line); background: #fffdf7; }
.step-icon { width: 54px; height: 54px; display: grid; place-items: center; background: var(--blue); color: white; border: 2px solid var(--ink); font-family: "IBM Plex Mono", monospace; font-weight: 800; box-shadow: 4px 4px 0 rgba(16,21,28,.16); }
.pipeline-step h4 { font-size: 17px; font-weight: 900; }
.pipeline-step p { color: var(--muted); font-size: 14px; line-height: 1.45; margin-top: 3px; }
.step-status { padding: 8px 10px; border: 2px solid var(--ink); background: #e9f9ef; color: var(--green); font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 800; }

.side-stack { display: grid; gap: 22px; }
.stack-card { padding: 28px; min-height: 239px; }
.stack-card.dark { background: var(--navy); color: var(--paper); box-shadow: var(--shadow-dark); }
.stack-card p { color: var(--muted); line-height: 1.7; margin-top: 12px; }
.stack-card.dark p { color: rgba(255,250,240,.68); }
.mini-bars { display: flex; align-items: end; gap: 10px; height: 86px; margin-top: 24px; }
.mini-bars i { flex: 1; border: 2px solid rgba(255,250,240,.34); background: var(--cyan); min-height: 22px; }
.mini-bars i:nth-child(1){height:48px}.mini-bars i:nth-child(2){height:76px}.mini-bars i:nth-child(3){height:58px}.mini-bars i:nth-child(4){height:86px}.mini-bars i:nth-child(5){height:66px}

.integration-marquee { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.integration-chip { min-height: 162px; padding: 20px; display: grid; align-content: space-between; transition: .18s ease; }
.integration-chip:hover { transform: translate(-3px, -3px); box-shadow: 17px 17px 0 rgba(16,21,28,.12); }
.chip-logo { width: 52px; height: 52px; display: grid; place-items: center; border: 2px solid var(--ink); background: #e9f0ff; color: var(--blue); font-family: "IBM Plex Mono", monospace; font-weight: 800; box-shadow: 5px 5px 0 rgba(31,94,255,.16); }
.chip-logo.red { color: var(--red); background: #fff0f0; box-shadow: 5px 5px 0 rgba(217,75,75,.16); }
.chip-logo.green { color: var(--green); background: #edf9f1; box-shadow: 5px 5px 0 rgba(22,166,106,.16); }
.chip-logo.dark { color: var(--paper); background: var(--ink); box-shadow: 5px 5px 0 var(--amber); }
.integration-chip b { display: block; font-size: 20px; font-weight: 900; }
.integration-chip small { display: block; margin-top: 3px; color: var(--muted); font-weight: 800; }

.features-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.feature-tile { padding: 28px; min-height: 250px; transition: .18s ease; }
.feature-tile:hover { transform: translate(-3px, -3px); box-shadow: 17px 17px 0 rgba(16,21,28,.12); }
.feature-tile.wide { grid-column: span 7; }
.feature-tile.slim { grid-column: span 5; }
.feature-tile.third { grid-column: span 4; }
.tile-icon { width: 56px; height: 56px; display: grid; place-items: center; background: var(--blue); color: white; border: 2px solid var(--ink); box-shadow: 5px 5px 0 rgba(16,21,28,.16); margin-bottom: 22px; font-size: 23px; }
.feature-tile p { color: var(--muted); line-height: 1.75; margin-top: 12px; max-width: 620px; }

.phone-demo-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; background: var(--navy); color: var(--paper); border: 2px solid var(--ink); box-shadow: var(--shadow-dark); padding: 30px; }
.demo-copy { padding: 12px; }
.demo-copy .section-kicker { color: var(--amber) !important; }
.demo-copy h2 { font-family: "Newsreader", Georgia, serif; font-size: clamp(40px, 5vw, 72px); line-height: .9; letter-spacing: -.06em; margin: 18px 0; }
.demo-copy p { color: rgba(255,250,240,.68); line-height: 1.75; font-size: 18px; }
.phone-board { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.report-card { min-height: 150px; padding: 20px; background: rgba(255,250,240,.06); border: 1px solid rgba(255,250,240,.22); }
.report-card.big { grid-column: span 2; }
.report-card span { color: rgba(255,250,240,.58); font-family: "IBM Plex Mono", monospace; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.report-card b { display: block; margin-top: 8px; font-family: "IBM Plex Mono", monospace; font-size: 42px; letter-spacing: -.08em; }
.report-list { display: grid; gap: 10px; margin-top: 18px; }
.report-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: rgba(255,250,240,.82); font-weight: 800; border-bottom: 1px dashed rgba(255,250,240,.18); padding-bottom: 9px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { padding: 28px; }
.price-card.featured { background: var(--navy); color: var(--paper); box-shadow: var(--shadow-dark); transform: translateY(-8px); }
.price-card p { color: var(--muted); line-height: 1.7; margin-top: 10px; }
.price-card.featured p { color: rgba(255,250,240,.68); }
.price { margin: 24px 0; font-family: "IBM Plex Mono", monospace; font-size: 45px; line-height: 1; letter-spacing: -.08em; font-weight: 800; }
.price small { font-size: 14px; letter-spacing: 0; color: var(--muted); }
.price-card.featured .price small { color: rgba(255,250,240,.58); }
.list { display: grid; gap: 11px; margin-top: 20px; }
.list li { list-style: none; display: flex; align-items: center; gap: 10px; color: var(--ink-2); font-weight: 800; }
.price-card.featured .list li { color: rgba(255,250,240,.82); }
.list li::before { content: "✓"; width: 25px; height: 25px; display: grid; place-items: center; background: #e9f9ef; border: 2px solid var(--ink); color: var(--green); font-family: "IBM Plex Mono", monospace; font-weight: 800; flex: 0 0 auto; }

.final-cta { margin-top: 32px; padding: 38px; background: var(--amber); color: var(--ink); border: 2px solid var(--ink); box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; }
.final-cta h2 { font-family: "Newsreader", Georgia, serif; font-size: clamp(42px, 5vw, 76px); line-height: .9; letter-spacing: -.065em; margin-bottom: 14px; }
.final-cta p { color: rgba(16,21,28,.72); font-size: 18px; line-height: 1.65; max-width: 720px; }

/* ===================== FOOTER ===================== */
.site-footer { padding: 40px 0 28px; color: var(--muted); }
.footer-shell { border-top: 2px solid var(--ink); padding-top: 28px; }
.footer-top { display: grid; grid-template-columns: 1.05fr .95fr; gap: 20px; margin-bottom: 22px; }
.footer-brand-box { padding: 26px; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-brand strong { display: block; color: var(--ink); font-family: "Newsreader", Georgia, serif; font-size: 27px; line-height: .95; letter-spacing: -.045em; }
.footer-brand span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; font-weight: 800; }
.footer-text { max-width: 660px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-contact a, .footer-badge { display: inline-flex; align-items: center; min-height: 40px; padding: 9px 12px; background: var(--paper-2); border: 2px solid var(--ink); color: var(--ink-2); font-size: 13px; font-weight: 900; }
.footer-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.footer-column { padding: 20px; }
.footer-column h4 { color: var(--ink); font-family: "Newsreader", Georgia, serif; font-size: 22px; line-height: 1; letter-spacing: -.04em; margin-bottom: 12px; }
.footer-column a { display: block; color: var(--muted); font-size: 14px; font-weight: 800; padding: 7px 0; transition: .18s ease; }
.footer-column a:hover { color: var(--blue); transform: translateX(4px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 18px; border-top: 2px solid var(--line); font-size: 14px; font-weight: 800; }
.footer-bottom-right { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom-right a:hover { color: var(--blue); }

/* ===================== LOGIN PAGE ===================== */
.login-body { background: linear-gradient(90deg, rgba(16,21,28,.035) 1px, transparent 1px), linear-gradient(rgba(16,21,28,.035) 1px, transparent 1px), var(--bg); background-size: 38px 38px; }
.login-page-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.login-page-card { width: min(520px, 100%); background: var(--paper); color: var(--ink); border: 2px solid var(--ink); box-shadow: 18px 18px 0 rgba(0,0,0,.20); }
.login-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 20px; border-bottom: 2px solid var(--ink); background: var(--navy); color: var(--paper); }
.login-brand { display: flex; align-items: center; gap: 12px; }
.login-head strong { font-family: "Newsreader", Georgia, serif; font-size: 28px; letter-spacing: -.05em; line-height: 1; }
.login-head-sub { font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 700; color: rgba(255,250,240,.6); text-transform: uppercase; }
.login-body-inner { padding: 24px; }
.login-error { padding: 11px 12px; border: 2px solid var(--red); background: #fff0f0; color: var(--red); font-family: "IBM Plex Mono", monospace; font-size: 12px; font-weight: 800; margin-bottom: 14px; display: none; }
.login-error.active { display: block; }
.login-footer-link { padding: 14px 24px; border-top: 2px solid var(--line); font-size: 13px; font-weight: 800; }
.login-footer-link a:hover { color: var(--blue); }
.form-group { display: grid; gap: 8px; margin-bottom: 14px; }
.form-group label { font-family: "IBM Plex Mono", monospace; font-size: 12px; font-weight: 800; text-transform: uppercase; color: var(--ink-2); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; min-height: 52px; border: 2px solid var(--ink); background: #fffdf7; color: var(--ink);
  padding: 12px 14px; font-size: 15px; font-weight: 700; outline: none;
  box-shadow: 5px 5px 0 rgba(16,21,28,.10); font-family: inherit;
}
.form-group textarea { min-height: auto; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 5px 5px 0 rgba(31,94,255,.22); }

/* ===================== DASHBOARD ===================== */
.dashboard-body { background: linear-gradient(90deg, rgba(255,250,240,.035) 1px, transparent 1px), linear-gradient(rgba(255,250,240,.035) 1px, transparent 1px), var(--navy) !important; background-size: 38px 38px !important; }

/* Dashboard içindeki form label ve input stilleri */
.dashboard-body .form-group label { color: rgba(255,250,240,.75); }
.dashboard-body .form-group input,
.dashboard-body .form-group select,
.dashboard-body .form-group textarea {
  background: rgba(255,250,240,.08);
  color: rgba(255,250,240,.9);
  border: 2px solid rgba(255,250,240,.28);
  box-shadow: none;
}
.dashboard-body .form-group input:focus,
.dashboard-body .form-group select:focus,
.dashboard-body .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: none;
}
.dashboard-body .form-group input:disabled,
.dashboard-body .form-group input[disabled] {
  background: rgba(255,250,240,.04);
  color: rgba(255,250,240,.35);
  cursor: not-allowed;
}
.dashboard-view { display: block; min-height: 100vh; color: var(--paper); }
.dash-layout { display: grid; grid-template-columns: 280px 1fr; min-height: 100vh; }
.dash-sidebar { border-right: 2px solid rgba(255,250,240,.18); padding: 24px; background: #0b111c; }
.dash-brand { display: flex; align-items: center; gap: 14px; padding-bottom: 22px; margin-bottom: 22px; border-bottom: 2px solid rgba(255,250,240,.20); }
.dash-brand .brand-mark { box-shadow: 6px 6px 0 var(--amber); background: var(--paper); color: var(--ink); }
.dash-brand strong { display: block; font-family: "Newsreader", Georgia, serif; font-size: 22px; line-height: .95; letter-spacing: -.05em; }
.dash-brand span { display: block; margin-top: 5px; color: rgba(255,250,240,.58); font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.dash-menu { display: grid; gap: 6px; }
.dash-menu a { display: flex; align-items: center; justify-content: space-between; min-height: 42px; padding: 9px 12px; border: 1px solid rgba(255,250,240,.14); color: rgba(255,250,240,.78); font-weight: 900; transition: .18s ease; font-size: 13px; }
.dash-menu a.active, .dash-menu a:hover { background: var(--amber); color: var(--ink); border-color: var(--ink); transform: translateX(4px); }
.dash-main { padding: 26px; overflow-x: hidden; }
.dash-topbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 2px solid rgba(255,250,240,.20); flex-wrap: wrap; }
.dash-topbar h2 { font-family: "Newsreader", Georgia, serif; font-size: clamp(32px, 4vw, 60px); line-height: .9; letter-spacing: -.065em; }
.dash-user { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.dash-user-badge { padding: 8px 12px; border: 2px solid rgba(255,250,240,.28); font-family: "IBM Plex Mono", monospace; font-size: 12px; font-weight: 800; color: rgba(255,250,240,.82); }
.dash-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 18px; }
.dash-stat, .dash-panel-box { border: 2px solid rgba(255,250,240,.22); background: rgba(255,250,240,.06); padding: 20px; }
.dash-stat span { color: rgba(255,250,240,.58); font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 800; text-transform: uppercase; display: block; }
.dash-stat b { display: block; margin-top: 10px; font-family: "IBM Plex Mono", monospace; font-size: 40px; line-height: 1; letter-spacing: -.08em; }
.dash-content-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.dash-panel-box h3 { font-family: "Newsreader", Georgia, serif; font-size: 30px; letter-spacing: -.05em; line-height: 1; }
.dash-table { display: grid; gap: 8px; }
.dash-row-item { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; align-items: center; padding: 12px; border: 1px solid rgba(255,250,240,.14); background: rgba(255,250,240,.04); }
.dash-row-item strong { font-family: "IBM Plex Mono", monospace; font-size: 13px; }
.dash-row-item span { color: rgba(255,250,240,.58); font-size: 12px; font-weight: 800; }
.dash-status { padding: 6px 9px; border: 1px solid rgba(255,250,240,.22); font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 800; white-space: nowrap; }
.dash-status.ok { color: #8af0bf; }
.dash-status.fail { color: #ff9ca2; }
.dash-chart { height: 260px; display: flex; align-items: end; gap: 12px; padding-top: 16px; }
.dash-chart i { flex: 1; min-height: 36px; border: 1px solid rgba(255,250,240,.22); background: repeating-linear-gradient(45deg, var(--cyan) 0 10px, #48d7ea 10px 20px); }
.dash-chart i:nth-child(1){height:44%}.dash-chart i:nth-child(2){height:68%}.dash-chart i:nth-child(3){height:52%}.dash-chart i:nth-child(4){height:86%}.dash-chart i:nth-child(5){height:72%}.dash-chart i:nth-child(6){height:94%}.dash-chart i:nth-child(7){height:62%}

/* ===================== ADMIN TABLES ===================== */
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { padding: 10px 12px; background: rgba(255,250,240,.10); border: 1px solid rgba(255,250,240,.18); font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 800; text-transform: uppercase; text-align: left; white-space: nowrap; }
.admin-table td { padding: 10px 12px; border: 1px solid rgba(255,250,240,.10); vertical-align: middle; }
.admin-table tr:hover td { background: rgba(255,250,240,.04); }

/* Badges */
.badge { display: inline-block; padding: 4px 8px; font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 800; border: 1px solid rgba(255,250,240,.22); }
.badge-success { color: #8af0bf; border-color: rgba(138,240,191,.3); background: rgba(138,240,191,.1); }
.badge-danger  { color: #ff9ca2; border-color: rgba(255,156,162,.3); background: rgba(255,156,162,.1); }
.badge-warning { color: var(--amber); border-color: rgba(229,169,40,.3); background: rgba(229,169,40,.1); }
.badge-info    { color: #7ec8e3; border-color: rgba(126,200,227,.3); background: rgba(126,200,227,.1); }
.badge-secondary { color: rgba(255,250,240,.58); border-color: rgba(255,250,240,.2); }

/* Dash input */
.dash-input {
  min-height: 40px; border: 2px solid rgba(255,250,240,.28); background: rgba(255,250,240,.06);
  color: var(--paper); padding: 8px 12px; font-size: 13px; font-weight: 700; font-family: inherit; outline: none;
}
.dash-input:focus { border-color: var(--blue); }
.dash-input option { background: #101827; color: var(--paper); }

/* ===================== MODAL ===================== */
.modal-overlay { position: fixed; inset: 0; z-index: 999; display: flex; align-items: center; justify-content: center; padding: 24px; background: rgba(16,21,28,.72); backdrop-filter: blur(8px); }
.modal-card { width: min(560px, 100%); background: var(--paper); color: var(--ink); border: 2px solid var(--ink); box-shadow: 18px 18px 0 rgba(0,0,0,.25); max-height: 90vh; overflow-y: auto; }
.modal-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; border-bottom: 2px solid var(--ink); background: var(--navy); color: var(--paper); }
.modal-head strong { font-family: "Newsreader", Georgia, serif; font-size: 26px; letter-spacing: -.04em; }
.modal-close { width: 38px; height: 38px; border: 2px solid rgba(255,250,240,.4); background: var(--red); color: white; font-size: 20px; cursor: pointer; font-family: "IBM Plex Mono", monospace; font-weight: 800; display: grid; place-items: center; flex-shrink: 0; }
.modal-body { padding: 22px; }
.modal-body .form-group label { color: var(--ink-2); }
.modal-body .form-group input, .modal-body .form-group select, .modal-body .form-group textarea { background: #fffdf7; color: var(--ink); border: 2px solid var(--ink); }

/* ===================== FLASH MESSAGES ===================== */
.flash-message { padding: 12px 16px; border: 2px solid var(--ink); font-weight: 800; margin-bottom: 16px; font-size: 14px; }
.flash-success { background: #e9f9ef; color: var(--green); border-color: var(--green); }
.flash-error   { background: #fff0f0; color: var(--red); border-color: var(--red); }
.flash-info    { background: #f0f4ff; color: var(--blue); border-color: var(--blue); }
.flash-warning { background: #fffbe9; color: #b57500; border-color: var(--amber); }
.flash-overlay { position: fixed; bottom: 24px; right: 24px; z-index: 9999; padding: 14px 20px; border: 2px solid var(--ink); box-shadow: 6px 6px 0 rgba(16,21,28,.2); font-weight: 800; font-size: 14px; max-width: 360px; animation: slideIn .3s ease; }

/* ===================== REVEAL / ANIMATIONS ===================== */
.reveal { opacity: 0; transform: translateY(18px); transition: .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes load { from { width: 64%; } to { width: 96%; } }
@keyframes slideIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1080px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .menu { display: none; }
  .hero-layout, .flow-grid, .phone-demo-wrap, .footer-top { grid-template-columns: 1fr; }
  .hero-copy, .visual-stage { min-height: auto; }
  .visual-stage { padding-bottom: 180px; }
  .command-card { margin-top: 80px; }
  .section-head { grid-template-columns: 1fr; gap: 12px; }
  .section-head p { grid-column: auto; margin-top: 0; }
  .features-mosaic { grid-template-columns: 1fr; }
  .feature-tile.wide, .feature-tile.slim, .feature-tile.third { grid-column: auto; }
  .integration-marquee, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
  .final-cta { grid-template-columns: 1fr; }
  .dash-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { border-right: 0; border-bottom: 2px solid rgba(255,250,240,.18); }
  .dash-menu { display: flex; flex-wrap: wrap; gap: 6px; }
  .dash-menu a { transform: none !important; flex: 0 0 auto; }
  .dash-topbar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 26px, 1240px); }
  .top-strip .container { justify-content: center; text-align: center; }
  .top-strip span:last-child { display: none; }
  .nav-shell { display: flex; flex-direction: column; align-items: stretch; padding: 14px 0; }
  .brand { width: 100%; }
  .brand-text strong { font-size: 21px; }
  .nav-actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; min-height: 46px; padding: 12px 10px; font-size: 14px; }
  h1 { font-size: clamp(48px, 16vw, 76px); }
  .lead { font-size: 17px; }
  .mini-proof, .panel-grid, .phone-board, .integration-marquee, .pricing-grid, .footer-links-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 2px solid var(--ink); }
  .proof-item:last-child { border-bottom: 0; }
  .visual-stage { padding: 16px 16px 180px; }
  .command-card { width: 100%; margin-top: 98px; transform: none; }
  .orbit-card { width: 135px; padding: 11px; }
  .oc-1 { top: 28px; right: 22px; }
  .oc-2 { left: 22px; bottom: 38px; }
  .oc-3 { right: 22px; bottom: 84px; }
  .run-line { align-items: flex-start; flex-direction: column; }
  .log-row { grid-template-columns: 30px 1fr; }
  .log-row .ok, .log-row .fail { grid-column: 2; }
  .section { padding: 54px 0; }
  .pipeline-step { grid-template-columns: 50px 1fr; }
  .step-status { grid-column: 2; width: fit-content; }
  .report-card.big { grid-column: auto; }
  .phone-demo-wrap, .final-cta { padding: 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .dash-grid { grid-template-columns: 1fr 1fr; }
  .dash-row-item { grid-template-columns: 1fr; }
  .dash-main { padding: 16px; }
}
