/*
Theme Name: Clarioq Landing
Theme URI: https://clarioq.com
Author: Delta Spark
Description: Custom block-based landing page theme for Clarioq. Content is edited in place via the WordPress block editor (Gutenberg).
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
Text Domain: clarioq
*/

/* ============================================================
   Design tokens + full landing styles (ported 1:1 from the
   original clarioq-landing.html). Do not edit visual values
   here unless you intend to change the design globally.
   ============================================================ */

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

:root {
  --bg: #060810;
  --bg-soft: #0A0D17;
  --bg2: #0E1220;
  --bg3: #151A2B;
  --bg4: #1D2438;
  --border: rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.12);
  --border3: rgba(255,255,255,0.18);

  --text1: #F5F6FA;
  --text2: rgba(245,246,250,0.72);
  --text3: rgba(245,246,250,0.50);
  --text4: rgba(245,246,250,0.30);

  --brand: #2A8FFF;
  --brand-soft: #4DA3FF;
  --brand-glow: rgba(42,143,255,0.35);

  --good: #4FD1A0;
  --bad: #F08080;
  --warm: #F0C987;
  --gold: #FFC857;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text1);
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed; top: -200px; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 700px;
  background: radial-gradient(ellipse, rgba(42,143,255,0.10) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6,8,16,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner { width: 100%; max-width: 1120px; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 9px; color: var(--text1); text-decoration: none; }
.nav-logo img { width: 24px; height: 24px; display: block; }
.nav-logo-text { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 13.5px; font-weight: 400; color: var(--text2); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--text1); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-login { font-size: 13.5px; font-weight: 400; color: var(--text2); text-decoration: none; transition: color 0.2s; }
.nav-login:hover { color: var(--text1); }
.nav-cta {
  background: var(--brand); border: none; border-radius: 100px; padding: 8px 16px;
  font-size: 13px; font-weight: 500; color: #fff; text-decoration: none;
  transition: all 0.2s; box-shadow: 0 4px 20px var(--brand-glow);
}
.nav-cta:hover { box-shadow: 0 6px 28px var(--brand-glow); transform: translateY(-1px); }

section { position: relative; z-index: 1; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

/* Typography */
.display-1 { font-size: clamp(46px, 6.4vw, 88px); font-weight: 600; line-height: 1.0; letter-spacing: -0.045em; }
.display-2 { font-size: clamp(36px, 4.8vw, 60px); font-weight: 600; line-height: 1.04; letter-spacing: -0.04em; }
.display-3 { font-size: clamp(28px, 3.6vw, 46px); font-weight: 600; line-height: 1.08; letter-spacing: -0.035em; }
.display-1 em, .display-2 em, .display-3 em { font-style: normal; color: var(--brand-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-soft); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--brand-soft); opacity: 0.5; }
.eyebrow.center { justify-content: center; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-head .lead { font-size: 19px; color: var(--text2); line-height: 1.5; margin-top: 18px; letter-spacing: -0.01em; }

/* HERO */
.hero { padding: 124px 0 64px; text-align: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(42,143,255,0.08); border: 1px solid rgba(42,143,255,0.2);
  border-radius: 100px; padding: 6px 14px 6px 10px;
  font-size: 12.5px; font-weight: 500; color: var(--brand-soft); margin-bottom: 30px;
}
.hero-pill-dot { width: 6px; height: 6px; border-radius: 3px; background: var(--brand-soft); box-shadow: 0 0 8px var(--brand-soft); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 { margin-bottom: 24px; }
.hero-sub { font-size: 21px; line-height: 1.42; color: var(--text2); max-width: 620px; margin: 0 auto 36px; letter-spacing: -0.012em; }
.hero-actions { display: flex; gap: 14px; justify-content: center; align-items: center; margin-bottom: 40px; }

.btn-primary {
  background: var(--brand); color: #fff; border: none; border-radius: 100px;
  padding: 14px 26px; font-size: 15.5px; font-weight: 500; cursor: pointer;
  text-decoration: none; transition: all 0.2s; font-family: inherit; letter-spacing: -0.005em;
  box-shadow: 0 8px 30px var(--brand-glow);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 40px var(--brand-glow); }
.btn-ghost {
  background: rgba(255,255,255,0.04); color: var(--text1); border: 1px solid var(--border2);
  border-radius: 100px; padding: 14px 26px; font-size: 15.5px; font-weight: 400; cursor: pointer;
  text-decoration: none; transition: all 0.2s; font-family: inherit; letter-spacing: -0.005em;
  display: inline-block;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--border3); }

.trust-row { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.avatars { display: flex; }
.avatar { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -10px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: #fff; }
.avatar:first-child { margin-left: 0; }
.trust-text { font-size: 13.5px; color: var(--text3); }
.trust-text strong { color: var(--text2); font-weight: 600; }

/* Hero product */
.hero-product { position: relative; margin-top: 64px; padding: 0 28px; }
.hero-product::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 1100px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(42,143,255,0.12) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

.dash-frame {
  position: relative; z-index: 1;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 80px 160px rgba(0,0,0,0.7), 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
  max-width: 1120px; margin: 0 auto;
}
.dash-titlebar { background: rgba(0,0,0,0.5); border-bottom: 1px solid var(--border); padding: 11px 16px; display: flex; align-items: center; gap: 8px; }
.tb-dot { width: 11px; height: 11px; border-radius: 50%; }
.tb-url { font-size: 11px; color: var(--text4); margin-left: 14px; font-family: 'DM Sans', monospace; }
.dash-inner { display: flex; height: 480px; font-family: 'DM Sans', sans-serif; }
.dash-sidebar { width: 178px; background: rgba(0,0,0,0.55); border-right: 1px solid var(--border); flex-shrink: 0; padding: 18px 0; display: flex; flex-direction: column; }
.ds-logo { padding: 0 14px 22px; display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }
.ds-logo img { width: 18px; height: 18px; }
.ds-nav { padding: 0 8px; display: flex; flex-direction: column; gap: 2px; flex: 1; }
.ds-item { padding: 7px 10px; border-radius: 5px; font-size: 11.5px; cursor: pointer; display: flex; align-items: center; gap: 9px; }
.ds-item svg { width: 13px; height: 13px; flex-shrink: 0; }
.ds-item.active { background: rgba(42,143,255,0.10); color: var(--brand-soft); font-weight: 500; }
.ds-item:not(.active) { color: var(--text3); }
.ds-sync { padding: 12px 14px; border-top: 1px solid var(--border); margin-top: auto; }
.sync-dot { width: 5px; height: 5px; border-radius: 2.5px; background: var(--good); display: inline-block; margin-right: 6px; }
.dash-main { flex: 1; overflow: hidden; display: flex; flex-direction: column; }
.dash-header { padding: 10px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.dash-title { font-size: 13px; font-weight: 600; }
.plat-pills { display: flex; gap: 2px; background: rgba(255,255,255,0.04); border-radius: 6px; padding: 2px; }
.pill { padding: 3px 10px; border-radius: 4px; font-size: 10px; font-weight: 500; cursor: pointer; }
.pill.active { background: rgba(42,143,255,0.12); color: var(--brand-soft); }
.pill:not(.active) { color: var(--text3); }
.tab-bar { padding: 0 18px; border-bottom: 1px solid var(--border); display: flex; flex-shrink: 0; }
.tab-btn { padding: 8px 14px; font-size: 10.5px; cursor: pointer; border-bottom: 1.5px solid transparent; color: var(--text3); }
.tab-btn.active { border-bottom-color: var(--brand-soft); color: var(--text1); font-weight: 500; }
.dash-content { flex: 1; padding: 12px 18px; overflow: hidden; display: flex; flex-direction: column; gap: 8px; }
.insight-strip { background: rgba(79,209,160,0.05); border: 1px solid rgba(79,209,160,0.14); border-radius: 7px; padding: 8px 12px; display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.ins-icon { width: 18px; height: 18px; border-radius: 5px; background: rgba(79,209,160,0.14); display: flex; align-items: center; justify-content: center; color: var(--good); flex-shrink: 0; }
.ins-icon svg { width: 10px; height: 10px; }
.ins-title { color: var(--text1); font-weight: 600; font-size: 10px; }
.ins-body { color: var(--text3); font-size: 9.5px; }
.mc { background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; }
.mc-label { font-size: 8.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text3); margin-bottom: 6px; font-weight: 500; }
.mc-value { font-size: 17px; font-weight: 600; color: var(--text1); letter-spacing: -0.02em; }
.mc-sub { font-size: 9px; color: var(--text3); margin-top: 2px; }
.mc-trend-up { font-size: 9px; color: var(--good); font-weight: 500; }
.mc-trend-dn { font-size: 9px; color: var(--bad); font-weight: 500; }
.mer-card { background: var(--bg3); border: 1px solid rgba(42,143,255,0.20); border-radius: 8px; padding: 11px 14px; }
.mer-label { font-size: 8.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text3); margin-bottom: 5px; display: flex; justify-content: space-between; align-items: center; font-weight: 500; }
.mer-badge { font-size: 7.5px; font-weight: 600; color: var(--good); background: rgba(79,209,160,0.1); padding: 2px 6px; border-radius: 4px; }
.mer-value { font-size: 22px; font-weight: 600; color: var(--text1); margin-bottom: 3px; letter-spacing: -0.025em; }
.mer-desc { font-size: 9px; color: var(--text3); margin-bottom: 8px; }
.mer-bar { display: flex; border-radius: 2px; overflow: hidden; height: 5px; }
.mer-seg { flex: 1; }
.mer-labels { display: flex; margin-top: 4px; }
.mer-lbl { flex: 1; font-size: 7px; color: var(--text4); text-align: center; }
.chart-wrap { background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; flex-shrink: 0; }
.chart-title { font-size: 9.5px; font-weight: 600; color: var(--text2); margin-bottom: 4px; }

/* MARQUEE */
.marquee-section { padding: 44px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-soft); overflow: hidden; }
.marquee-label { text-align: center; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text4); margin-bottom: 28px; }
.marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 56px; padding-right: 56px; animation: scroll 32s linear infinite; flex-shrink: 0; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }
.marquee-item { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 600; color: var(--text3); white-space: nowrap; letter-spacing: -0.01em; }
.marquee-item .mi-icon { font-size: 20px; font-weight: 700; }

/* STATS BAND */
.stats-band { padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.stat-cell { text-align: center; padding: 0 18px; border-right: 1px solid var(--border); }
.stat-cell:last-child { border-right: none; }
.stat-cell-num { font-size: 52px; font-weight: 600; line-height: 1; color: var(--text1); letter-spacing: -0.045em; margin-bottom: 10px; }
.stat-cell-num .unit { color: var(--brand-soft); }
.stat-cell-label { font-size: 13px; color: var(--text3); line-height: 1.35; max-width: 150px; margin: 0 auto; }

/* BIG STAT MOMENT */
.stat-moment { padding: 130px 0; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-tag { font-size: 13px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-soft); margin-bottom: 24px; }
.stat-headline { font-size: clamp(46px, 6.6vw, 92px); font-weight: 600; line-height: 1.0; letter-spacing: -0.05em; margin-bottom: 26px; }
.stat-headline em { font-style: normal; color: var(--brand-soft); }
.stat-detail { font-size: 19px; color: var(--text2); max-width: 580px; margin: 0 auto; line-height: 1.45; letter-spacing: -0.01em; }
.clarioq-final-cta { border-bottom: none; }

/* FEATURE BLOCKS */
.feature { padding: 120px 0; }
.feature-soft { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 84px; align-items: center; }
.feature-grid.reverse { direction: rtl; }
.feature-grid.reverse > * { direction: ltr; }
.feature-text-block h3 { margin-bottom: 18px; }
.feature-text-block .feature-body { font-size: 17px; color: var(--text2); line-height: 1.55; letter-spacing: -0.005em; margin-bottom: 28px; }
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-list-item { display: flex; gap: 12px; font-size: 15px; color: var(--text2); align-items: flex-start; line-height: 1.5; letter-spacing: -0.005em; }
.feature-list-icon { width: 18px; height: 18px; border-radius: 50%; background: rgba(42,143,255,0.12); border: 1px solid rgba(42,143,255,0.22); display: flex; align-items: center; justify-content: center; color: var(--brand-soft); flex-shrink: 0; margin-top: 2px; }
.feature-list-icon svg { width: 10px; height: 10px; }
.feature-eyebrow { font-size: 18px; font-weight: 600; color: var(--brand-soft); letter-spacing: -0.012em; margin-bottom: 12px; }

.mer-visual { background: var(--bg3); border: 1px solid var(--border2); border-radius: 16px; padding: 32px; }
.mer-visual-title { font-size: 14px; font-weight: 500; margin-bottom: 18px; color: var(--text2); display: flex; align-items: baseline; gap: 8px; }
.mer-visual-sub { font-size: 12px; color: var(--text4); font-weight: 400; }
.mer-big-num { font-size: 76px; font-weight: 600; color: var(--text1); line-height: 1; margin-bottom: 10px; letter-spacing: -0.05em; }
.mer-big-num .x { color: var(--brand-soft); }
.mer-tagline { font-size: 15px; color: var(--text2); margin-bottom: 28px; line-height: 1.5; }
.mer-tagline strong { color: var(--text1); font-weight: 500; }
.mer-gauge { margin-bottom: 20px; }
.mer-gauge-bar { display: flex; border-radius: 4px; overflow: hidden; height: 8px; margin-bottom: 4px; }
.mer-gauge-seg { flex: 1; }
.mer-gauge-labels { display: flex; }
.mer-gauge-lbl { flex: 1; font-size: 10.5px; color: var(--text4); text-align: center; line-height: 1.4; }
.mer-secondary { padding-top: 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; }
.mer-sec-block { flex: 1; }
.mer-sec-lbl { font-size: 11px; color: var(--text3); margin-bottom: 4px; }
.mer-sec-val { font-size: 19px; font-weight: 500; color: var(--text1); letter-spacing: -0.02em; }
.mer-sec-val.good { color: var(--good); }
.mer-status-pill { font-size: 11px; font-weight: 500; color: var(--good); background: rgba(79,209,160,0.1); padding: 4px 10px; border-radius: 100px; }
.mer-formula { background: rgba(42,143,255,0.05); border: 1px solid rgba(42,143,255,0.14); border-radius: 10px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.formula-lbl { font-size: 13px; color: var(--text2); font-weight: 500; }
.formula-val { font-size: 15px; color: var(--text1); font-weight: 500; letter-spacing: -0.01em; }

.profit-visual { background: var(--bg3); border: 1px solid var(--border2); border-radius: 16px; padding: 32px; }
.pv-title { font-size: 14px; font-weight: 500; color: var(--text2); margin-bottom: 6px; display: flex; justify-content: space-between; align-items: baseline; }
.pv-period { font-size: 12px; color: var(--text4); font-weight: 400; }
.pv-net { font-size: 12.5px; color: var(--text3); margin-bottom: 18px; }
.pv-bar { display: flex; border-radius: 6px; overflow: hidden; height: 40px; gap: 2px; margin-bottom: 16px; }
.pv-seg { display: flex; align-items: center; justify-content: center; font-size: 10.5px; font-weight: 500; color: rgba(0,0,0,0.85); border-radius: 3px; letter-spacing: 0.01em; }
.pv-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.pv-leg-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text3); }
.pv-leg-dot { width: 7px; height: 7px; border-radius: 2px; }
.pv-margin { display: flex; justify-content: space-between; align-items: center; padding: 18px 0 0; border-top: 1px solid var(--border); }
.pv-margin-label { font-size: 13px; color: var(--text2); font-weight: 500; }
.pv-margin-sub { font-size: 11px; color: var(--text4); margin-top: 2px; }
.pv-margin-val { font-size: 36px; font-weight: 600; color: var(--good); letter-spacing: -0.03em; }

/* DISCOVER GRID */
.discover-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.discover-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: border-color 0.25s, transform 0.25s; }
.discover-card:hover { border-color: var(--border3); transform: translateY(-3px); }
.discover-icon { width: 44px; height: 44px; border-radius: 11px; background: rgba(42,143,255,0.1); border: 1px solid rgba(42,143,255,0.18); display: flex; align-items: center; justify-content: center; color: var(--brand-soft); margin-bottom: 20px; }
.discover-icon svg { width: 20px; height: 20px; }
.discover-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.02em; }
.discover-card p { font-size: 14px; color: var(--text3); line-height: 1.55; }

/* USE CASES */
.usecase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.usecase { display: flex; gap: 18px; padding: 26px; background: var(--bg3); border: 1px solid var(--border); border-radius: 16px; transition: border-color 0.25s; }
.usecase:hover { border-color: var(--border3); }
.usecase-num { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: rgba(42,143,255,0.1); border: 1px solid rgba(42,143,255,0.22); display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 600; color: var(--brand-soft); }
.usecase h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.02em; }
.usecase p { font-size: 14px; color: var(--text3); line-height: 1.55; }

/* SPECS */
.specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.spec-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 18px; padding: 34px; transition: border-color 0.25s, transform 0.25s; }
.spec-card:hover { border-color: var(--border3); transform: translateY(-3px); }
.spec-num { font-size: 14px; font-weight: 600; color: var(--brand-soft); margin-bottom: 20px; letter-spacing: 0.02em; }
.spec-title { font-size: 25px; font-weight: 600; margin-bottom: 14px; letter-spacing: -0.025em; line-height: 1.18; }
.spec-title em { font-style: normal; color: var(--brand-soft); }
.spec-body { font-size: 15px; color: var(--text2); line-height: 1.55; margin-bottom: 22px; letter-spacing: -0.005em; }
.spec-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.spec-tag { font-size: 12px; color: var(--text3); border: 1px solid var(--border2); border-radius: 100px; padding: 4px 11px; }

/* INTEGRATIONS */
.integ-logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 820px; margin: 0 auto; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; background: var(--bg2); }
.integ-item { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 36px 22px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: background 0.25s; }
.integ-item:nth-child(3n) { border-right: none; }
.integ-item:nth-child(n+4) { border-bottom: none; }
.integ-item:hover { background: rgba(255,255,255,0.02); }
.integ-item.disabled { opacity: 0.5; }
.integ-icon { width: 48px; height: 48px; border-radius: 11px; display: flex; align-items: center; justify-content: center; }
.integ-name { font-size: 14px; font-weight: 500; color: var(--text1); }
.integ-coming { font-size: 11px; color: var(--warm); border: 1px solid rgba(240,201,135,0.25); border-radius: 100px; padding: 3px 9px; }
.integ-available { font-size: 11px; color: var(--good); border: 1px solid rgba(79,209,160,0.22); border-radius: 100px; padding: 3px 9px; }

/* PRICING */
.pricing-card { max-width: 480px; margin: 0 auto; background: var(--bg3); border: 1px solid var(--border2); border-radius: 22px; padding: 44px; position: relative; overflow: hidden; }
.pricing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 100px; background: radial-gradient(ellipse at top, rgba(42,143,255,0.1), transparent 70%); pointer-events: none; }
.pricing-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: var(--brand-soft); border: 1px solid rgba(42,143,255,0.25); background: rgba(42,143,255,0.06); border-radius: 100px; padding: 4px 11px; margin-bottom: 28px; position: relative; }
.pricing-plan { font-size: 30px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.03em; position: relative; }
.pricing-plan em { font-style: normal; color: var(--brand-soft); }
.pricing-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 12px; position: relative; }
.pricing-price { font-size: 64px; font-weight: 600; color: var(--text1); letter-spacing: -0.045em; line-height: 1; }
.pricing-period { font-size: 16px; color: var(--text3); font-weight: 400; }
.pricing-note { font-size: 14px; color: var(--text3); margin-bottom: 32px; line-height: 1.5; position: relative; }
.pricing-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; padding-top: 26px; border-top: 1px solid var(--border); position: relative; }
.pf-item { display: flex; gap: 12px; font-size: 15px; color: var(--text2); align-items: flex-start; line-height: 1.5; letter-spacing: -0.005em; }
.pf-check { width: 18px; height: 18px; border-radius: 50%; background: rgba(42,143,255,0.12); border: 1px solid rgba(42,143,255,0.22); display: flex; align-items: center; justify-content: center; color: var(--brand-soft); flex-shrink: 0; margin-top: 2px; }
.pf-check svg { width: 10px; height: 10px; }
.pricing-cta { width: 100%; padding: 15px; border-radius: 100px; background: var(--brand); color: #fff; border: none; cursor: pointer; font-family: inherit; font-size: 15.5px; font-weight: 500; transition: all 0.2s; letter-spacing: -0.005em; box-shadow: 0 8px 30px var(--brand-glow); position: relative; display: inline-block; text-align: center; text-decoration: none; }
.pricing-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 40px var(--brand-glow); }
.pricing-bottom { text-align: center; font-size: 12.5px; color: var(--text4); margin-top: 14px; position: relative; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; padding: 24px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; font-family: inherit; color: var(--text1); font-size: 18px; font-weight: 500; letter-spacing: -0.015em; transition: color 0.2s; }
.faq-q:hover { color: var(--brand-soft); }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--text3); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::before { width: 13px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 13px; transition: opacity 0.3s; }
.faq-item.open .faq-icon::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 4px 24px; font-size: 15px; color: var(--text2); line-height: 1.6; letter-spacing: -0.005em; }

/* FOOTER */
.site-footer { padding: 64px 28px 40px; border-top: 1px solid var(--border); background: var(--bg); }
.footer-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 2fr; gap: 60px; }
.footer-brand img { width: 26px; height: 26px; margin-bottom: 14px; }
.footer-brand-text { font-size: 14px; color: var(--text2); line-height: 1.55; max-width: 300px; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; color: var(--text3); font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.footer-social:hover { color: var(--text1); border-color: var(--border3); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col-title { font-size: 12px; font-weight: 600; color: var(--text1); margin-bottom: 14px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-col a { display: block; font-size: 13.5px; color: var(--text3); text-decoration: none; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--text1); }
.footer-bottom { max-width: 1120px; margin: 56px auto 0; padding-top: 28px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--text4); }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.8s cubic-bezier(.2,.8,.2,1) both; }
.fade-up-1 { animation-delay: 0.1s; } .fade-up-2 { animation-delay: 0.22s; }
.fade-up-3 { animation-delay: 0.34s; } .fade-up-4 { animation-delay: 0.46s; }
.fade-up-5 { animation-delay: 0.6s; }

/* ---- Gutenberg / WP integration helpers ----
   Neutralize theme.css defaults and let our design own the page. */
.wp-site-blocks, .entry-content { margin: 0; }

/* core/group wrappers must not add their own spacing/width; our own
   .hero/.container/.feature classes fully control layout. */
.wp-block-group { margin: 0; }
.wp-block-group.container { max-width: 1120px; margin-left: auto; margin-right: auto; }
main.wp-block-group, .wp-block-post-content { margin: 0; max-width: none; }
.wp-block-post-content > * { max-width: none; }

/* Headings inside groups: strip WP default margins, our classes set them. */
.wp-block-heading { margin: 0; }
.hero h1.wp-block-heading { margin-bottom: 24px; }

/* Neutralize the constrained-layout max-width WP injects on post-content
   children so full-bleed sections (feature-soft, stat-moment) span edge to edge. */
.wp-block-post-content > .wp-block-group { max-width: none; }

/* Responsive */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .feature-grid { grid-template-columns: 1fr; gap: 50px; }
  .feature-grid.reverse { direction: ltr; }
  .specs-grid, .usecase-grid { grid-template-columns: 1fr; }
  .discover-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(5) { grid-column: span 2; border-right: none; }
  .integ-logos { grid-template-columns: repeat(2, 1fr); }
  .integ-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .integ-item:nth-child(2n) { border-right: none; }
  .integ-item:nth-child(n+4) { border-bottom: 1px solid var(--border); }
  .integ-item:nth-child(n+5) { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-product { display: none; }
}
@media (max-width: 600px) {
  .hero { padding-top: 100px; }
  .stat-moment, .feature { padding: 80px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .discover-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .nav-login { display: none; }
}