/* GALM.AI — base styles */
:root {
  --bg: #0A0A0B;
  --bg-2: #131316;
  --fg: #F2EFE6;
  --fg-2: rgba(242, 239, 230, 0.62);
  --fg-3: rgba(242, 239, 230, 0.38);
  --line: rgba(242, 239, 230, 0.10);
  --line-2: rgba(242, 239, 230, 0.18);
  --accent: #4FB6D8;       /* electric cyan */
  --accent-ink: #0A0A0B;   /* text on accent */
  --display: "Archivo", system-ui, sans-serif;
  --body: "Geist", "Inter", system-ui, sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
  --r-1: 6px;
  --r-2: 14px;
  --r-3: 22px;
  --hero-scroll-height: 420vh; /* controls scrub distance before curtain rises */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--fg); }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.intro-lock { overflow: hidden; }

::selection { background: var(--accent); color: var(--accent-ink); }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* Grain overlay */
.grain {
  pointer-events: none;
  position: fixed; inset: 0;
  z-index: 1;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Cursor */
.cursor {
  position: fixed;
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--accent);
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width .25s cubic-bezier(.2,.8,.2,1), height .25s cubic-bezier(.2,.8,.2,1), opacity .2s;
}
.cursor.lg { width: 56px; height: 56px; }
@media (hover: none) { .cursor { display: none; } }

/* Layout */
.shell { position: relative; z-index: 2; }
.container {
  width: 100%;
  padding: 0 28px;
}
@media (min-width: 900px) { .container { padding: 0 48px; } }

/* Site intro */
.site-intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  overflow: hidden;
  background: transparent;
  pointer-events: auto;
}
.site-intro.is-leaving {
  pointer-events: none;
}
.intro-half {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: #0A0A0B;
  overflow: hidden;
  transition: transform 1s cubic-bezier(.22,.61,.36,1), opacity .6s ease;
  will-change: transform;
}
.intro-half-top {
  top: 0;
}
.intro-half-bottom {
  bottom: 0;
}
.site-intro.is-leaving .intro-half-top {
  transform: translateY(-100%);
}
.site-intro.is-leaving .intro-half-bottom {
  transform: translateY(100%);
}
.intro-logo {
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 3;
  transform: translate(-50%, -50%);
  font-size: clamp(34px, 5.9vw, 88px);
  line-height: .85;
  white-space: nowrap;
  animation: introLogo .75s cubic-bezier(.2,.8,.2,1) both;
  will-change: opacity;
}
.intro-logo-bottom {
  top: 0;
}
.intro-logo-top {
  clip-path: inset(0 0 50% 0);
}
.intro-logo-bottom {
  clip-path: inset(50% 0 0 0);
}
.intro-wordmark {
  --intro-word-shift: clamp(64px, 8vw, 118px);
  display: inline-flex;
  align-items: center;
  gap: 2px;
  overflow: visible;
  padding-left: .10em;
  margin-left: -.10em;
  transform: translateX(var(--intro-word-shift));
  animation: introWordmark 1.05s .28s cubic-bezier(.22,.61,.36,1) forwards;
}
.intro-mark-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: visible;
}
.g-img--intro {
  display: block;
  height: .70em;
  margin-right: -.01em;
  transform: translateY(-3px) scale(1.04);
  transform-origin: center center;
}
.intro-word-reveal {
  display: inline-flex;
  align-items: baseline;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.055em;
  color: var(--fg);
  animation: introWordReveal 1.05s .28s cubic-bezier(.22,.61,.36,1) forwards;
}
.intro-alm,
.intro-ai {
  display: inline-block;
}
.intro-ai {
  color: var(--accent);
}
@keyframes introLogo {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 10px)) scale(.96); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes introWordmark {
  from { transform: translateX(var(--intro-word-shift)); }
  to { transform: translateX(0); }
}
@keyframes introWordReveal {
  from { max-width: 0; opacity: 0; clip-path: inset(0 100% 0 0); }
  20% { opacity: 1; }
  to { max-width: 5.4em; opacity: 1; clip-path: inset(0 0 0 0); }
}
@media (prefers-reduced-motion: reduce) {
  .site-intro {
    background: #0A0A0B;
    transition: opacity .35s ease;
  }
  .site-intro.is-leaving {
    opacity: 0;
  }
  .intro-half {
    transition: none;
  }
  .site-intro.is-leaving .intro-half {
    transform: none;
  }
  .intro-logo {
    animation: none;
    transition: opacity .35s ease;
  }
  .intro-wordmark {
    transform: translateX(0);
    animation: none;
  }
  .intro-word-reveal {
    max-width: 5.4em;
    opacity: 1;
    clip-path: none;
    animation: none;
  }
}

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .02em;
  mix-blend-mode: difference;
  color: #fff;
}
@media (min-width: 900px) { .nav { padding: 22px 48px; } }
.nav-r { display: flex; align-items: center; gap: 22px; }
.nav-r a { opacity: .85; }
.nav-r a:hover { opacity: 1; }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--accent);
  position: relative;
}
.logo-mark::after {
  content: ""; position: absolute; inset: 3px;
  border-radius: 999px;
  background: var(--bg);
}
.logo-mark::before {
  content: ""; position: absolute;
  width: 6px; height: 6px;
  background: var(--accent);
  top: -2px; right: -3px;
  border-radius: 999px;
}
.logo-word {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: center;
  gap: 1px;
  line-height: 1;
}

/* Custom G image — replaces the "G" in GALM */
.g-img {
  display: inline-block;
  width: auto;
  user-select: none;
  -webkit-user-drag: none;
  flex-shrink: 0;
}
.g-img--nav {
  height: 0.85em;
  margin-right: 0;
  vertical-align: -0.05em;
}
.g-img--foot {
  height: 0.74em;
  margin-right: -0.02em;
  vertical-align: -1px;
}

/* Lang toggle */
.lang {
  display: inline-flex;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 2px;
  font-family: var(--mono);
  font-size: 11px;
}
.lang button {
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--fg-2);
  letter-spacing: .04em;
}
.lang button.on { background: var(--fg); color: var(--bg); }

/* Hero */
.hero {
  position: relative;
  min-height: var(--hero-scroll-height);
  padding: 0;
}

/* Curtain: wraps Ticker + all page content, slides naturally over the sticky video.
   No explicit z-index needed — document order puts this above hero-video-wrap (z-index:0),
   while keeping grain (z-index:1) visible over the curtain content. */
.curtain-stack {
  position: relative;
  margin-top: -100vh;
  background: linear-gradient(
    180deg,
    rgba(10,10,11,0.18) 0%,
    rgba(10,10,11,0.55) 16vh,
    var(--bg) 48vh
  );
  overflow: hidden;
}
.curtain-stack > * {
  position: relative;
  z-index: 1;
}
.hero-video-wrap {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}
.hero-video,
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
  contain: paint;
  transform: translateZ(0);
  filter: saturate(1.05) contrast(1.05);
}
.hero-loading {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.5);
  background: var(--bg);
  z-index: 1;
}
.hero-video-vignette {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, transparent 25%, transparent 60%, rgba(0,0,0,.85) 100%);
}
.hero-inner {
  position: absolute;
  inset: 0;
  padding: 120px 28px 80px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  color: #fff;
  pointer-events: none;
}
.hero-inner > * { pointer-events: auto; }
@media (min-width: 900px) {
  .hero-inner { padding: 140px 48px 60px; }
}
.hero-scrollhint {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.6);
  animation: hintbob 2.4s ease-in-out infinite;
}
@keyframes hintbob {
  0%, 100% { transform: translate(-50%, 0); opacity: .5; }
  50% { transform: translate(-50%, 6px); opacity: 1; }
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--fg-3);
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--fg-3);
}

.hero-headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(52px, 11vw, 184px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-top: 28px;
  text-wrap: balance;
}
.hero-headline .ital { font-style: italic; font-weight: 500; color: var(--fg-2); }
.hero-headline .accent { color: var(--accent); }
.hero-headline .word {
  display: inline-block; overflow: hidden; vertical-align: top;
}
.hero-headline .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise .9s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes rise { to { transform: translateY(0); } }

.hero-bottom {
  display: grid;
  gap: 32px;
  margin-top: 80px;
}
@media (min-width: 900px) {
  .hero-bottom {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    margin-top: 120px;
  }
}
.hero-sub {
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.45;
  max-width: 36ch;
  color: var(--fg-2);
  text-wrap: pretty;
}
.hero-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--fg-3);
  display: flex; flex-direction: column; gap: 6px;
}
@media (min-width: 900px) { .hero-meta { align-items: flex-end; text-align: right; padding-right: 110px; } }
.hero-meta .row { display: flex; gap: 14px; }

/* Ticker */
.ticker {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 14px 0;
  background: rgba(10,10,11,.34);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.ticker-inner {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: tick 40s linear infinite;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--fg);
}
.ticker-inner span { display: inline-flex; align-items: center; gap: 48px; }
.ticker-inner .dot {
  width: 10px; height: 10px; border-radius: 999px; background: var(--accent);
  display: inline-block;
}
.ticker-inner .ital { font-style: italic; color: var(--fg-2); font-weight: 400; }
.ticker-between {
  margin: 18px 0;
}
@keyframes tick {
  to { transform: translateX(-50%); }
}

/* Section heads */
.section {
  padding: 100px 28px;
  position: relative;
  overflow: hidden;
}
.section::before {
  content: "GALM.AI";
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(96px, 18vw, 280px);
  line-height: 1;
  color: var(--fg);
  opacity: 0.006;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}
.curtain-stack > .section:first-of-type {
  background: linear-gradient(
    180deg,
    rgba(10,10,11,0.58) 0,
    var(--bg) 240px
  );
}
.curtain-stack > .section:not(:first-of-type) {
  background: var(--bg);
}
.section > * {
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) { .section { padding: 140px 48px; } }
.section-tag {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--fg-3);
  display: flex; gap: 14px;
  margin-bottom: 56px;
}

/* Products */
.products-head {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 56px;
}
.products-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.products-title .ital { font-style: italic; font-weight: 500; color: var(--fg-2); }

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 900px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}

.product-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: 28px;
  min-height: 360px;
  overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: border-color .3s, transform .4s cubic-bezier(.2,.8,.2,1);
}
@media (min-width: 900px) {
  .product-card { padding: 36px; min-height: 460px; }
}
.product-card:hover { border-color: var(--line-2); }

.product-card .anim {
  position: absolute; inset: 0; pointer-events: none;
  z-index: 0;
}
.product-card .anim svg {
  z-index: 1;
}
.copilot-world {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(42vw, 520px);
  max-width: 62%;
  transform: translate(-50%, -50%);
  opacity: 0.28;
  filter: saturate(0.9) contrast(1.05) brightness(0.85);
  pointer-events: none;
  z-index: 0;
}
.product-card .body { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }

.product-card .top {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--fg-3);
}
.product-card .badge {
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 3px 10px;
  color: var(--fg-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.product-card .badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.product-card .name {
  margin-top: auto;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.035em;
  line-height: 0.96;
}
.product-card .name .ai { color: var(--accent); }

.product-card .desc {
  margin-top: 14px;
  color: var(--fg-2);
  max-width: 36ch;
  font-size: 14px;
  line-height: 1.5;
}

.product-card .arrow {
  position: absolute;
  right: 28px; bottom: 28px;
  width: 48px; height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, transform .3s;
}
.product-card:hover .arrow { background: var(--accent); }
.product-card:hover .arrow svg { stroke: var(--accent-ink); transform: rotate(-45deg); }
.product-card .arrow svg {
  width: 18px; height: 18px;
  stroke: var(--fg);
  transition: transform .3s;
}

/* Card animations */
.anim-import { background:
  radial-gradient(circle at 80% 20%, rgba(79,182,216,.16), transparent 50%);
}
.anim-track { background:
  radial-gradient(circle at 20% 80%, rgba(79,182,216,.14), transparent 55%);
}

.scanline {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.55;
  filter: blur(.5px);
  animation: scan 3.5s ease-in-out infinite;
}
@keyframes scan {
  0% { top: 8%; opacity: 0; }
  10%, 90% { opacity: .6; }
  100% { top: 92%; opacity: 0; }
}

.doc-mock {
  position: absolute;
  right: -10px; top: 28px;
  width: 60%; max-width: 280px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  padding: 14px;
  background: rgba(255,255,255,.02);
  font-family: var(--mono);
  font-size: 9px;
  color: var(--fg-3);
  transform: rotate(3deg);
  opacity: .9;
}
.doc-mock .l { height: 6px; background: var(--line-2); border-radius: 2px; margin-bottom: 6px; }
.doc-mock .l.short { width: 40%; }
.doc-mock .l.med { width: 70%; }
.doc-mock .l.lime { background: var(--accent); width: 30%; }

.globe {
  position: absolute;
  right: -90px; top: 50%;
  transform: translateY(-50%);
  width: 360px; height: 360px;
  opacity: .85;
}
@media (max-width: 900px) {
  .globe { width: 240px; height: 240px; right: -60px; top: 28%; }
}

.globe svg { width: 100%; height: 100%; }
.globe .grid-circle { stroke: var(--line-2); fill: none; }
.globe .arc {
  stroke: var(--accent); fill: none; stroke-width: 1.4;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: trace 4s ease-in-out infinite;
}
.globe .arc.delay { animation-delay: 1.5s; }
@keyframes trace {
  0%, 100% { stroke-dashoffset: 240; }
  50% { stroke-dashoffset: 0; }
}
.globe .pin {
  fill: var(--accent);
  animation: blink 1.6s ease-in-out infinite;
}
.globe .pin.b { animation-delay: .8s; }
@keyframes blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Manifesto */
.manifesto {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 22ch;
  text-wrap: balance;
}
.manifesto .ital { font-style: italic; color: var(--fg-2); }
.manifesto .accent { color: var(--accent); }

.manifesto-grid {
  display: grid; gap: 40px;
}
@media (min-width: 900px) {
  .manifesto-grid { grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: end; }
}
.manifesto-side {
  display: flex; flex-direction: column; gap: 32px;
}
.principle {
  display: flex; gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.principle-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: .1em;
  flex-shrink: 0;
  width: 32px;
}
.principle-body { font-size: 15px; line-height: 1.5; color: var(--fg-2); }
.principle-body strong { color: var(--fg); font-weight: 500; }

/* Footer */
.foot {
  padding: 80px 28px 40px;
  border-top: 1px solid var(--line);
  position: relative;
}
@media (min-width: 900px) { .foot { padding: 120px 48px 40px; } }

.foot-mark {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(96px, 22vw, 360px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--fg);
  white-space: nowrap;
}
.foot-mark .accent { color: var(--accent); }

.foot-row {
  display: flex; flex-direction: column; gap: 20px;
  margin-top: 60px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-2);
}
@media (min-width: 900px) {
  .foot-row { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}
.foot-row .col { display: flex; flex-direction: column; gap: 8px; }
.foot-row .col span:first-child { color: var(--fg-3); letter-spacing: .1em; text-transform: uppercase; font-size: 10px; }

/* Modal */
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(8,8,10,.7);
  backdrop-filter: blur(20px);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fade .3s ease;
}
@keyframes fade { from { opacity: 0; } }

.modal {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-3);
  padding: 36px;
  max-width: 520px; width: 100%;
  position: relative;
  animation: pop .4s cubic-bezier(.2,.8,.2,1);
}
@keyframes pop {
  from { transform: translateY(20px) scale(.96); opacity: 0; }
}
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-2);
}
.modal-close:hover { color: var(--fg); border-color: var(--fg-2); }

.modal h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.modal h3 .ai { color: var(--accent); }
.modal .label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.modal .label::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--accent);
}
.modal p { color: var(--fg-2); margin-bottom: 14px; line-height: 1.55; }
.modal .feats {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.modal .feat {
  display: flex; gap: 12px;
  font-size: 14px; color: var(--fg-2);
}
.modal .feat span:first-child {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 11px;
  width: 22px; flex-shrink: 0;
  padding-top: 3px;
}

/* AI Chat orb */
.orb {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  z-index: 40;
  box-shadow: 0 8px 32px rgba(79,182,216,.28);
  transition: transform .3s, box-shadow .3s;
}
.orb:hover { transform: scale(1.05); box-shadow: 0 8px 40px rgba(79,182,216,.42); }
.orb::before {
  content: ""; position: absolute; inset: -4px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  opacity: .4;
  animation: orb-pulse 2s ease-out infinite;
}
@keyframes orb-pulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.4); opacity: 0; }
}
.orb svg { width: 22px; height: 22px; stroke: var(--accent-ink); }
.orb-tip {
  position: absolute;
  right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 11px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
  color: var(--fg-2);
}
.orb:hover .orb-tip { opacity: 1; }

/* Reveal-on-scroll */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Tweaks panel scaling fix on dark bg */
.twk-panel { color: #29261b !important; }

/* Disable cursor follower on touch */
@media (hover: none) {
  .product-card:hover .arrow { background: transparent; }
  .product-card:hover .arrow svg { stroke: var(--fg); transform: none; }
}
