/* ==========================================================================
   Phantiq Studios — shared stylesheet

   Palette and type pulled from the live phantiqstudios.com brand: near-black
   background, off-white text, a single purple-to-cyan gradient used as the
   accent (not a rainbow), Geist as the display/body font. Pink/amber remain
   as functional status colors only (pills, badges), never primary brand color.
   ========================================================================== */

@font-face{
  font-family: 'Geist';
  src: url('/fonts/geist-98bbbccb.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root{
  --bg: #0b0d14;
  --bg-alt: #11141d;
  --card: #14171f;
  --card-border: rgba(255,255,255,0.08);
  --text: #f7f8fc;
  --muted: #9a9fb0;
  --purple: #a68cff;
  --pink: #ec4899;
  --amber: #f59e0b;
  --cyan: #5ee6ff;
  --grad-main: linear-gradient(100deg, #ffffff 10%, var(--purple) 55%, var(--cyan) 100%);
  --grad-cool: linear-gradient(120deg, var(--cyan), var(--purple));
  --grad-text: linear-gradient(100deg, #ffffff 20%, var(--purple) 68%, var(--cyan) 100%);
  --radius: 20px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
}

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

html{ scroll-behavior: smooth; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(600px 400px at 8% -5%, rgba(166,140,255,0.28), transparent 60%),
    radial-gradient(700px 500px at 110% 10%, rgba(94,230,255,0.16), transparent 60%),
    var(--bg);
}

h1,h2,h3,h4{
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a{ color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline: 3px solid rgba(94,230,255,0.72);
  outline-offset: 3px;
}

img{ max-width: 100%; display:block; }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:'Geist', 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.eyebrow::before{
  content:"";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-main);
  box-shadow: 0 0 12px var(--pink);
}

.grad-text{
  background: var(--grad-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Header ---------- */
header.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(11,13,20,0.84);
  border-bottom: 1px solid var(--card-border);
}
.nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo{
  display:flex;
  align-items:center;
  gap: 11px;
  font-family:'Geist', 'Inter', sans-serif;
  font-weight: 700;
  color: #ffffff;
}
.logo-mark{
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--grad-main);
  display:flex; align-items:center; justify-content:center;
  font-weight: 800;
  color: #0b0b1e;
  font-size: 1.05rem;
  box-shadow: 0 6px 20px rgba(166,140,255,0.45);
  flex-shrink: 0;
}
.logo-mark-img{
  width: 40px; height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-name{
  display:block;
  color:#ffffff;
  font-size:0.94rem;
  font-weight:700;
  letter-spacing:0.23em;
  line-height:1.05;
  white-space:nowrap;
}
.logo-sub{
  display:block;
  font-size: 0.46rem;
  letter-spacing: 0.48em;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  margin-top: 5px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 32px;
  list-style:none;
}
.nav-links a{
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active{ color: var(--text); }
.nav-links a.active::after{
  content:"";
  position:absolute;
  bottom:-6px; left:0; right:0;
  height: 2px;
  background: var(--grad-main);
  border-radius: 2px;
}

.nav-cta{
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--grad-main);
  color: #0b0b1e !important;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover{ transform: translateY(-2px); box-shadow: 0 10px 24px rgba(166,140,255,0.35); }

.nav-toggle{
  display:none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span{
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.25s;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Geist', 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary{
  background: var(--grad-main);
  color: #0b0b1e;
  box-shadow: 0 12px 30px rgba(166,140,255,0.3);
}
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 16px 36px rgba(94,230,255,0.35); }
.btn-outline{
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--card-border);
}
.btn-outline:hover{ border-color: var(--cyan); color: var(--cyan); transform: translateY(-3px); }

/* ---------- Hero ---------- */
.hero{
  padding: 110px 0 90px;
  text-align: center;
}
.hero h1{
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  max-width: 900px;
  margin: 0 auto 24px;
}
.hero p.lead{
  max-width: 620px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 1.15rem;
}
.hero-actions{
  display:flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero{
  padding: 80px 0 60px;
  text-align:center;
}
.page-hero h1{ font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 18px; }
.page-hero p{ color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 1.08rem; }

/* ---------- Sections ---------- */
section{ padding: 90px 0; }
.section-head{
  text-align:center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head h2{ font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.section-head p{ color: var(--muted); font-size: 1.05rem; }

.alt-bg{ background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02), transparent); }

/* ---------- Grids / Cards ---------- */
.grid{
  display:grid;
  gap: 28px;
}
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }

.card{
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.card:hover{
  transform: translateY(-6px);
  border-color: rgba(166,140,255,0.4);
  box-shadow: var(--shadow);
}
.card .icon{
  width: 52px; height: 52px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
}
.card h3{ font-size: 1.2rem; margin-bottom: 10px; }
.card p{ color: var(--muted); font-size: 0.96rem; }
.text-link{ display:inline-block; margin-top:18px; color:var(--cyan); font-size:0.9rem; font-weight:700; }

.icon svg{ width: 24px; height: 24px; stroke: currentColor; fill: none; }
.icon-purple{ background: rgba(166,140,255,0.18); color: var(--purple); }
.icon-pink{ background: rgba(236,72,153,0.18); color: var(--pink); }
.icon-amber{ background: rgba(245,158,11,0.18); color: var(--amber); }
.icon-cyan{ background: rgba(94,230,255,0.18); color: var(--cyan); }

/* ---------- Product cards ---------- */
.product-card{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items:center;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 32px;
}
.product-card.reverse{ direction: rtl; }
.product-card.reverse > *{ direction: ltr; }
.product-visual{
  aspect-ratio: 4/3;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Geist', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.92);
  position: relative;
  overflow: hidden;
}
.product-visual::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25), transparent 55%);
}
.status-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.status-live{ background: rgba(94,230,255,0.15); color: var(--cyan); }
.status-soon{ background: rgba(245,158,11,0.15); color: var(--amber); }
.status-dot{ width:7px; height:7px; border-radius:50%; background: currentColor; }

.tag-list{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 20px; }
.tag{
  font-size: 0.78rem;
  color: var(--muted);
  border: 1px solid var(--card-border);
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- Stats ---------- */
.stats{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  padding: 48px 0;
}
.stat{ text-align:center; }
.stat .num{
  font-family:'Geist','Inter',sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .label{ color: var(--muted); font-size: 0.88rem; margin-top: 6px; }

/* ---------- CTA banner ---------- */
.cta-banner{
  border-radius: 28px;
  background: linear-gradient(120deg, rgba(166,140,255,0.22), rgba(94,230,255,0.14));
  border: 1px solid rgba(255,255,255,0.1);
  padding: 64px 40px;
  text-align:center;
}
.cta-banner h2{ font-size: clamp(1.8rem,4vw,2.6rem); margin-bottom: 16px; }
.cta-banner p{ color: var(--muted); max-width: 520px; margin: 0 auto 32px; }

/* ---------- Timeline / values ---------- */
.value-list{ display:grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.value-item{
  display:flex; gap: 18px;
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
}
.value-num{
  font-family:'Geist','Inter',sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--pink);
  flex-shrink:0;
}

/* ---------- Form ---------- */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 48px; }
form.contact-form{ display:flex; flex-direction:column; gap: 18px; }
.field label{
  display:block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.field input, .field textarea, .field select{
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-family: 'Geist', 'Inter', sans-serif;
  font-size: 0.95rem;
  resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus{
  outline: none;
  border-color: var(--purple);
}
.contact-info-item{
  display:flex; gap:16px; align-items:flex-start;
  margin-bottom: 28px;
}
.contact-info-item .icon{ width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-info-item .icon svg{ width:20px; height:20px; stroke:currentColor; fill:none; }
.contact-info-item h4{ font-size: 1rem; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a{ color: var(--muted); font-size: 0.92rem; }
.legal-copy{ max-width:760px; }
.legal-copy h2{ font-size:1.3rem; margin:32px 0 10px; }
.legal-copy h2:first-child{ margin-top:0; }
.legal-copy p{ color:var(--muted); margin-bottom:14px; }
.legal-copy a{ color:var(--cyan); text-decoration:underline; text-underline-offset:3px; }
.legal-updated{ margin-top:38px; font-size:0.85rem; }

/* ---------- Footer ---------- */
footer{
  border-top: 1px solid var(--card-border);
  padding: 64px 0 32px;
  margin-top: 60px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p{ color: var(--muted); font-size: 0.9rem; margin-top: 14px; max-width: 280px; }
.footer-col h4{
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-col ul{ list-style:none; display:flex; flex-direction:column; gap: 12px; }
.footer-col a{ font-size: 0.92rem; color: var(--text); opacity: 0.85; transition: opacity 0.2s, color 0.2s; }
.footer-col a:hover{ opacity:1; color: var(--cyan); }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top: 28px;
  border-top: 1px solid var(--card-border);
  color: var(--muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}
.social-links{ display:flex; gap:14px; }
.social-links a{
  width: 36px; height:36px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  display:flex; align-items:center; justify-content:center;
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s;
}
.social-links a:hover{ border-color: var(--pink); color: var(--pink); }
.social-links-text a{
  width:auto;
  height:auto;
  min-height:36px;
  padding:7px 14px;
  border-radius:999px;
}

/* ---------- Reveal animation ---------- */
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .nav-links{
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(11,11,30,0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--card-border);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }
  .nav-links.open{ transform: translateY(0); }
  .nav-toggle{ display:flex; }
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
  .product-card{ grid-template-columns: 1fr; }
  .product-card.reverse{ direction: ltr; }
  .product-card.reverse .product-visual{ order: -1; }
  .stats{ grid-template-columns: repeat(2,1fr); }
  .value-list{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px){
  .container{ padding-left:18px; padding-right:18px; }
  .nav{ padding-left:18px; padding-right:18px; }
  .logo-mark-img{ width:36px; height:36px; }
  .logo-name{ font-size:0.84rem; }
  .logo-sub{ font-size:0.42rem; }
  .hero{ padding-top:76px; }
  .footer-grid{ grid-template-columns:1fr; }
  .footer-bottom{ align-items:flex-start; flex-direction:column; }
}

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

/* ==========================================================================
   Additional components — fact strip, process, service list, mockups
   ========================================================================== */

/* ---------- Fact strip ---------- */
.fact-strip{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px;
  padding: 30px 34px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
}
.fact-item{ padding-left: 16px; border-left: 2px solid rgba(166,140,255,0.5); }
.fact-label{ font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--muted); margin-bottom: 8px; }
.fact-value{ font-family:'Geist', 'Inter', sans-serif; font-weight: 700; font-size: 1.08rem; }

/* ---------- Process steps ---------- */
.process{ display:grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; }
.process::before{ content:""; position:absolute; top:26px; left:9%; right:9%; height:1px; background: var(--card-border); z-index:0; }
.process-step{ position:relative; z-index:1; }
.process-num{
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--card-border);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 22px;
  font-family:'Geist', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}
.process-step h4{ font-size: 1.02rem; margin-bottom: 8px; }
.process-step p{ color: var(--muted); font-size: 0.88rem; }

/* ---------- Service list rows ---------- */
.service-list{ display:flex; flex-direction:column; border-top: 1px solid var(--card-border); }
.service-row{
  display:grid;
  grid-template-columns: 56px 48px 1fr;
  gap: 24px;
  align-items:start;
  padding: 34px 10px;
  border-bottom: 1px solid var(--card-border);
  transition: background 0.2s;
}
.service-row:hover{ background: rgba(255,255,255,0.02); }
.service-index{ font-family:'Geist', 'Inter', sans-serif; font-weight:700; font-size: 1.3rem; color: var(--muted); opacity: 0.45; }
.service-row .icon{ width: 46px; height: 46px; border-radius: 13px; margin-bottom: 0; }
.service-row .icon svg{ width: 21px; height: 21px; }
.service-body h3{ font-size: 1.28rem; margin-bottom: 10px; }
.service-body p{ color: var(--muted); font-size: 0.96rem; max-width: 560px; margin-bottom: 16px; }

/* ---------- Engagement cards ---------- */
.engagement-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.engagement-card{ border: 1px solid var(--card-border); border-radius: var(--radius-sm); padding: 30px; background: var(--bg-alt); }
.eng-label{ font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--cyan); margin-bottom: 14px; font-weight: 700; }
.engagement-card h4{ font-size: 1.12rem; margin-bottom: 12px; }
.engagement-card p{ color: var(--muted); font-size: 0.9rem; }

/* ---------- Mockup panels (shared base) ---------- */
.mockup{
  border-radius: 20px;
  border: 1px solid var(--card-border);
  background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.01));
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.mockup::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 15% 0%, rgba(166,140,255,0.16), transparent 55%);
  pointer-events:none;
}
.mockup-label{
  display:flex; align-items:center; gap:8px;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted);
  margin-bottom: 18px;
}
.mockup-dots{ display:flex; gap:5px; }
.mockup-dots span{ width:7px; height:7px; border-radius:50%; background: var(--card-border); }

/* Chat mockup — Charlie.ai */
.chat-mockup{ display:flex; flex-direction:column; gap: 12px; position:relative; z-index:1; }
.chat-bubble{ max-width: 80%; padding: 12px 16px; border-radius: 16px; font-size: 0.87rem; line-height: 1.5; }
.chat-bubble.user{ align-self:flex-end; background: var(--grad-main); color:#0b0b1e; font-weight: 600; border-bottom-right-radius: 4px; }
.chat-bubble.system{ align-self:flex-start; background: rgba(255,255,255,0.06); border: 1px solid var(--card-border); border-bottom-left-radius: 4px; }
.chat-typing{ align-self:flex-start; display:flex; gap:4px; padding: 13px 16px; background: rgba(255,255,255,0.06); border-radius: 16px; border-bottom-left-radius: 4px; }
.chat-typing span{ width:6px; height:6px; border-radius:50%; background: var(--muted); animation: blink 1.2s infinite ease-in-out; }
.chat-typing span:nth-child(2){ animation-delay: 0.2s; }
.chat-typing span:nth-child(3){ animation-delay: 0.4s; }
@keyframes blink{ 0%,80%,100%{ opacity:0.3; } 40%{ opacity:1; } }
.chat-workspace-card{ margin-top: 6px; padding: 14px 16px; border-radius: 12px; border: 1px solid rgba(94,230,255,0.35); background: rgba(94,230,255,0.08); display:flex; align-items:center; gap: 12px; }
.ws-icon{ width: 34px; height: 34px; border-radius: 9px; background: var(--grad-cool); flex-shrink:0; }
.ws-title{ font-size: 0.86rem; font-weight: 700; }
.ws-sub{ font-size: 0.76rem; color: var(--muted); }

/* Notification mockup — Relentless */
.notif-mockup{ position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; }
.notif-stack{ width:100%; display:flex; flex-direction:column; }
.notif-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.notif-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom: 6px; }
.notif-app{ display:flex; align-items:center; gap:8px; font-size: 0.7rem; font-weight:700; color: var(--muted); text-transform:uppercase; letter-spacing: 0.05em; }
.notif-app-icon{ width:15px; height:15px; border-radius:5px; background: var(--grad-main); }
.notif-time{ font-size: 0.7rem; color: var(--muted); }
.notif-body{ font-size: 0.85rem; }
.streak-row{ display:flex; align-items:center; gap: 14px; margin-top: 6px; padding: 14px 16px; border: 1px solid var(--card-border); border-radius: 12px; background: rgba(255,255,255,0.03); width: 100%; }
.streak-ring{ width: 42px; height: 42px; border-radius: 50%; background: conic-gradient(var(--pink) 0deg 290deg, rgba(255,255,255,0.1) 290deg 360deg); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.streak-ring span{ width: 32px; height: 32px; border-radius: 50%; background: var(--bg); display:flex; align-items:center; justify-content:center; font-size: 0.68rem; font-weight: 700; }
.streak-label strong{ display:block; font-size: 0.92rem; }
.streak-label{ font-size: 0.78rem; color: var(--muted); }

/* Credential mockup — Qualification Passport */
.cred-mockup{ position:relative; z-index:1; display:flex; flex-direction:column; gap: 16px; }
.cred-card{ border-radius: 16px; padding: 22px; background: linear-gradient(135deg, rgba(166,140,255,0.2), rgba(236,72,153,0.1)); border: 1px solid rgba(166,140,255,0.32); }
.cred-top{ display:flex; justify-content:space-between; align-items:flex-start; margin-bottom: 20px; }
.cred-badge{ display:flex; align-items:center; gap:6px; font-size: 0.72rem; font-weight:700; color: var(--cyan); background: rgba(94,230,255,0.12); padding: 5px 11px; border-radius: 999px; }
.cred-badge svg{ width: 13px; height: 13px; }
.cred-id{ font-family:'Geist', 'Inter', sans-serif; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.05em; }
.cred-title{ font-family:'Geist', 'Inter', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 4px; }
.cred-issuer{ font-size: 0.82rem; color: var(--muted); margin-bottom: 18px; }
.cred-meta{ display:flex; justify-content:space-between; font-size: 0.72rem; color: var(--muted); margin-bottom: 8px; }
.cred-bar{ height: 6px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow:hidden; }
.cred-bar-fill{ height: 100%; background: var(--grad-cool); width: 72%; border-radius: 999px; }
.access-row{ display:flex; align-items:center; justify-content:space-between; padding: 14px 16px; border: 1px dashed var(--card-border); border-radius: 12px; }
.access-code{ font-family:'Geist', 'Inter', sans-serif; font-weight: 700; letter-spacing: 0.08em; font-size: 0.95rem; }
.access-label{ font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* Dashboard mockup — Subby */
.dash-mockup{ position:relative; z-index:1; display:flex; flex-direction:column; gap: 10px; }
.dash-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom: 6px; }
.dash-title{ font-family:'Geist', 'Inter', sans-serif; font-weight: 700; font-size: 0.94rem; }
.dash-sub{ font-size: 0.72rem; color: var(--muted); }
.dash-row{ display:grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items:center; padding: 12px 14px; border: 1px solid var(--card-border); border-radius: 12px; background: rgba(255,255,255,0.02); }
.dash-name{ display:flex; align-items:center; gap: 10px; font-size: 0.85rem; font-weight: 600; }
.dash-avatar{ width: 26px; height: 26px; border-radius: 50%; flex-shrink:0; }
.dash-pill{ font-size: 0.66rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; white-space:nowrap; }
.pill-ontrack{ background: rgba(94,230,255,0.15); color: var(--cyan); }
.pill-risk{ background: rgba(245,158,11,0.15); color: var(--amber); }
.pill-verified{ background: rgba(166,140,255,0.15); color: var(--purple); display:flex; align-items:center; gap:4px; }
.pill-verified svg{ width: 11px; height: 11px; }

/* ---------- Timeline ---------- */
.timeline{ position:relative; padding-left: 32px; }
.timeline::before{ content:""; position:absolute; left: 7px; top: 6px; bottom: 6px; width: 1px; background: var(--card-border); }
.timeline-item{ position:relative; padding-bottom: 38px; }
.timeline-item:last-child{ padding-bottom: 0; }
.timeline-dot{ position:absolute; left: -32px; top: 2px; width: 16px; height: 16px; border-radius: 50%; background: var(--bg); border: 2px solid var(--pink); }
.timeline-time{ font-family:'Geist', 'Inter', sans-serif; font-size: 0.74rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px; }
.timeline-item h4{ font-size: 1.05rem; margin-bottom: 6px; }
.timeline-item p{ color: var(--muted); font-size: 0.9rem; }

/* ---------- Flow steps ---------- */
.flow-steps{ display:grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.flow-step{ background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-sm); padding: 26px; position:relative; }
.flow-num{ font-family:'Geist', 'Inter', sans-serif; font-weight: 700; font-size: 0.78rem; color: var(--pink); margin-bottom: 16px; }
.flow-step h4{ font-size: 1.02rem; margin-bottom: 10px; }
.flow-step p{ color: var(--muted); font-size: 0.87rem; }

/* ---------- Roles diagram ---------- */
.roles-diagram{ display:grid; grid-template-columns: 1fr auto 1fr; gap: 28px; align-items:center; }
.role-card{ background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-sm); padding: 30px; text-align:center; }
.role-card .icon{ margin: 0 auto 18px; }
.role-card h4{ font-size: 1.02rem; margin-bottom: 10px; }
.role-card p{ color: var(--muted); font-size: 0.87rem; }
.role-center{ display:flex; flex-direction:column; align-items:center; gap: 12px; }
.role-center-badge{ width: 64px; height: 64px; border-radius: 50%; background: var(--grad-main); display:flex; align-items:center; justify-content:center; color:#0b0b1e; }
.role-center-badge svg{ width: 26px; height: 26px; stroke: #0b0b1e; }
.role-center span{ font-size: 0.76rem; color: var(--muted); text-align:center; max-width: 130px; }

/* ---------- Compare table ---------- */
.compare-wrap{ overflow-x:auto; border-radius: var(--radius-sm); border: 1px solid var(--card-border); }
.compare-table{ width: 100%; border-collapse: collapse; min-width: 560px; }
.compare-table th, .compare-table td{ padding: 16px 22px; text-align:left; font-size: 0.87rem; border-bottom: 1px solid var(--card-border); white-space: nowrap; }
.compare-table th{ font-family:'Geist', 'Inter', sans-serif; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); background: var(--bg-alt); }
.compare-table tr:last-child td{ border-bottom: none; }
.compare-table td:first-child{ font-weight: 700; }

@media (max-width: 900px){
  .fact-strip{ grid-template-columns: repeat(2,1fr); }
  .process{ grid-template-columns: 1fr; gap: 28px; }
  .process::before{ display:none; }
  .service-row{ grid-template-columns: 40px 1fr; }
  .service-row .icon{ display:none; }
  .engagement-grid{ grid-template-columns: 1fr; }
  .flow-steps{ grid-template-columns: 1fr !important; }
  .roles-diagram{ grid-template-columns: 1fr; }
  .role-center{ order: 2; }
}

/* ==========================================================================
   Agency pivot — quote funnel, pricing cards, portfolio browser-frames,
   sticky call bar, intent-page hero
   ========================================================================== */

/* ---------- Sticky call/text bar (trades intent pages) ---------- */
.sticky-call-bar{
  position: fixed; left:0; right:0; bottom:0; z-index: 90;
  display:none;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(11,11,30,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--card-border);
}
.sticky-call-bar a{
  flex:1;
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding: 13px; border-radius: 12px;
  font-weight: 700; font-family:'Geist','Inter',sans-serif; font-size:0.95rem;
}
.sticky-call-bar .call-btn{ background: var(--grad-main); color:#0b0b1e; }
.sticky-call-bar .text-btn{ background: rgba(255,255,255,0.06); border:1px solid var(--card-border); color: var(--text); }
@media (max-width: 720px){ .sticky-call-bar{ display:flex; } body{ padding-bottom: 74px; } }

/* ---------- Quote funnel (question-based lead gen) ---------- */
.funnel{
  max-width: 640px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 40px;
}
.funnel-progress{ display:flex; gap:6px; margin-bottom: 32px; }
.funnel-progress span{ flex:1; height:4px; border-radius:999px; background: var(--card-border); overflow:hidden; }
.funnel-progress span.done{ background: var(--grad-main); }
.funnel-step{ display:none; }
.funnel-step.active{ display:block; }
.funnel-step h3{ font-size: 1.3rem; margin-bottom: 22px; }
.funnel-options{ display:flex; flex-direction:column; gap: 12px; margin-bottom: 24px; }
.funnel-option{
  display:flex; align-items:center; gap:14px;
  padding: 16px 18px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--card-border); background: rgba(255,255,255,0.02);
  cursor:pointer; transition: border-color 0.2s, background 0.2s;
  font-family:'Geist','Inter',sans-serif; font-size: 0.96rem; text-align:left;
  color: var(--text); width:100%;
}
.funnel-option:hover{ border-color: var(--purple); background: rgba(166,140,255,0.08); }
.funnel-option.selected{ border-color: var(--purple); background: rgba(166,140,255,0.12); }
.funnel-option .opt-num{
  width: 28px; height:28px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,0.06); font-size:0.78rem; font-weight:700;
}
.funnel-nav{ display:flex; justify-content:space-between; gap:12px; }
.funnel-result{ display:none; }
.funnel-result.active{ display:block; }
.funnel-result-card{
  padding: 26px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(166,140,255,0.18), rgba(236,72,153,0.1));
  border: 1px solid rgba(166,140,255,0.32); margin-bottom: 24px;
}
.funnel-result-card .fr-label{ font-size:0.72rem; text-transform:uppercase; letter-spacing:0.08em; color:var(--cyan); font-weight:700; margin-bottom:10px; }
.funnel-result-card h4{ font-size:1.4rem; margin-bottom:10px; }
.funnel-result-card .fr-price{ font-family:'Geist','Inter',sans-serif; font-weight:700; font-size:1.6rem; margin: 12px 0; }
.funnel-result-card .fr-price span{ font-size:0.85rem; color:var(--muted); font-weight:500; }
.field-optional{ color:var(--muted); font-weight:400; }
.form-note{ margin-top:12px; color:var(--muted); font-size:0.78rem; line-height:1.5; text-align:center; }
.form-note a{ color:var(--text); text-decoration:underline; text-underline-offset:2px; }

/* ---------- Pricing cards ---------- */
.pricing-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items:stretch; }
.price-card{
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 32px; display:flex; flex-direction:column;
  position:relative;
}
.price-card.featured{ border-color: var(--pink); box-shadow: 0 0 0 1px var(--pink), var(--shadow); }
.price-card .pc-badge{
  position:absolute; top:-13px; left:32px;
  background: var(--grad-main); color:#0b0b1e; font-weight:700; font-size:0.72rem;
  padding: 5px 14px; border-radius:999px; text-transform:uppercase; letter-spacing:0.04em;
}
.price-card h3{ font-size:1.15rem; margin-bottom:6px; }
.price-card .pc-sub{ color:var(--muted); font-size:0.86rem; margin-bottom:20px; }
.price-card .pc-price{ font-family:'Geist','Inter',sans-serif; font-weight:700; font-size:2.2rem; margin-bottom:4px; }
.price-card .pc-price span{ font-size:0.95rem; color:var(--muted); font-weight:500; }
.price-card ul{ list-style:none; display:flex; flex-direction:column; gap:11px; margin: 22px 0 26px; flex:1; }
.price-card li{ display:flex; gap:10px; font-size:0.9rem; color: var(--text); align-items:flex-start; }
.price-card li svg{ width:17px; height:17px; stroke: var(--cyan); flex-shrink:0; margin-top:2px; }

/* ---------- Add-on strip ---------- */
.addon-strip{ display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.addon-card{ border:1px dashed var(--card-border); border-radius: var(--radius-sm); padding: 24px; }
.addon-card h4{ font-size:1rem; margin-bottom:8px; display:flex; align-items:center; gap:10px; }
.addon-card p{ color:var(--muted); font-size:0.88rem; }
.addon-card .addon-price{ font-family:'Geist','Inter',sans-serif; font-weight:700; color:var(--amber); font-size:0.95rem; margin-top:10px; }

/* ---------- Portfolio / browser mockup frame ---------- */
.browser-frame{
  border-radius: 14px; overflow:hidden; border:1px solid var(--card-border);
  background: var(--bg-alt);
}
.browser-bar{
  display:flex; align-items:center; gap:8px; padding:10px 14px;
  background: rgba(255,255,255,0.03); border-bottom:1px solid var(--card-border);
}
.browser-dots{ display:flex; gap:6px; }
.browser-dots span{ width:9px;height:9px;border-radius:50%; background: var(--card-border); }
.browser-url{
  flex:1; text-align:center; font-size:0.76rem; color:var(--muted);
  font-family:'Geist','Inter',sans-serif; background: rgba(255,255,255,0.04);
  border-radius:999px; padding:5px 12px; margin: 0 40px;
}
.browser-body{ padding: 0; min-height: 220px; }
.case-card{ background:var(--card); border:1px solid var(--card-border); border-radius: var(--radius); overflow:hidden; }
.case-body{ padding: 26px; }
.case-body h3{ font-size:1.2rem; margin-bottom:8px; }
.case-body p{ color:var(--muted); font-size:0.92rem; margin-bottom:16px; }
.case-tags{ display:flex; gap:8px; flex-wrap:wrap; }

/* ---------- Intent page hero variant ---------- */
.intent-hero{ padding: 70px 0 40px; text-align:left; }
.intent-hero .container{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items:center; }
.intent-hero h1{ font-size: clamp(2rem,4.5vw,3rem); margin-bottom:18px; }
.intent-hero p{ color:var(--muted); font-size:1.05rem; margin-bottom:28px; }
.intent-trust{ display:flex; gap:22px; flex-wrap:wrap; margin-top: 28px; }
.intent-trust .it-item{ display:flex; align-items:center; gap:8px; font-size:0.85rem; color:var(--muted); }
.intent-trust svg{ width:16px;height:16px; stroke: var(--cyan); }

@media (max-width: 900px){
  .pricing-grid{ grid-template-columns: 1fr; }
  .addon-strip{ grid-template-columns: 1fr; }
  .intent-hero .container{ grid-template-columns: 1fr; }
  .funnel{ padding: 26px; }
}
