/* Tezeit landing — palette consistent with the console (index.css) */
:root {
  --bg: #ffffff;
  --bg-alt: #f4f6fa;
  --navy: #18212d;
  --navy-2: #212d3d;
  --text: #17202a;
  --muted: #5a6675;
  --line: #e2e7ee;
  --accent: #246bfe;
  --accent-2: #1652d6;
  --accent-soft: #e8efff;
  --green: #1f8a5b;
  --amber: #a46400;
  --red: #bb2f3a;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 3px rgba(28,39,54,.06);
  --shadow-md: 0 10px 30px rgba(28,39,54,.10);
  --shadow-lg: 0 24px 60px rgba(28,39,54,.14);
  --wrap: 1120px;
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

.grad {
  background: linear-gradient(100deg, #2f7bff, #1652d6);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 20px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .12s ease, filter .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-lg { min-height: 52px; padding: 0 28px; font-size: 16px; }
.w-full { width: 100%; }

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(36,107,254,.28); }
.btn-primary:hover { filter: brightness(1.05); box-shadow: 0 8px 22px rgba(36,107,254,.36); }

.btn-secondary { background: #fff; color: var(--text); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { background: var(--bg-alt); border-color: #cdd5e0; }

.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: var(--bg-alt); }

/* ── Header ──────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 66px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { display: inline-flex; }
.brand-word {
  font-weight: 800; font-size: 21px; letter-spacing: -.02em; color: var(--navy);
}

.nav { display: flex; gap: 28px; margin-inline: auto; }
.nav a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color .15s; }
.nav a:hover { color: var(--text); }

.header-cta { display: flex; gap: 10px; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 84px 0 72px;
  background:
    radial-gradient(900px 500px at 82% -8%, rgba(36,107,254,.10), transparent 60%),
    radial-gradient(700px 400px at 0% 0%, rgba(36,107,254,.06), transparent 55%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 12px; border-radius: 999px;
}

.hero-copy h1 {
  margin: 20px 0 18px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08; letter-spacing: -.025em; font-weight: 800;
}
.lede { font-size: 19px; color: var(--muted); max-width: 560px; }
.lede strong { color: var(--text); font-weight: 700; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 22px; }

.hero-points {
  list-style: none; display: flex; flex-wrap: wrap; gap: 18px;
  font-size: 14px; color: var(--muted);
}
.hero-points li { display: flex; align-items: center; gap: 7px; }
.hero-points li::before {
  content: ""; width: 16px; height: 16px; flex: 0 0 16px;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Hero visual mock */
.hero-visual { display: flex; justify-content: center; }
.panel {
  width: 100%; max-width: 440px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.panel-head {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 16px; background: var(--navy); color: #cdd7e4;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-g { background: #35c07d; } .dot-a { background: #e6b23a; } .dot-r { background: #e15563; }
.panel-title { margin-left: 8px; font-size: 12.5px; font-weight: 600; letter-spacing: .01em; }

.panel-body { padding: 18px; display: grid; gap: 16px; }
.verdict {
  display: flex; align-items: center; gap: 14px;
  padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-alt);
}
.verdict-score { display: grid; place-items: center; width: 66px; height: 66px; flex: 0 0 66px;
  border-radius: 14px; background: linear-gradient(140deg,#fdecec,#ffd9dd); }
.score { font-size: 28px; font-weight: 800; color: var(--red); line-height: 1; }
.score-label { font-size: 11px; color: var(--red); font-weight: 600; text-transform: uppercase; }
.verdict-meta { display: grid; gap: 8px; }
.tag { display: inline-flex; align-self: start; padding: 4px 10px; border-radius: 999px; font-size: 12.5px; font-weight: 700; }
.tag-red { background: #ffe4e7; color: var(--red); }
.verdict-user { font-size: 13px; color: var(--muted); }

.signals-mini { display: grid; gap: 9px; }
.sig { display: grid; grid-template-columns: 1fr 90px 34px; align-items: center; gap: 10px; font-size: 12.5px; }
.sig span { color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sig i { height: 7px; border-radius: 4px; background: var(--line); position: relative; }
.sig i::after { content:""; position:absolute; inset:0; width: var(--w); background: var(--accent); border-radius: 4px; }
.sig b { text-align: right; font-variant-numeric: tabular-nums; color: var(--text); font-weight: 700; }

.raid-chip {
  font-size: 12.5px; font-weight: 600; color: var(--red);
  background: #ffe4e7; border: 1px solid #ffc9cf;
  padding: 8px 12px; border-radius: 10px; text-align: center;
}

/* ── Trust strip ─────────────────────────────────────── */
.strip { border-block: 1px solid var(--line); background: var(--bg-alt); }
.strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; padding: 26px 24px;
}
.strip-inner div { display: grid; gap: 3px; }
.strip-inner b { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -.01em; }
.strip-inner span { font-size: 13.5px; color: var(--muted); }

/* ── Sections ────────────────────────────────────────── */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--line); }

.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head h2 {
  margin: 14px 0 12px; font-size: clamp(27px, 3.5vw, 38px);
  letter-spacing: -.02em; line-height: 1.15; font-weight: 800;
}
.section-head p { color: var(--muted); font-size: 17px; }

/* Feature cards */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.card {
  padding: 26px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d3dcea; }
.ico {
  display: inline-grid; place-items: center; width: 46px; height: 46px;
  border-radius: 12px; background: var(--accent-soft); color: var(--accent);
  margin-bottom: 16px;
}
.card h3 { font-size: 18.5px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

/* Signals grid */
.sig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sig-col {
  padding: 24px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.sig-col h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: .06em;
  color: var(--accent); font-weight: 800; margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.sig-col ul { list-style: none; display: grid; gap: 10px; }
.sig-col li { position: relative; padding-left: 22px; font-size: 14.5px; color: var(--muted); }
.sig-col li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  position: relative; padding: 30px 26px 26px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  border-radius: 12px; background: var(--navy); color: #fff;
  font-weight: 800; font-size: 18px; margin-bottom: 16px;
}
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: start; }
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: 28px 24px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.plan-pop { border-color: var(--accent); box-shadow: 0 14px 40px rgba(36,107,254,.16); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px; white-space: nowrap;
}
.plan h3 { font-size: 20px; font-weight: 800; }
.price { display: flex; align-items: baseline; gap: 5px; margin: 14px 0 2px; }
.price .amt { font-size: 34px; font-weight: 800; letter-spacing: -.02em; }
.price .per { font-size: 14px; color: var(--muted); }
.plan-note { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.plan ul { list-style: none; display: grid; gap: 10px; margin-bottom: 22px; flex: 1; }
.plan li { position: relative; padding-left: 24px; font-size: 14.5px; color: var(--muted); }
.plan li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 15px; height: 15px;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* CTA band */
.cta-band { background: var(--navy); color: #fff; padding: 76px 0; }
.cta-inner { text-align: center; max-width: 660px; }
.cta-inner h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.cta-inner p { color: #b6c2d2; font-size: 18px; margin-bottom: 30px; }

/* Footer */
.site-footer { background: #0f1620; color: #aeb9c7; padding: 56px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 40px; }
.footer-brand .brand-word { color: #fff; font-size: 22px; }
.footer-brand p { margin-top: 8px; font-size: 14px; max-width: 260px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-links h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.footer-links a { display: block; font-size: 14.5px; padding: 4px 0; color: #aeb9c7; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px; color: #7c8798;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .cards, .sig-grid, .steps, .plans { grid-template-columns: repeat(2, 1fr); }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .hero { padding: 56px 0 48px; }
  .cards, .sig-grid, .steps, .plans, .strip-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .header-cta .btn-ghost { display: none; }
}
