/* ============================================================
   North River Consulting
   Professional advisory + Apple-style scroll motion
   ============================================================ */

:root {
  --bg: #0b0c0e;
  --bg-soft: #111318;
  --bg-card: #16181d;
  --text: #f2efe8;
  --text-secondary: #b0aaa0;
  --text-tertiary: #7a756c;
  --gold: #c9a45c;
  --gold-bright: #dcc07a;
  --gold-soft: rgba(201, 164, 92, 0.14);
  --blue: #5b9fd4;
  --blue-glow: rgba(91, 159, 212, 0.35);
  --cyan: #6ee7ff;
  --line: rgba(242, 239, 232, 0.08);
  --line-strong: rgba(242, 239, 232, 0.14);
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --max: 1080px;
  --nav-h: 60px;
  --radius: 20px;
  --radius-sm: 14px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: rgba(201, 164, 92, 0.35);
  color: #fff;
}

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

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

/* Ambient */
#fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  width: 100%;
  height: 100%;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  mix-blend-mode: screen;
}

body.has-pointer .cursor-glow.active {
  opacity: 1;
}

/* Top scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 200;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transform-origin: left;
  pointer-events: none;
}

.nav,
.hero,
.pin-story,
.section,
.feature-block,
.statement,
.footer {
  position: relative;
  z-index: 2;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(22px, 4vw);
  background: rgba(11, 12, 14, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}

.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(11, 12, 14, 0.9);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.nav-brand img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  color: var(--bg) !important;
  background: var(--gold);
  padding: 0.45rem 1rem;
  border-radius: 980px;
  font-weight: 600 !important;
  transition: background 0.25s, transform 0.25s !important;
}

.nav-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 28px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}

.nav-burger.open span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}
.nav-burger.open span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* ---------- Type ---------- */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.display {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.display.sm {
  font-size: clamp(2.1rem, 4.5vw, 3rem);
}

.display.xl {
  font-size: clamp(2.8rem, 7vw, 4.75rem);
  margin-bottom: 1.4rem;
}

.display.xl em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 500;
}

.lede {
  font-size: clamp(1.02rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 36em;
  line-height: 1.6;
}

.center-head {
  text-align: center;
  margin: 0 auto 3.5rem;
  max-width: 38rem;
}

.center-head .lede {
  margin: 0.75rem auto 0;
}

.body-lg {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.1rem;
}

.body-lg.muted,
.muted {
  color: var(--text-tertiary);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.55rem;
  border-radius: 980px;
  font-size: 0.88rem;
  font-weight: 550;
  border: 0;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), background 0.3s, box-shadow 0.3s, color 0.3s, border-color 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #14110c;
}

.btn-primary:hover {
  background: var(--gold-bright);
  box-shadow: 0 12px 36px rgba(201, 164, 92, 0.22);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn.full {
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 2.5rem) 6vw 2.5rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.orb-a {
  width: min(560px, 60vw);
  height: min(560px, 60vw);
  top: -8%;
  left: 20%;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.22), transparent 70%);
}

.orb-b {
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  bottom: 0;
  right: 5%;
  background: radial-gradient(circle, rgba(91, 159, 212, 0.16), transparent 70%);
}

/* Full-width tech backdrop */
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  will-change: transform, opacity;
}

.hero-grid {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(201, 164, 92, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 231, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 48%, #000 10%, transparent 72%);
  animation: grid-shift 28s linear infinite;
  opacity: 0.85;
}

@keyframes grid-shift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 56px 56px;
  }
}

.hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 18%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(110, 231, 255, 0.04),
    transparent
  );
  /* transform only = smooth on mobile GPUs (avoid animating top) */
  animation: scan-sweep 8s linear infinite;
  opacity: 0.8;
  will-change: transform;
  transform: translate3d(0, -100%, 0);
  backface-visibility: hidden;
  pointer-events: none;
}

@keyframes scan-sweep {
  0% {
    transform: translate3d(0, -120%, 0);
  }
  100% {
    transform: translate3d(0, 620%, 0);
  }
}

.hero-tech-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
}

/* Panels float gently (dashboard feel, not a wheel) */
.hero-tech-svg .panel {
  animation: panel-float 7s ease-in-out infinite;
}

.hero-tech-svg .p2 {
  animation-delay: 0.8s;
}
.hero-tech-svg .p3 {
  animation-delay: 1.4s;
}
.hero-tech-svg .p4 {
  animation-delay: 0.4s;
}

@keyframes panel-float {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.85;
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

.hero-tech-svg .chart {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: chart-draw 4.5s ease-in-out infinite alternate;
}

.hero-tech-svg .chart:nth-of-type(2) {
  animation-delay: 0.5s;
}

@keyframes chart-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.hero-tech-svg .pulse-line {
  animation: pulse-move 5s linear infinite;
}

@keyframes pulse-move {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -80;
  }
}

.hero-tech-svg .nd {
  filter: drop-shadow(0 0 4px rgba(201, 164, 92, 0.55));
  animation: node-pulse 3s ease-in-out infinite;
}

.hero-tech-svg .nd:nth-child(odd) {
  animation-delay: 0.5s;
}
.hero-tech-svg .nd:nth-child(3n) {
  animation-delay: 1.1s;
}

@keyframes node-pulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

.hero-mark {
  position: absolute;
  left: 50%;
  top: 44%;
  width: min(130px, 15vw);
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  filter: drop-shadow(0 0 40px rgba(201, 164, 92, 0.18));
  animation: mark-breathe 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes mark-breathe {
  0%,
  100% {
    opacity: 0.06;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.11;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

/* Floating tech chips around the scene */
.hero-tech-chips {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-tech-chips .chip {
  position: absolute;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 980px;
  border: 1px solid rgba(110, 231, 255, 0.25);
  background: rgba(10, 14, 20, 0.55);
  color: var(--cyan, #6ee7ff);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  animation: chip-float 6s ease-in-out infinite;
}

.hero-tech-chips .c1 {
  top: 22%;
  left: 8%;
  animation-delay: 0s;
  border-color: rgba(201, 164, 92, 0.35);
  color: var(--gold-bright);
}
.hero-tech-chips .c2 {
  top: 28%;
  right: 10%;
  animation-delay: 1s;
}
.hero-tech-chips .c3 {
  bottom: 26%;
  left: 12%;
  animation-delay: 1.8s;
  border-color: rgba(201, 164, 92, 0.35);
  color: var(--gold-bright);
}
.hero-tech-chips .c4 {
  bottom: 22%;
  right: 12%;
  animation-delay: 0.6s;
}

@keyframes chip-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-stage {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  will-change: transform, opacity;
}

/* Keep type readable over the graphic */
.hero-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: 130%;
  height: 95%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse 55% 52% at 50% 45%,
    rgba(11, 12, 14, 0.78) 0%,
    rgba(11, 12, 14, 0.4) 48%,
    transparent 74%
  );
  pointer-events: none;
  z-index: -1;
}

/* Stronger motion on touch screens (desktop subtlety is fine) */
@media (max-width: 960px) {
  .hero-visual {
    opacity: 1 !important;
  }

  .hero-grid {
    background-image:
      linear-gradient(rgba(201, 164, 92, 0.14) 1px, transparent 1px),
      linear-gradient(90deg, rgba(110, 231, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 95% 80% at 50% 45%, #000 25%, transparent 85%);
    /* slower grid so it does not fight the scan line */
    animation: grid-shift 22s linear infinite;
    opacity: 1;
    will-change: background-position;
  }

  .hero-scan {
    height: 16%;
    background: linear-gradient(
      180deg,
      transparent,
      rgba(110, 231, 255, 0.12),
      rgba(201, 164, 92, 0.06),
      transparent
    );
    /* linear + transform = constant smooth sweep on iOS */
    animation: scan-sweep 6.5s linear infinite;
    opacity: 1;
    will-change: transform;
  }

  .hero-tech-svg {
    opacity: 1;
    /* pull side panels into view on narrow screens */
    transform: scale(1.35);
    transform-origin: center center;
    filter: saturate(1.15) brightness(1.12);
  }

  .hero-tech-svg .panel {
    animation: panel-float-mobile 3.2s ease-in-out infinite;
  }

  @keyframes panel-float-mobile {
    0%,
    100% {
      transform: translateY(0);
      opacity: 0.95;
    }
    50% {
      transform: translateY(-16px);
      opacity: 1;
    }
  }

  .hero-tech-svg .chart {
    animation: chart-draw 2.8s ease-in-out infinite alternate;
    stroke-width: 2;
  }

  .hero-tech-svg .pulse-line {
    animation: pulse-move 2.4s linear infinite;
    opacity: 0.55 !important;
    stroke-width: 1.5;
  }

  .hero-tech-svg .nd {
    filter: drop-shadow(0 0 8px rgba(201, 164, 92, 0.9));
    animation: node-pulse-mobile 1.6s ease-in-out infinite;
  }

  @keyframes node-pulse-mobile {
    0%,
    100% {
      opacity: 0.45;
      r: 2.5;
    }
    50% {
      opacity: 1;
    }
  }

  .hero-tech-svg .floor {
    opacity: 0.5 !important;
  }

  .hero-tech-svg .net {
    opacity: 0.65 !important;
  }

  .hero-tech-svg .hud {
    opacity: 0.7 !important;
  }

  .hero-mark {
    width: min(100px, 26vw);
    top: 38%;
    opacity: 0.14;
    animation: mark-breathe-mobile 4s ease-in-out infinite;
  }

  @keyframes mark-breathe-mobile {
    0%,
    100% {
      opacity: 0.1;
      transform: translate(-50%, -50%) scale(1);
    }
    50% {
      opacity: 0.2;
      transform: translate(-50%, -50%) scale(1.08);
    }
  }

  .hero-tech-chips .chip {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    padding: 0.5rem 0.85rem;
    border-width: 1.5px;
    background: rgba(10, 14, 20, 0.78);
    box-shadow: 0 0 20px rgba(110, 231, 255, 0.12), 0 8px 20px rgba(0, 0, 0, 0.35);
    animation: chip-float-mobile 2.8s ease-in-out infinite;
  }

  .hero-tech-chips .c1 {
    top: 14%;
    left: 4%;
  }
  .hero-tech-chips .c2 {
    top: 16%;
    right: 4%;
  }
  .hero-tech-chips .c3 {
    bottom: 20%;
    left: 5%;
  }
  .hero-tech-chips .c4 {
    bottom: 18%;
    right: 5%;
  }

  @keyframes chip-float-mobile {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-14px);
    }
  }

  /* Lighter vignette so the graphic stays visible around the type */
  .hero-stage::before {
    width: 115%;
    height: 80%;
    background: radial-gradient(
      ellipse 60% 48% at 50% 42%,
      rgba(11, 12, 14, 0.72) 0%,
      rgba(11, 12, 14, 0.28) 52%,
      transparent 78%
    );
  }

  .orb-a,
  .orb-b {
    opacity: 1;
    filter: blur(70px);
  }

  .orb-a {
    background: radial-gradient(circle, rgba(201, 164, 92, 0.32), transparent 70%);
  }

  .orb-b {
    background: radial-gradient(circle, rgba(91, 159, 212, 0.26), transparent 70%);
  }
}

.hero-logo {
  width: min(720px, 92vw);
  height: auto;
  margin: 0 auto 1.75rem;
  filter: drop-shadow(0 0 48px rgba(201, 164, 92, 0.22));
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}

.hero-title .line {
  display: block;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  color: var(--text-secondary);
  max-width: 34em;
  margin: 0 auto 2rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-focus {
  max-width: 780px;
  margin: 0.25rem auto 0;
  padding-top: 0.25rem;
}

.hero-focus-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 1.15rem;
}

.hero-focus-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.hero-focus-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.35rem 1rem 0.25rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease-out);
}

.hero-focus-item + .hero-focus-item {
  border-left: 1px solid var(--line);
}

.hero-focus-item:hover {
  background: rgba(201, 164, 92, 0.04);
}

.hero-focus-item:hover strong {
  color: var(--gold-bright);
}

.hero-focus-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.55;
  letter-spacing: 0.06em;
  margin-bottom: 0.15rem;
}

.hero-focus-item strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s;
}

.hero-focus-item span {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  line-height: 1.35;
  max-width: 12em;
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-tertiary);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  will-change: opacity;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-grow 2s var(--ease) infinite;
  transform-origin: top;
}

@keyframes scroll-grow {
  0%,
  100% {
    transform: scaleY(0.45);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}



/* ---------- Sticky pin story (Apple) ---------- */
.pin-story {
  height: 220vh;
  position: relative;
}

.pin-story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 1rem) 6vw 2rem;
  overflow: hidden;
}

.pin-story-inner {
  max-width: 900px;
  width: 100%;
}

.pin-headline {
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  margin-bottom: 2rem;
}

.pin-word {
  display: inline;
  color: var(--text-tertiary);
  opacity: 0.28;
  transition: color 0.15s linear, opacity 0.15s linear;
}

.pin-word.on {
  color: var(--text);
  opacity: 1;
}

.pin-story-body {
  max-width: 36em;
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.pin-story-body.is-in {
  opacity: 1;
  transform: none;
}

.pin-story-body p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.pin-story-body p.muted {
  color: var(--text-tertiary);
}

/* ---------- Sections ---------- */
.section {
  padding: 6.5rem 0;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 6vw;
}

.services-intro {
  padding-bottom: 2rem;
}

.approach {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.pillar {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 2rem 1.6rem;
  will-change: transform, opacity;
}

.pillar-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.pillar p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ---------- Feature blocks ---------- */
.feature-block {
  padding: 1.25rem 6vw 2.5rem;
}

.feature-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.75rem clamp(1.4rem, 3.5vw, 3rem);
  overflow: hidden;
  background: var(--bg-card);
  will-change: transform, opacity;
}

.feature-warm .feature-inner {
  background: linear-gradient(145deg, #1a1714 0%, var(--bg-card) 55%);
}

.feature-tech .feature-inner {
  position: relative;
  background: linear-gradient(145deg, #0a1018 0%, #10161f 50%, #12151c 100%);
  border-color: rgba(110, 231, 255, 0.12);
  overflow: hidden;
}

.feature-tech .feature-inner:hover {
  border-color: rgba(110, 231, 255, 0.28);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4), 0 0 40px rgba(91, 159, 212, 0.08);
}

.feature-tech .feature-copy,
.feature-tech .feature-art {
  position: relative;
  z-index: 2;
}

.feature-pro .feature-inner {
  background: var(--bg-card);
}

.feature-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
}

.feature-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.feature-copy p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.feature-copy p + .feature-list,
.feature-copy p:last-of-type {
  margin-bottom: 1.35rem;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.feature-art {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-slide="left"],
[data-slide="right"] {
  will-change: transform, opacity;
}

.art-culture-pro {
  width: 100%;
  max-width: 340px;
}

.art-culture-pro blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.art-culture-pro blockquote p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  margin: 0;
}

.culture-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.culture-pills span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 980px;
  border: 1px solid rgba(201, 164, 92, 0.28);
  color: var(--gold-bright);
  background: var(--gold-soft);
}

.art-steps {
  width: 100%;
  max-width: 320px;
  display: grid;
  gap: 0.85rem;
}

.step-row {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  opacity: 0.35;
  transform: translateX(12px);
  transition: opacity 0.4s, transform 0.45s var(--ease-out), border-color 0.3s, background 0.3s;
}

.step-row.active {
  opacity: 1;
  transform: none;
  border-color: rgba(201, 164, 92, 0.35);
  background: rgba(201, 164, 92, 0.06);
}

.sn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 164, 92, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}

.step-row b {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.step-row p {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin: 0;
}

/* ============================================================
   AI card — tech look inside same feature layout
   ============================================================ */
.ai-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(91, 159, 212, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 159, 212, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 50%, #000 10%, transparent 75%);
  opacity: 0.85;
  animation: grid-drift 18s linear infinite;
}

@keyframes grid-drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 36px 36px;
  }
}

#ai-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

.tech-num {
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(110, 231, 255, 0.35);
}

.tech-eyebrow {
  color: var(--blue);
  letter-spacing: 0.22em;
  margin-bottom: 0.5rem;
}

.feature-tech .ai-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.9rem;
  background: linear-gradient(105deg, #fff 0%, var(--cyan) 45%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tech-list li::before {
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(110, 231, 255, 0.6);
}

.ai-stage {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.ai-pipeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
}

.ai-node {
  --orb-p: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  position: relative;
  opacity: calc(0.28 + var(--orb-p) * 0.72);
  transform: scale(calc(0.88 + var(--orb-p) * 0.12));
  transition: opacity 0.35s, transform 0.4s var(--ease-out), filter 0.35s;
  filter: grayscale(calc(1 - var(--orb-p)));
  flex-shrink: 0;
}

.ai-node.active {
  filter: none;
}

.ai-node-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  border: none;
  /* progress arc fills as --orb-p goes 0→1 */
  background:
    radial-gradient(circle, #0c121a 60%, transparent 61%),
    conic-gradient(
      from -90deg,
      rgba(110, 231, 255, 0.95) calc(var(--orb-p) * 360deg),
      rgba(255, 255, 255, 0.08) 0
    );
  box-shadow: inset 0 0 14px rgba(91, 159, 212, 0.1);
}

.ai-node.active .ai-node-ring {
  box-shadow:
    0 0 22px rgba(110, 231, 255, 0.28),
    inset 0 0 16px rgba(91, 159, 212, 0.16);
  animation: ring-pulse 2s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%,
  100% {
    box-shadow: 0 0 14px rgba(110, 231, 255, 0.2), inset 0 0 14px rgba(91, 159, 212, 0.12);
  }
  50% {
    box-shadow: 0 0 30px rgba(110, 231, 255, 0.45), inset 0 0 20px rgba(91, 159, 212, 0.22);
  }
}

.ai-node-core {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--cyan) 45%, var(--blue));
  box-shadow: 0 0 calc(8px + var(--orb-p) * 16px) rgba(110, 231, 255, calc(0.25 + var(--orb-p) * 0.55));
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%) scale(calc(0.7 + var(--orb-p) * 0.45));
  opacity: calc(0.35 + var(--orb-p) * 0.65);
  transition: transform 0.35s var(--ease-out), opacity 0.35s, box-shadow 0.35s;
}

.ai-node.active .ai-node-core {
  animation: core-breathe 1.6s ease-in-out infinite;
}

@keyframes core-breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 14px rgba(110, 231, 255, 0.45);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.18);
    box-shadow: 0 0 28px rgba(110, 231, 255, 0.75);
  }
}

.ai-node span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  transition: color 0.3s;
}

.ai-node.active span {
  color: var(--cyan);
}

.ai-beam {
  flex: 1;
  min-width: 12px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  align-self: center;
  margin-bottom: 1.35rem;
}

.ai-beam::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
  box-shadow: 0 0 10px rgba(110, 231, 255, 0.5);
}

.ai-beam.on::after {
  transform: scaleX(1);
}

.ai-hud {
  background: rgba(8, 12, 20, 0.8);
  border: 1px solid rgba(110, 231, 255, 0.18);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(91, 159, 212, 0.08);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}

.hud-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.72rem;
  margin-bottom: 0.45rem;
}

.hud-row .hud-val {
  text-align: right;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 58%;
  line-height: 1.3;
}

.hud-label {
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.hud-val {
  color: var(--cyan);
  transition: color 0.25s, text-shadow 0.25s;
}

.hud-val.mono {
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 12px rgba(110, 231, 255, 0.4);
  font-size: 1.05rem;
  font-weight: 600;
}

.hud-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.hud-metric {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: rgba(110, 231, 255, 0.04);
  border: 1px solid rgba(110, 231, 255, 0.1);
}

.hud-metric .hud-label {
  font-size: 0.58rem;
}

.hud-metric .hud-val {
  color: var(--text);
  text-shadow: none;
}

.hud-metric .hud-val.mono {
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(110, 231, 255, 0.3);
}

.hud-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: visible;
  margin: 0.35rem 0 0.85rem;
  position: relative;
}

.hud-bar i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--gold));
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(110, 231, 255, 0.5);
  transition: width 0.15s linear;
  position: relative;
}

.hud-bar i::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(110, 231, 255, 0.9);
  transform: translateY(-50%);
}

.hud-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.hud-chips span {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-tertiary);
  transition: border-color 0.3s, color 0.3s, background 0.3s, box-shadow 0.3s;
}

.hud-chips span.on {
  border-color: rgba(110, 231, 255, 0.5);
  color: var(--cyan);
  background: rgba(110, 231, 255, 0.08);
  box-shadow: 0 0 14px rgba(110, 231, 255, 0.15);
}

/* ---------- Why ---------- */
.why {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.85rem 1.65rem;
  will-change: transform, opacity;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.97rem;
}

/* ---------- Statement ---------- */
.statement {
  padding: 8rem 6vw;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(201, 164, 92, 0.07), transparent 65%),
    var(--bg);
  overflow: hidden;
}

.statement-inner {
  max-width: 780px;
  margin: 0 auto;
  will-change: transform, opacity;
}

.statement .lede {
  margin: 0 auto 2rem;
}

/* ---------- Contact ---------- */
.contact-sec {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.25rem;
  align-items: start;
}

.checks {
  list-style: none;
  margin-top: 1.75rem;
  display: grid;
  gap: 0.7rem;
}

.checks li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
}

label span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

input,
textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(201, 164, 92, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  font-size: 0.9rem;
  min-height: 1.2em;
  color: var(--text-secondary);
}
.form-status.ok {
  color: #8fcea0;
}
.form-status.err {
  color: #e0a0a0;
}

/* Honeypot: hidden from real users */
.form-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-card button[disabled] {
  opacity: 0.65;
  cursor: wait;
}

/* ---------- Footer ---------- */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg) 0%, #08090b 100%);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 6vw;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.footer-logo-site {
  display: block;
  width: clamp(280px, 36vw, 400px);
  height: auto;
  margin-bottom: 1.15rem;
  opacity: 0.95;
  object-fit: contain;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
  max-width: 18em;
  margin-bottom: 0.75rem;
}

.footer-locale {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.footer-parent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.footer-logo-group {
  display: block;
  width: clamp(180px, 28vw, 240px);
  height: auto;
  object-fit: contain;
  opacity: 0.92;
}

.footer-parent-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.9rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.28rem 0;
  transition: color 0.25s;
}

.footer-col a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding-top: 1.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-tertiary);
}

.footer-note {
  color: var(--text-tertiary);
  opacity: 0.85;
}

/* ---------- Reveals ---------- */
.reveal,
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out),
    filter 0.85s var(--ease-out);
  transition-delay: var(--d, 0s);
}

.reveal.visible,
.reveal-up.visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.reveal-rise {
  opacity: 0;
  transform: translateY(48px) scale(0.97);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 0.08s);
}

.reveal-rise.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .feature-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  /* Mobile/tablet: shorter pin so a small scroll reveals body copy */
  .pin-story {
    height: 165vh;
  }

  .pin-story-sticky {
    padding: calc(var(--nav-h) + 0.75rem) 5vw 1.5rem;
  }

  .pin-headline {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
    margin-bottom: 1.5rem;
  }

  .pin-story-body {
    transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  }

  .pin-story-body p {
    font-size: 1.02rem;
  }

  /* Hero never fades on phone/tablet via CSS safety net */
  .hero-stage {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-visual {
    opacity: 1 !important;
  }

  .hero-focus-row {
    grid-template-columns: 1fr;
  }

  .hero-focus-item + .hero-focus-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .ai-stage {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .nav-burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 1rem;
    background: rgba(11, 12, 14, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.35s;
  }

  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.95rem 1.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin: 0.85rem 1.25rem 0;
    text-align: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.5rem 0;
  }

  .scroll-cue {
    display: none;
  }

  .cursor-glow {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-logo-site {
    width: clamp(260px, 72vw, 340px);
  }

  .footer-logo-group {
    width: clamp(170px, 48vw, 220px);
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }

  .footer-parent {
    padding: 1.5rem 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .footer-logo-site {
    width: clamp(240px, 82vw, 320px);
  }

  .footer-logo-group {
    width: clamp(160px, 55vw, 200px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .reveal-up,
  .reveal-rise,
  .scroll-line,
  .ai-grid-bg,
  .ai-node.active .ai-node-ring,
  .hero-grid,
  .hero-scan,
  .hero-tech-svg .panel,
  .hero-tech-svg .chart,
  .hero-tech-svg .pulse-line,
  .hero-tech-svg .nd,
  .hero-mark,
  .hero-tech-chips .chip {
    animation: none !important;
    transition: none !important;
  }
  .reveal,
  .reveal-up,
  .reveal-rise {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .pin-story {
    height: auto;
  }
  .pin-story-sticky {
    position: relative;
    height: auto;
  }
  .pin-word {
    opacity: 1;
    color: var(--text);
  }
  .pin-story-body {
    opacity: 1;
    transform: none;
  }
}
