/* ─── SYNC HUB — Liquid Glass Dark ─────────────────────────────────── */
:root {
  --signal-blue: #0088CC;
  --pixel-green: #00C853;
  --neon-teal:   #00D4AA;
  --holo-purple: #7B61FF;
  --warn-red:    #FF5C7A;
  --deep-navy:   #060D1A;
  --layer-1:     #0D1F35;

  --glass-bg:     rgba(255,255,255,0.04);
  --glass-bg-hi:  rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.10);
  --glass-border-hi: rgba(255,255,255,0.20);

  --text:        #F0F4FF;
  --text-muted:  rgba(240,244,255,0.55);
  --text-dim:    rgba(240,244,255,0.35);

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 100px;

  --shadow-card: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);

  --gradient-text: linear-gradient(135deg,#F0F4FF 0%,#0088CC 55%,#00D4AA 100%);
  --gradient-blue-teal: linear-gradient(135deg,#0088CC 0%,#00D4AA 100%);
  --gradient-blue-purple: linear-gradient(135deg,#0088CC 0%,#7B61FF 100%);
  --gradient-blue-green: linear-gradient(135deg,#0088CC 0%,#00C853 100%);

  --font-display: "Inter", "Helvetica Neue", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--deep-navy);
  color: var(--text);
  font-family: var(--font-display);
  font-feature-settings: "ss01","cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(1200px 800px at 50% 0%, rgba(13,31,53,0.9) 0%, transparent 60%),
    radial-gradient(900px 600px at 80% 40%, rgba(123,97,255,0.08) 0%, transparent 70%),
    var(--deep-navy);
  min-height: 100vh;
}

/* Noise grain overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/></svg>");
}

/* Scanline overlay — very subtle */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.5) 0 1px, transparent 1px 4px);
}

/* Ambient color orbs (fixed bg) */
.orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  animation: orb-breathe 9s ease-in-out infinite;
}
.orb-1 { width: 700px; height: 700px; top: -180px; left: -200px; background: var(--signal-blue); opacity: 0.22; }
.orb-2 { width: 600px; height: 600px; top: 30%; right: -180px; background: var(--holo-purple); opacity: 0.16; animation-delay: -3s;}
.orb-3 { width: 500px; height: 500px; bottom: -120px; left: 20%; background: var(--pixel-green); opacity: 0.10; animation-delay: -6s;}
.orb-4 { width: 480px; height: 480px; top: 60%; left: 55%; background: var(--neon-teal); opacity: 0.10; animation-delay: -4s;}

@keyframes orb-breathe {
  0%,100% { transform: scale(0.95) translateY(0); }
  50%     { transform: scale(1.08) translateY(-20px); }
}

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; letter-spacing: -0.04em; line-height: 1.05; font-weight: 700; }
p { margin: 0; line-height: 1.55; color: var(--text-muted); }
a { color: inherit; text-decoration: none; }

.h-display {
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
}
.h-section {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.h-card { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; }

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gradient-text-blue-teal {
  background: var(--gradient-blue-teal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gradient-text-purple {
  background: linear-gradient(135deg,#A99CFF 0%,#7B61FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gradient-text-gold {
  background: linear-gradient(135deg,#F8E5C1 0%,#D9A86B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.muted { color: var(--text-muted); }
.dim { color: var(--text-dim); }
.mono { font-family: var(--font-mono); font-feature-settings: "ss01"; }

/* ── Layout primitives ──────────────────────────────────────────── */
.shell { position: relative; z-index: 2; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
section { position: relative; padding: 120px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(123,97,255,0.08);
  border: 1px solid rgba(123,97,255,0.25);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B5A8FF;
  font-family: var(--font-mono);
}
.section-label.blue { background: rgba(0,136,204,0.08); border-color: rgba(0,136,204,0.3); color: #5EC8FF; }
.section-label.teal { background: rgba(0,212,170,0.08); border-color: rgba(0,212,170,0.3); color: #5EE7C9; }
.section-label.green { background: rgba(0,200,83,0.08); border-color: rgba(0,200,83,0.3); color: #5EE89C; }

/* ── Glass ──────────────────────────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative;
}
.glass-hi {
  background: var(--glass-bg-hi);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}
.glass-pill {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass, .glass-hi, .glass-pill { background: rgba(20,28,46,0.85); }
}

.glass-card {
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.glass-card:hover {
  transform: translateY(-3px);
  border-color: var(--glass-border-hi);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.12), inset 0 0 30px rgba(0,136,204,0.04);
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.22s ease;
  white-space: nowrap;
  background: transparent;
  color: var(--text);
  line-height: 1;
}
.btn-primary {
  background: var(--gradient-blue-teal);
  color: white;
  box-shadow: 0 0 40px rgba(0,136,204,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-primary:hover { transform: translateY(-1px) scale(1.02); box-shadow: 0 0 60px rgba(0,136,204,0.5), inset 0 1px 0 rgba(255,255,255,0.2);}
.btn-ghost {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--glass-border-hi); }
.btn-lg { padding: 18px 28px; font-size: 17px; min-height: 56px; }
.btn-xl { padding: 22px 36px; font-size: 19px; min-height: 64px; }

.btn-gradient-border {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid transparent;
  background-clip: padding-box;
}
.btn-gradient-border::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient-blue-purple);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* ── Icons (inline svg)  ───────────────────────────────────────── */
.icon { width: 18px; height: 18px; flex: 0 0 auto; }
.icon-lg { width: 24px; height: 24px; }

/* Send / paper-plane glyph used as our Telegram-channel icon */
.glyph-send {
  display: inline-block; width: 18px; height: 18px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M21.5 3.5L2 11.2c-.4.2-.4.7 0 .9l5.4 1.9 2 6.1c.1.4.6.5.9.2l3-2.7 4.7 3.5c.4.3.9 0 1-.4l3-15.6c.1-.4-.3-.7-.5-.6zM9.4 14.3l8.2-7.2-5.9 8.3-.5 3.5-1.8-4.6z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M21.5 3.5L2 11.2c-.4.2-.4.7 0 .9l5.4 1.9 2 6.1c.1.4.6.5.9.2l3-2.7 4.7 3.5c.4.3.9 0 1-.4l3-15.6c.1-.4-.3-.7-.5-.6zM9.4 14.3l8.2-7.2-5.9 8.3-.5 3.5-1.8-4.6z'/></svg>") no-repeat center / contain;
}

/* ── Navbar ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  height: 68px;
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: backdrop-filter 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.nav-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav.scrolled {
  background: rgba(6,13,26,0.6);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: rgba(255,255,255,0.06);
}
.brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 17px;
}
.brand-mark {
  width: 38px; height: 26px;
  background: url("assets/sync-logo.png") no-repeat center / contain;
  filter: drop-shadow(0 4px 12px rgba(0,136,204,0.5));
  flex: 0 0 38px;
}
.brand-mark.lg { width: 56px; height: 38px; flex: 0 0 56px; }
.brand-sync { color: var(--signal-blue); }
.brand-hub  { color: var(--text); opacity: 0.95; }
.nav-links {
  display: flex; gap: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 4px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-links a {
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav .btn { padding: 10px 16px; font-size: 13.5px; min-height: 38px;}

@media (max-width: 880px) {
  .nav-links { display: none; }
}

@media (max-width: 760px) {
  .nav { height: auto; padding: 12px 0; }
  .nav-inner {
    padding: 0 18px;
    gap: 12px;
    align-items: center;
  }
  .nav-cta { margin-left: auto; }
  .nav-cta .btn-ghost { display: none; }
  .nav .btn {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 12.5px;
  }
  .brand { font-size: 15px; }
  .brand-mark { width: 34px; height: 24px; flex: 0 0 34px; }
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-canvas {
  position: absolute; inset: 0;
  z-index: 0; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 980px; padding: 0 28px;}

.hero-badge {
  margin: 0 auto 28px;
  background: rgba(0,200,83,0.08);
  border-color: rgba(0,200,83,0.3);
  color: #A5F2C6;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pixel-green);
  box-shadow: 0 0 12px rgba(0,200,83,0.8);
  animation: pulse 2s ease infinite;
  flex: 0 0 8px;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1);}
  50%     { opacity: 0.4; transform: scale(0.85);}
}

.hero h1 { margin-bottom: 24px; }
.hero h1 .l1 { display: block; color: var(--text); }
.hero h1 .l2 { display: block; }
.hero h1 .l3 { display: block; color: rgba(240,244,255,0.45); }

.hero-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.5;
  color: var(--text-muted);
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-trust {
  margin-top: 26px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.hero-trust .sep { color: var(--signal-blue); margin: 0 10px; }

/* hero social proof */
.hero-social-proof {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 18px 10px 12px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
}
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--deep-navy);
  display: grid; place-items: center;
  font-size: 10px; font-weight: 700; color: white;
  margin-left: -10px;
}
.avatar-stack span:first-child { margin-left: 0; }
.proof-text { font-size: 13px; color: var(--text-muted); font-family: var(--font-mono); }
.proof-text strong { color: var(--text); font-weight: 600; }

/* testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1024px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.testi .quote-mark {
  font-family: Georgia, serif;
  font-size: 56px; line-height: 0.6;
  color: var(--signal-blue);
  opacity: 0.5;
  margin-bottom: -8px;
}
.testi p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  flex: 1;
}
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .who .ava {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; color: white;
  flex: 0 0 42px;
}
.testi .who .nm { font-weight: 600; font-size: 14px; letter-spacing: -0.01em; }
.testi .who .sub { font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); }
.testi .stars {
  display: flex; gap: 2px;
  color: #FFC15C;
  font-size: 13px;
}

/* FAQ */
.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq {
  background: var(--glass-bg);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq[open] { border-color: var(--glass-border-hi); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-size: 16px; font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 14px; height: 14px;
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size: 100% 2px, 2px 100%;
  background-position: center;
  background-repeat: no-repeat;
  flex: 0 0 14px;
  transition: transform 0.25s ease;
  color: var(--signal-blue);
}
.faq[open] summary::after {
  background-size: 100% 2px, 2px 0;
  transform: rotate(180deg);
}
.faq .ans {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}
.faq .ans strong { color: var(--text); font-weight: 600; }

/* Hero visual cluster */
.hero-visual {
  position: relative;
  margin-top: 80px;
  width: 100%;
  max-width: 1100px;
  height: 540px;
  margin-left: auto; margin-right: auto;
  perspective: 1600px;
}
.hero-visual-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(10deg) rotateY(-2deg);
}

/* Phone frame */
.phone {
  width: 320px;
  height: 640px;
  border-radius: 44px;
  background: linear-gradient(180deg,#1a2438 0%,#0a1224 100%);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px;
  box-shadow:
    0 30px 100px rgba(0,0,0,0.6),
    0 10px 30px rgba(0,136,204,0.18),
    inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
}
.phone::before {
  content: "";
  position: absolute;
  top: 22px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 28px;
  background: #000;
  border-radius: 16px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(0,136,204,0.18) 0%, transparent 60%),
    #06101F;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 60px rgba(0,136,204,0.08);
}

.hero-phone-center {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) translateZ(60px);
  z-index: 3;
}
.hero-card-left {
  position: absolute;
  left: 4%; top: 18%;
  width: 280px;
  transform: rotateY(18deg) translateZ(0);
  z-index: 1;
}
.hero-card-right {
  position: absolute;
  right: 4%; top: 12%;
  width: 280px;
  transform: rotateY(-18deg) translateZ(0);
  z-index: 1;
}
.hero-notif {
  position: absolute;
  left: 50%; bottom: 4%;
  transform: translateX(-50%) translateZ(80px);
  z-index: 4;
  width: 340px;
}

/* phone UI bits */
.phone-ui { padding: 50px 16px 16px; height: 100%; display: flex; flex-direction: column; gap: 12px; color: var(--text); font-size: 12px;}
.phone-head { display: flex; align-items: center; justify-content: space-between; padding: 0 4px;}
.phone-head .title { font-weight: 700; font-size: 15px; letter-spacing: -0.02em;}
.phone-head .meta { font-size: 10px; color: var(--text-dim); font-family: var(--font-mono); }
.mini-stat {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  font-size: 11px;
}
.mini-stat .dot { width:8px; height:8px; border-radius:50%; flex:0 0 8px;}
.mini-stat .label { color: var(--text-muted); flex: 1; }
.mini-stat .val { font-family: var(--font-mono); font-weight: 600; color: var(--text); }
.mini-stat.green { background: rgba(0,200,83,0.07); border-color: rgba(0,200,83,0.18);}
.mini-stat.blue  { background: rgba(0,136,204,0.07); border-color: rgba(0,136,204,0.18);}
.mini-stat.teal  { background: rgba(0,212,170,0.07); border-color: rgba(0,212,170,0.18);}

.hero-card-inner { padding: 18px 18px 16px;}
.hero-card-inner .ttl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-dim); font-family: var(--font-mono); margin-bottom: 10px;}
.hero-card-inner .big { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px;}
.hero-card-inner .sub { font-size: 12px; color: var(--text-muted); }

.mini-bars { display:flex; gap: 4px; align-items: flex-end; height: 36px; margin-top: 12px;}
.mini-bars span { flex: 1; background: linear-gradient(180deg, var(--pixel-green), rgba(0,200,83,0.3)); border-radius: 2px;}
.mini-bars span:nth-child(1){height: 30%;}
.mini-bars span:nth-child(2){height: 50%;}
.mini-bars span:nth-child(3){height: 38%;}
.mini-bars span:nth-child(4){height: 65%;}
.mini-bars span:nth-child(5){height: 48%;}
.mini-bars span:nth-child(6){height: 82%;}
.mini-bars span:nth-child(7){height: 70%;}
.mini-bars span:nth-child(8){height: 95%;}

.notif-inner { display: flex; align-items: center; gap: 12px; padding: 14px 18px;}
.notif-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient-blue-purple);
  display: grid; place-items: center; color: white; font-weight: 700; font-size: 13px;
  flex: 0 0 36px;
}
.notif-body { flex: 1; min-width: 0;}
.notif-title { font-size: 12.5px; font-weight: 600; }
.notif-sub { font-size: 11px; color: var(--text-muted);}
.notif-amount { font-family: var(--font-mono); font-weight: 700; color: var(--pixel-green); font-size: 13px;}

/* Hero rule pipeline (inside phone) */
.rule-flow { display: flex; flex-direction: column; gap: 8px; margin-top: 4px;}
.rule-node {
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  font-size: 11px;
  display: flex; align-items: center; gap: 8px;
}
.rule-node .tag {
  font-family: var(--font-mono);
  font-size: 9px; padding: 2px 6px;
  background: rgba(0,136,204,0.15);
  color: #5EC8FF;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.rule-node .name { color: var(--text); font-weight: 500; }
.rule-arrow { text-align: center; color: var(--text-dim); font-size: 12px; height: 12px; line-height: 1;}

/* ── Generic grids ──────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px;}
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;}

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr;}
  .grid-4 { grid-template-columns: 1fr 1fr;}
}
@media (max-width: 680px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr;}
}

.section-head { text-align: center; margin-bottom: 56px; }
.section-head .section-label { margin-bottom: 18px; }
.section-head p { margin-top: 18px; max-width: 600px; margin-left: auto; margin-right: auto; font-size: 18px;}

/* ── Problem cards ──────────────────────────────────────────────── */
.problem-card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(255,92,122,0.08);
  border: 1px solid rgba(255,92,122,0.2);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.problem-card .icon-wrap.purple { background: rgba(123,97,255,0.08); border-color: rgba(123,97,255,0.2);}
.problem-card .stat {
  font-size: 44px; font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg,#FF5C7A 0%,#FF8FA5 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
  font-feature-settings: "tnum";
}
.problem-card h3 { font-size: 20px; margin-bottom: 10px;}
.problem-card p { font-size: 14.5px; line-height: 1.55;}
.problem-card .badge-red {
  margin-top: 18px;
  display: inline-flex; align-items: center;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255,92,122,0.08);
  border: 1px solid rgba(255,92,122,0.2);
  color: #FFB7C4;
  font-size: 12px;
  font-family: var(--font-mono);
}

.transition-bar {
  text-align: center;
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  font-family: var(--font-mono);
}
.transition-bar::before, .transition-bar::after {
  content: ""; height: 1px; flex: 1; max-width: 200px;
  background: linear-gradient(90deg, transparent, var(--signal-blue), transparent);
}

/* ── Comparison table ──────────────────────────────────────────── */
.compare {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.compare-row:last-child { border-bottom: none; }
.compare-cell { padding: 18px 22px; font-size: 14.5px; display: flex; align-items: center; gap: 10px; }
.compare-cell.feat { color: var(--text); font-weight: 500; }
.compare-cell.old { color: var(--text-muted); background: rgba(255,92,122,0.04); }
.compare-cell.new { color: var(--text); background: rgba(0,136,204,0.06); position: relative; }
.compare-head {
  background: rgba(255,255,255,0.04);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.compare-head .compare-cell { padding-top: 22px; padding-bottom: 22px; color: var(--text-muted);}
.compare-head .compare-cell.new { color: var(--text); position: relative;}
.compare-head .compare-cell.new::after {
  content: "VOCÊ";
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 10px; letter-spacing: 0.16em;
  padding: 3px 8px;
  background: var(--gradient-blue-teal);
  border-radius: 6px;
  color: white;
}
.icon-x { color: #FF7691; font-weight: 700; }
.icon-check { color: var(--neon-teal); font-weight: 700; }

.compare-summary {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-top: 36px;
}
.summary-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-family: var(--font-mono);
}
.summary-pill.red {
  background: rgba(255,92,122,0.08);
  border: 1px solid rgba(255,92,122,0.2);
  color: #FFB7C4;
}
.summary-pill.green {
  background: rgba(0,200,83,0.1);
  border: 1px solid rgba(0,200,83,0.3);
  color: #A5F2C6;
  box-shadow: 0 0 30px rgba(0,200,83,0.15);
}

@media (max-width: 760px) {
  .compare-row { grid-template-columns: 1.2fr 0.9fr 1fr; }
  .compare-cell { padding: 14px 12px; font-size: 13px; }
}

/* ── Feature rows ──────────────────────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 120px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }
.feature-row.full { grid-template-columns: 1fr; gap: 32px; }

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: rgba(0,136,204,0.1);
  border: 1px solid rgba(0,136,204,0.25);
  margin-bottom: 22px;
  font-size: 24px;
  position: relative;
}
.feature-icon::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 60%);
}
.feature-icon.purple { background: rgba(123,97,255,0.1); border-color: rgba(123,97,255,0.25);}
.feature-icon.green { background: rgba(0,200,83,0.1); border-color: rgba(0,200,83,0.25);}
.feature-icon.teal { background: rgba(0,212,170,0.1); border-color: rgba(0,212,170,0.25);}
.feature-icon.gold { background: rgba(217,168,107,0.1); border-color: rgba(217,168,107,0.25);}

.feature-text h3 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.feature-text p { font-size: 17px; max-width: 480px; line-height: 1.6;}
.feature-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px;}
.feature-pills span {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 12.5px;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse .feature-text { order: 0; }
  .feature-row.reverse .feature-visual { order: 1; }
}

/* Feature visual: rule builder */
.rule-builder { padding: 24px; }
.rule-builder .builder-title {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rule-builder .builder-title .nm { font-weight: 600; font-size: 14px;}
.rule-builder .builder-title .meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted);}
.builder-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.flow-node {
  position: relative;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px;
}
.flow-node .badge {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.flow-node .badge.src { background: rgba(0,136,204,0.15); color: #5EC8FF; }
.flow-node .badge.filt { background: rgba(123,97,255,0.15); color: #B5A8FF; }
.flow-node .badge.ai { background: rgba(0,212,170,0.15); color: #5EE7C9;}
.flow-node .badge.dst { background: rgba(0,200,83,0.15); color: #A5F2C6;}
.flow-node .nm { font-weight: 500; color: var(--text); }
.flow-arrow {
  height: 18px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.flow-arrow::before {
  content: ""; position: absolute;
  top: 0; bottom: 0; left: 50%; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0,136,204,0.5), transparent);
}
.flow-arrow .dot {
  width: 5px; height: 5px; border-radius: 50%; background: #5EC8FF;
  position: relative; z-index: 1;
  animation: flow-pulse 1.8s linear infinite;
}
@keyframes flow-pulse {
  0% { transform: translateY(-20px); opacity: 0;}
  20% { opacity: 1;}
  80% { opacity: 1;}
  100% { transform: translateY(20px); opacity: 0;}
}
.builder-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; font-family: var(--font-mono);
}
.builder-foot .counter {
  color: var(--neon-teal);
}

/* AI chat demo */
.chat-demo { padding: 24px; min-height: 440px; display: flex; flex-direction: column;}
.chat-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 16px;
  font-size: 12.5px;
  font-family: var(--font-mono);
  color: var(--text-muted);
}
.chat-head .dot-cluster { display: flex; gap: 4px;}
.chat-head .dot-cluster span { width:9px; height:9px; border-radius: 50%; background: rgba(255,255,255,0.1);}
.chat-msgs { flex: 1; display: flex; flex-direction: column; gap: 14px; }
.chat-msg {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.5;
}
.chat-msg.user {
  align-self: flex-end;
  background: rgba(0,136,204,0.18);
  border: 1px solid rgba(0,136,204,0.35);
  color: var(--text);
}
.chat-msg.ai {
  align-self: flex-start;
  background: rgba(123,97,255,0.1);
  border: 1px solid rgba(123,97,255,0.25);
  color: var(--text);
  white-space: pre-line;
}
.chat-loading {
  align-self: flex-start;
  display: flex; gap: 5px; padding: 12px 14px;
  background: rgba(123,97,255,0.1);
  border: 1px solid rgba(123,97,255,0.25);
  border-radius: 14px;
}
.chat-loading span { width: 6px; height: 6px; border-radius: 50%; background: #B5A8FF; animation: bounce 1.2s ease infinite;}
.chat-loading span:nth-child(2) { animation-delay: 0.15s;}
.chat-loading span:nth-child(3) { animation-delay: 0.3s;}
@keyframes bounce {
  0%,60%,100% { transform: translateY(0); opacity: 0.5;}
  30% { transform: translateY(-5px); opacity: 1;}
}
.chat-cursor { display: inline-block; width: 2px; height: 1em; background: #B5A8FF; vertical-align: -3px; margin-left: 2px; animation: blink 0.7s steps(2) infinite;}
@keyframes blink { 50% { opacity: 0; } }

.chat-actions { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.chat-actions button {
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  font-size: 12px;
  font-family: var(--font-display);
  cursor: pointer;
}
.chat-actions button.primary {
  background: rgba(0,136,204,0.18);
  border-color: rgba(0,136,204,0.35);
  color: #B6E5FF;
}

/* CRM Kanban */
.kanban {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 280px;
  gap: 16px;
  min-height: 440px;
}
.kanban-col { display: flex; flex-direction: column; gap: 10px;}
.kanban-col-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4px 10px;
  font-size: 12px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 6px;
}
.kanban-col-head .count {
  font-family: var(--font-mono);
  padding: 2px 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 11px;
  color: var(--text);
}
.kanban-col.done .kanban-col-head .count { background: rgba(0,200,83,0.15); color: #A5F2C6;}
.kanban-card {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 6px;
  cursor: grab;
}
.kanban-card.dragging { box-shadow: 0 8px 24px rgba(0,136,204,0.3); border-color: rgba(0,136,204,0.5); opacity: 0.85; transform: rotate(-2deg) scale(1.02);}
.kanban-card.done { background: rgba(0,200,83,0.06); border-color: rgba(0,200,83,0.15);}
.kanban-card .top { display: flex; align-items: center; gap: 8px;}
.kanban-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 700;
  color: white;
}
.kanban-card .nm { font-size: 12.5px; font-weight: 500;}
.kanban-card .val { font-family: var(--font-mono); font-weight: 700; font-size: 13px; color: var(--neon-teal);}
.kanban-card .tag { font-size: 10px; font-family: var(--font-mono); padding: 2px 6px; background: rgba(255,255,255,0.06); border-radius: 6px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); align-self: flex-start;}

.kanban-side {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 14px;
}
.contact-head { display: flex; align-items: center; gap: 12px; }
.contact-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-blue-purple);
  display: grid; place-items: center;
  font-weight: 700; font-size: 16px;
}
.contact-head .nm { font-weight: 600; font-size: 15px;}
.contact-head .sub { font-size: 12px; color: var(--text-muted); font-family: var(--font-mono);}
.contact-timeline { display: flex; flex-direction: column; gap: 10px; font-size: 12px; padding-left: 14px; border-left: 1px solid rgba(255,255,255,0.08);}
.contact-timeline div { position: relative; color: var(--text-muted);}
.contact-timeline div::before { content: ""; position: absolute; left: -18px; top: 6px; width: 8px; height: 8px; border-radius: 50%; background: var(--signal-blue);}
.contact-actions { display: flex; gap: 6px; flex-wrap: wrap;}
.contact-actions button {
  padding: 6px 10px; font-size: 11px;
  background: rgba(0,136,204,0.1); border: 1px solid rgba(0,136,204,0.25);
  color: #B6E5FF; border-radius: 8px; cursor: pointer; font-family: var(--font-display);
}

@media (max-width: 1100px) {
  .kanban { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .kanban-side { display: none; }
}
@media (max-width: 760px) {
  .kanban { grid-template-columns: 1fr 1fr; }
}

/* Payment feed */
.payment-feed { padding: 24px; }
.payment-feed h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.tx-list { display: flex; flex-direction: column; gap: 8px; }
.tx {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0,200,83,0.05);
  border: 1px solid rgba(0,200,83,0.12);
  animation: tx-in 0.5s ease;
}
@keyframes tx-in {
  from { opacity: 0; transform: translateY(-10px);}
  to   { opacity: 1; transform: translateY(0);}
}
.tx .dot-tx { width: 8px; height: 8px; border-radius: 50%; background: var(--pixel-green); box-shadow: 0 0 8px var(--pixel-green); flex: 0 0 8px;}
.tx .who { flex: 1; font-size: 13px; font-weight: 500;}
.tx .who small { display: block; font-size: 11px; color: var(--text-muted); font-family: var(--font-mono);}
.tx .amt { font-family: var(--font-mono); font-weight: 700; color: var(--pixel-green); font-size: 13.5px;}

.mrr-card { margin-top: 16px; padding: 18px; border-radius: var(--radius-md); background: rgba(0,200,83,0.05); border: 1px solid rgba(0,200,83,0.15);}
.mrr-top { display: flex; align-items: baseline; gap: 12px;}
.mrr-top .lbl { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em;}
.mrr-top .val { font-size: 28px; font-weight: 700; letter-spacing: -0.03em;}
.mrr-top .delta { font-family: var(--font-mono); font-size: 12px; color: var(--pixel-green);}
.mrr-spark {
  margin-top: 12px;
  height: 60px;
  background: linear-gradient(180deg, rgba(0,200,83,0.18), transparent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60' preserveAspectRatio='none'><path d='M0,50 L20,42 L40,46 L60,30 L80,34 L100,22 L120,28 L140,16 L160,20 L180,8 L200,4 L200,60 L0,60 Z'/></svg>") no-repeat center/100% 100%;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60' preserveAspectRatio='none'><path d='M0,50 L20,42 L40,46 L60,30 L80,34 L100,22 L120,28 L140,16 L160,20 L180,8 L200,4 L200,60 L0,60 Z'/></svg>") no-repeat center/100% 100%;
  position: relative;
}
.mrr-spark::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 2px;
  background: var(--pixel-green);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60' preserveAspectRatio='none'><polyline fill='none' stroke='black' stroke-width='2' points='0,50 20,42 40,46 60,30 80,34 100,22 120,28 140,16 160,20 180,8 200,4'/></svg>") no-repeat center / 100% 100%;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60' preserveAspectRatio='none'><polyline fill='none' stroke='black' stroke-width='2' points='0,50 20,42 40,46 60,30 80,34 100,22 120,28 140,16 160,20 180,8 200,4'/></svg>") no-repeat center / 100% 100%;
  height: 60px; top: 0;
}

/* Calendar */
.calendar { padding: 28px;}
.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px;}
.calendar-head .mn { font-size: 18px; font-weight: 600; letter-spacing: -0.02em;}
.calendar-head .ctrls { display: flex; gap: 6px;}
.calendar-head .ctrls button {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text); cursor: pointer;
  display: grid; place-items: center;
  font-family: var(--font-mono);
}
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-day-name { padding: 6px; font-size: 10px; font-family: var(--font-mono); color: var(--text-muted); text-align: center; text-transform: uppercase; letter-spacing: 0.12em; }
.cal-day {
  aspect-ratio: 1.2 / 1;
  min-height: 56px;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: column; gap: 4px;
  font-size: 11px;
  position: relative;
}
.cal-day.muted { opacity: 0.35;}
.cal-day .num { font-family: var(--font-mono); color: var(--text-muted);}
.cal-day .post { padding: 1px 5px; border-radius: 4px; font-size: 9px; line-height: 1.3; font-family: var(--font-mono);}
.cal-day .post.blue { background: rgba(0,136,204,0.2); color: #B6E5FF;}
.cal-day .post.teal { background: rgba(0,212,170,0.2); color: #B6F2E5;}
.cal-day .post.purple { background: rgba(123,97,255,0.2); color: #D5CCFF;}
.cal-day .post.green { background: rgba(0,200,83,0.2); color: #B6F2C9;}
.cal-day.today { border-color: rgba(0,136,204,0.4); background: rgba(0,136,204,0.06);}
.cal-day.active { border-color: rgba(0,212,170,0.5); background: rgba(0,212,170,0.08); box-shadow: 0 0 20px rgba(0,212,170,0.15);}
.cal-day.ai-suggest::after {
  content: "💡";
  position: absolute; top: 4px; right: 4px;
  font-size: 10px;
}

.calendar-tip {
  margin-top: 14px;
  display: inline-flex; gap: 8px; align-items: center;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(0,212,170,0.08);
  border: 1px solid rgba(0,212,170,0.25);
  color: #B6F2E5;
  font-size: 12.5px;
  font-family: var(--font-mono);
}

.queue { margin-top: 18px; display: flex; flex-direction: column; gap: 8px;}
.queue-item {
  display: flex; gap: 12px; align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}
.queue-item .ch {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 11px;
  background: var(--gradient-blue-purple);
  flex: 0 0 28px;
}
.queue-item .nm { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
.queue-item .nm small { display: block; font-size: 11px; color: var(--text-muted); font-family: var(--font-mono);}
.queue-item .stat-pill {
  padding: 3px 10px; border-radius: var(--radius-pill);
  font-size: 10px; font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.queue-item .stat-pill.scheduled { background: rgba(0,136,204,0.15); color: #B6E5FF;}
.queue-item .stat-pill.draft { background: rgba(255,255,255,0.06); color: var(--text-muted);}

/* ── Multi-device showcase ─────────────────────────────────────── */
.devices {
  position: relative;
  margin: 40px auto 0;
  height: 720px;
  perspective: 1400px;
}
.devices-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
}
.dev-left, .dev-right, .dev-center {
  position: absolute;
  top: 50%; left: 50%;
}
.dev-center {
  transform: translate(-50%, -50%);
  z-index: 3;
}
.dev-left {
  width: 280px; height: 560px;
  transform: translate(-130%, -45%) rotateY(22deg) translateZ(-40px);
  z-index: 1;
}
.dev-right {
  width: 280px; height: 560px;
  transform: translate(30%, -45%) rotateY(-22deg) translateZ(-40px);
  z-index: 1;
}
.dev-left .phone, .dev-right .phone {
  width: 280px; height: 560px;
  border-radius: 40px;
  padding: 12px;
}
.dev-left .phone::before, .dev-right .phone::before { width: 90px; height: 24px; top: 18px;}
.dev-left .phone-screen, .dev-right .phone-screen { border-radius: 28px;}
.dev-left .phone-ui, .dev-right .phone-ui { padding: 42px 14px 14px; font-size: 11px;}

.feature-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
  margin-top: -40px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}
.feature-strip span:not(:last-child)::after { content: "·"; margin-left: 24px; color: var(--signal-blue);}

@media (max-width: 900px) {
  .devices { height: 640px; }
  .dev-left, .dev-right { display: none; }
}

/* ── Video section ─────────────────────────────────────────────── */
.video-frame {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 80px rgba(0,136,204,0.2), 0 30px 80px rgba(0,0,0,0.5);
}
.video-thumb {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 30% 30%, rgba(0,136,204,0.4) 0%, transparent 60%),
    radial-gradient(50% 80% at 80% 70%, rgba(123,97,255,0.3) 0%, transparent 60%),
    linear-gradient(135deg,#0a1428 0%,#080d1a 100%);
  display: grid; place-items: center;
}
.video-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 30px, rgba(255,255,255,0.015) 30px 31px);
}
.video-mock-ui {
  position: absolute; left: 28px; top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}
.video-mock-ui .row { display: flex; align-items: center; gap: 6px; margin-bottom: 4px;}
.video-mock-ui .row .dots { display: flex; gap: 4px;}
.video-mock-ui .row .dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15);}
.play-btn {
  position: relative;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: 0 0 40px rgba(0,136,204,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.play-btn:hover { transform: scale(1.08); box-shadow: 0 0 60px rgba(0,136,204,0.6);}
.play-btn::before {
  content: ""; width: 0; height: 0;
  border-left: 24px solid white;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.video-bar {
  position: absolute; left: 22px; right: 22px; bottom: 18px;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}
.video-bar .progress {
  flex: 1; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.1); overflow: hidden;
}
.video-bar .progress::before { content: ""; display: block; width: 32%; height: 100%; background: var(--gradient-blue-teal); }
.video-bar .time { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted);}

.video-stats { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap;}
.video-stats .glass-pill { padding: 10px 18px; font-family: var(--font-mono); font-size: 13px;}

/* ── Analytics dashboard ───────────────────────────────────────── */
.dash { padding: 28px; }
.dash-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;}
.dash-head .nm { font-weight: 600; font-size: 16px; letter-spacing: -0.01em;}
.dash-head .nm small { color: var(--text-muted); font-family: var(--font-mono); font-size: 11px; margin-left: 8px;}
.dash-head .tabs { display: flex; gap: 4px; background: rgba(255,255,255,0.03); padding: 3px; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,0.06);}
.dash-head .tabs button { padding: 6px 12px; border: none; background: transparent; color: var(--text-muted); font-size: 12px; border-radius: 100px; cursor: pointer; font-family: var(--font-display);}
.dash-head .tabs button.active { background: rgba(255,255,255,0.06); color: var(--text);}

.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 22px;}
.kpi {
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
}
.kpi .lbl { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 8px; display: flex; align-items: center; gap: 6px;}
.kpi .lbl .ico { width: 16px; height: 16px; border-radius: 4px; display: inline-block; flex: 0 0 16px;}
.kpi .val { font-size: 26px; font-weight: 700; letter-spacing: -0.025em; font-feature-settings: "tnum"; margin-bottom: 4px;}
.kpi .delta { font-family: var(--font-mono); font-size: 11.5px; color: var(--pixel-green);}
.kpi.b .ico { background: var(--signal-blue);}
.kpi.t .ico { background: var(--neon-teal);}
.kpi.g .ico { background: var(--pixel-green);}
.kpi.p .ico { background: var(--holo-purple);}

@media (max-width: 1024px) { .kpi-row { grid-template-columns: 1fr 1fr;}}

.dash-mid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 18px; margin-bottom: 18px;}
.chart-card { padding: 20px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-md);}
.chart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px;}
.chart-head .ttl { font-size: 14px; font-weight: 600;}
.chart-head .lgnd { display: flex; gap: 12px; font-size: 11px; font-family: var(--font-mono); color: var(--text-muted);}
.chart-head .lgnd span { display: flex; align-items: center; gap: 5px;}
.chart-head .lgnd .sw { width: 8px; height: 8px; border-radius: 2px;}
.chart-svg { width: 100%; height: 220px; display: block;}

.donut-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px;}
.donut { position: relative; width: 200px; height: 200px;}
.donut-center { position: absolute; inset: 0; display: grid; place-items: center; text-align: center;}
.donut-center .lbl { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em;}
.donut-center .val { font-size: 22px; font-weight: 700; letter-spacing: -0.02em;}
.donut-legend { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; font-size: 12px; font-family: var(--font-mono); width: 100%;}
.donut-legend div { display: flex; align-items: center; gap: 8px; color: var(--text-muted);}
.donut-legend .sw { width: 10px; height: 10px; border-radius: 3px;}

.dash-bot { display: grid; grid-template-columns: 1fr 1fr; gap: 18px;}
@media (max-width: 900px) {
  .dash-mid, .dash-bot { grid-template-columns: 1fr; }
}

.hbar-list { display: flex; flex-direction: column; gap: 10px; padding-top: 4px;}
.hbar { display: flex; align-items: center; gap: 10px; font-size: 12px;}
.hbar .lbl { font-family: var(--font-mono); width: 60px; color: var(--text-muted);}
.hbar .track { flex: 1; height: 10px; background: rgba(255,255,255,0.04); border-radius: 5px; overflow: hidden;}
.hbar .fill { height: 100%; background: var(--gradient-blue-teal); border-radius: 5px;}
.hbar .val { font-family: var(--font-mono); width: 50px; text-align: right; color: var(--text);}

.tbl { width: 100%; border-collapse: collapse; font-size: 13px;}
.tbl th, .tbl td { padding: 12px 10px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05);}
.tbl th { font-family: var(--font-mono); font-size: 11px; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em;}
.tbl tr.hover td, .tbl tbody tr:hover td { background: rgba(0,136,204,0.05);}
.tbl .pill { display: inline-block; padding: 3px 8px; border-radius: var(--radius-pill); font-size: 10px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em;}
.tbl .pill.active { background: rgba(0,200,83,0.12); color: #A5F2C6;}

/* ── Pricing ───────────────────────────────────────────────────── */
.billing-toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  margin: 0 auto;
}
.billing-toggle button {
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 500;
  border: none;
  background: transparent;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: var(--font-display);
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.billing-toggle button.active { background: var(--gradient-blue-teal); color: white; box-shadow: 0 4px 16px rgba(0,136,204,0.3);}
.billing-toggle .save-badge {
  font-size: 9px; padding: 2px 6px; border-radius: 6px;
  background: rgba(0,200,83,0.2); color: #A5F2C6; font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.billing-wrap { display: flex; justify-content: center; margin: -16px 0 48px;}

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;}
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: 1fr 1fr;}}
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr;}}

.plan { padding: 28px 26px; position: relative; display: flex; flex-direction: column;}
.plan .top { margin-bottom: 18px;}
.plan h3 { font-size: 22px; margin-bottom: 4px; }
.plan .desc { font-size: 13px; color: var(--text-muted);}
.plan .price-row { display: flex; align-items: baseline; gap: 4px; margin: 14px 0 4px;}
.plan .price { font-size: 46px; font-weight: 800; letter-spacing: -0.045em; font-feature-settings: "tnum";}
.plan .per { font-size: 14px; color: var(--text-muted); font-family: var(--font-mono);}
.plan .old { text-decoration: line-through; color: var(--text-dim); font-family: var(--font-mono); font-size: 14px; margin-bottom: 8px; display: inline-block;}
.plan .divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); margin: 18px 0;}
.plan ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1;}
.plan li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text); line-height: 1.4;}
.plan li.x { color: var(--text-dim); text-decoration: line-through;}
.plan li .ck { width: 18px; height: 18px; border-radius: 50%; flex: 0 0 18px; display: grid; place-items: center; font-size: 11px;}
.plan li .ck.yes { background: rgba(0,136,204,0.2); color: #5EC8FF;}
.plan li.x .ck { background: rgba(255,255,255,0.04); color: var(--text-dim);}
.plan .cta { margin-top: 22px; width: 100%; justify-content: center;}

.plan-starter {
  border-color: rgba(0,136,204,0.5) !important;
  box-shadow: 0 0 40px rgba(0,136,204,0.15), var(--shadow-card) !important;
  border-width: 2px !important;
}
.plan .badge-pop {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--gradient-blue-teal);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0,136,204,0.4);
}
.plan-pro { border-color: rgba(123,97,255,0.3) !important;}
.plan-enterprise .cta { border: 1px solid rgba(217,168,107,0.3); color: #F8E5C1;}

.pricing-foot { text-align: center; margin-top: 36px; font-size: 13.5px; color: var(--text-muted); font-family: var(--font-mono);}
.pricing-foot span { color: var(--neon-teal);}

/* ── Public status ─────────────────────────────────────────────── */
.stats-list { display: flex; flex-direction: column; gap: 32px;}
.big-stat .num { font-size: clamp(64px, 8vw, 96px); font-weight: 800; letter-spacing: -0.05em; line-height: 1; font-feature-settings: "tnum";}
.big-stat .desc { font-size: 16px; color: var(--text-muted); margin-top: 6px;}

.status-card { padding: 32px;}
.status-card h3 { font-size: 22px; margin-bottom: 8px;}
.status-card > .sub { font-size: 13px; color: var(--text-muted); margin-bottom: 22px;}
.timeline { display: flex; flex-direction: column; gap: 16px; position: relative; padding-left: 24px; border-left: 1px dashed rgba(255,255,255,0.1);}
.timeline-item { position: relative; padding-left: 14px;}
.timeline-item::before {
  content: ""; position: absolute; left: -32px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--deep-navy);
  border: 2px solid var(--text-muted);
}
.timeline-item.done::before { background: var(--pixel-green); border-color: var(--pixel-green); box-shadow: 0 0 12px rgba(0,200,83,0.5);}
.timeline-item.soon::before { background: var(--signal-blue); border-color: var(--signal-blue); box-shadow: 0 0 12px rgba(0,136,204,0.5);}
.timeline-item.future::before { background: var(--holo-purple); border-color: var(--holo-purple);}
.timeline-item .ttl { font-size: 14.5px; font-weight: 600; display: flex; align-items: center; gap: 8px;}
.timeline-item .when { font-size: 11.5px; font-family: var(--font-mono); color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px;}
.status-cta { margin-top: 22px; font-size: 13px; color: #5EC8FF; font-family: var(--font-mono); display: inline-flex; align-items: center; gap: 6px;}

/* ── Final CTA ─────────────────────────────────────────────────── */
.final-cta {
  text-align: center;
  padding: 160px 28px;
  position: relative;
  background: radial-gradient(50% 60% at 50% 50%, rgba(0,136,204,0.12), transparent 70%);
}
.final-cta h2 { font-size: clamp(48px, 6vw, 80px); letter-spacing: -0.045em; margin: 18px 0 22px;}
.final-cta p { font-size: 19px; max-width: 540px; margin: 0 auto 36px;}
.final-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-teal);
}
.cta-mono { font-family: var(--font-mono); color: var(--signal-blue); font-size: 14px; margin-top: 16px;}
.trust-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 36px;}
.trust-row .glass-pill { font-size: 12.5px; font-family: var(--font-mono); padding: 8px 14px; color: var(--text-muted);}
.btn-megapulse {
  animation: glow-pulse 3s ease infinite;
}
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 0 40px rgba(0,136,204,0.4), inset 0 1px 0 rgba(255,255,255,0.2);}
  50%     { box-shadow: 0 0 80px rgba(0,136,204,0.7), 0 0 120px rgba(0,212,170,0.2), inset 0 1px 0 rgba(255,255,255,0.2);}
}

/* ── Footer ────────────────────────────────────────────────────── */
footer {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
  background: rgba(6,13,26,0.6);
  backdrop-filter: blur(20px);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;}
.footer-grid h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; font-weight: 500;}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 13.5px;}
.footer-grid ul a { color: var(--text-muted); transition: color 0.2s;}
.footer-grid ul a:hover { color: var(--text);}
.footer-brand p { font-size: 14px; margin: 14px 0 20px; max-width: 280px;}
.footer-brand .social { display: flex; gap: 10px;}
.footer-brand .social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: var(--text);
  transition: background 0.2s;
}
.footer-brand .social a:hover { background: rgba(0,136,204,0.15);}
.footer-bot { display: flex; justify-content: space-between; margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 13px; color: var(--text-muted); font-family: var(--font-mono);}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2;}
}

/* ── Scroll reveal ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease;}
.reveal.in { opacity: 1; transform: none;}

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

/* ── Tighten on small */
@media (max-width: 760px) {
  section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 56px;
  }
  .hero-content { padding: 0 20px; }
  .hero-badge {
    margin-bottom: 20px;
    padding: 8px 12px;
    font-size: 11px;
    line-height: 1.4;
    text-align: left;
  }
  .h-display {
    font-size: clamp(40px, 13vw, 56px);
    line-height: 0.98;
  }
  .hero-sub {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .hero-social-proof {
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 18px;
    margin-top: 20px;
  }
  .proof-text {
    font-size: 12px;
    line-height: 1.35;
    text-align: left;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    line-height: 1.45;
  }
  .hero-trust .sep { display: none; }
  .hero-visual {
    height: auto;
    min-height: 560px;
    margin-top: 56px;
    max-width: 100%;
    overflow: visible;
    z-index: 1;
  }
  .hero-visual-inner {
    transform: none;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100%;
  }
  .hero-phone-center {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto;
  }
  .phone {
    width: min(280px, calc(100vw - 40px));
    height: 560px;
    border-radius: 34px;
    padding: 12px;
  }
  .phone::before {
    top: 18px;
    width: 92px;
    height: 24px;
  }
  .phone-screen { border-radius: 26px; }
  .phone-ui { padding: 44px 14px 14px; }
  .hero-card-left, .hero-card-right { display: none;}
  .hero-notif { display: none; }
  .hero-trust {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 12px;
    opacity: 0.9;
  }
  .pricing-grid { gap: 14px; }
  .plan {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .plan .price { font-size: 38px; }
  .plan .price-row {
    flex-wrap: wrap;
    row-gap: 2px;
  }
  .billing-wrap {
    margin: -8px 0 32px;
    padding: 0 8px;
  }
  .billing-toggle {
    width: 100%;
    justify-content: center;
  }
  .billing-toggle button {
    flex: 1 1 0;
    justify-content: center;
    padding: 10px 12px;
  }
  .footer-bot {
    flex-direction: column;
    gap: 10px;
  }
  .feature-row { margin-bottom: 80px;}
}

@media (max-width: 420px) {
  .hero-badge {
    width: 100%;
    justify-content: center;
  }
  .hero-social-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }
  .proof-text { text-align: left; }
  .phone {
    width: min(264px, calc(100vw - 36px));
    height: 528px;
  }
  .phone-ui { gap: 10px; }
}

/* ── Blog surface ─────────────────────────────────────────────── */
.blog-hero {
  padding-top: 148px;
  padding-bottom: 48px;
}

.blog-hero-inner {
  max-width: 860px;
}

.blog-title {
  margin-top: 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.blog-lead {
  margin-top: 20px;
  max-width: 760px;
  font-size: 18px;
  color: var(--text-muted);
}

.blog-listing {
  padding-top: 32px;
  padding-bottom: 120px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-card-keyword {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.blog-card h2 a:hover {
  color: #5EC8FF;
}

.blog-card p {
  font-size: 15.5px;
  color: var(--text-muted);
  flex: 1;
}

.blog-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.blog-final-cta {
  padding-top: 120px;
}

.blog-article {
  padding-top: 148px;
  padding-bottom: 120px;
}

.blog-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-breadcrumbs a:hover {
  color: var(--text);
}

.blog-article-head {
  max-width: 860px;
  margin-bottom: 40px;
}

.blog-article-head h1 {
  margin-top: 18px;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.blog-article-intro {
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(240,244,255,0.7);
}

.blog-article-image {
  margin: 0 0 32px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.02);
  box-shadow: var(--shadow-card);
}

.blog-article-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
}

.blog-article-body {
  max-width: 920px;
}

.blog-article-body p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.76;
  color: rgba(240,244,255,0.78);
}

.blog-article-body p:last-child {
  margin-bottom: 0;
}

.blog-article-sources {
  margin-top: 34px;
  margin-bottom: 28px;
}

.blog-article-sources h3 {
  margin-bottom: 14px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.blog-article-sources ul {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.blog-article-sources li,
.blog-article-sources a {
  color: rgba(240,244,255,0.74);
}

.blog-article-sources a:hover {
  color: var(--text);
}

.blog-cta-box {
  margin-top: 0;
  margin-bottom: 28px;
  padding: 24px 26px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.blog-cta-box p {
  flex: 1;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(240,244,255,0.74);
}

.blog-cta-box .btn {
  flex: 0 0 auto;
}

.blog-post-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.blog-post-nav a {
  color: rgba(240,244,255,0.72);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-post-nav a:hover {
  color: var(--text);
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.7fr);
  gap: 24px;
  align-items: start;
}

.blog-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.blog-copy section,
.blog-cta-card,
.blog-side-card {
  padding: 28px;
  background: var(--glass-bg);
  backdrop-filter: blur(34px) saturate(180%);
  -webkit-backdrop-filter: blur(34px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.blog-copy h2,
.blog-cta-card h2,
.blog-side-card h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.blog-copy p,
.blog-cta-card p,
.blog-side-card p {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(240,244,255,0.72);
}

.blog-copy section p + p,
.blog-copy section ul + p {
  margin-top: 14px;
}

.blog-list {
  margin: 0;
  padding-left: 20px;
  color: rgba(240,244,255,0.72);
  display: grid;
  gap: 10px;
}

.blog-list li {
  line-height: 1.65;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 96px;
}

.blog-side-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.text-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5EC8FF;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-cta-card .section-label {
  margin-bottom: 16px;
}

.blog-cta-card .btn {
  margin-top: 22px;
}

@media (max-width: 980px) {
  .blog-grid,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .blog-hero,
  .blog-article {
    padding-top: 120px;
  }

  .blog-title,
  .blog-article-head h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .blog-lead,
  .blog-article-intro {
    font-size: 17px;
  }

  .blog-card,
  .blog-copy section,
  .blog-cta-card,
  .blog-side-card {
    padding: 22px;
    border-radius: 20px;
  }

  .blog-card-actions .btn,
  .blog-cta-card .btn {
    width: 100%;
    justify-content: center;
  }

  .blog-article-image {
    margin-bottom: 24px;
    border-radius: 18px;
  }

  .blog-article-image img {
    max-height: 280px;
  }

  .blog-article-body p {
    font-size: 16px;
    line-height: 1.72;
  }

  .blog-cta-box {
    padding: 20px;
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .blog-cta-box .btn {
    width: 100%;
    justify-content: center;
  }
}
