/* ===================== Tokens ===================== */
:root{
  --ink-950:#081420;
  --ink-900:#0e2231;
  --ink-800:#173449;
  --ink-700:#234f66;
  --ink-100:#e3f2f0;
  --paper:#f7fafa;
  --paper-alt:#edf5f4;
  --white:#ffffff;

  --text-primary:#12283a;
  --text-secondary:#3d5a6c;
  --text-muted:#7691a0;

  --violet-600:#1B4F72;
  --violet-700:#123A56;
  --violet-400:#7FD9CE;
  --coral-500:#3FD1C2;
  --coral-600:#2CB6A8;
  --green-500:#1fa971;
  --red-500:#e5484d;

  --grad-brand: linear-gradient(120deg, var(--violet-600), var(--coral-500));
  --grad-hero: radial-gradient(60% 60% at 20% 20%, rgba(27,79,114,0.55), transparent 60%),
               radial-gradient(50% 50% at 85% 15%, rgba(63,209,194,0.35), transparent 60%),
               radial-gradient(70% 70% at 60% 100%, rgba(27,79,114,0.35), transparent 60%);

  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:24px;
  --radius-full:999px;

  --shadow-sm: 0 1px 2px rgba(15,15,35,0.06), 0 1px 1px rgba(15,15,35,0.04);
  --shadow-md: 0 8px 24px rgba(20,20,40,0.08);
  --shadow-lg: 0 24px 60px rgba(20,20,45,0.16);
  --shadow-glow: 0 0 0 1px rgba(255,255,255,0.08), 0 20px 60px rgba(27,79,114,0.35);

  --container: 1200px;
  --nav-h: 76px;

  --ease-out: cubic-bezier(.16,.84,.44,1);
  --dur-fast: 180ms;
  --dur-med: 320ms;

  --font-head: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ===================== Reset ===================== */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text-primary);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  font-size:16px;
  line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:var(--font-head); font-weight:600; line-height:1.15; margin:0; color:var(--text-primary); }
p{ margin:0; }

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:2000;
  background:var(--ink-950); color:#fff; padding:12px 18px; border-radius:0 0 10px 0;
}
.skip-link:focus{ left:0; }

:focus-visible{ outline:2px solid var(--violet-600); outline-offset:3px; border-radius:4px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

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

.text-gradient{
  background:var(--grad-brand);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* ===================== Reveal-on-scroll ===================== */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ===================== Buttons ===================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 22px;
  border-radius:var(--radius-full);
  font-weight:600;
  font-size:0.95rem;
  border:1px solid transparent;
  transition:transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  min-height:44px;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn-primary{ background:var(--grad-brand); color:#fff; box-shadow:var(--shadow-md); }
.btn-primary:hover{ box-shadow:0 12px 28px rgba(63,209,194,0.35); transform:translateY(-1px); }
.btn-outline{ background:transparent; border-color:var(--ink-700); color:var(--text-primary); border-color:#dcd9ec; }
.btn-outline:hover{ border-color:var(--violet-600); color:var(--violet-700); background:rgba(27,79,114,0.06); }
.btn-outline-light{ background:transparent; border-color:rgba(255,255,255,0.35); color:#fff; }
.btn-outline-light:hover{ background:rgba(255,255,255,0.1); border-color:#fff; }
.btn-ghost{ background:transparent; color:var(--text-secondary); }
.btn-ghost:hover{ color:var(--text-primary); }
.btn-lg{ padding:15px 28px; font-size:1.02rem; }
.btn-sm{ padding:9px 16px; font-size:0.88rem; min-height:38px; }
.btn-block{ width:100%; }

/* ===================== Header ===================== */
.site-header{
  position:sticky; top:0; z-index:1000;
  background:rgba(247,250,250,0.78);
  backdrop-filter:blur(14px) saturate(1.4);
  -webkit-backdrop-filter:blur(14px) saturate(1.4);
  border-bottom:1px solid rgba(20,20,40,0.06);
}
.header-inner{
  height:var(--nav-h);
  display:flex; align-items:center; gap:24px;
}
.brand{ display:flex; flex-direction:column; align-items:center; gap:6px; margin-right:auto; }
.brand-mark img{ display:block; }
.brand-name{ font-family:var(--font-head); font-weight:700; font-size:1.15rem; letter-spacing:-0.01em; color:var(--text-primary); line-height:1; }
.brand-accent{ color:var(--coral-600); font-weight:500; }

.header-inner .brand{ gap:2px; }
.header-inner .brand-name{ font-size:0.86rem; }

.main-nav{ display:flex; align-items:center; gap:28px; }
.main-nav a{ font-size:0.95rem; font-weight:500; color:var(--text-secondary); position:relative; padding:6px 0; transition:color var(--dur-fast); }
.main-nav a:hover{ color:var(--text-primary); }
.main-nav a::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:2px; background:var(--grad-brand);
  transform:scaleX(0); transform-origin:left; transition:transform var(--dur-fast) var(--ease-out);
}
.main-nav a:hover::after{ transform:scaleX(1); }

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

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:44px; height:44px; background:none; border:none; border-radius:8px;
}
.nav-toggle span{ display:block; width:22px; height:2px; background:var(--text-primary); border-radius:2px; transition:transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast); }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  display:none; flex-direction:column; gap:2px; padding:8px 24px 20px;
  background:var(--paper); border-top:1px solid rgba(20,20,40,0.06);
}
.mobile-menu a{ padding:13px 4px; font-weight:500; color:var(--text-secondary); border-bottom:1px solid rgba(20,20,40,0.06); }
.mobile-menu .btn{ margin-top:14px; }
.mobile-menu.is-open{ display:flex; }

/* ===================== Hero ===================== */
.hero{
  position:relative;
  background:var(--ink-950);
  overflow:clip;
  padding-top:72px;
}
.hero-glow{
  position:absolute; inset:0;
  background-image:var(--grad-hero);
  pointer-events:none;
}
.hero-inner{
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:48px; align-items:center;
  padding-bottom:88px;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:0.82rem; font-weight:600; letter-spacing:0.02em;
  color:var(--violet-400);
  background:rgba(27,79,114,0.14);
  border:1px solid rgba(127,217,206,0.35);
  padding:7px 14px; border-radius:var(--radius-full);
  margin-bottom:22px;
}
.eyebrow-dark{ color:var(--violet-700); background:rgba(27,79,114,0.08); border-color:rgba(27,79,114,0.22); }

.hero-copy h1{
  font-size:clamp(2.3rem, 4.6vw, 3.6rem);
  color:#fff;
  letter-spacing:-0.02em;
  margin-bottom:22px;
}
.hero-sub{
  color:rgba(255,255,255,0.72);
  font-size:1.1rem;
  max-width:52ch;
  margin-bottom:32px;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:20px; }
.hero-actions--center{ justify-content:center; }
.hero-outline-icon{ display:flex; }
.hero-note{ color:rgba(255,255,255,0.45); font-size:0.85rem; }

/* Hero mock UI */
.hero-visual{ position:relative; }
.mock-window{
  background:var(--ink-900);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-glow);
  overflow:hidden;
  animation:floatY 6s ease-in-out infinite;
}
@keyframes floatY{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-10px);} }

.mock-titlebar{ display:flex; align-items:center; gap:8px; padding:14px 16px; border-bottom:1px solid rgba(255,255,255,0.07); }
.mock-dot{ width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,0.16); }
.mock-titletext{ margin-left:8px; font-size:0.82rem; color:rgba(255,255,255,0.5); font-weight:500; }

.mock-body{ padding:18px; display:flex; flex-direction:column; gap:16px; }

.mock-post{
  display:flex; flex-wrap:wrap; align-items:center; gap:12px;
  background:linear-gradient(120deg, rgba(27,79,114,0.35), rgba(63,209,194,0.25));
  border:1px solid rgba(255,255,255,0.1);
  border-radius:var(--radius-md);
  padding:14px;
}
.mock-post-avatar{
  width:44px; height:44px; border-radius:50%;
  background:var(--grad-brand);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.mock-post-info{ display:flex; flex-direction:column; gap:3px; }
.mock-post-info strong{ color:#fff; font-size:0.92rem; }
.mock-post-info span{ color:rgba(255,255,255,0.55); font-size:0.8rem; }
.mock-live{
  margin-left:auto; font-size:0.7rem; font-weight:700; letter-spacing:0.04em;
  color:#3fd08a; background:rgba(31,169,113,0.16); border:1px solid rgba(63,208,138,0.4);
  padding:4px 9px; border-radius:var(--radius-full);
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse{ 0%,100%{ opacity:1;} 50%{ opacity:0.45;} }

.mock-platform-row{ display:flex; gap:7px; flex-basis:100%; }
.mock-plat{
  width:26px; height:26px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,0.12); color:#fff; flex-shrink:0;
}

.mock-grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.mock-card{ background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:14px; padding:14px; }
.mock-tag{ display:inline-block; font-size:0.68rem; font-weight:700; letter-spacing:0.04em; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-bottom:10px; }
.mock-lines i{ display:block; height:8px; border-radius:4px; background:rgba(255,255,255,0.14); margin-bottom:7px; width:100%; font-style:normal; }
.mock-lines i:last-child{ margin-bottom:0; }
.mock-swatch{ height:44px; border-radius:8px; background:var(--grad-brand); opacity:0.85; }
.mock-cal{ display:grid; grid-template-columns:repeat(7,1fr); gap:5px; }
.mock-cal i{ height:16px; border-radius:4px; background:rgba(255,255,255,0.08); font-style:normal; }
.mock-cal i.on{ background:var(--coral-500); }

.floating-chip{
  position:absolute;
  background:#fff; color:var(--text-primary);
  font-size:0.82rem; font-weight:700;
  padding:10px 16px; border-radius:var(--radius-full);
  box-shadow:var(--shadow-lg);
  display:flex; align-items:center; gap:6px;
}
.floating-chip::before{ content:''; width:7px; height:7px; border-radius:50%; background:var(--green-500); }
.chip-1{ top:-6%; right:-4%; animation:floatY 5s ease-in-out infinite; }
.chip-2{ bottom:6%; left:-6%; animation:floatY 5.5s ease-in-out infinite reverse; }

.logo-strip{ position:relative; z-index:1; border-top:1px solid rgba(255,255,255,0.07); background:rgba(255,255,255,0.02); }
.logo-strip-inner{ padding:20px 24px; text-align:center; }
.logo-strip-label{ color:rgba(255,255,255,0.45); font-size:0.85rem; letter-spacing:0.01em; }

/* ===================== Sections ===================== */
.section{ padding:100px 0; }
.section-alt{ background:var(--paper-alt); }
.section-head{ max-width:680px; margin:0 auto 56px; text-align:center; }
.section-head h2{ font-size:clamp(1.7rem, 3.2vw, 2.5rem); letter-spacing:-0.015em; margin-bottom:16px; }
.section-sub{ color:var(--text-secondary); font-size:1.05rem; }

/* Stat grid */
.stat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.stat-card{
  background:var(--white); border:1px solid rgba(20,20,40,0.07);
  border-radius:var(--radius-md); padding:28px 22px;
  display:flex; flex-direction:column; gap:8px;
  box-shadow:var(--shadow-sm);
  transition:transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.stat-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.stat-card--accent{ background:var(--ink-950); border-color:var(--ink-950); }
.stat-card--accent .stat-number{ background:var(--grad-brand); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat-card--accent .stat-label{ color:rgba(255,255,255,0.6); }
.stat-number{ font-family:var(--font-head); font-size:2rem; font-weight:700; color:var(--text-primary); letter-spacing:-0.02em; }
.stat-label{ color:var(--text-muted); font-size:0.9rem; line-height:1.45; }

/* Feature grid */
.feature-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.feature-card{
  background:var(--white); border:1px solid rgba(20,20,40,0.07); border-radius:var(--radius-md);
  padding:28px; display:flex; flex-direction:column; gap:12px;
  transition:transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med);
}
.feature-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:rgba(27,79,114,0.25); }
.feature-card--lg{ grid-column:span 1; background:linear-gradient(160deg, #fff, var(--paper-alt)); }
.feature-icon{
  width:50px; height:50px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:var(--grad-brand); color:#fff;
}
.feature-card h3{ font-size:1.1rem; line-height:1.3; min-height:2.9rem; display:flex; align-items:flex-start; }
.feature-card p{ color:var(--text-secondary); font-size:0.95rem; }

/* Platforms */
.platform-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
  max-width:880px; margin:0 auto;
}
.platform-badge{
  display:flex; flex-direction:column; align-items:center; gap:12px;
  background:var(--white); border:1px solid rgba(20,20,40,0.07);
  border-radius:var(--radius-md); padding:24px 12px;
  font-size:0.88rem; font-weight:600; color:var(--text-secondary);
  transition:transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med);
}
.platform-badge:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:rgba(27,79,114,0.2); }
.platform-icon{
  width:52px; height:52px; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  color:#fff;
}
.platform-icon--instagram{ background:linear-gradient(135deg, #f9ce34, #ee2a7b 55%, #6228d7); }
.platform-icon--facebook{ background:#1877f2; }
.platform-icon--tiktok{ background:#010101; }
.platform-icon--linkedin{ background:#0a66c2; }
.platform-icon--x{ background:#000000; }
.platform-icon--pinterest{ background:#e60023; }
.platform-icon--youtube{ background:#ff0000; }
.platform-icon--gbp{ background:#1a73e8; }
.platform-note{ text-align:center; color:var(--text-muted); font-size:0.9rem; margin-top:36px; }

/* Differentiator */
.differentiator{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.diff-copy h2{ font-size:clamp(1.7rem, 3vw, 2.3rem); letter-spacing:-0.015em; margin-bottom:16px; }
.check-list{ margin-top:24px; display:flex; flex-direction:column; gap:14px; }
.check-list li{ position:relative; padding-left:32px; color:var(--text-secondary); font-size:0.98rem; }
.check-list li::before{
  content:''; position:absolute; left:0; top:2px; width:20px; height:20px; border-radius:50%;
  background:rgba(31,169,113,0.14);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7' stroke='%231fa971' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:center; background-size:12px;
}

.diff-visual{
  position:relative; min-height:380px;
  background:radial-gradient(60% 60% at 50% 45%, rgba(27,79,114,0.08), transparent 70%);
  display:flex; align-items:center; justify-content:center;
}
.engine-core{
  width:172px; height:172px; border-radius:50%;
  background:var(--ink-950);
  color:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px;
  text-align:center; padding:16px;
  box-shadow:var(--shadow-glow);
  z-index:2;
}
.engine-core span{ font-family:var(--font-head); font-weight:700; font-size:1.05rem; }
.engine-core small{ color:rgba(255,255,255,0.55); font-size:0.72rem; line-height:1.4; }

.pack{
  position:absolute;
  display:flex; align-items:center; gap:9px;
  background:#fff; border:1px solid rgba(20,20,40,0.08);
  border-radius:var(--radius-full);
  padding:11px 18px; font-size:0.86rem; font-weight:600; color:var(--text-primary);
  box-shadow:var(--shadow-md);
  white-space:nowrap;
}
.pack svg{ color:var(--violet-600); flex-shrink:0; }
.pack-1{ top:2%; left:0%; }
.pack-2{ top:12%; right:-2%; }
.pack-3{ bottom:14%; left:-2%; }
.pack-ghost{ bottom:2%; right:4%; color:var(--text-muted); border-style:dashed; box-shadow:none; }
.pack-ghost span{ color:var(--text-muted); font-weight:500; }

/* Fields grid (industries we serve) */
.fields-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:56px; }
.field-card{
  display:flex; flex-direction:column; gap:12px;
  background:var(--white); border:1px solid rgba(20,20,40,0.07); border-radius:var(--radius-md);
  padding:28px;
  transition:transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out), border-color var(--dur-med);
}
.field-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:rgba(27,79,114,0.25); }
.field-card h3{ font-size:1.1rem; }
.field-card p{ color:var(--text-secondary); font-size:0.92rem; }
.field-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:auto; padding-top:6px; }
.field-tag{
  font-size:0.78rem; font-weight:600; color:var(--violet-700);
  background:rgba(27,79,114,0.08); border-radius:var(--radius-full);
  padding:5px 11px;
}
.fields-note{ text-align:center; color:var(--text-muted); font-size:0.92rem; margin-top:28px; }
.fields-note a{ color:var(--violet-600); font-weight:600; }
.fields-note a:hover{ color:var(--violet-700); text-decoration:underline; }

/* Steps */
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.step{
  position:relative;
  background:var(--white); border:1px solid rgba(20,20,40,0.07); border-radius:var(--radius-md);
  padding:32px 26px;
}
.step-num{
  display:inline-block; font-family:var(--font-head); font-weight:700; font-size:0.95rem;
  color:var(--violet-600); background:rgba(27,79,114,0.1); padding:5px 12px; border-radius:var(--radius-full);
  margin-bottom:18px;
}
.step h3{ font-size:1.1rem; margin-bottom:10px; }
.step p{ color:var(--text-secondary); font-size:0.95rem; }

/* Demo: industry tabs */
.demo-tabs{
  display:flex; flex-wrap:wrap; justify-content:center; gap:8px;
  margin:0 auto 40px; width:fit-content; max-width:100%;
  background:var(--white); border:1px solid rgba(20,20,40,0.08);
  padding:6px; border-radius:var(--radius-full); box-shadow:var(--shadow-sm);
}
.demo-tab{
  border:none; background:transparent; padding:10px 18px; border-radius:var(--radius-full);
  font-weight:600; font-size:0.88rem; color:var(--text-secondary);
  transition:background var(--dur-fast), color var(--dur-fast);
  white-space:nowrap;
}
.demo-tab:hover{ color:var(--text-primary); }
.demo-tab.is-active{ background:var(--ink-950); color:#fff; }

/* Demo: config + live preview */
.demo-split{
  display:grid; grid-template-columns:1fr auto 1fr; gap:32px; align-items:start;
}
.demo-panel-label{
  display:block; font-size:0.78rem; font-weight:700; letter-spacing:0.03em; text-transform:uppercase;
  color:var(--text-muted); margin-bottom:16px;
}
.demo-config{
  background:var(--white); border:1px solid rgba(20,20,40,0.08); border-radius:var(--radius-lg);
  padding:26px; box-shadow:var(--shadow-sm);
}
.config-field{ margin-bottom:20px; }
.config-field:last-child{ margin-bottom:0; }
.config-label{ display:block; font-size:0.76rem; font-weight:700; letter-spacing:0.02em; text-transform:uppercase; color:var(--text-muted); margin-bottom:8px; }
.config-image{
  position:relative; height:120px; border-radius:var(--radius-md);
  background:var(--grad-brand); overflow:hidden;
}
.config-image img{ width:100%; height:100%; object-fit:cover; display:block; }
.config-image-refresh{
  position:absolute; top:10px; right:10px; width:28px; height:28px; border-radius:50%;
  background:rgba(255,255,255,0.25); backdrop-filter:blur(4px);
  display:flex; align-items:center; justify-content:center; color:#fff;
}
.config-chip{
  display:inline-flex; align-items:center; font-size:0.86rem; font-weight:600; color:var(--violet-700);
  background:rgba(27,79,114,0.08); padding:7px 14px; border-radius:var(--radius-full);
}
.config-value{
  font-size:0.92rem; color:var(--text-primary); background:var(--paper-alt);
  border-radius:var(--radius-sm); padding:12px 14px; line-height:1.5;
}
.config-value--body{ color:var(--text-secondary); }
.config-tags{ display:flex; flex-wrap:wrap; gap:8px; }
.config-tag{ font-size:0.82rem; font-weight:600; color:var(--coral-600); background:rgba(63,209,194,0.12); padding:5px 11px; border-radius:var(--radius-full); }
.config-platforms{ display:flex; flex-wrap:wrap; gap:10px; }
.config-plat{
  width:34px; height:34px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background:var(--paper-alt); color:var(--text-muted);
  transition:background var(--dur-fast), color var(--dur-fast);
}
.config-plat.is-active{ background:var(--grad-brand); color:#fff; }

.demo-arrow{
  display:flex; align-items:center; justify-content:center;
  width:44px; height:44px; border-radius:50%;
  background:var(--paper-alt); color:var(--violet-600);
  margin-top:120px;
  flex-shrink:0;
}

.demo-preview{ display:flex; flex-direction:column; }

/* Preview platform tabs */
.preview-tabs{
  display:flex; flex-wrap:wrap; gap:6px; margin-bottom:16px;
}
.preview-tab{
  display:inline-flex; align-items:center; gap:6px;
  border:1px solid rgba(20,20,40,0.1); background:var(--white); padding:7px 13px; border-radius:var(--radius-full);
  font-weight:600; font-size:0.8rem; color:var(--text-secondary);
  transition:background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.preview-tab:hover{ border-color:rgba(27,79,114,0.3); color:var(--text-primary); }
.preview-tab.is-active{ background:var(--ink-950); border-color:var(--ink-950); color:#fff; }

.platform-card{ display:none; }
.platform-card.is-active{ display:block; }

.pv-avatar{ width:38px; height:38px; border-radius:50%; background:var(--grad-brand); flex-shrink:0; }

/* Facebook */
.fb-post-card{
  background:var(--white); border:1px solid rgba(20,20,40,0.1); border-radius:12px;
  padding:16px; box-shadow:var(--shadow-md); font-family:var(--font-body);
}
.fb-post-header{ display:flex; align-items:center; gap:10px; margin-bottom:12px; position:relative; }
.fb-post-meta{ display:flex; flex-direction:column; gap:2px; }
.fb-post-meta strong{ font-size:0.9rem; color:var(--text-primary); }
.fb-post-meta span{ display:flex; align-items:center; gap:4px; font-size:0.76rem; color:var(--text-muted); }
.fb-post-badge{
  margin-left:auto; width:22px; height:22px; border-radius:50%;
  background:#1877f2; color:#fff; display:flex; align-items:center; justify-content:center;
}
.fb-post-text{ font-size:0.86rem; line-height:1.5; color:var(--text-primary); margin-bottom:12px; }
.fb-post-tags{ color:#1877f2; }
.fb-post-image{ width:100%; height:200px; border-radius:8px; background:var(--paper-alt); object-fit:cover; display:block; margin-bottom:10px; }
.fb-post-stats{
  display:flex; align-items:center; gap:6px;
  font-size:0.8rem; color:var(--text-muted);
  padding-bottom:10px; border-bottom:1px solid rgba(20,20,40,0.08); margin-bottom:6px;
}
.fb-reaction-icons{ display:inline-flex; align-items:center; }
.fb-reaction-icons svg:first-child{ background:#1877f2; border-radius:50%; padding:2px; box-sizing:content-box; color:#fff; z-index:1; }
.fb-reaction-icons svg:last-child{ color:#fff; background:#e5484d; border-radius:50%; padding:2px; box-sizing:content-box; margin-left:-6px; }
.fb-post-actions{ display:flex; }
.fb-post-actions span{
  flex:1; display:flex; align-items:center; justify-content:center; gap:6px;
  font-size:0.84rem; font-weight:600; color:var(--text-muted); padding:8px 0; border-radius:6px;
}

/* Instagram */
.ig-post-card{
  background:var(--white); border:1px solid rgba(20,20,40,0.1); border-radius:12px;
  padding:14px; box-shadow:var(--shadow-md); font-family:var(--font-body);
}
.ig-post-header{ display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.ig-post-header .pv-handle{ font-size:0.86rem; color:var(--text-primary); }
.ig-post-dots{ margin-left:auto; color:var(--text-muted); }
.ig-post-image{ width:100%; height:220px; border-radius:8px; background:var(--paper-alt); object-fit:cover; display:block; margin-bottom:10px; }
.ig-post-actions{ display:flex; align-items:center; margin-bottom:10px; }
.ig-post-actions-left{ display:flex; align-items:center; gap:14px; color:var(--text-primary); }
.ig-post-actions > svg{ margin-left:auto; color:var(--text-primary); }
.ig-post-likes{ font-size:0.86rem; font-weight:700; color:var(--text-primary); margin-bottom:6px; }
.ig-post-caption{ font-size:0.86rem; line-height:1.5; color:var(--text-primary); margin-bottom:6px; }
.ig-post-caption .pv-handle{ font-weight:700; margin-right:5px; }
.ig-post-caption .pv-tags{ color:#00376b; display:block; margin-top:4px; }
.ig-post-comments{ font-size:0.82rem; color:var(--text-muted); margin-bottom:4px; }
.ig-post-time{ font-size:0.68rem; letter-spacing:0.02em; color:var(--text-muted); text-transform:uppercase; }

/* X */
.x-post-card{
  background:var(--white); border:1px solid rgba(20,20,40,0.1); border-radius:12px;
  padding:16px; box-shadow:var(--shadow-md); font-family:var(--font-body);
}
.x-post-header{ display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.x-post-meta{ display:flex; flex-wrap:wrap; align-items:baseline; gap:5px; font-size:0.84rem; }
.x-post-meta strong{ color:var(--text-primary); }
.x-post-meta span{ color:var(--text-muted); }
.x-post-text{ font-size:0.9rem; line-height:1.5; color:var(--text-primary); margin-bottom:12px; }
.x-post-text .pv-tags{ color:#000; font-weight:600; }
.x-post-image{ width:100%; height:200px; border-radius:14px; background:var(--paper-alt); object-fit:cover; display:block; margin-bottom:12px; border:1px solid rgba(20,20,40,0.08); }
.x-post-actions{ display:flex; justify-content:space-between; max-width:320px; }
.x-post-actions span{ display:flex; align-items:center; gap:6px; font-size:0.8rem; color:var(--text-muted); }

/* LinkedIn */
.li-post-card{
  background:var(--white); border:1px solid rgba(20,20,40,0.1); border-radius:12px;
  padding:16px; box-shadow:var(--shadow-md); font-family:var(--font-body);
}
.li-post-header{ display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.li-post-meta{ display:flex; flex-direction:column; gap:2px; }
.li-post-meta strong{ font-size:0.9rem; color:var(--text-primary); }
.li-post-meta span{ display:flex; align-items:center; gap:4px; font-size:0.76rem; color:var(--text-muted); }
.li-post-text{ font-size:0.86rem; line-height:1.5; color:var(--text-primary); margin-bottom:12px; }
.li-post-text .pv-tags{ color:#0a66c2; }
.li-post-image{ width:100%; height:200px; border-radius:8px; background:var(--paper-alt); object-fit:cover; display:block; margin-bottom:10px; }
.li-post-stats{
  display:flex; align-items:center; gap:6px;
  font-size:0.8rem; color:var(--text-muted);
  padding-bottom:10px; border-bottom:1px solid rgba(20,20,40,0.08); margin-bottom:6px;
}
.li-post-actions{ display:flex; }
.li-post-actions span{
  flex:1; display:flex; align-items:center; justify-content:center; gap:6px;
  font-size:0.82rem; font-weight:600; color:var(--text-muted); padding:8px 0; border-radius:6px;
}

/* Google Business Profile */
.gbp-post-card{
  background:var(--white); border:1px solid rgba(20,20,40,0.1); border-radius:12px;
  padding:16px; box-shadow:var(--shadow-md); font-family:var(--font-body);
}
.gbp-post-header{ display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.gbp-post-icon{
  width:34px; height:34px; border-radius:50%; flex-shrink:0;
  background:#e8f0fe; color:#1a73e8; display:flex; align-items:center; justify-content:center;
}
.gbp-post-meta{ display:flex; flex-direction:column; gap:2px; }
.gbp-post-meta strong{ font-size:0.86rem; font-weight:600; color:var(--text-primary); }
.gbp-post-meta span{ font-size:0.76rem; color:var(--text-muted); }
.gbp-post-image{ width:100%; height:200px; border-radius:8px; background:var(--paper-alt); object-fit:cover; display:block; margin-bottom:10px; }
.gbp-post-text{ font-size:0.86rem; line-height:1.5; color:var(--text-primary); margin-bottom:14px; }
.gbp-post-cta{
  display:block; width:100%; text-align:center;
  background:transparent; border:1px solid #1a73e8; color:#1a73e8;
  font-weight:600; font-size:0.86rem; padding:10px; border-radius:6px;
  cursor:default;
}

/* Schedule calendar */
.calendar-legend{
  display:flex; flex-wrap:wrap; justify-content:center; gap:18px;
  margin-bottom:28px;
}
.calendar-legend span{ display:flex; align-items:center; gap:7px; font-size:0.84rem; color:var(--text-secondary); }
.cal-dot{ display:inline-block; width:9px; height:9px; border-radius:50%; flex-shrink:0; }
.calendar-wrap{ overflow-x:auto; border-radius:var(--radius-lg); }
.calendar-demo{
  background:var(--white); border:1px solid rgba(20,20,40,0.08); border-radius:var(--radius-lg);
  padding:24px; box-shadow:var(--shadow-sm); min-width:760px;
}
.calendar-month-head{ font-family:var(--font-head); font-weight:700; font-size:1.1rem; margin-bottom:16px; }
.calendar-grid{ display:grid; grid-template-columns:repeat(7,1fr); gap:1px; background:rgba(20,20,40,0.08); border:1px solid rgba(20,20,40,0.08); border-radius:10px; overflow:hidden; }
.cal-dow{ background:var(--paper-alt); text-align:center; font-size:0.74rem; font-weight:700; text-transform:uppercase; letter-spacing:0.03em; color:var(--text-muted); padding:10px 0; }
.cal-cell{
  background:var(--white); min-height:102px; padding:8px; display:flex; flex-direction:column; gap:5px;
}
.cal-cell--empty{ background:var(--paper-alt); }
.cal-cell--today{ background:rgba(63,209,194,0.08); box-shadow:inset 0 0 0 2px var(--coral-500); }
.cal-daynum{ font-size:0.8rem; font-weight:600; color:var(--text-muted); display:flex; align-items:center; gap:6px; }
.cal-today-badge{
  font-size:0.62rem; font-weight:700; text-transform:uppercase; letter-spacing:0.02em;
  color:#fff; background:var(--coral-500); padding:2px 6px; border-radius:var(--radius-full);
}
.cal-post{
  display:flex; flex-direction:column; align-items:flex-start; gap:5px;
  font-size:0.72rem; font-weight:600; color:var(--text-secondary);
  background:var(--paper-alt); border-radius:6px; padding:5px 7px 6px;
}
.cal-post-title{
  width:100%; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.cal-post-icon{
  width:16px; height:16px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; color:#fff;
}

/* Comparison table */
.table-wrap{ overflow-x:auto; border-radius:var(--radius-md); box-shadow:var(--shadow-sm); }
.compare-table{ width:100%; border-collapse:collapse; min-width:640px; background:var(--white); }
.compare-table th, .compare-table td{ padding:18px 22px; text-align:left; border-bottom:1px solid rgba(20,20,40,0.07); font-size:0.94rem; }
.compare-table thead th{ font-family:var(--font-head); font-weight:600; color:var(--text-muted); font-size:0.8rem; text-transform:uppercase; letter-spacing:0.04em; background:var(--paper-alt); }
.compare-table tbody th{ font-weight:600; color:var(--text-primary); }
.row-sub{ display:block; color:var(--text-muted); font-weight:400; font-size:0.82rem; margin-top:2px; }
.row-brand{ display:inline-flex; align-items:center; gap:8px; }
.row-dot{ width:9px; height:9px; border-radius:50%; background:var(--grad-brand); }
.row-highlight{ background:linear-gradient(90deg, rgba(27,79,114,0.06), rgba(63,209,194,0.04)); }
.row-highlight th, .row-highlight td{ border-bottom-color:rgba(27,79,114,0.15); }
.pill{ display:inline-flex; align-items:center; gap:6px; padding:5px 12px; border-radius:var(--radius-full); font-size:0.82rem; font-weight:600; }
.pill-yes{ background:rgba(31,169,113,0.12); color:var(--green-500); }
.pill-no{ background:rgba(229,72,77,0.1); color:var(--red-500); }

/* Pricing */
.pricing-toggle{
  display:flex; justify-content:center; gap:4px; margin:0 auto 48px;
  width:fit-content; background:var(--white); border:1px solid rgba(20,20,40,0.08);
  padding:5px; border-radius:var(--radius-full); box-shadow:var(--shadow-sm);
}
.toggle-btn{
  border:none; background:transparent; padding:10px 20px; border-radius:var(--radius-full);
  font-weight:600; font-size:0.9rem; color:var(--text-secondary);
  display:flex; align-items:center; gap:8px;
  transition:background var(--dur-fast), color var(--dur-fast);
}
.toggle-btn.is-active{ background:var(--ink-950); color:#fff; }
.save-badge{ background:rgba(31,169,113,0.15); color:var(--green-500); font-size:0.7rem; padding:2px 8px; border-radius:var(--radius-full); font-weight:700; }
.toggle-btn.is-active .save-badge{ background:rgba(31,169,113,0.25); }

.pricing-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; align-items:stretch; }
.price-card{
  background:var(--white); border:1px solid rgba(20,20,40,0.08); border-radius:var(--radius-lg);
  padding:30px 26px; display:flex; flex-direction:column; gap:18px; position:relative;
  transition:transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.price-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.price-card h3{ font-size:1.15rem; }
.price-for{ color:var(--text-muted); font-size:0.86rem; min-height:36px; }
.price-amount{ display:flex; align-items:baseline; gap:6px; }
.price-val{ font-family:var(--font-head); font-size:2.3rem; font-weight:700; letter-spacing:-0.02em; transition:opacity var(--dur-fast); }
.price-period{ color:var(--text-muted); font-size:0.95rem; }
.price-features{ display:flex; flex-direction:column; gap:11px; flex:1; }
.price-features li{ position:relative; padding-left:26px; font-size:0.9rem; color:var(--text-secondary); }
.price-features li::before{
  content:''; position:absolute; left:0; top:3px; width:16px; height:16px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7' stroke='%231B4F72' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:center; background-size:14px;
}

.price-card--featured{ border-color:var(--violet-600); box-shadow:0 0 0 1px var(--violet-600), var(--shadow-lg); transform:scale(1.03); }
.price-card--featured:hover{ transform:scale(1.03) translateY(-4px); }
.price-badge{
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--grad-brand); color:#fff; font-size:0.72rem; font-weight:700;
  padding:6px 14px; border-radius:var(--radius-full); box-shadow:var(--shadow-sm);
}
.price-card--dark{ background:var(--ink-950); border-color:var(--ink-950); }
.price-card--dark h3, .price-card--dark .price-val{ color:#fff; }
.price-card--dark .price-for, .price-card--dark .price-features li{ color:rgba(255,255,255,0.65); }
.price-card--dark .price-features li::before{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7' stroke='%233FD1C2' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Timeline */
.timeline{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; position:relative; }
.timeline-item{
  background:var(--white); border:1px solid rgba(20,20,40,0.07); border-radius:var(--radius-md);
  padding:28px; border-top:3px solid var(--violet-600);
}
.timeline-item:nth-child(2){ border-top-color:var(--coral-500); }
.timeline-item:nth-child(3){ border-top-color:var(--green-500); }
.timeline-phase{ display:block; font-size:0.78rem; font-weight:700; letter-spacing:0.03em; text-transform:uppercase; color:var(--text-muted); margin-bottom:10px; }
.timeline-item h3{ font-size:1.15rem; margin-bottom:10px; }
.timeline-item p{ color:var(--text-secondary); font-size:0.92rem; }

/* FAQ */
.faq-list{ max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item{
  background:var(--white); border:1px solid rgba(20,20,40,0.08); border-radius:var(--radius-md);
  padding:6px 24px;
}
.faq-item summary{
  list-style:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:18px 0; font-weight:600; font-size:1rem; color:var(--text-primary);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:''; flex-shrink:0; width:20px; height:20px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%231B4F72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:center;
  transition:transform var(--dur-fast) var(--ease-out);
}
.faq-item[open] summary::after{ transform:rotate(180deg); }
.faq-item p{ color:var(--text-secondary); font-size:0.95rem; padding-bottom:20px; }

/* Final CTA */
.cta-section{ position:relative; background:var(--ink-950); padding:96px 0; overflow:clip; }
.cta-glow{ position:absolute; inset:0; background-image:var(--grad-hero); pointer-events:none; }
.cta-inner{ position:relative; z-index:1; text-align:center; max-width:640px; margin:0 auto; }
.cta-inner h2{ color:#fff; font-size:clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing:-0.02em; margin-bottom:16px; }
.cta-inner p{ color:rgba(255,255,255,0.68); font-size:1.05rem; margin-bottom:32px; }

/* Footer */
.site-footer{ background:var(--ink-900); color:rgba(255,255,255,0.6); padding-top:64px; }
.footer-inner{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:32px; padding-bottom:48px; }
.footer-brand p{ margin-top:14px; font-size:0.9rem; max-width:26ch; color:rgba(255,255,255,0.45); }
.footer-col h4{ color:#fff; font-size:0.85rem; text-transform:uppercase; letter-spacing:0.04em; margin-bottom:16px; }
.footer-col{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:0.92rem; color:rgba(255,255,255,0.55); transition:color var(--dur-fast); }
.footer-col a:hover{ color:#fff; }
.footer-bottom{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px;
  padding:22px 24px; border-top:1px solid rgba(255,255,255,0.08); font-size:0.82rem; color:rgba(255,255,255,0.4);
}

/* ===================== Responsive ===================== */
@media (max-width:1080px){
  .stat-grid{ grid-template-columns:repeat(2,1fr); }
  .feature-grid{ grid-template-columns:repeat(2,1fr); }
  .fields-grid{ grid-template-columns:1fr; }
  .pricing-grid{ grid-template-columns:repeat(2,1fr); }
  .price-card--featured{ transform:none; }
  .price-card--featured:hover{ transform:translateY(-4px); }
  .timeline{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
  .footer-inner{ grid-template-columns:1fr 1fr; }
}

@media (max-width:920px){
  .main-nav, .header-cta{ display:none; }
  .nav-toggle{ display:flex; }
  .hero-inner{ grid-template-columns:1fr; padding-bottom:64px; }
  .hero-visual{ order:-1; max-width:520px; margin:0 auto; }
  .differentiator{ grid-template-columns:1fr; }
  .diff-visual{ min-height:320px; order:-1; }
  .demo-split{ grid-template-columns:1fr; }
  .demo-arrow{ margin:0 auto; transform:rotate(90deg); }
}

@media (max-width:640px){
  .container{ padding-inline:20px; }
  .section{ padding:72px 0; }
  .stat-grid{ grid-template-columns:1fr 1fr; }
  .feature-grid{ grid-template-columns:1fr; }
  .pricing-grid{ grid-template-columns:1fr; }
  .platform-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-inner{ grid-template-columns:1fr 1fr; }
  .hero-actions{ flex-direction:column; align-items:stretch; }
  .hero-actions .btn{ width:100%; }
  .hero-actions--center{ align-items:center; }
  .hero-actions--center .btn{ width:100%; max-width:320px; }
  .pack{ position:static; margin-bottom:10px; }
  .diff-visual{ flex-direction:column; gap:12px; padding:24px 0; min-height:auto; }
  .engine-core{ order:-1; margin-bottom:8px; }
  .floating-chip{ font-size:0.72rem; padding:8px 12px; }
  .chip-1{ top:-4%; right:2%; }
  .chip-2{ bottom:2%; left:2%; }
}
