/* =============================================================================
   Shravan.ai — marketing stylesheet (index, blog, privacy, support)
   =============================================================================
   Hand-written, no build step. The console pages (campaigns/analysis/billing)
   keep site.css; this file owns the public site only, so a change here can
   never break the client dashboards.

   Design system in one sentence: black canvas, white type, one dot-matrix
   display face for the words that matter, and a single deep-blue glow that
   says "signal". Motion is calm — entrances once, ambience always, hover
   barely.
   ========================================================================== */

:root {
  --bg: #000000;
  --surface: #0a0a0a;          /* neutral-950 */
  --surface-2: #111113;
  --hair: rgba(255, 255, 255, 0.08);
  --hair-strong: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --text-2: rgba(255, 255, 255, 0.72);
  --muted: #8e8e8e;
  --nav-text: #2e2e2e;
  --pill-dark: #28282a;
  --pill-dark-hover: #323234;
  --sign-in-text: #c8c8c8;
  --nav-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  --blob: #1e3a8a;
  --live: #4ade80;
  --danger: #fca5a5;

  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Doto", "Inter", monospace;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; }
::selection { background: rgba(255,255,255,0.9); color: #000; }

/* Utilities main.js/blog.js emit into generated markup ---------------------- */
.hidden { display: none !important; }
.flex { display: flex; }
.w-full { width: 100%; }
.text-left { text-align: left; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.font-semibold { font-weight: 600; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-5 { margin-bottom: 1.25rem; }
.pt-3 { padding-top: 0.75rem; }
.p-4 { padding: 1rem; }
.flex-1 { flex: 1; }
.flex-col { flex-direction: column; }
.min-h-\[20px\] { min-height: 20px; }
.text-red-300 { color: var(--danger); }
.text-gray-400 { color: var(--muted); }
.border-t { border-top: 1px solid var(--hair); }
.border-hairline { border-color: var(--hair); }

/* Layout ------------------------------------------------------------------ */
.wrap { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }
.section { position: relative; padding: clamp(56px, 9vw, 120px) 0; }
.section-title {
  font-weight: 300;
  font-size: clamp(30px, 4.6vw, 52px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-align: center;
  margin: 0 0 clamp(36px, 5vw, 72px);
}
.section-title em { font-style: normal; color: var(--muted); }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Header ------------------------------------------------------------------ */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  padding: clamp(14px, 2.2vh, 24px) clamp(14px, 3vw, 32px);
  display: flex; justify-content: center;
  pointer-events: none;
  animation: slideDown 0.7s var(--ease-out) both;
  transition: transform 0.45s var(--ease-out), opacity 0.35s;
}
/* Once the entrance has played, drop the animation: a filled animation
   outranks the .is-hidden transform/opacity below and would leave the header
   visible but unclickable (pointer-events none). landing.js adds .settled on
   animationend. */
.hdr.settled { animation: none; }
.hdr.is-hidden { transform: translateY(-130%); opacity: 0; pointer-events: none; }
.hdr.is-hidden .hdr-row { pointer-events: none; }
.hdr-row {
  pointer-events: auto;
  width: 100%; max-width: 860px;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(14px, 2.4vw, 24px);
}
.logo-btn {
  width: clamp(40px, 4.4vw, 46px); height: clamp(40px, 4.4vw, 46px);
  border-radius: 50%; background: transparent; box-shadow: var(--nav-shadow);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform 0.25s var(--ease-out);
}
.logo-btn img { width: 100%; height: 100%; object-fit: contain; }
.logo-btn:hover { transform: scale(1.04); }
.nav-pill {
  /* Sized for six links (Developers joined the nav); 430px clipped Contact
     under the account chip. min-width:0 lets the pill actually shrink inside
     the flex row instead of overflowing it. */
  flex: 1; min-width: 0; max-width: 560px; height: clamp(44px, 5.2vw, 48px);
  background: #fff; border-radius: 999px; box-shadow: var(--nav-shadow);
  padding: 4px 8px; display: flex; align-items: center; justify-content: space-around;
  overflow: hidden;
}
.nav-pill .nav-link {
  position: relative; padding: 8px clamp(6px, 1.1vw, 12px); border-radius: 999px;
  font-weight: 500; font-size: clamp(12.5px, 1.4vw, 15px); letter-spacing: -0.01em;
  color: var(--nav-text); opacity: 0.5; transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-pill .nav-link:hover { opacity: 0.75; }
.nav-pill .nav-link.active { opacity: 1; }
.nav-pill .nav-link.active::after {
  content: ""; position: absolute; left: 50%; bottom: 3px; width: 3px; height: 3px;
  margin-left: -1.5px; background: #000; border-radius: 1px;
  box-shadow: -5px 0 0 #000, 5px 0 0 #000;
}
.pill-dark {
  height: clamp(44px, 5.2vw, 48px); padding: 0 clamp(16px, 2vw, 22px);
  border-radius: 999px; background: var(--pill-dark); color: var(--sign-in-text);
  font-weight: 500; font-size: clamp(13px, 1.4vw, 14px); box-shadow: var(--nav-shadow);
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  transition: background 0.2s, color 0.2s, transform 0.2s var(--ease-out);
}
.pill-dark:hover { background: var(--pill-dark-hover); color: #fff; transform: translateY(-1px); }
.user-btn {
  width: clamp(44px, 5.2vw, 48px); height: clamp(44px, 5.2vw, 48px); padding: 0;
  border-radius: 50%; background: var(--pill-dark); color: #fff; box-shadow: var(--nav-shadow);
  display: grid; place-items: center; font-weight: 600;
}
.user-menu { position: relative; }
.user-dropdown {
  position: absolute; right: 0; top: calc(100% + 10px); min-width: 200px;
  background: #fff; color: #111; border-radius: 16px; padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.user-dropdown button, .user-dropdown a {
  display: block; width: 100%; text-align: left; padding: 10px 12px; border-radius: 10px;
  font-size: 14px; font-weight: 500; color: #111;
}
.user-dropdown button:hover, .user-dropdown a:hover { background: #f1f1f1; }
.burger {
  display: none; width: 48px; height: 48px; border-radius: 50%; background: var(--pill-dark);
  place-items: center; box-shadow: var(--nav-shadow); flex-shrink: 0;
}
.burger span { display: block; width: 18px; height: 1.5px; background: #fff; margin: 2.5px auto; transition: transform 0.3s, opacity 0.3s, background 0.3s; }
.burger[aria-expanded="true"] { background: #fff; }
.burger[aria-expanded="true"] span { background: #000; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mmenu { position: fixed; inset: 0; z-index: 39; display: none; }
.mmenu.active { display: block; }
.mmenu-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.62); backdrop-filter: blur(6px); animation: overlayIn 0.28s both; }
.mmenu-sheet {
  position: absolute; left: 14px; right: 14px; top: 84px;
  background: #fff; color: #111; border-radius: 28px; padding: 22px 18px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45); animation: menuIn 0.38s var(--ease-out) both;
}
.mmenu-sheet a, .mmenu-sheet button {
  display: block; width: 100%; text-align: center; padding: 14px; border-radius: 14px;
  font-weight: 500; font-size: 16px; color: #2e2e2e; animation: linkIn 0.4s var(--ease-out) both;
}
.mmenu-sheet a:hover { background: #f4f4f4; }
.mmenu-sheet .pill-dark { justify-content: center; margin-top: 8px; height: 50px; }

/* Hero -------------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column;
  padding: clamp(96px, 13vh, 132px) clamp(20px, 4vw, 48px) clamp(20px, 3vh, 32px);
  overflow: hidden;
}
.bg { position: absolute; inset: 0; background: #000; overflow: hidden; z-index: 0; }
.bg canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(30,58,138,0.28), transparent 60%),
              radial-gradient(ellipse 100% 40% at 50% 100%, rgba(0,0,0,0.9), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1; flex: 1;
  width: 100%; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(36px, 6vw, 96px);
  align-items: center;
}
.hero-copy { max-width: 620px; }
.status-pill {
  display: inline-flex; align-items: center; gap: 10px;
  height: 40px; padding: 0 16px 0 12px; border-radius: 999px;
  background: var(--pill-dark); border: 1px solid rgba(255,255,255,0.18);
  color: #c4c2c3; font-size: 13px; font-weight: 500;
  margin-bottom: clamp(26px, 3.6vh, 40px);
}
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 4px rgba(74,222,128,0.18); animation: pulse 2s infinite; }
.headline {
  margin: 0; font-family: var(--font-display); font-weight: 700;
  /* Doto is a wide face: sized so both lines sit on one line each inside the
     592px copy column at 1440 (measured 513/581px at 60px). */
  font-size: clamp(36px, 3.85vw, 56px); line-height: 1.06; letter-spacing: -0.03em; color: #fff;
}
.headline span { display: block; white-space: nowrap; opacity: 0; transform: translateY(14px); animation: headlineFade 0.85s var(--ease-out) forwards; }
.headline span:nth-child(1) { animation-delay: 0.12s; }
.headline span:nth-child(2) { animation-delay: 0.3s; }
.subhead {
  margin: clamp(24px, 3.6vh, 34px) 0 0; max-width: 520px;
  font-size: clamp(14.5px, 1.3vw + 2pt, 16.5px); line-height: 1.6; color: #d0d0d0; opacity: 0.8;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(30px, 4.4vh, 44px); }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  padding: clamp(12px, 1.6vh, 14px) clamp(22px, 3vw, 28px); border-radius: 999px;
  background: #fff; color: #000; font-weight: 600; font-size: clamp(13.5px, 1.5vw, 15px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 0 22px rgba(255,255,255,0.32), 0 0 44px rgba(255,255,255,0.12);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.btn-white:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 0 0 1px rgba(255,255,255,0.25), 0 0 30px rgba(255,255,255,0.45), 0 0 60px rgba(255,255,255,0.18); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: clamp(12px, 1.6vh, 14px) clamp(20px, 3vw, 26px); border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22); color: #fff; font-weight: 500; font-size: clamp(13.5px, 1.5vw, 15px);
  transition: border-color 0.2s, background 0.2s, transform 0.25s var(--ease-out);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); transform: translateY(-1px); }
.btn-ghost:disabled, .btn-white:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Live call card */
.call-card {
  position: relative; width: 100%; max-width: 446px; margin-left: auto;
  background: rgba(10,10,10,0.72); backdrop-filter: blur(18px);
  border: 1px solid var(--hair-strong); border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.call-card::before {
  content: ""; position: absolute; inset: -40% -20% auto; height: 60%;
  background: radial-gradient(ellipse at 50% 0%, rgba(30,58,138,0.55), transparent 65%);
  pointer-events: none;
}
.call-top { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px 0; position: relative; }
.call-tag { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.22em; color: var(--muted); }
.call-tag b { color: var(--live); }
.call-select {
  appearance: none; background: var(--pill-dark); color: #d6d6d6; border: 1px solid var(--hair-strong);
  border-radius: 999px; padding: 6px 30px 6px 12px; font-size: 12.5px; font-weight: 500;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%23bbb' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center;
}
.speakers { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 16px 20px 0; position: relative; }
.speaker {
  border: 1px solid var(--hair); border-radius: 16px; padding: 12px 14px;
  background: rgba(255,255,255,0.02); transition: border-color 0.3s, background 0.3s;
}
.speaker.is-speaking { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.05); }
.speaker-name { font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.speaker-name .avatar { width: 26px; height: 26px; border-radius: 50%; background: #fff; color: #000; display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.speaker.caller .avatar { background: var(--pill-dark); color: #fff; border: 1px solid var(--hair-strong); }
.speaker-state { font-size: 11.5px; color: var(--muted); margin-top: 4px; letter-spacing: 0.02em; }
.wave { display: flex; align-items: center; gap: 3px; height: 22px; margin-top: 10px; }
.wave i { display: block; width: 3px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.35); transition: height 0.15s; }
.wave.is-active i { animation: bar 0.9s ease-in-out infinite; background: #fff; }
.wave.is-active i:nth-child(2n) { animation-delay: 0.15s; }
.wave.is-active i:nth-child(3n) { animation-delay: 0.3s; }
.wave.is-active i:nth-child(4n) { animation-delay: 0.45s; }
.wave.is-active i:nth-child(5n) { animation-delay: 0.6s; }
.transcript {
  height: clamp(160px, 20vh, 210px); overflow-y: auto; padding: 14px 20px 6px;
  display: flex; flex-direction: column; gap: 10px; scroll-behavior: smooth; position: relative;
  mask-image: linear-gradient(to bottom, transparent, #000 14px, #000 calc(100% - 10px), transparent);
}
.transcript::-webkit-scrollbar { width: 0; }
.turn { max-width: 88%; border-radius: 16px; padding: 10px 12px; font-size: 13.5px; line-height: 1.5; animation: turnIn 0.35s var(--ease-out) both; }
.turn-agent { background: #fff; color: #000; border-bottom-left-radius: 6px; }
.turn-caller { background: rgba(255,255,255,0.08); color: #f0f0f0; border-bottom-right-radius: 6px; margin-left: auto; }
.turn-head { font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.55; margin-bottom: 3px; }
.badge { display: inline-flex; align-items: center; height: 24px; padding: 0 10px; border-radius: 999px; font-size: 11.5px; font-weight: 600; border: 1px solid var(--hair-strong); color: #d0d0d0; margin-right: 6px; }
.badge-ok { border-color: rgba(74,222,128,0.4); color: var(--live); }
.call-actions { display: flex; align-items: center; gap: 10px; padding: 12px 20px 20px; position: relative; }
.play-btn {
  flex: 1; height: 48px; border-radius: 999px; background: #fff; color: #000; font-weight: 600; font-size: 14.5px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 0 24px rgba(255,255,255,0.28);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.play-btn:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(255,255,255,0.25), 0 0 34px rgba(255,255,255,0.4); }
.icon-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--hair-strong); display: grid; place-items: center; color: #ddd; }
.icon-btn:hover { background: rgba(255,255,255,0.06); }
.call-note { text-align: center; font-size: 11.5px; color: var(--muted); padding: 0 20px 16px; position: relative; }

/* Live demo controls */
.live-pills { display: flex; align-items: center; gap: 4px; }
.pill-toggle {
  border: 1px solid var(--hair-strong); background: var(--pill-dark); color: #bdbdbd;
  border-radius: 999px; padding: 5px 10px; font-size: 12px; font-weight: 500; line-height: 1;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pill-toggle.is-on { background: #fff; color: #000; border-color: #fff; }
.pill-toggle:disabled { opacity: 0.55; cursor: default; }
.pill-sep { width: 1px; height: 16px; background: var(--hair-strong); margin: 0 4px; }
.countdown { font-family: var(--font-display); color: #fff; letter-spacing: 0.08em; margin-left: 6px; }
.call-card[data-live="live"] .call-tag b { animation: pulse 1.2s ease-in-out infinite; }
.call-card[data-live="live"] .play-btn { background: rgba(255,255,255,0.08); color: #fff; box-shadow: 0 0 0 1px rgba(255,255,255,0.18); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* Stats footer */
.stats {
  position: relative; z-index: 1; width: 100%; max-width: 980px; margin: clamp(18px, 3.4vh, 44px) auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.stat { text-align: center; }
.stat .glyph { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 3vw, 33px); color: #fff; line-height: 1; }
.stat .val { font-size: clamp(18px, 2.2vw, 26px); font-weight: 600; letter-spacing: -0.025em; font-variant-numeric: tabular-nums; margin-top: 8px; }
.stat .lbl { font-size: clamp(11px, 1.2vw, 12.5px); color: var(--muted); margin-top: 4px; }

/* Entrance ------------------------------------------------------------------ */
.anim { opacity: 0; transform: translateY(22px) scale(0.98); filter: blur(6px); animation: reveal 0.85s var(--ease-out) forwards; animation-delay: var(--d, 0s); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* Pipeline strip ---------------------------------------------------------- */
.pipeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--hair); border-radius: var(--radius-lg); background: var(--surface); }
.pipe { padding: clamp(20px, 2.6vw, 30px); border-right: 1px solid var(--hair); position: relative; }
.pipe:last-child { border-right: 0; }
.pipe .glyph { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: #fff; }
.pipe h4 { margin: 12px 0 6px; font-weight: 500; font-size: 17px; letter-spacing: -0.01em; }
.pipe p { margin: 0; color: var(--text-2); font-size: 13.5px; line-height: 1.55; }
.pipe .arrow { position: absolute; right: -10px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; border-radius: 50%; background: var(--surface); border: 1px solid var(--hair-strong); display: grid; place-items: center; z-index: 2; font-size: 11px; line-height: 1; color: #ddd; padding-bottom: 1px; }
.pipe:last-child .arrow { display: none; }

/* Benefits cards ------------------------------------------------------------ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { position: relative; height: 460px; border-radius: var(--radius); background: var(--surface); overflow: hidden; border: 1px solid var(--hair); }
.card.pad { padding: 32px; }
.blob { position: absolute; border-radius: 50%; background: var(--blob); filter: blur(64px); opacity: 0.4; pointer-events: none; }
.blob-l { top: 50%; left: -420px; width: 460px; height: 460px; transform: translateY(-50%); }
.blob-r { top: -112px; right: -112px; width: 224px; height: 224px; }
.card-in { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }
.card h3 { margin: 0; font-weight: 300; font-size: clamp(20px, 1.8vw, 24px); line-height: 1.2; letter-spacing: -0.02em; }
.card p { font-size: 14px; line-height: 1.6; color: var(--text-2); font-weight: 300; max-width: 300px; }
.card .mid { margin-top: 64px; }
.card .bottom { margin-top: auto; }
.card-media { position: relative; width: 100%; height: 75%; overflow: hidden; }
.card-media canvas, .card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 128px; background: linear-gradient(to bottom, transparent, var(--surface)); pointer-events: none; }
.card-caption { flex: 1; display: flex; align-items: center; padding: 24px 32px; }

/* Use cases -------------------------------------------------------------- */
.uses { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 16px; align-items: stretch; }
.photo-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 420px; border: 1px solid var(--hair); }
.photo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) contrast(1.05); }
.photo-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.25) 55%, transparent 100%); }
.photo-card .cap { position: absolute; left: 28px; right: 28px; bottom: 26px; z-index: 1; }
.photo-card .cap h3 { margin: 6px 0 8px; font-weight: 300; font-size: 26px; letter-spacing: -0.02em; }
.photo-card .cap p { margin: 0; color: var(--text-2); font-size: 14px; max-width: 420px; }
.use-list { display: grid; grid-template-rows: repeat(4, 1fr); gap: 12px; }
.use { border: 1px solid var(--hair); border-radius: var(--radius); background: var(--surface); padding: 20px 22px; display: flex; align-items: center; gap: 16px; transition: border-color 0.25s, transform 0.25s var(--ease-out); }
.use:hover { border-color: var(--hair-strong); transform: translateX(4px); }
.use .glyph { font-family: var(--font-display); font-weight: 700; font-size: 24px; width: 34px; text-align: center; color: #fff; }
.use h4 { margin: 0; font-weight: 500; font-size: 16px; }
.use p { margin: 2px 0 0; color: var(--muted); font-size: 13px; }

/* Pricing ------------------------------------------------------------------ */
.pricing-toggle-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin: -24px 0 40px; color: var(--muted); font-size: 14px; }
.switch { position: relative; width: 56px; height: 28px; border-radius: 999px; background: var(--pill-dark); border: 1px solid var(--hair-strong); }
.switch #toggle-dot { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform 0.25s var(--ease-out); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pricing-card { position: relative; border: 1px solid var(--hair); border-radius: var(--radius); background: var(--surface); padding: 30px 28px; overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.25s, transform 0.3s var(--ease-out); }
.pricing-card:hover { border-color: var(--hair-strong); transform: translateY(-4px); }
.pricing-card.featured { border-color: rgba(255,255,255,0.28); }
.pricing-card.featured::before { content: ""; position: absolute; top: -140px; right: -140px; width: 300px; height: 300px; border-radius: 50%; background: var(--blob); filter: blur(70px); opacity: 0.45; }
.pricing-card > * { position: relative; }
.pricing-name { font-weight: 500; font-size: 15px; color: var(--muted); }
.pricing-price { font-size: 38px; font-weight: 600; letter-spacing: -0.03em; margin-top: 10px; }
.pricing-cycle { color: var(--muted); font-size: 14px; margin-left: 4px; }
.pricing-tagline { margin: 12px 0 22px; color: var(--text-2); font-size: 14px; line-height: 1.55; min-height: 44px; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.pricing-card li { font-size: 14px; color: #ddd; padding-left: 20px; position: relative; }
.pricing-card li::before { content: "·"; position: absolute; left: 4px; top: -2px; font-size: 22px; color: var(--muted); }
.pricing-card .cta { margin-top: auto; }
.pricing-foot { text-align: center; color: var(--muted); font-size: 13.5px; margin-top: 28px; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* Contact band ---------------------------------------------------------- */
.contact-band { position: relative; border-radius: var(--radius-lg); border: 1px solid var(--hair); background: var(--surface); padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 64px); text-align: center; overflow: hidden; }
.contact-band::before { content: ""; position: absolute; left: 50%; top: -220px; width: 560px; height: 560px; transform: translateX(-50%); border-radius: 50%; background: var(--blob); filter: blur(90px); opacity: 0.35; }
.contact-band > * { position: relative; }
.contact-band h2 { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 5vw, 60px); letter-spacing: -0.02em; line-height: 1.05; }
.contact-band p { color: var(--text-2); max-width: 520px; margin: 16px auto 28px; font-size: 16px; }

/* Footer -------------------------------------------------------------------- */
.foot { border-top: 1px solid var(--hair); padding: 40px 0 32px; }
.foot-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot .brand { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.foot .brand img { width: 28px; height: 28px; }
.foot nav { display: flex; gap: 22px; flex-wrap: wrap; }
.foot nav a { position: relative; z-index: 1; display: inline-block; padding: 4px 0; cursor: pointer; color: var(--muted); font-size: 14px; transition: color 0.2s; }
.foot nav a:hover { color: #fff; }
.foot .fine { color: #5c5c5c; font-size: 12.5px; margin-top: 18px; }

/* Modals -------------------------------------------------------------------- */
/* overflow-y + margin:auto on the card = safe centering: a card taller than
   the viewport scrolls inside the overlay instead of pushing its own header
   ("Welcome" + logo) above the top edge where nothing can reach it. */
.modal { position: fixed; inset: 0; z-index: 60; display: flex; align-items: center; justify-content: center; padding: 24px 16px; background: rgba(0,0,0,0.72); backdrop-filter: blur(8px); animation: overlayIn 0.25s both; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.modal-card { position: relative; width: 100%; max-width: 900px; margin: auto; border-radius: 28px; overflow: hidden; background: var(--surface); border: 1px solid var(--hair-strong); box-shadow: 0 40px 120px rgba(0,0,0,0.7); animation: menuIn 0.4s var(--ease-out) both; display: grid; grid-template-columns: 0.9fr 1.1fr; }
.modal-card.narrow { max-width: 560px; grid-template-columns: 1fr; }
.modal-side { position: relative; padding: 36px; background: #050505; border-right: 1px solid var(--hair); overflow: hidden; display: flex; flex-direction: column; }
.modal-side::before { content: ""; position: absolute; left: -160px; bottom: -160px; width: 420px; height: 420px; border-radius: 50%; background: var(--blob); filter: blur(80px); opacity: 0.5; }
.modal-side > * { position: relative; }
.modal-side .brand { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.modal-side .brand img { width: 32px; height: 32px; }
.modal-side h3 { margin: auto 0 0; font-family: var(--font-display); font-weight: 700; font-size: 34px; line-height: 1.05; letter-spacing: -0.02em; }
.modal-side p { color: var(--text-2); font-size: 14px; margin: 12px 0 0; max-width: 300px; }
.modal-side ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.modal-side li { font-size: 13.5px; color: #ddd; display: flex; gap: 10px; align-items: center; }
.modal-side li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff; flex-shrink: 0; }
.modal-main { padding: 32px 36px 30px; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: #bbb; border: 1px solid var(--hair); z-index: 2; }
.modal-close:hover { background: rgba(255,255,255,0.06); color: #fff; }
.modal-title { margin: 0; font-weight: 500; font-size: 24px; letter-spacing: -0.02em; }
.modal-sub { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.tabs { display: inline-flex; padding: 4px; border-radius: 999px; background: var(--pill-dark); margin: 20px 0 22px; }
.tabs button { padding: 8px 18px; border-radius: 999px; font-size: 13.5px; font-weight: 500; color: #bbb; transition: background 0.2s, color 0.2s; }
.tabs button.active { background: #fff; color: #000; }
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 12.5px; color: var(--muted); font-weight: 500; }
.field input, .field textarea, .field select {
  width: 100%; background: #0f0f10; border: 1px solid var(--hair-strong); color: #fff; border-radius: 12px;
  padding: 12px 14px; font-size: 15px; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus { border-color: rgba(255,255,255,0.5); box-shadow: 0 0 0 4px rgba(255,255,255,0.06); }
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-primary { width: 100%; height: 48px; border-radius: 999px; background: #fff; color: #000; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: transform 0.25s var(--ease-out), box-shadow 0.25s; box-shadow: 0 0 22px rgba(255,255,255,0.18); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 30px rgba(255,255,255,0.32); }
.btn-outline { width: 100%; height: 48px; border-radius: 999px; border: 1px solid var(--hair-strong); color: #fff; font-weight: 500; font-size: 14.5px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: background 0.2s, border-color 0.2s; }
.btn-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.4); }
.divider { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 12px; margin: 16px 0; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--hair); }
.fine-print { color: var(--muted); font-size: 12px; margin-top: 14px; line-height: 1.5; }
.fine-print a { color: #ddd; text-decoration: underline; text-underline-offset: 2px; }

/* Wallet modal specifics */
.balance-hero { border-radius: 18px; padding: 22px 22px 20px; background: linear-gradient(135deg, #111 0%, #0a0a0a 100%); border: 1px solid var(--hair-strong); position: relative; overflow: hidden; }
.balance-hero::after { content: ""; position: absolute; right: -80px; top: -80px; width: 220px; height: 220px; border-radius: 50%; background: var(--blob); filter: blur(60px); opacity: 0.55; }
.balance-hero > * { position: relative; }
.balance-hero .lbl { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.balance-hero .amt { font-size: 40px; font-weight: 600; letter-spacing: -0.03em; margin-top: 4px; font-variant-numeric: tabular-nums; }
.balance-hero .note { color: var(--muted); font-size: 12.5px; margin-top: 6px; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0 14px; }
.wallet-plan-btn, .panel-flat { border: 1px solid var(--hair-strong); border-radius: 14px; background: #0f0f10; color: #fff; text-align: left; transition: border-color 0.2s, transform 0.2s var(--ease-out); }
.wallet-plan-btn:hover { border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }
.custom-row { display: flex; gap: 10px; }
.custom-row input { flex: 1; background: #0f0f10; border: 1px solid var(--hair-strong); color: #fff; border-radius: 12px; padding: 12px 14px; font-size: 15px; outline: none; }
.custom-row .btn-primary { width: auto; padding: 0 22px; }
.wallet-meta { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 12.5px; margin-top: 12px; }
.link-btn { color: #ddd; font-size: 12.5px; text-decoration: underline; text-underline-offset: 2px; }

/* Blog ---------------------------------------------------------------------- */
.page-hero { padding: clamp(130px, 18vh, 170px) 0 clamp(36px, 5vw, 60px); text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; left: 50%; top: -260px; width: 700px; height: 700px; transform: translateX(-50%); border-radius: 50%; background: var(--blob); filter: blur(120px); opacity: 0.35; pointer-events: none; }
.page-hero > * { position: relative; }
.page-hero h1 { margin: 12px 0 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(36px, 6vw, 72px); letter-spacing: -0.02em; line-height: 1.04; }
.page-hero p { color: var(--text-2); max-width: 560px; margin: 16px auto 0; font-size: 16px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-grid .card { height: auto; min-height: 320px; padding: 28px; }
.blog-grid .card:first-child::before { content: ""; position: absolute; top: -120px; right: -120px; width: 280px; height: 280px; border-radius: 50%; background: var(--blob); filter: blur(70px); opacity: 0.45; }
.blog-grid .card > * { position: relative; }
.card-title { margin: 8px 0 10px; font-weight: 400; font-size: 21px; letter-spacing: -0.02em; line-height: 1.25; }
.card-body { color: var(--text-2); font-size: 14px; line-height: 1.6; margin: 0; }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; height: 42px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--hair-strong); color: #fff; font-size: 14px; font-weight: 500; transition: background 0.2s, border-color 0.2s; }
.btn-secondary:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }
.card-interactive { transition: transform 0.3s var(--ease-out), border-color 0.25s; }
.card-interactive:hover { transform: translateY(-4px); border-color: var(--hair-strong); }
.article { max-width: 760px; margin: 0 auto; }
.article h1 { font-weight: 400; font-size: clamp(30px, 4.4vw, 46px); letter-spacing: -0.03em; line-height: 1.12; margin: 0 0 12px; }
.article .meta { color: var(--muted); font-size: 14px; margin-bottom: 30px; }
.prose { color: #e6e6e6; font-size: 17px; line-height: 1.75; }
.prose h2 { font-weight: 400; font-size: 26px; letter-spacing: -0.02em; margin: 40px 0 12px; }
.prose h3 { font-weight: 500; font-size: 20px; margin: 30px 0 10px; }
.prose p { margin: 0 0 18px; }
.prose ul { padding-left: 20px; margin: 0 0 18px; }
.prose li { margin-bottom: 6px; }
.prose code { font-family: ui-monospace, monospace; font-size: 0.9em; background: rgba(255,255,255,0.08); padding: 2px 6px; border-radius: 6px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.editor { border: 1px solid var(--hair); border-radius: var(--radius); background: var(--surface); padding: 24px; margin-bottom: 24px; }


/* Pixel cursor ---------------------------------------------------------------
   A monochrome pixel arrow as a CSS cursor: rendered natively (no lag, cannot
   intercept clicks), only for fine pointers. Interactive elements get a
   Shravan-green tip; text fields, selection and resize keep native cursors. */
/* Built for production (index) ------------------------------------------- */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust { border: 1px solid var(--hair); border-radius: var(--radius); background: var(--surface); padding: 22px 22px 20px; display: flex; flex-direction: column; min-height: 220px; }
.trust .glyph { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: #fff; }
.trust h4 { margin: 12px 0 6px; font-weight: 500; font-size: 16.5px; letter-spacing: -0.01em; }
.trust p { margin: 0; color: var(--text-2); font-size: 13.5px; line-height: 1.55; }
.trust a { margin-top: auto; padding-top: 14px; font-size: 13px; color: #d4d4d4; }
.trust a:hover { color: #fff; }
@media (max-width: 1024px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .trust-grid { grid-template-columns: 1fr; } .trust { min-height: 0; } }

@media (pointer: fine) and (hover: hover) {
  html, body { cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 11 11' shape-rendering='crispEdges'><path d='M0 0h1v1h-1zM0 1h2v1h-2zM0 2h3v1h-3zM0 3h4v1h-4zM0 4h5v1h-5zM0 5h6v1h-6zM0 6h7v1h-7zM0 7h4v1h-4zM0 8h1v1h-1zM2 8h2v1h-2zM3 9h2v1h-2z' fill='%23000'/><path d='M1 1h1v1h-1zM1 2h2v1h-2zM1 3h3v1h-3zM1 4h4v1h-4zM1 5h5v1h-5zM1 6h2v1h-2zM4 6h1v1h-1zM1 7h1v1h-1zM3 7h1v1h-1zM4 8h1v1h-1z' fill='%23f5f5f5'/></svg>") 1 1, auto; }
  a, button, [role="button"], select, label[for], summary, .switch, .nav-link, .pill-dark,
  .btn-white, .btn-ghost, .play-btn, .icon-btn, .wallet-plan-btn, .use, .pricing-card .cta {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 11 11' shape-rendering='crispEdges'><path d='M0 0h1v1h-1zM0 1h2v1h-2zM0 2h3v1h-3zM0 3h4v1h-4zM0 4h5v1h-5zM0 5h6v1h-6zM0 6h7v1h-7zM0 7h4v1h-4zM0 8h1v1h-1zM2 8h2v1h-2zM3 9h2v1h-2z' fill='%23000'/><path d='M1 1h1v1h-1zM1 2h2v1h-2zM1 3h3v1h-3zM1 4h4v1h-4zM1 5h5v1h-5zM1 6h2v1h-2zM4 6h1v1h-1zM1 7h1v1h-1zM3 7h1v1h-1zM4 8h1v1h-1z' fill='%23f5f5f5'/><path d='M1 1h1v1h-1z' fill='%234ade80'/></svg>") 1 1, pointer;
  }
  input, textarea, [contenteditable="true"] { cursor: text; }
  input[type="checkbox"], input[type="radio"], input[type="range"], input[type="file"] { cursor: pointer; }
  button:disabled, [aria-disabled="true"] { cursor: not-allowed; }
  .transcript { cursor: default; }
}
/* Click feedback: a single pixel square that expands and fades. Injected by
   landing.js on pointerdown (fine pointers only, not under reduced motion). */
.click-pixel {
  position: fixed; z-index: 9999; width: 8px; height: 8px; margin: -4px 0 0 -4px;
  border: 1.5px solid rgba(255,255,255,0.9); pointer-events: none;
  animation: clickPixel 0.34s var(--ease-out) forwards;
}
.click-pixel.accent { border-color: var(--live); }
@keyframes clickPixel { from { transform: scale(0.6); opacity: 0.9; } to { transform: scale(2.6); opacity: 0; } }

/* Keyframes ------------------------------------------------------------ */
@keyframes slideDown { from { opacity: 0; transform: translateY(-18px); } to { opacity: 1; transform: none; } }
@keyframes headlineFade { to { opacity: 1; transform: none; } }
@keyframes reveal { to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes menuIn { from { opacity: 0; transform: translateY(-10px) scale(0.98); } to { opacity: 1; transform: none; } }
@keyframes linkIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(74,222,128,0.18); } 50% { box-shadow: 0 0 0 7px rgba(74,222,128,0.06); } }
@keyframes bar { 0%, 100% { height: 4px; } 50% { height: 20px; } }
@keyframes turnIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* Responsive ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { max-width: 640px; }
  .call-card { margin-left: 0; max-width: 560px; }
  .cards, .price-grid, .blog-grid { grid-template-columns: 1fr; }
  .card { height: auto; min-height: 380px; }
  .uses { grid-template-columns: 1fr; }
  .pipeline { grid-template-columns: 1fr 1fr; }
  .pipe:nth-child(2) { border-right: 0; }
  .pipe:nth-child(2) .arrow { display: none; }
  .pipe:nth-child(1), .pipe:nth-child(2) { border-bottom: 1px solid var(--hair); }
  .modal-card { grid-template-columns: 1fr; }
  .modal-side { display: none; }
}
@media (max-width: 1024px) {
  .headline { font-size: clamp(38px, 6.4vw, 64px); }
}
@media (max-width: 720px) {
  .headline span { white-space: normal; }
  .nav-pill, .hdr .desk-only { display: none; }
  .hdr-row { justify-content: space-between; }
  .burger { display: grid; }
  .logo-btn { width: 48px; height: 48px; }
  .hero { padding-top: 96px; }
  .headline { letter-spacing: -0.02em; font-size: clamp(34px, 11vw, 48px); }
  .stats { grid-template-columns: 1fr 1fr; gap: 20px 12px; }
  .pipeline { grid-template-columns: 1fr; }
  .pipe { border-right: 0 !important; border-bottom: 1px solid var(--hair); }
  .pipe:last-child { border-bottom: 0; }
  .pipe .arrow { display: none; }
  .plan-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .modal-main { padding: 26px 22px 24px; }
  .speakers { grid-template-columns: 1fr 1fr; }
  .call-select { max-width: 150px; }
}
@media (max-height: 700px) and (min-width: 1025px) {
  .hero { padding-top: 92px; }
  .transcript { height: 170px; }
  .stats { margin-top: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .anim, .reveal, .headline span { opacity: 1 !important; transform: none !important; filter: none !important; }
}
