/* ============================================================
   RASILNI - Design System & Homepage Styles
   Redesign 2026 · "Conversations, designed"
   Built for Rasilni · Crafted by Velogics.ai
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand: two-green system (deep teal primary + leaf "spark") */
  --brand:        #00A884;   /* app teal - primary action */
  --brand-dark:   #008069;
  --brand-deep:   #075E54;
  --brand-50:     #E7F8F1;
  --brand-100:    #CDF0E2;
  --brand-200:    #9BE2C6;
  --spark:        #46D27E;   /* leaf green from the logo / typing dots */
  --spark-soft:   #E8FBEF;

  /* Secondary accent (Influencers persona) */
  --indigo:       #6366F1;
  --indigo-soft:  #EEF0FE;
  --amber:        #F5B544;

  /* Ink & paper neutrals (warm, print-like) */
  --ink:          #0B141A;   /* near-black, WhatsApp-dark tinted */
  --ink-2:        #111E26;
  --ink-soft:     #26333A;
  --ink-muted:    #5B6B72;
  --ink-faint:    #8A979D;
  --paper:        #FBFAF9;
  --surface:      #F3F6F4;
  --raised:       #FFFFFF;
  --line:         #E6EBE8;
  --line-strong:  #D6DEDA;
  --white:        #FFFFFF;

  /* Radius */
  --r-xs: 8px;
  --r-sm: 12px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --pill: 999px;

  /* Shadows: layered, tinted, never pure black */
  --shadow-sm:    0 1px 2px rgba(11,20,26,.05), 0 1px 3px rgba(11,20,26,.06);
  --shadow:       0 1px 2px rgba(11,20,26,.04), 0 12px 28px -14px rgba(11,20,26,.18);
  --shadow-card:  0 0 0 1px rgba(11,20,26,.045), 0 2px 4px rgba(11,20,26,.04), 0 18px 40px -22px rgba(11,20,26,.20);
  --shadow-lift:  0 0 0 1px rgba(11,20,26,.05), 0 4px 8px rgba(11,20,26,.05), 0 28px 56px -24px rgba(11,20,26,.28);
  --shadow-float: 0 30px 70px -28px rgba(11,20,26,.40), 0 8px 20px -12px rgba(11,20,26,.20);
  --shadow-brand: 0 10px 30px -10px rgba(0,168,132,.55);

  /* Type */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t-fast: .18s var(--ease);
  --t: .3s var(--ease);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 32px);
  --section-y: clamp(72px, 9vw, 132px);
}

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
::selection { background: var(--brand-100); color: var(--brand-deep); }

:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand) 55%, transparent); outline-offset: 2px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { color: var(--ink); line-height: 1.12; font-weight: 700; }
.display {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.04;
}
em.ink-em { font-style: italic; color: var(--brand-dark); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 88px) 0; }
.section--surface { background: var(--surface); }
.section--ink { background: var(--ink); color: #C6D2D6; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }

/* ---------- Section header ---------- */
.section-head { max-width: 680px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head--left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 7px; flex: none;
  background-image: radial-gradient(circle, var(--spark) 45%, transparent 50%);
  background-size: 7px 7px; background-repeat: repeat-x;
}
.section--ink .eyebrow { color: var(--spark); }
.section-title {
  font-family: var(--font-display); font-optical-sizing: auto;
  font-weight: 600; letter-spacing: -.015em; line-height: 1.06;
  font-size: clamp(30px, 4.4vw, 50px);
  margin-bottom: 18px;
}
.section-sub { color: var(--ink-muted); font-size: clamp(16px, 1.6vw, 19px); line-height: 1.7; }
.section--ink .section-sub { color: #9FB0B5; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: var(--pill);
  font-size: 15px; font-weight: 600; line-height: 1;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap; border: 1.5px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(0,168,132,.65); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-outline { background: var(--raised); color: var(--ink); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand-dark); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--brand-deep); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-float); }
.btn-ghost-white { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn-ghost-white:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-full { width: 100%; }
.btn-disabled { background: var(--surface); color: var(--ink-faint); border-color: var(--line); cursor: not-allowed; box-shadow: none; }
.btn-disabled:hover { transform: none; }

/* ---------- Pills / chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: var(--pill);
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  background: var(--raised); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--brand), var(--spark));
  z-index: 200; transition: width .1s linear;
}
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.navbar.scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--paper) 92%, transparent); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 26px; width: auto; }

.nav-menu { display: contents; }
.nav-links { display: flex; align-items: center; gap: 2px; margin: 0 auto; }
.nav-links a {
  position: relative; padding: 9px 14px; border-radius: var(--r-xs);
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover { color: var(--brand-dark); background: var(--brand-50); }
.nav-links a.active { color: var(--brand-dark); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2px;
  border-radius: 2px; background: var(--spark);
}
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-actions .btn { padding: 10px 18px; font-size: 14px; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 10px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all var(--t-fast); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(104px, 11vh, 136px) 0 clamp(52px, 7vw, 96px); overflow: hidden; }
/* On large screens, fill the viewport so the integrations strip stays below the fold */
@media (min-width: 1024px) {
  .hero { min-height: 100vh; display: flex; align-items: center; }
  .hero .container.hero-inner { width: 100%; }
}
.hero-aurora {
  position: absolute; inset: -20% -10% auto; height: 120%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(48% 40% at 18% 12%, rgba(70,210,126,.30), transparent 60%),
    radial-gradient(46% 42% at 82% 8%, rgba(0,168,132,.26), transparent 62%),
    radial-gradient(40% 44% at 60% 60%, rgba(99,102,241,.12), transparent 60%);
  filter: blur(8px);
  animation: aurora 18s ease-in-out infinite alternate;
}
@keyframes aurora {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(0,-3%,0) scale(1.08); }
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(to right, rgba(11,20,26,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,20,26,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
  mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 8px; border-radius: var(--pill);
  background: var(--raised); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 26px;
}
.hero-eyebrow .tag { background: var(--ink); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: var(--pill); letter-spacing: .02em; }
.hero-title {
  font-family: var(--font-display); font-optical-sizing: auto;
  font-weight: 600; letter-spacing: -.02em; line-height: 1.03;
  font-size: clamp(38px, 5.4vw, 66px);
  color: var(--ink); margin-bottom: 22px;
}
.hero-title .grad {
  background: linear-gradient(120deg, var(--brand-deep), var(--brand) 45%, var(--spark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: clamp(17px, 1.7vw, 20px); line-height: 1.65; color: var(--ink-muted); max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 36px; height: 36px; border-radius: 50%; border: 2.5px solid var(--paper); margin-left: -10px;
  background-size: cover; background-position: center; box-shadow: var(--shadow-sm);
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-avatars .a1 { background: linear-gradient(135deg,#FDBA74,#F97316); }
.trust-avatars .a2 { background: linear-gradient(135deg,#67E8F9,#0891B2); }
.trust-avatars .a3 { background: linear-gradient(135deg,#A5B4FC,#6366F1); }
.trust-avatars .a4 { background: linear-gradient(135deg,#6EE7B7,#059669); }
.trust-text { font-size: 13.5px; line-height: 1.4; color: var(--ink-muted); }
.trust-text b { color: var(--ink); }
.stars { color: var(--amber); letter-spacing: 2px; font-size: 14px; }

/* Hero stage / device */
.hero-stage { position: relative; display: flex; justify-content: center; align-items: center; min-height: 460px; }
.device {
  position: relative; z-index: 2; width: clamp(258px, 22vw, 286px); height: clamp(516px, 44vw, 572px);
  background: linear-gradient(180deg,#1b282f,#0c1418); border-radius: 44px; padding: 10px;
  box-shadow: var(--shadow-float), inset 0 0 0 1.5px rgba(255,255,255,.08);
  animation: float 7s var(--ease-out) infinite;
}
@keyframes float { 0%,100% { transform: translateY(0) rotate(-.4deg); } 50% { transform: translateY(-14px) rotate(.4deg); } }
.device::before { content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 110px; height: 26px; background: #0c1418; border-radius: var(--pill); z-index: 3; }
.device-screen {
  width: 100%; height: 100%; border-radius: 36px; overflow: hidden; display: flex; flex-direction: column;
  background:
    linear-gradient(rgba(11,20,26,.04), rgba(11,20,26,.04)),
    #ECE5DD;
}
.dchat-head { display: flex; align-items: center; gap: 11px; padding: 20px 16px 12px; background: var(--brand-deep); color: #fff; }
.dchat-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--spark), var(--brand)); display: grid; place-items: center; font-weight: 800; color: #fff; flex: none; }
.dchat-name { font-size: 14px; font-weight: 700; line-height: 1.2; }
.dchat-status { font-size: 11px; opacity: .85; display: flex; align-items: center; gap: 5px; }
.dchat-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--spark); box-shadow: 0 0 0 0 rgba(70,210,126,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(70,210,126,.6);} 70%{ box-shadow: 0 0 0 7px rgba(70,210,126,0);} 100%{ box-shadow:0 0 0 0 rgba(70,210,126,0);} }
.dchat-body { flex: 1; padding: 16px 13px; display: flex; flex-direction: column; gap: 9px; overflow: hidden; }
.bubble {
  max-width: 82%; padding: 9px 12px 7px; border-radius: 14px; font-size: 13px; line-height: 1.45; color: var(--ink);
  box-shadow: 0 1px 1px rgba(11,20,26,.08); position: relative;
  opacity: 0; transform: translateY(8px) scale(.96); animation: pop .4s var(--ease-out) forwards;
}
@keyframes pop { to { opacity: 1; transform: none; } }
.bubble.in { background: #fff; align-self: flex-start; border-top-left-radius: 4px; }
.bubble.out { background: #D9FDD3; align-self: flex-end; border-top-right-radius: 4px; }
.bubble .meta { display: block; text-align: right; font-size: 9.5px; color: rgba(11,20,26,.45); margin-top: 3px; }
.bubble .ticks { color: #53BDEB; font-weight: 700; }
.bubble.typing { display: inline-flex; gap: 4px; padding: 13px 14px; align-self: flex-start; background: #fff; border-top-left-radius: 4px; width: max-content; }
.bubble.typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-faint); animation: typing 1.3s infinite; }
.bubble.typing i:nth-child(2){ animation-delay: .2s; } .bubble.typing i:nth-child(3){ animation-delay: .4s; }
@keyframes typing { 0%,60%,100% { opacity: .3; transform: translateY(0);} 30% { opacity: 1; transform: translateY(-4px);} }

/* Floating chips around device */
.float-chip {
  position: absolute; z-index: 3; background: var(--raised); border: 1px solid var(--line);
  border-radius: var(--r); padding: 12px 14px; box-shadow: var(--shadow-float);
  display: flex; align-items: center; gap: 11px; animation: float 8s var(--ease-out) infinite;
}
.float-chip .fc-icon { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none; color: #fff; }
.float-chip .fc-label { font-size: 11px; color: var(--ink-muted); line-height: 1.2; }
.float-chip .fc-value { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.float-chip--tl { top: 9%; left: clamp(-12px, -2%, 0px); animation-delay: .4s; }
.float-chip--tl .fc-icon { background: linear-gradient(135deg, var(--spark), var(--brand)); }
.float-chip--br { bottom: 13%; right: clamp(-12px, -2%, 0px); animation-delay: 1.2s; }
.float-chip--br .fc-icon { background: linear-gradient(135deg, #818CF8, var(--indigo)); }
.float-chip--bl { bottom: 30%; left: clamp(-8px, -1%, 4px); padding: 10px 14px; animation-delay: 2s; }
.spark-line { display: flex; align-items: flex-end; gap: 3px; height: 28px; }
.spark-line i { width: 5px; border-radius: 3px; background: linear-gradient(var(--spark), var(--brand)); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap { padding: clamp(40px,5vw,56px) 0; border-block: 1px solid var(--line); background: var(--paper); }
.marquee-label { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 26px; }
.marquee { 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; align-items: center; gap: clamp(40px,6vw,80px); width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; letter-spacing: -.02em; color: var(--ink-faint); opacity: .75; white-space: nowrap; }
.marquee-item svg { width: 24px; height: 24px; opacity: .85; }

/* ============================================================
   STATS (dark ink band)
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px,3vw,40px); }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: calc(-1 * clamp(10px,1.5vw,20px)); top: 12%; height: 76%; width: 1px; background: rgba(255,255,255,.1); }
.stat-num { font-family: var(--font-display); font-weight: 600; font-size: clamp(40px,5.4vw,64px); line-height: 1; color: #fff; letter-spacing: -.02em; display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-num .suffix { color: var(--spark); }
.stat-label { margin-top: 12px; font-size: 14.5px; color: #9FB0B5; line-height: 1.4; }

/* ============================================================
   PILLARS (feature cards, color-coded)
   ============================================================ */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  position: relative; background: var(--raised); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 28px; box-shadow: var(--shadow-card); overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--line-strong); }
.pillar::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--accent, var(--brand)); opacity: .9; }
.pillar--marketing { --accent: var(--brand); }
.pillar--chatbot   { --accent: var(--indigo); }
.pillar--analytics { --accent: var(--amber); }
.pillar-icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; color: #fff; margin-bottom: 20px; background: color-mix(in srgb, var(--accent) 90%, black 0%); box-shadow: 0 10px 24px -10px color-mix(in srgb, var(--accent) 70%, transparent); }
.pillar h3 { font-size: 21px; margin-bottom: 10px; letter-spacing: -.01em; }
.pillar p { color: var(--ink-muted); font-size: 15px; margin-bottom: 18px; }
.pillar-list { display: flex; flex-direction: column; gap: 11px; }
.pillar-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); }
.pillar-list li::before {
  content: ""; flex: none; width: 18px; height: 18px; margin-top: 1px; border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
  opacity: .92;
}

/* ============================================================
   HOW IT WORKS (steps)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.steps::before { content: ""; position: absolute; top: 34px; left: 16%; right: 16%; height: 2px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 16px); z-index: 0; }
.step { position: relative; z-index: 1; text-align: center; }
.step-num { width: 68px; height: 68px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center; background: var(--raised); border: 1px solid var(--line); box-shadow: var(--shadow-card); font-family: var(--font-display); font-weight: 600; font-size: 26px; color: var(--brand-dark); }
.step h3 { font-size: 19px; margin-bottom: 9px; }
.step p { color: var(--ink-muted); font-size: 15px; max-width: 300px; margin: 0 auto; }

/* ============================================================
   SHOWCASE (alternating product rows)
   ============================================================ */
.showcase-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,80px); align-items: center; }
.showcase-row + .showcase-row { margin-top: clamp(64px,8vw,120px); }
.showcase-row.reverse .showcase-text { order: 2; }
.showcase-text .eyebrow { margin-bottom: 16px; }
.showcase-text h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.015em; font-size: clamp(26px,3.2vw,38px); line-height: 1.1; margin-bottom: 16px; }
.showcase-text p { color: var(--ink-muted); font-size: 16.5px; margin-bottom: 22px; }
.showcase-points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.showcase-points li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); font-weight: 500; }
.showcase-points svg { flex: none; width: 22px; height: 22px; color: var(--brand); margin-top: 1px; }

/* Browser mockup */
.mock {
  background: var(--raised); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lift); overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: var(--surface); border-bottom: 1px solid var(--line); }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-strong); }
.mock-bar i:nth-child(1){ background: #FF5F57; } .mock-bar i:nth-child(2){ background: #FEBC2E; } .mock-bar i:nth-child(3){ background: #28C840; }
.mock-url { margin-left: 10px; font-size: 12px; color: var(--ink-faint); background: var(--raised); border: 1px solid var(--line); border-radius: var(--pill); padding: 4px 14px; }
.mock-body { padding: 22px; }
/* Real product screenshot inside the browser frame */
.mock-shot { width: 100%; height: auto; display: block; }
figure.mock { margin: 0; }

/* Full-width feature screenshot (bigger) */
.showcase-feature { margin-top: clamp(64px, 8vw, 120px); }
.mock--wide { max-width: 1080px; margin: 0 auto; }

/* Rich inner-page hero (homepage energy, not a flat header) */
.hero--sub { padding-top: clamp(118px, 13vh, 152px); padding-bottom: clamp(48px, 6vw, 84px); }
@media (min-width: 1024px) { .hero--sub { min-height: 82vh; } }
.hero-shot { position: relative; z-index: 2; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-float); border: 1px solid var(--line); background: #fff; }
.hero-shot img { width: 100%; height: auto; display: block; }
.hero-stage--shot { min-height: auto; }

/* ============================================================
   ANIMATED CHATBOT FLOW (workflow only)
   ============================================================ */
.flowviz {
  max-width: 860px; margin: 0 auto; position: relative; overflow: hidden;
  background:
    radial-gradient(circle, rgba(11,20,26,.07) 1px, transparent 1.5px) 0 0 / 22px 22px,
    linear-gradient(180deg, #fff, var(--surface));
  border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-lift);
  padding: 26px clamp(16px, 4vw, 40px) 38px;
}
.flowviz-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.flowviz-head .t { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 700; color: var(--ink); }
.flowviz-head .bot { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; background: linear-gradient(135deg, var(--spark), var(--brand)); color: #fff; }
.flowviz-head .live { font-size: 11.5px; font-weight: 700; color: var(--brand-dark); background: var(--brand-50); padding: 5px 11px; border-radius: var(--pill); display: inline-flex; align-items: center; gap: 7px; }
.flowviz-head .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--spark); box-shadow: 0 0 0 0 rgba(70,210,126,.6); animation: pulse 2s infinite; }

.fv-flow { display: flex; flex-direction: column; align-items: center; }
.fv-node { width: min(330px, 92%); background: var(--raised); border: 1.5px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); padding: 12px 14px; position: relative; z-index: 1; animation: fvGlow 5s ease-in-out infinite; }
.fv-cap { width: auto; padding: 9px 20px; font-weight: 700; font-size: 13px; color: var(--ink); display: inline-flex; align-items: center; gap: 9px; border-radius: var(--pill); }
.fv-cap .d { width: 9px; height: 9px; border-radius: 50%; background: var(--spark); }
.fv-htitle { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 700; color: var(--ink); }
.fv-htitle .ic { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; color: #fff; flex: none; }
.ic-trigger { background: var(--spark); } .ic-msg { background: var(--brand); } .ic-menu { background: var(--indigo); } .ic-leaf { background: var(--brand-dark); }
.fv-bubble { margin-top: 9px; background: #D9FDD3; border-radius: 4px 12px 12px 12px; padding: 8px 11px; font-size: 12.5px; line-height: 1.45; color: var(--ink); }
.fv-opts { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.fv-opts span { font-size: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--pill); padding: 5px 11px; color: var(--ink-soft); font-weight: 600; }

.fv-link { width: 2.5px; height: 30px; z-index: 0; background: repeating-linear-gradient(180deg, var(--brand) 0 6px, transparent 6px 12px); background-size: 2.5px 12px; animation: fvDash .7s linear infinite; }
.fv-fork, .fv-merge { width: min(600px, 100%); height: 30px; }
.fv-fork svg, .fv-merge svg { width: 100%; height: 100%; display: block; }
.fv-fork path, .fv-merge path, .fv-link2 { stroke: var(--brand); stroke-width: 2.5; fill: none; stroke-dasharray: 6 6; animation: fvDashStroke .7s linear infinite; }
.fv-branch { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; width: min(600px, 100%); }
.fv-leaf { background: var(--raised); border: 1.5px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); padding: 12px 10px; font-size: 12.5px; font-weight: 600; color: var(--ink-soft); text-align: center; animation: fvGlow 5s ease-in-out infinite; }
.fv-leaf .lic { display: block; font-size: 17px; margin-bottom: 5px; }

@keyframes fvGlow {
  0%, 14%, 100% { border-color: var(--line); box-shadow: var(--shadow-sm); }
  6% { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-50), var(--shadow); }
}
@keyframes fvDash { to { background-position: 0 12px; } }
@keyframes fvDashStroke { to { stroke-dashoffset: -12; } }

@media (max-width: 520px) {
  .fv-branch { grid-template-columns: 1fr; }
  .fv-fork, .fv-merge { display: none; }
  .fv-leaf { width: min(330px, 92%); margin: 0 auto; }
  .fv-branch { gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .fv-node, .fv-leaf { animation: none; }
  .fv-link, .fv-fork path, .fv-merge path { animation: none; }
}

/* Screenshot gallery */
.shot-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: clamp(56px, 7vw, 96px); }
.shot-frame { margin: 0; background: var(--raised); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: transform var(--t), box-shadow var(--t); }
.shot-frame:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.shot-frame img { width: 100%; height: auto; display: block; border-bottom: 1px solid var(--line); }
.shot-frame figcaption { padding: 15px 18px; font-size: 14.5px; font-weight: 700; color: var(--ink); }
@media (max-width: 860px) { .shot-gallery { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

/* Campaign builder mock */
.mock-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 16px; }
.mock-stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 13px; }
.mock-stat .l { font-size: 11px; color: var(--ink-faint); }
.mock-stat .v { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.mock-stat .v small { font-size: 11px; color: var(--brand); font-weight: 700; }
.mock-stat .skel { display: block; height: 15px; width: 72%; margin-top: 6px; border-radius: 6px; background: linear-gradient(90deg, var(--line-strong), var(--surface)); }
.mock-stat .skel.sm { width: 50%; }
.mock-chart { display: flex; align-items: flex-end; gap: 8px; height: 120px; padding: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); }
.mock-chart i { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(var(--spark), var(--brand)); opacity: .9; }
.mock-chart i:last-child { background: linear-gradient(#A5B4FC, var(--indigo)); }

/* Flow chatbot mock */
.mock-flow { position: relative; display: flex; flex-direction: column; gap: 14px; }
.flow-node { display: flex; align-items: center; gap: 11px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 12px 14px; box-shadow: var(--shadow-sm); position: relative; }
.flow-node .fn-dot { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; flex: none; }
.flow-node--trigger .fn-dot { background: var(--spark); } .flow-node--msg .fn-dot { background: var(--brand); } .flow-node--branch .fn-dot { background: var(--indigo); }
.flow-node .fn-t { font-size: 13px; font-weight: 700; color: var(--ink); } .flow-node .fn-s { font-size: 11px; color: var(--ink-faint); }
.flow-node:not(:last-child)::after { content: ""; position: absolute; left: 28px; bottom: -14px; width: 2px; height: 14px; background: var(--line-strong); }

/* ============================================================
   API value panel
   ============================================================ */
.api-panel {
  border-radius: var(--r-xl); padding: clamp(40px,5vw,68px); position: relative; overflow: hidden;
  background: radial-gradient(120% 130% at 0% 0%, var(--brand) 0%, var(--brand-deep) 60%, #053f39 100%);
  color: #fff; box-shadow: var(--shadow-float);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px,5vw,60px); align-items: center;
}
.api-panel::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(40% 60% at 90% 20%, rgba(70,210,126,.4), transparent 60%); }
.api-panel > * { position: relative; z-index: 1; }
.api-panel .eyebrow { color: #BFF4D7; }
.api-panel .eyebrow::before { background-image: radial-gradient(circle, #BFF4D7 45%, transparent 50%); }
.api-panel h2 { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: clamp(28px,3.6vw,42px); letter-spacing: -.015em; line-height: 1.08; margin-bottom: 16px; }
.api-panel p { color: rgba(255,255,255,.86); font-size: 16.5px; margin-bottom: 26px; max-width: 460px; }
.api-stats { display: grid; gap: 14px; }
.api-stat { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: var(--r); padding: 20px 22px; backdrop-filter: blur(8px); display: flex; align-items: baseline; gap: 14px; }
.api-stat .n { font-family: var(--font-display); font-weight: 600; font-size: 34px; color: #fff; line-height: 1; }
.api-stat .t { font-size: 14px; color: rgba(255,255,255,.82); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.quote { background: var(--raised); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform var(--t), box-shadow var(--t); }
.quote:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.quote .stars { margin-bottom: 16px; }
.quote p { font-size: 16px; color: var(--ink-soft); line-height: 1.6; flex: 1; }
.quote p::before { content: "\201C"; font-family: var(--font-display); color: var(--brand-200); font-size: 52px; line-height: 0; vertical-align: -18px; margin-right: 4px; }
.quote-by { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.quote-by .av { width: 44px; height: 44px; border-radius: 50%; flex: none; background-size: cover; }
.quote-by .n { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.quote-by .r { font-size: 12.5px; color: var(--ink-faint); }

/* ============================================================
   VALUE GRID (why Rasilni)
   ============================================================ */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { background: var(--raised); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; box-shadow: var(--shadow-card); transition: transform var(--t), box-shadow var(--t); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.value-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color: var(--brand-dark); background: var(--brand-50); margin-bottom: 18px; }
.value-card h3 { font-size: 18px; margin-bottom: 8px; letter-spacing: -.01em; }
.value-card p { font-size: 14.5px; color: var(--ink-muted); line-height: 1.6; }
@media (max-width: 860px) { .value-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .value-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; max-width: 760px; margin: 0 auto; }
.price-card { position: relative; background: var(--raised); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 30px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform var(--t), box-shadow var(--t); }
.price-card--featured { border-color: transparent; box-shadow: 0 0 0 2px var(--brand), var(--shadow-lift); }
.price-card:hover { transform: translateY(-5px); }
.price-badge { position: absolute; top: -13px; left: 30px; padding: 6px 14px; border-radius: var(--pill); font-size: 12px; font-weight: 700; letter-spacing: .03em; background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.price-badge--soon { background: var(--ink); }
.plan-name { font-size: 15px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 12px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 22px; }
.plan-price .amt { font-family: var(--font-display); font-weight: 600; font-size: 52px; color: var(--ink); letter-spacing: -.02em; }
.plan-price .per { color: var(--ink-faint); font-size: 15px; }
.plan-feats { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; flex: 1; }
.plan-feats li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); }
.plan-feats svg { flex: none; width: 20px; height: 20px; color: var(--brand); margin-top: 1px; }

/* ============================================================
   RESOURCES / ARTICLES
   ============================================================ */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article { background: var(--raised); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: transform var(--t), box-shadow var(--t); display: flex; flex-direction: column; }
.article:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.article-img { height: 180px; position: relative; overflow: hidden; }
.article-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,.05), rgba(0,0,0,.25)); }
.article-img--1 { background: linear-gradient(135deg, var(--brand), var(--brand-deep)); }
.article-img--2 { background: linear-gradient(135deg, var(--indigo), #4338CA); }
.article-img--3 { background: linear-gradient(135deg, var(--amber), #D97706); }
.article-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.article-tag { align-self: flex-start; font-size: 11.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--brand-dark); background: var(--brand-50); padding: 5px 11px; border-radius: var(--pill); margin-bottom: 14px; }
.article h3 { font-size: 19px; line-height: 1.3; margin-bottom: 10px; }
.article p { font-size: 14.5px; color: var(--ink-muted); flex: 1; margin-bottom: 18px; }
.article-link { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--brand-dark); }
.article-link svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.article:hover .article-link svg { transform: translateX(4px); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final { position: relative; }
.cta-panel {
  border-radius: var(--r-xl); padding: clamp(48px,7vw,88px) clamp(28px,5vw,64px); text-align: center; position: relative; overflow: hidden;
  background: var(--ink); color: #fff; box-shadow: var(--shadow-float);
}
.cta-panel::before { content: ""; position: absolute; inset: -40% 0 auto; height: 140%; background: radial-gradient(45% 60% at 50% 0%, rgba(70,210,126,.32), transparent 65%), radial-gradient(40% 50% at 80% 20%, rgba(0,168,132,.28), transparent 60%); pointer-events: none; }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: clamp(30px,4.6vw,54px); letter-spacing: -.02em; line-height: 1.05; margin-bottom: 18px; }
.cta-panel p { color: rgba(255,255,255,.8); font-size: clamp(16px,1.7vw,19px); max-width: 540px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 18px; font-size: 13.5px; color: rgba(255,255,255,.6); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #93A4AA; padding: clamp(56px,7vw,84px) 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px,4vw,48px); padding-bottom: 48px; }
.footer-brand p { font-size: 14.5px; line-height: 1.6; margin: 18px 0 20px; max-width: 280px; color: #8294A0; }
.footer-logo .logo-img { height: 26px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.06); color: #C6D2D6; transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast); }
.social-links a:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .03em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: #93A4AA; padding: 5px 0; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--spark); }
.footer-news h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.footer-news p { font-size: 14px; margin-bottom: 14px; color: #8294A0; }
.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 150px; padding: 12px 16px; border-radius: var(--pill); border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); color: #fff; }
.newsletter-form input::placeholder { color: #6E7F86; }
.newsletter-form input:focus { outline: none; border-color: var(--brand); }
.newsletter-form .btn { padding: 12px 20px; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom p { font-size: 13.5px; color: #7E8F95; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 13.5px; color: #7E8F95; transition: color var(--t-fast); }
.footer-legal a:hover { color: #fff; }

/* Velogics credit */
.velogics-credit {
  display: flex; align-items: center; justify-content: center; gap: 9px; flex-wrap: wrap;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13.5px; color: #7E8F95;
}
.velogics-credit a { display: inline-flex; align-items: center; gap: 7px; color: #C6D2D6; font-weight: 600; transition: color var(--t-fast); }
.velogics-credit a:hover { color: var(--spark); }
.velogics-credit .vk-diamond { width: 9px; height: 9px; transform: rotate(45deg); background: linear-gradient(135deg, var(--spark), var(--brand)); border-radius: 2px; }
.velogics-credit svg { width: 14px; height: 14px; transition: transform var(--t-fast); }
.velogics-credit a:hover svg { transform: translateX(3px); }

/* ============================================================
   INNER PAGES - page header
   ============================================================ */
.page-header {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(128px, 17vh, 196px) 0 clamp(52px, 7vw, 88px);
  background: linear-gradient(180deg, var(--brand-50) 0%, var(--paper) 92%);
  border-bottom: 1px solid var(--line);
}
/* Animated aurora glow */
.page-header::before {
  content: ""; position: absolute; inset: -55% -10% auto; height: 150%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(42% 60% at 20% 6%, rgba(70,210,126,.34), transparent 60%),
    radial-gradient(44% 64% at 82% 0%, rgba(0,168,132,.28), transparent 62%),
    radial-gradient(34% 50% at 55% 30%, rgba(99,102,241,.12), transparent 60%);
  filter: blur(8px);
  animation: aurora 18s ease-in-out infinite alternate;
}
/* Faint grid texture, faded toward the title */
.page-header::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .55;
  background-image:
    linear-gradient(to right, rgba(11,20,26,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,20,26,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(80% 75% at 50% 28%, #000, transparent 76%);
  mask-image: radial-gradient(80% 75% at 50% 28%, #000, transparent 76%);
}
.page-header > .container { position: relative; z-index: 1; }
.page-header .eyebrow { justify-content: center; }
.breadcrumb { display: flex; gap: 9px; justify-content: center; align-items: center; font-size: 13px; color: var(--ink-faint); margin-bottom: 18px; }
.breadcrumb a { color: var(--ink-muted); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--brand-dark); }
.page-header h1 { font-family: var(--font-display); font-optical-sizing: auto; font-weight: 600; letter-spacing: -.02em; line-height: 1.05; font-size: clamp(34px, 5vw, 60px); color: var(--ink); margin-bottom: 18px; }
.page-header p { color: var(--ink-muted); font-size: clamp(16px, 1.7vw, 19px); max-width: 640px; margin: 0 auto; line-height: 1.65; }

/* ============================================================
   PROSE (articles + legal)
   ============================================================ */
.prose { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.8; color: var(--ink-soft); }
.prose > * + * { margin-top: 1.05em; }
.prose h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; font-size: clamp(23px, 3vw, 31px); color: var(--ink); margin-top: 1.7em; line-height: 1.2; }
.prose h3 { font-size: 20px; font-weight: 700; color: var(--ink); margin-top: 1.4em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 0; display: flex; flex-direction: column; gap: .55em; margin-left: 2px; }
.prose ul { list-style: none; }
.prose ul li { position: relative; padding-left: 1.7em; }
.prose ul li::before { content: ""; position: absolute; left: 2px; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--spark); }
.prose ol { list-style: decimal; padding-left: 1.3em; }
.prose ol li { padding-left: .25em; }
.prose a { color: var(--brand-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--brand-200); }
.prose a:hover { text-decoration-color: var(--brand); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose blockquote { border-left: 3px solid var(--brand); padding: 4px 0 4px 20px; color: var(--ink-muted); font-style: italic; }
.prose .lead { font-size: clamp(18px, 2vw, 21px); color: var(--ink-muted); line-height: 1.6; }
.prose img { border-radius: var(--r); border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 2em 0; }
.article-meta { display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: 6px; font-size: 14px; color: var(--ink-faint); }
.prose .callout { background: var(--brand-50); border: 1px solid var(--brand-100); border-radius: var(--r); padding: 16px 20px; color: var(--brand-deep); font-weight: 500; }
.prose .callout p, .prose .callout { margin: 0; color: var(--brand-deep); line-height: 1.6; }
.prose .callout strong { color: var(--brand-deep); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--raised); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow var(--t), border-color var(--t); }
.faq-item.open { box-shadow: var(--shadow-card); border-color: var(--line-strong); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 19px 22px; font-size: 16.5px; font-weight: 600; color: var(--ink); text-align: left; }
.faq-question .fq-icon { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--brand-50); color: var(--brand-dark); display: grid; place-items: center; transition: transform var(--t), background var(--t), color var(--t); font-size: 18px; }
.faq-item.open .faq-question .fq-icon { transform: rotate(45deg); background: var(--brand); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item.open .faq-answer { max-height: 460px; }
.faq-answer-inner { padding: 0 22px 22px; color: var(--ink-muted); font-size: 15.5px; line-height: 1.7; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; gap: 14px; align-items: flex-start; background: var(--raised); border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px; box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t); }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.contact-card .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-50); color: var(--brand-dark); display: grid; place-items: center; flex: none; }
.contact-card h3 { font-size: 15.5px; margin-bottom: 3px; }
.contact-card p, .contact-card a { font-size: 14.5px; color: var(--ink-muted); line-height: 1.5; }
.contact-card a:hover { color: var(--brand-dark); }
.contact-form { background: var(--raised); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.form-field input, .form-field textarea, .form-field select { padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--paper); color: var(--ink); transition: border-color var(--t-fast), box-shadow var(--t-fast); width: 100%; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-50); }
.form-field textarea { min-height: 130px; resize: vertical; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stage { order: -1; min-height: auto; }
  .hero-sub { margin-inline: auto; }
  .hero-copy { text-align: center; }
  .hero-actions, .hero-trust { justify-content: center; }
  .pillars-grid, .quotes-grid, .articles-grid { grid-template-columns: repeat(2,1fr); }
  .api-panel { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .navbar.menu-open .nav-menu {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    padding: 12px var(--gutter) 22px; gap: 4px;
    background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    max-height: calc(100dvh - 72px); overflow-y: auto;
  }
  .navbar.menu-open .nav-links { display: flex; flex-direction: column; align-items: stretch; gap: 2px; margin: 0; }
  .navbar.menu-open .nav-links a { padding: 13px 14px; font-size: 16px; }
  .navbar.menu-open .nav-links a.active::after { display: none; }
  .navbar.menu-open .nav-actions { display: flex; flex-direction: column; align-items: stretch; gap: 10px; margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
  .navbar.menu-open .nav-actions .btn { justify-content: center; padding: 13px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 36px 20px; }
  .stat:nth-child(2)::after { display: none; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .showcase-row { grid-template-columns: 1fr; gap: 32px; }
  .showcase-row.reverse .showcase-text { order: 0; }
}
@media (max-width: 600px) {
  .pillars-grid, .quotes-grid, .articles-grid, .pricing-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .float-chip--bl { display: none; }
  .float-chip--tl { left: 0; } .float-chip--br { right: 0; }
  .device { width: 270px; height: 540px; }
  .hero { padding-top: 120px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .bubble { opacity: 1; transform: none; }
}
