/* ============================================================
   BRIVEN AI STUDIO — Design System
   Display: Space Grotesk · Body: Inter · Utility: IBM Plex Mono
   ============================================================ */

:root{
  /* --- Color tokens (sampled from the Briven mark) --- */
  --ink:        #111C28;   /* primary text / headings, matches logo navy */
  --ink-2:      #1B2A3B;   /* secondary dark surface (footer, panels) */
  --muted:      #5B6478;   /* secondary / body copy */
  --muted-2:    #8991A6;   /* tertiary / captions */
  --paper:      #F7F7FB;   /* page background */
  --surface:    #FFFFFF;   /* card / surface background */
  --line:       #E3E5F0;   /* hairline borders */
  --line-2:     #ECEDF6;
  --periwinkle:      #7787DB; /* brand accent, sampled from the mark's sparkle */
  --periwinkle-deep:  #5866C2; /* hover / pressed */
  --periwinkle-ink:   #3C4796; /* on-light emphasis text */
  --periwinkle-soft:  #EEF0FC; /* tint background */
  --periwinkle-line:  #D6DAF6; /* tint border */
  --good: #3F9A6E;

  --shadow-sm: 0 1px 2px rgba(17,28,40,.06);
  --shadow-md: 0 6px 20px rgba(17,28,40,.08);
  --shadow-lg: 0 20px 60px rgba(17,28,40,.14);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --container: 1160px;

  --font-display: 'Space Grotesk', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img{ max-width: 100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-display); margin: 0 0 .5em; letter-spacing: -0.01em; line-height: 1.1; }
p{ margin: 0 0 1em; }
button{ font: inherit; }
input, textarea{ font-family: var(--font-body); }

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

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

section{ padding: 96px 0; }
@media (max-width: 720px){ section{ padding: 64px 0; } }

.section-tight{ padding: 56px 0; }

/* ---------- Type helpers ---------- */
.eyebrow{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--periwinkle-ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before{
  content: "";
  width: 18px; height: 1px;
  background: var(--periwinkle);
  display: inline-block;
}
h1{ font-size: clamp(2.4rem, 4.4vw, 3.6rem); font-weight: 600; }
h2{ font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 600; }
h3{ font-size: 1.28rem; font-weight: 600; }
.lede{ font-size: 1.15rem; color: var(--muted); max-width: 54ch; }
.muted{ color: var(--muted); }
.center{ text-align:center; margin-left:auto; margin-right:auto; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content:center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .96rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover{ background: var(--periwinkle-deep); box-shadow: var(--shadow-md); }
.btn-accent{
  background: var(--periwinkle);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-accent:hover{ background: var(--periwinkle-deep); box-shadow: var(--shadow-md); }
.btn-ghost{
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover{ border-color: var(--periwinkle); color: var(--periwinkle-ink); }
.btn-on-dark{
  background: var(--periwinkle);
  color: #fff;
}
.btn-on-dark:hover{ background: #8C9AE3; }
.btn-ghost-on-dark{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.btn-ghost-on-dark:hover{ border-color: #fff; }
.btn-sm{ padding: 9px 18px; font-size: .87rem; }
.btn svg{ width: 15px; height: 15px; transition: transform .15s ease; }
.btn:hover svg{ transform: translateX(2px); }

/* ---------- Nav ---------- */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,247,251,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 0;
}
.brand{ display:flex; align-items:center; gap: 10px; }
.brand img{ height: 34px; width:auto; }
.brand-word{ font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; letter-spacing: .01em; }
.brand-word span{ color: var(--periwinkle-ink); }
.nav-links{ display:flex; align-items:center; gap: 34px; }
.nav-links a{
  font-size: .95rem; font-weight: 500; color: var(--muted);
  padding: 6px 2px; border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover, .nav-links a.active{ color: var(--ink); border-color: var(--periwinkle); }
.nav-cta{ display:flex; align-items:center; gap: 18px; }
.nav-toggle{
  display:none;
  background:none; border:none; cursor:pointer;
  width: 40px; height: 40px; border-radius: 10px;
  align-items:center; justify-content:center;
}
.nav-toggle:hover{ background: var(--line-2); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width: 20px; height: 2px; background: var(--ink);
  position: relative; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }
.nav-toggle[aria-expanded="true"] span{ background: transparent; }
.nav-toggle[aria-expanded="true"] span::before{ top:0; transform: rotate(45deg); background:var(--ink); }
.nav-toggle[aria-expanded="true"] span::after{ top:0; transform: rotate(-45deg); background:var(--ink); }

@media (max-width: 860px){
  .nav-links{
    position: absolute; top: 100%; left:0; right:0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch;
    padding: 8px 28px 20px;
    gap: 4px;
    display: none;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding: 12px 4px; border-bottom: 1px solid var(--line-2); }
  .nav-toggle{ display:flex; }
}

/* ---------- Hero ---------- */
.hero{
  padding: 76px 0 40px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items:center;
}
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
}
.hero-actions{ display:flex; gap: 14px; flex-wrap: wrap; margin: 30px 0 26px; }
.trust-line{
  display:flex; align-items:center; gap: 10px;
  font-family: var(--font-mono); font-size: .8rem; color: var(--muted-2);
  flex-wrap: wrap;
}
.trust-line .dot{ width:4px; height:4px; border-radius:50%; background: var(--muted-2); }

/* ---------- Browser / chat mockup (signature element) ---------- */
.browser-mock{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(.4deg);
}
.browser-bar{
  display:flex; align-items:center; gap: 8px;
  padding: 12px 16px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.browser-dot{ width:9px; height:9px; border-radius:50%; background: var(--line); }
.browser-url{
  margin-left: 10px;
  font-family: var(--font-mono); font-size: .74rem; color: var(--muted-2);
  background: var(--surface); border:1px solid var(--line);
  padding: 4px 12px; border-radius: 999px;
  flex:1; max-width: 220px;
}
.browser-body{
  position: relative;
  padding: 22px;
  min-height: 360px;
  background:
    linear-gradient(180deg, #fff, #fbfbfd);
}
.site-skeleton{ opacity: .55; }
.sk-line{ height: 9px; background: var(--line-2); border-radius: 5px; margin-bottom: 10px; }
.sk-line.w60{ width: 60%; } .sk-line.w80{ width: 80%; } .sk-line.w40{ width: 40%; } .sk-line.w90{width:90%;}
.sk-block{
  height: 84px; border-radius: 10px; background: var(--line-2);
  margin: 18px 0;
}
.sk-row{ display:flex; gap: 12px; margin-top: 18px; }
.sk-row .sk-block{ flex:1; height: 58px; margin:0; }

.chat-widget{
  position: absolute;
  right: 16px; bottom: 16px;
  width: min(280px, 82%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.chat-widget-head{
  display:flex; align-items:center; gap: 9px;
  padding: 12px 14px;
  background: var(--ink);
  color: #fff;
}
.chat-live-dot{
  width: 7px; height:7px; border-radius: 50%;
  background: #6EE7A8;
  box-shadow: 0 0 0 0 rgba(110,231,168,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(110,231,168,.55); }
  70%{ box-shadow: 0 0 0 7px rgba(110,231,168,0); }
  100%{ box-shadow: 0 0 0 0 rgba(110,231,168,0); }
}
.chat-widget-head strong{ font-size: .82rem; font-weight: 600; }
.chat-widget-body{
  padding: 14px;
  display:flex; flex-direction:column; gap: 9px;
  min-height: 168px;
}
.bubble{
  font-size: .82rem;
  line-height: 1.4;
  padding: 9px 12px;
  border-radius: 12px;
  max-width: 86%;
  opacity: 0; transform: translateY(6px);
  animation: bubble-in .4s ease forwards;
}
.bubble.visitor{
  align-self: flex-end;
  background: var(--periwinkle-soft);
  color: var(--periwinkle-ink);
  border-bottom-right-radius: 4px;
}
.bubble.bot{
  align-self: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}
@keyframes bubble-in{ to{ opacity:1; transform: translateY(0); } }
.typing{
  align-self: flex-start;
  display:inline-flex; gap: 4px;
  background: var(--paper); border: 1px solid var(--line);
  padding: 10px 13px; border-radius: 12px; border-bottom-left-radius: 4px;
}
.typing span{
  width:5px; height:5px; border-radius:50%; background: var(--muted-2);
  animation: bounce 1.2s infinite ease-in-out;
}
.typing span:nth-child(2){ animation-delay: .15s; }
.typing span:nth-child(3){ animation-delay: .3s; }
@keyframes bounce{ 0%,60%,100%{ transform: translateY(0); opacity:.5; } 30%{ transform: translateY(-3px); opacity:1; } }

.chat-bubble-fab{
  position:absolute; right: 22px; bottom: 22px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--periwinkle);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-lg);
  color:#fff;
}

/* ---------- Logo mark chip (used decoratively) ---------- */
.mark-badge{
  display:inline-flex; align-items:center; justify-content:center;
  width: 44px; height:44px; border-radius: 12px;
  background: var(--periwinkle-soft);
  border: 1px solid var(--periwinkle-line);
  color: var(--periwinkle-ink);
  flex-shrink:0;
}

/* ---------- Cards / grids ---------- */
.grid{ display:grid; gap: 24px; }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px){ .grid-4{ grid-template-columns: repeat(2,1fr); } .grid-3{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 640px){ .grid-4, .grid-3, .grid-2{ grid-template-columns: 1fr; } }

.card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--periwinkle-line); }

.service-feature-card{
  grid-column: span 2;
  padding: 34px;
  background: linear-gradient(155deg, var(--ink) 0%, #212F44 100%);
  color: #fff;
  border: none;
  position: relative;
  overflow:hidden;
}
.service-feature-card .eyebrow{ color: #B9C1F5; }
.service-feature-card .eyebrow::before{ background: #B9C1F5; }
.service-feature-card h3{ color:#fff; font-size: 1.5rem; }
.service-feature-card p{ color: rgba(255,255,255,.72); }
@media (max-width: 980px){ .service-feature-card{ grid-column: span 2; } }
@media (max-width: 640px){ .service-feature-card{ grid-column: span 1; } }

.tag{
  display:inline-block;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--periwinkle-soft);
  color: var(--periwinkle-ink);
  border: 1px solid var(--periwinkle-line);
}
.tag-on-dark{ background: rgba(255,255,255,.1); color:#fff; border-color: rgba(255,255,255,.22); }

/* ---------- Steps (real sequence => numbered legitimately) ---------- */
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
@media (max-width: 900px){ .steps{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .steps{ grid-template-columns: 1fr; } }
.step{
  padding: 0 22px 0 0;
  border-left: 1px solid var(--line);
  padding-left: 22px;
  position: relative;
}
.step:first-child{ border-left: none; padding-left:0; }
@media (max-width: 900px){
  .step{ border-left: none; padding-left:0; border-top: 1px solid var(--line); padding-top: 22px; }
  .step:first-child{ border-top:none; padding-top:0; }
}
.step-num{
  font-family: var(--font-mono);
  color: var(--periwinkle-ink);
  font-size: .85rem;
  margin-bottom: 14px;
  display:block;
}

/* ---------- Compare table ---------- */
.compare{
  display:grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 720px){ .compare{ grid-template-columns: 1fr; } }
.compare-col{
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px; background: var(--surface);
}
.compare-col.highlight{
  border-color: var(--periwinkle);
  background: var(--periwinkle-soft);
}
.compare-col ul{ margin-top: 14px; }
.compare-col li{
  display:flex; gap: 10px; align-items:flex-start;
  padding: 7px 0;
  font-size: .93rem;
  color: var(--muted);
}
.compare-col.highlight li{ color: var(--ink); }
.compare-col li svg{ flex-shrink:0; margin-top:3px; width:15px; height:15px; }

/* ---------- Pricing-style feature cards (no $ yet) ---------- */
.plan-card{
  border:1px solid var(--line); border-radius: var(--radius-md);
  padding: 28px;
  background: var(--surface);
  display:flex; flex-direction:column;
}
.plan-card.featured{ border-color: var(--periwinkle); box-shadow: var(--shadow-md); position:relative; }
.plan-card .plan-name{ font-family: var(--font-display); font-weight:700; font-size:1.1rem; }
.plan-card .plan-note{ font-family: var(--font-mono); font-size:.78rem; color: var(--periwinkle-ink); margin: 6px 0 18px; }
.plan-card ul{ flex:1; display:flex; flex-direction:column; gap:10px; margin-bottom: 22px; }
.plan-card li{ display:flex; gap:9px; font-size:.91rem; color:var(--muted); align-items:flex-start; }
.plan-card li svg{ flex-shrink:0; margin-top:3px; width:15px;height:15px; color: var(--periwinkle); }
.ribbon{
  position:absolute; top:-12px; right: 24px;
  background: var(--ink); color:#fff;
  font-family: var(--font-mono); font-size:.68rem; letter-spacing:.06em;
  padding: 5px 11px; border-radius: 999px;
}

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-band h2{ color:#fff; }
.cta-band p{ color: rgba(255,255,255,.7); }
.cta-band::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(560px 260px at 15% 0%, rgba(119,135,219,.35), transparent 60%),
              radial-gradient(560px 260px at 85% 100%, rgba(119,135,219,.22), transparent 60%);
  pointer-events:none;
}
@media (max-width: 640px){ .cta-band{ padding: 40px 24px; } }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--ink-2);
  color: rgba(255,255,255,.68);
  padding: 60px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 720px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-grid h4{ color:#fff; font-size: .82rem; font-family: var(--font-mono); letter-spacing:.08em; text-transform: uppercase; margin-bottom: 16px; font-weight:500; }
.footer-grid a{ display:block; padding: 6px 0; font-size: .92rem; color: rgba(255,255,255,.68); transition: color .15s ease; }
.footer-grid a:hover{ color:#fff; }
.footer-brand .brand-word{ color:#fff; }
.footer-brand .brand-word span{ color: var(--periwinkle); }
.footer-brand p{ margin-top: 14px; max-width: 34ch; font-size: .9rem; color: rgba(255,255,255,.6); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top: 24px; font-size: .82rem; color: rgba(255,255,255,.45);
  flex-wrap:wrap; gap: 14px;
}
.footer-legal{ display:flex; align-items:center; gap: 14px; }
.footer-legal a{ display:inline; padding:0; color: rgba(255,255,255,.6); }
.footer-legal a:hover{ color:#fff; }
.footer-legal .dot{ width:3px; height:3px; border-radius:50%; background: rgba(255,255,255,.3); }

/* ---------- Reveal on scroll ----------
   Visible by default so content never depends on JS running.
   JS opts elements into the hidden starting state right before
   it observes them, then reveals on intersect. */
.reveal{ opacity: 1; transform: none; }
.reveal.reveal-armed{ opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view{ opacity: 1; transform: translateY(0); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  padding: 64px 0 20px;
  border-bottom: 1px solid var(--line);
}

/* ---------- Form ---------- */
.form-grid{ display:grid; gap: 18px; max-width: 560px; }
.field label{
  display:block; font-size: .85rem; font-weight: 600; margin-bottom: 7px;
}
.field input, .field textarea{
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus{
  outline:none;
  border-color: var(--periwinkle);
  box-shadow: 0 0 0 4px var(--periwinkle-soft);
}
.field textarea{ resize: vertical; min-height: 130px; }
.form-note{ font-size: .82rem; color: var(--muted-2); }
.form-status{
  display:none;
  padding: 13px 15px;
  border-radius: 10px;
  font-size: .9rem;
  margin-top: 6px;
}
.form-status.ok{ display:block; background:#EBF8F1; color:#2A7A54; border:1px solid #CBEBDA; }
.form-status.err{ display:block; background:#FDECEC; color:#B3423B; border:1px solid #F6D2D0; }

/* ---------- Misc ---------- */
.divider{ height:1px; background: var(--line); border:none; margin: 0; }
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
@media (max-width: 860px){ .two-col{ grid-template-columns: 1fr; } }
.pill-list{ display:flex; flex-wrap:wrap; gap: 10px; }
.icon-list li{ display:flex; gap:10px; align-items:flex-start; padding: 8px 0; color: var(--muted); font-size:.95rem; }
.icon-list svg{ flex-shrink:0; margin-top:3px; color: var(--periwinkle); width:16px; height:16px; }

/* ---------- Legal / long-form content pages ---------- */
.prose{ max-width: 74ch; }
.prose h2{ font-size: 1.4rem; margin-top: 2.4em; }
.prose h2:first-child{ margin-top: 0; }
.prose h3{ font-size: 1.08rem; margin-top: 1.8em; }
.prose p, .prose li{ color: var(--muted); font-size: .98rem; line-height: 1.7; }
.prose ul{ margin: 0 0 1em; padding-left: 1.3em; list-style: disc; }
.prose li{ padding: 2px 0; }
.prose strong{ color: var(--ink); }
.prose a{ color: var(--periwinkle-ink); text-decoration: underline; text-underline-offset: 2px; }
.prose .updated{
  font-family: var(--font-mono); font-size: .8rem; color: var(--muted-2);
  margin-bottom: 2.4em;
}

/* ---------- Review mockup (Google Review Response service) ---------- */
.review-mock{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  transform: rotate(-.4deg);
}
.review-mock-head{ display:flex; align-items:center; gap: 12px; margin-bottom: 12px; }
.review-avatar{
  width: 38px; height:38px; border-radius:50%;
  background: var(--periwinkle-soft); color: var(--periwinkle-ink);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700; font-size:.95rem;
  flex-shrink:0;
}
.review-mock-head strong{ font-size: .92rem; display:block; }
.review-stars{ color: #E0A93D; font-size: .78rem; letter-spacing: 1px; }
.review-time{ margin-left:auto; font-size:.76rem; color: var(--muted-2); font-family: var(--font-mono); }
.review-text{ font-size: .92rem; color: var(--muted); margin-bottom: 16px; }
.review-reply{
  background: var(--periwinkle-soft);
  border: 1px solid var(--periwinkle-line);
  border-radius: 12px;
  padding: 14px 16px;
}
.review-reply-label{
  display:flex; align-items:center; gap:6px;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing:.04em;
  color: var(--periwinkle-ink); margin-bottom: 8px; text-transform: uppercase;
}
.review-reply p{ font-size: .88rem; color: var(--ink); margin:0; line-height:1.55; }

/* ---------- Flow mockup (Automation service) ---------- */
.flow-mock{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px 24px;
  display:flex; flex-direction:column; gap: 0;
}
.flow-node{
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  padding: 14px 16px;
}
.flow-node strong{ display:block; font-size: .92rem; margin-top:6px; }
.flow-node.active{ border-color: var(--periwinkle); background: var(--periwinkle-soft); }
.flow-arrow{
  align-self:center;
  color: var(--muted-2);
  padding: 6px 0;
  font-size: .9rem;
}
.flow-arrow svg{ width:16px; height:16px; transform: rotate(90deg); display:block; }

/* ---------- Dashboard mockup (Spreadsheet service) ---------- */
.dash-mock{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px;
}
.dash-kpis{ display:grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 20px; }
.kpi{
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px; text-align:center;
}
.kpi-num{ display:block; font-family: var(--font-display); font-weight:700; font-size: 1.1rem; }
.kpi-label{ display:block; font-size: .7rem; color: var(--muted-2); margin-top: 2px; font-family: var(--font-mono); }
.dash-chart{
  display:flex; align-items:flex-end; gap: 10px;
  height: 130px;
  border-bottom: 1px solid var(--line);
  padding: 0 6px 4px;
}
.dash-chart .bar{
  flex:1;
  background: linear-gradient(180deg, var(--periwinkle), var(--periwinkle-deep));
  border-radius: 5px 5px 0 0;
  opacity: .85;
}
.dash-chart .bar:nth-child(even){ opacity: .55; }
