@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOKENS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  /* Base */
  --bg:       #060608;
  --bg-2:     #0C0B10;
  --bg-3:     #111018;

  /* Surfaces */
  --glass:    rgba(255,255,255,.035);
  --glass-hv: rgba(255,255,255,.06);

  /* Borders */
  --border:   rgba(255,255,255,.08);
  --border-2: rgba(255,255,255,.14);

  /* Text */
  --text:     #F4F2FF;
  --muted:    #8A899D;
  --dim:      #4A4960;

  /* Accents */
  --violet:   #8B5CF6;
  --teal:     #00D4B4;
  --violet-dim: rgba(139,92,246,.12);
  --teal-dim:   rgba(0,212,180,.1);

  /* Gradients */
  --grad:         linear-gradient(135deg, var(--violet), var(--teal));
  --grad-text:    linear-gradient(95deg, #F4F2FF 0%, #B8A6FF 45%, #00D4B4 100%);
  --grad-border:  linear-gradient(135deg, rgba(139,92,246,.35), rgba(0,212,180,.25));

  --font: 'Inter', system-ui, sans-serif;
  --max:  1160px;
  --pad:  clamp(20px, 5vw, 72px);
  --r:    12px;
  --r-lg: 20px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESET & BASE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

/* Ambient glow blobs — fixed, don't scroll */
body::before {
  content: '';
  position: fixed;
  width: 700px; height: 700px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(139,92,246,.13) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  width: 600px; height: 600px;
  bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(0,212,180,.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* Typography */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.035em;
  color: var(--text);
}
h1 { font-size: clamp(40px, 6.5vw, 80px); }
h2 { font-size: clamp(28px, 4vw, 52px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); letter-spacing: -.025em; }
h4 { font-size: clamp(15px, 1.8vw, 19px); letter-spacing: -.018em; font-weight: 500; }

p  { color: var(--muted); line-height: 1.7; }
a  { color: var(--text); text-decoration: none; transition: color .2s; }
strong { color: var(--text); font-weight: 600; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GRADIENT TEXT UTILITY
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LAYOUT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

.section {
  padding: clamp(64px, 8vw, 112px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: var(--max);
  margin: 0 auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HEADER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--border);
  background: rgba(6,6,8,.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.02em;
  flex-shrink: 0;
}

.logo-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: .01em;
  transition: color .2s;
}
.site-nav a:hover { color: var(--text); }

.header-right { display: flex; gap: 8px; flex-shrink: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  padding: 10px 20px;
}

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }

/* Primary — gradient fill */
.btn-grad {
  background: var(--grad);
  color: #fff;
}
.btn-grad:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(139,92,246,.4), 0 4px 20px rgba(0,212,180,.2);
  color: #fff;
}
.btn-grad:active { transform: translateY(0); }

/* Secondary — glass outline */
.btn-outline {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-outline:hover {
  background: var(--glass-hv);
  border-color: rgba(255,255,255,.25);
  color: var(--text);
  transform: translateY(-1px);
}

/* Text link button */
.btn-text {
  background: none;
  color: var(--muted);
  padding: 10px 0;
}
.btn-text:hover { color: var(--text); }
.btn-text::after { content: ' →'; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BADGES / CHIPS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;

  /* Gradient border trick */
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad-border) border-box;
  border: 1px solid transparent;
  color: var(--muted);
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  padding: clamp(88px, 13vw, 160px) var(--pad) clamp(60px, 7vw, 96px);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

/* Subtle dot grid in hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-chip { margin-bottom: 28px; }

.hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  position: relative;
}

.hero-sub {
  max-width: 600px;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 64px;
}

/* Demo frame */
.hero-frame {
  border-radius: 16px;
  overflow: hidden;
  position: relative;

  /* Gradient border */
  background:
    linear-gradient(var(--bg-3), var(--bg-3)) padding-box,
    var(--grad-border) border-box;
  border: 1px solid transparent;

  aspect-ratio: 16/6.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glow under frame */
.hero-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: var(--grad);
  opacity: .08;
  filter: blur(24px);
  z-index: -1;
}

.hero-frame-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.hero-frame-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.hero-frame-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dim);
}

.hero-frame-link {
  font-size: 13px;
  color: var(--teal);
  border-bottom: 1px solid rgba(0,212,180,.3);
  transition: border-color .2s;
}
.hero-frame-link:hover { border-color: var(--teal); color: var(--teal); }

.hero-frame iframe { width: 100%; height: 100%; border: none; display: block; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION HEADER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  display: inline-block;
}

.sec-head { margin-bottom: 14px; }
.sec-sub  { max-width: 560px; font-size: 17px; }

.sec-header { margin-bottom: clamp(36px, 5vw, 56px); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GLASS CARD
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.glass-card {
  background:
    linear-gradient(var(--glass), var(--glass)) padding-box,
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.04)) border-box;
  border: 1px solid transparent;
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: background .25s;
}

.glass-card:hover {
  background:
    linear-gradient(var(--glass-hv), var(--glass-hv)) padding-box,
    var(--grad-border) border-box;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FEATURE GRID
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.feat-card {
  background:
    linear-gradient(var(--glass), var(--glass)) padding-box,
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.03)) border-box;
  border: 1px solid transparent;
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: all .25s;
}

.feat-card:hover {
  background:
    linear-gradient(var(--glass-hv), var(--glass-hv)) padding-box,
    var(--grad-border) border-box;
  transform: translateY(-2px);
}

.feat-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--glass-hv);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
}

.feat-card h4 { margin-bottom: 8px; }
.feat-card p  { font-size: 14px; line-height: 1.6; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TWO-COLUMN
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items: start; }
.col-3-2 { grid-template-columns: 3fr 2fr; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LISTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.dash-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.dash-list li {
  display: flex;
  gap: 13px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  align-items: flex-start;
}
.dash-list li::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--grad);
  margin-top: 11px;
  flex-shrink: 0;
  border-radius: 1px;
}

.step-list { list-style: none; counter-reset: s; display: flex; flex-direction: column; }
.step-list li {
  counter-increment: s;
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step-list li:last-child { border-bottom: none; }
.step-list li::before {
  content: counter(s, decimal-leading-zero);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  flex-shrink: 0;
  padding-top: 5px;
  min-width: 26px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step-list li h4 { margin-bottom: 5px; }
.step-list li p  { font-size: 14px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TABLE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  background:
    linear-gradient(var(--glass), var(--glass)) padding-box,
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.03)) border-box;
  border: 1px solid transparent;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}

.data-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dim);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  white-space: nowrap;
}

.data-table td {
  padding: 13px 18px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.data-table tr:last-child td { border-bottom: none; }

.data-table td:first-child {
  color: var(--text);
  font-weight: 500;
  font-size: 13px;
}

.data-table .hl td {
  background: var(--violet-dim);
}
.data-table .hl td:first-child {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.yes { color: var(--teal)  !important; font-weight: 500; }
.no  { color: var(--dim)   !important; }
.med { color: var(--muted) !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  background:
    linear-gradient(var(--glass), var(--glass)) padding-box,
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.03)) border-box;
  border: 1px solid transparent;
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: background .2s;
}
.faq-q:hover { background: var(--glass); }
.faq-q.open  { background: var(--glass); }

.faq-q-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.faq-ico {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  transition: all .2s;
}

.faq-q.open .faq-ico {
  background:
    linear-gradient(var(--violet-dim), var(--violet-dim)) padding-box,
    var(--grad-border) border-box;
  border-color: transparent;
  color: var(--violet);
  transform: rotate(45deg);
}

.faq-a { display: none; padding: 0 24px 20px; }
.faq-a.open { display: block; }
.faq-a p { font-size: 14px; line-height: 1.7; }
.faq-a a { color: var(--teal); border-bottom: 1px solid rgba(0,212,180,.3); }
.faq-a a:hover { border-color: var(--teal); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT / GEZIN BLOCK
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about-block {
  display: flex;
  gap: 48px;
  align-items: center;
  border-radius: var(--r-lg);
  background:
    linear-gradient(var(--glass), var(--glass)) padding-box,
    var(--grad-border) border-box;
  border: 1px solid transparent;
  padding: clamp(32px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}

.about-block::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(139,92,246,.1) 0%, transparent 70%);
  pointer-events: none;
}

.about-block-text { flex: 1; position: relative; }
.about-block-text h3 { margin-bottom: 14px; }
.about-block-text p  { font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.about-block-cta { flex-shrink: 0; position: relative; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-section {
  text-align: center;
  padding: clamp(64px, 8vw, 112px) var(--pad);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 100%, rgba(139,92,246,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 60%, rgba(0,212,180,.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section h2 { max-width: 640px; margin: 0 auto 16px; position: relative; }
.cta-section p  { max-width: 480px; margin: 0 auto 36px; font-size: 17px; position: relative; }
.cta-btns       { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: clamp(40px, 5vw, 64px) var(--pad);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px 40px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--dim);
  margin-top: 14px;
  max-width: 260px;
  line-height: 1.6;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a  { font-size: 13px; color: var(--dim); transition: color .2s; }
.footer-col a:hover { color: var(--muted); }

.footer-bottom {
  max-width: var(--max);
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: var(--dim); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INLINE LINK
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.lnk { color: var(--teal); border-bottom: 1px solid rgba(0,212,180,.25); }
.lnk:hover { color: var(--teal); border-color: var(--teal); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CALLOUT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.callout {
  background:
    linear-gradient(rgba(0,212,180,.06), rgba(0,212,180,.06)) padding-box,
    linear-gradient(135deg, rgba(0,212,180,.3), rgba(139,92,246,.2)) border-box;
  border: 1px solid transparent;
  border-radius: var(--r);
  padding: 18px 22px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 900px) {
  .two-col, .col-3-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-block { flex-direction: column; gap: 24px; }
  .site-nav { display: none; }
}

@media (max-width: 600px) {
  .feat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-frame { aspect-ratio: 4/3; }
  .faq-q { padding: 16px 18px; }
  .faq-a { padding: 0 18px 16px; }
  .about-block { padding: 24px 20px; }
  .header-right .btn-outline { display: none; }
}
