/* === NERAYOFF INTERACTIVE WEBSITE ===
   Leonardo.AI-inspired: massive 3D text, dark, cinematic
   ===================================== */

/* ====== LOADER ====== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ld-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.ld-logo {
  font-family: var(--font-h);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--white);
  animation: ld-pulse 1.5s ease-in-out infinite;
}

@keyframes ld-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.ld-bar-wrap {
  width: 220px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.ld-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  transition: width 0.15s ease;
  border-radius: 2px;
}

.ld-num {
  font-family: var(--font-l);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--dim);
}

/* ====== CUSTOM CURSOR ====== */
* {
  cursor: none;
}

#cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}

#cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

#cursor-ring.expand {
  width: 52px;
  height: 52px;
  border-color: var(--purple-light);
}

/* ====== SCROLL PROGRESS ====== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--purple-light), #00d4ff);
  z-index: 99996;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(107, 70, 255, 0.6);
}

:root {
  --bg: #050508;
  --bg2: #08080f;
  --purple: #6b46ff;
  --purple-light: #8b6fff;
  --gold: #d4a843;
  --gold-dim: rgba(212, 168, 67, 0.15);
  --cyan: #00d4ff;
  --green: #00ff87;
  --red: #ff3b6b;
  --white: #f0f0f8;
  --dim: rgba(240, 240, 248, 0.5);
  --dimmer: rgba(240, 240, 248, 0.25);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-b: rgba(255, 255, 255, 0.08);
  --font-h: 'Syne', sans-serif;
  --font-b: 'Space Grotesk', sans-serif;
  --font-l: 'Inter', sans-serif;
  /* Modal / Ask Steve variables (previously undefined — fixed) */
  --font-mono: 'Space Grotesk', monospace;
  --font-main: 'Inter', sans-serif;
  --color-primary: rgba(100, 150, 255, 0.85);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-b);
  overflow-x: hidden;
  min-height: 100%;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-thumb {
  background: var(--purple);
}

a {
  text-decoration: none;
}

/* ====== NAV ====== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  transition: background 0.4s;
}

#nav.scrolled {
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107, 70, 255, 0.15);
}

.nav-brand {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--white);
}

.nav-center {
  display: flex;
  gap: 2.5rem;
}

.nav-center a {
  font-size: 0.95rem;
  color: var(--dim);
  letter-spacing: 0.06em;
  transition: color 0.2s;
  font-family: var(--font-l);
}

.nav-center a:hover {
  color: var(--white);
}

.nav-center a.active {
  color: var(--white);
}

.nav-center a.active::after {
  content: '';
  display: block;
  margin-top: 3px;
  height: 1px;
  background: var(--purple-light);
  border-radius: 2px;
}

.nav-cta {
  background: var(--white);
  color: var(--bg);
  padding: 0.55rem 1.5rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--purple-light);
  color: var(--white);
}

/* ====== HAMBURGER ====== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s;
  margin-left: 0.8rem;
}

.hamburger:hover {
  border-color: var(--purple-light);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ====== MOBILE NAV OVERLAY ====== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5, 5, 8, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: rgba(8, 8, 15, 0.98);
  border-left: 1px solid rgba(107, 70, 255, 0.2);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.8rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.open .mobile-nav-drawer {
  transform: translateX(0);
}

.mobile-nav-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--dim);
  font-size: 1rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  margin-bottom: 2rem;
  transition: all 0.2s;
}

.mobile-nav-close:hover {
  border-color: var(--purple);
  color: var(--white);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links a {
  font-family: var(--font-l);
  font-size: 1rem;
  color: var(--dim);
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
  letter-spacing: 0.04em;
}

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

.mobile-nav-cta {
  margin-top: 1.5rem;
  background: var(--purple) !important;
  color: var(--white) !important;
  padding: 0.9rem 1.5rem !important;
  border-radius: 100px !important;
  text-align: center;
  font-weight: 600 !important;
  border-bottom: none !important;
  transition: background 0.2s, transform 0.2s !important;
}

.mobile-nav-cta:hover {
  background: var(--purple-light) !important;
  transform: translateY(-2px);
}

/* ====== HERO ====== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

#scene3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#spline-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.15;
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--dim);
  font-family: var(--font-l);
  text-transform: uppercase;
}

.hero-headline {
  font-family: var(--font-h);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--white);
  text-shadow: 0 0 80px rgba(107, 70, 255, 0.5);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cta-primary {
  background: var(--white);
  color: var(--bg);
  padding: 0.8rem 2rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.cta-primary:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107, 70, 255, 0.4);
}

.cta-ghost {
  color: var(--dim);
  font-size: 0.88rem;
  transition: color 0.2s;
  padding: 0.8rem 0.5rem;
}

.cta-ghost:hover {
  color: var(--white);
}

.scroll-ind {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
}

.scroll-ind span {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--dimmer);
  font-family: var(--font-l);
}

/* ====== MARQUEE ====== */
.marquee-wrap {
  overflow: hidden;
  background: var(--purple);
  padding: 0.8rem 0;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 0.72rem;
  font-family: var(--font-l);
  letter-spacing: 0.2em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.marquee-track .dot {
  color: rgba(255, 255, 255, 0.5);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ====== CONTENT SECTIONS ====== */
.content-section {
  position: relative;
  padding: 3rem 5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.dark-bg {
  background: var(--bg2);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-inner.vertical {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

.section-tag {
  font-family: var(--font-l);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--purple-light);
  text-transform: uppercase;
}

.section-tag.light {
  color: rgba(139, 111, 255, 0.7);
}

.section-h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.section-p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 680px;
  line-height: 1.85;
  font-family: var(--font-l);
}

.section-p.centered {
  text-align: center;
  align-self: center;
}

.section-header-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ====== ABOUT ====== */
.section-inner:not(.vertical) {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.col-left {
  display: flex;
  flex-direction: column;
}

.big-heading {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-top: 0.8rem;
}

.body-lead {
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-family: var(--font-l);
  font-weight: 300;
}

.stat-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-block {
  text-align: left;
}

.stat-n {
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--purple-light);
  line-height: 1;
}

.stat-u {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--dimmer);
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.stat-l {
  font-size: 0.72rem;
  color: var(--dimmer);
  margin-top: 0.1rem;
}

.id-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.id-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.id-key {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--purple-light);
  text-transform: uppercase;
  font-family: var(--font-l);
}

.id-val {
  font-size: 0.9rem;
  color: var(--dim);
}

/* ====== BLOCKCHAIN / WORD WALL ====== */
.word-wall-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

#wordwall {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wordwall-overlay {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.ww-title {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.chain-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  max-width: 700px;
}

.chain-pill {
  background: rgba(107, 70, 255, 0.2);
  border: 1px solid rgba(107, 70, 255, 0.4);
  backdrop-filter: blur(10px);
  color: var(--purple-light);
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-family: var(--font-l);
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.chain-pill:hover {
  background: rgba(107, 70, 255, 0.4);
  color: var(--white);
  transform: translateY(-2px);
}

/* ====== GLASS BLOCK ====== */
.glass-block {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  backdrop-filter: blur(16px);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.glass-block:hover {
  border-color: rgba(107, 70, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 50px rgba(107, 70, 255, 0.1);
}

/* ====== PATENTS ====== */
.patent-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  width: 100%;
}

.pf-main {
  padding: 1.8rem;
  position: relative;
}

.pf-badge {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  padding: 0.3rem 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-l);
}

.pf-num {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple-light);
  margin-bottom: 0.5rem;
}

.pf-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-style: italic;
}

.pf-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
  font-family: var(--font-l);
  margin-bottom: 1.5rem;
}

.pf-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--dimmer);
  font-family: var(--font-l);
}

.pf-domains {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pd-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--glass-b);
  cursor: default;
  transition: background 0.2s;
}

.pd-item:hover {
  background: rgba(107, 70, 255, 0.06);
}

.pd-icon {
  font-size: 1.5rem;
}

.pd-name {
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.pd-tag {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  padding: 0.2rem 0.6rem;
  font-family: var(--font-l);
  border-radius: 2px;
}

.pd-tag.enforcing {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--cyan);
}

.pd-tag.pending {
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--gold);
}

.enforce-banner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem;
  gap: 2rem;
}

.eb-label {
  font-family: var(--font-l);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--purple-light);
  margin-bottom: 0.5rem;
}

.eb-firm {
  font-size: 1rem;
  color: var(--dim);
  margin-bottom: 0.8rem;
}

.eb-quote {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--white);
  border-left: 2px solid var(--purple);
  padding-left: 1rem;
  font-family: var(--font-l);
}

.eb-nums {
  display: flex;
  gap: 2.5rem;
  flex-shrink: 0;
}

.eb-n {
  text-align: center;
}

.eb-big {
  display: block;
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--purple-light);
}

.eb-sm {
  font-size: 0.65rem;
  color: var(--dimmer);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ====== CASES ====== */
.cases-hero-num {
  font-family: var(--font-h);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 0 80px rgba(107, 70, 255, 0.4);
}

.cases-hero-sub {
  font-size: 0.9rem;
  color: var(--dim);
  font-family: var(--font-l);
  margin-top: -1rem;
}

.cases-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.case-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 2rem;
  cursor: default;
}

.dismissed-row {
  border-color: rgba(0, 255, 135, 0.2);
}

.cr-num {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.12);
  min-width: 3rem;
}

.cr-body {
  flex: 1;
}

.cr-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.cr-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-l);
  margin-bottom: 0.8rem;
}

.cr-charges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.cr-charges span {
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-l);
}

.cr-amount {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--purple-light);
  min-width: 80px;
  text-align: right;
}

.cr-status {
  min-width: 90px;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-align: right;
  font-family: var(--font-l);
}

.active-s {
  color: var(--cyan);
}

.dismissed-s {
  color: var(--green);
}

.dershowitz-quote {
  width: 100%;
  padding: 3.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.dq-mark {
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 0;
  color: var(--purple);
  opacity: 0.4;
  margin-bottom: 1rem;
}

.dershowitz-quote blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--white);
  max-width: 700px;
  line-height: 1.75;
  font-family: var(--font-l);
  font-weight: 300;
}

.dq-attr {
  font-size: 0.72rem;
  color: var(--dimmer);
  letter-spacing: 0.1em;
  font-family: var(--font-l);
}

/* ====== TIMELINE ====== */
.tl-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
}

.tl-entry {
  display: grid;
  grid-template-columns: 120px 4px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tl-year {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dim);
  padding-top: 0.2rem;
  text-align: right;
}

.tl-bar {
  width: 2px;
  min-height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 0.2rem;
  transition: background 0.5s;
}

.tl-entry:hover .tl-bar {
  background: var(--purple);
}

.accent-bar {
  background: var(--purple) !important;
}

.red-bar {
  background: var(--red) !important;
}

.green-bar {
  background: var(--green) !important;
}

.tl-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  font-family: var(--font-l);
  padding-top: 0.1rem;
}

.tl-desc strong {
  color: var(--white);
  font-weight: 600;
}

/* ====== REVEAL ANIMATION ====== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ====== VENTURES ====== */
.vc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.vc-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vc-card.featured-vc {
  border-color: rgba(107, 70, 255, 0.4);
  background: rgba(107, 70, 255, 0.05);
}

.vc-emoji {
  font-size: 2.5rem;
}

.vc-name {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.vc-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  font-family: var(--font-l);
  flex: 1;
}

.vc-pill {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-family: var(--font-l);
  align-self: flex-start;
}

.active-pill {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--cyan);
}

.enforce-pill {
  background: rgba(107, 70, 255, 0.2);
  border: 1px solid rgba(107, 70, 255, 0.4);
  color: var(--purple-light);
}

.legacy-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--dimmer);
}

.exit-pill {
  background: rgba(0, 255, 135, 0.08);
  border: 1px solid rgba(0, 255, 135, 0.2);
  color: var(--green);
}

.upcoming-pill {
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--gold);
}

/* ====== ETHGATE ====== */
.ethgate-section {
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

#ethcanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.eth-overlay {
  position: relative;
  z-index: 10;
  align-items: center;
}

.glow-text {
  text-shadow: 0 0 40px rgba(107, 70, 255, 0.8), 0 0 100px rgba(107, 70, 255, 0.3);
  text-align: center;
}

.eth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.eth-card {
  padding: 2.5rem;
}

.eth-n {
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(107, 70, 255, 0.2);
  margin-bottom: 0.8rem;
}

.eth-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.eth-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-family: var(--font-l);
}

.eth-alert {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  width: 100%;
  border-color: rgba(0, 212, 255, 0.2);
}

.eth-alert-icon {
  font-size: 2.5rem;
}

.eth-alert strong {
  display: block;
  color: var(--cyan);
  margin-bottom: 0.3rem;
  font-family: var(--font-h);
}

.eth-alert p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-l);
}

/* ====== CONTACT ====== */
.contact-section {
  background: var(--bg2);
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.cc {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.cc-icon {
  font-size: 2.5rem;
}

.cc h4 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  color: var(--white);
}

.cc p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  font-family: var(--font-l);
  flex: 1;
}

/* ====== FOOTER ====== */
footer {
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 5rem;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ft-brand {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.ft-links {
  display: flex;
  gap: 2rem;
}

.ft-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  font-family: var(--font-l);
}

.ft-links a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
}

.ft-legal {
  font-size: 0.7rem;
  color: var(--dimmer);
  max-width: 700px;
  margin: 0 auto 0.8rem;
  line-height: 1.7;
  font-family: var(--font-l);
}

.ft-copy {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-l);
}

/* KGU International powered-by badge */
.ft-kgu-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0.75rem 0 0.5rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(107, 70, 255, 0.35);
  border-radius: 2rem;
  background: rgba(107, 70, 255, 0.07);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(6px);
}

.ft-kgu-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-l);
}

.ft-kgu-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: opacity 0.2s;
}
.ft-kgu-link:hover { opacity: 0.75; }

.ft-kgu-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.65rem;
}

.ft-kgu-support {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-l);
}

.ft-kgu-support a {
  color: rgba(107, 70, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.ft-kgu-support a:hover { color: var(--cyan); }



/* ====== KEY FIGURES ====== */
.figures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
}

.fig-card {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fig-role {
  font-family: var(--font-l);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  align-self: flex-start;
}

.fig-role.ally {
  background: rgba(0, 255, 135, 0.1);
  border: 1px solid rgba(0, 255, 135, 0.25);
  color: var(--green);
}

.fig-role.adverse {
  background: rgba(255, 59, 107, 0.1);
  border: 1px solid rgba(255, 59, 107, 0.25);
  color: var(--red);
}

.fig-role.eth {
  background: rgba(107, 70, 255, 0.15);
  border: 1px solid rgba(107, 70, 255, 0.3);
  color: var(--purple-light);
}

.fig-role.collab {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--cyan);
}

.fig-name {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.fig-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  font-family: var(--font-l);
}

/* ====== $150M RAISE SECTION ====== */
.raise-section {
  background: #06060f;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100vh;
}

#raise-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.4;
}

.raise-inner {
  position: relative;
  z-index: 2;
}

.raise-header {
  max-width: 700px;
}

.raise-title {
  background: linear-gradient(135deg, var(--white), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.raise-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  width: 100%;
  align-items: start;
}

.raise-pdf {
  overflow: hidden;
}

.pdf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--glass-b);
}

.pdf-label {
  font-family: var(--font-l);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--purple-light);
}

.pdf-open-btn {
  font-family: var(--font-l);
  font-size: 0.72rem;
  color: var(--white);
  background: rgba(107, 70, 255, 0.2);
  border: 1px solid rgba(107, 70, 255, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  transition: all 0.2s;
}

.pdf-open-btn:hover {
  background: var(--purple);
  color: var(--white);
}

.pdf-embed-wrap {
  line-height: 0;
}

.pdf-embed-wrap iframe {
  display: block;
}

.raise-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rd-stat {
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.rd-icon {
  font-size: 1.6rem;
}

.rd-n {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--purple-light);
}

.rd-l {
  font-size: 0.65rem;
  color: var(--dimmer);
  letter-spacing: 0.1em;
  font-family: var(--font-l);
  text-transform: uppercase;
}

.rd-full {
  grid-column: 1 / -1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rd-full-title {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--glass-b);
}

.rd-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.rd-points li {
  font-size: 0.82rem;
  color: var(--dim);
  font-family: var(--font-l);
  line-height: 1.6;
  padding-left: 1.2rem;
  position: relative;
}

.rd-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--purple-light);
  font-size: 0.75rem;
}

.rd-points li strong {
  color: var(--white);
  font-weight: 600;
}

.rd-also {
  grid-column: 1 / -1;
  padding: 1.5rem 2rem;
  border-color: rgba(0, 212, 255, 0.2);
}

.rd-also-label {
  font-family: var(--font-l);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: 0.6rem;
}

.rd-also p {
  font-size: 0.82rem;
  color: var(--dim);
  font-family: var(--font-l);
  line-height: 1.6;
}

/* ====== CONTACT FORM ====== */
.contact-form-wrap {
  width: 100%;
  padding: 3rem;
  margin-top: 1rem;
}

.cf-header {
  margin-bottom: 2rem;
}

.cf-title {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0.5rem 0 0.4rem;
}

.cf-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-l);
}

.cf-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cf-field label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-l);
  text-transform: uppercase;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-l);
  font-size: 1rem;
  padding: 0.85rem 1.1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: var(--dimmer);
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107, 70, 255, 0.12);
}

.cf-field select option {
  background: #0a0a14;
  color: var(--white);
}

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

.cf-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.cf-note {
  font-size: 0.75rem;
  color: var(--dimmer);
  font-family: var(--font-l);
}

.cf-btn {
  border: none;
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.cf-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cf-status {
  font-size: 0.82rem;
  font-family: var(--font-l);
  padding: 0.8rem 1rem;
  border-radius: 6px;
  display: none;
}

.cf-status.success {
  display: block;
  background: rgba(0, 255, 135, 0.08);
  border: 1px solid rgba(0, 255, 135, 0.2);
  color: var(--green);
}

.cf-status.error {
  display: block;
  background: rgba(255, 59, 107, 0.08);
  border: 1px solid rgba(255, 59, 107, 0.2);
  color: var(--red);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  .content-section {
    padding: 6rem 3rem;
  }

  .patent-feature {
    grid-template-columns: 1fr;
  }

  .vc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  /* Show hamburger, hide desktop nav items above ETHGate/Figures */
  .nav-center a:nth-child(n+7) {
    display: none;
  }
}

@media (max-width: 768px) {
  .content-section {
    padding: 5rem 1.5rem;
  }

  #nav {
    padding: 1rem 1.5rem;
  }

  .nav-center {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section-inner:not(.vertical) {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .col-left {
    position: static;
  }

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

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

  .figures-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tl-entry {
    grid-template-columns: 80px 4px 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .ft-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  footer {
    padding: 2rem 1.5rem;
  }

  .enforce-banner {
    flex-direction: column;
  }

  .cases-hero-num {
    font-size: clamp(3rem, 15vw, 7rem);
  }

  .raise-layout {
    grid-template-columns: 1fr;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   MULTI-MODAL: ASK STEVE AI UI 
========================================================= */

#ask-steve-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 25px rgba(100, 150, 255, 0.15), inset 0 0 10px rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

#ask-steve-fab:hover {
  background: rgba(20, 20, 30, 0.9);
  border-color: rgba(100, 150, 255, 0.4);
  box-shadow: 0 0 35px rgba(100, 150, 255, 0.25), inset 0 0 15px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

#ask-steve-fab .icon {
  font-size: 1.2rem;
}

#ask-steve-fab .text {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

#ask-steve-modal {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  width: 380px;
  max-width: calc(100vw - 4rem);
  height: 500px;
  max-height: calc(100vh - 8rem);
  z-index: 1001;
  background: rgba(10, 10, 15, 0.95);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform-origin: bottom right;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#ask-steve-modal.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9) translateY(20px);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00ff88;
  box-shadow: 0 0 8px #00ff88;
}

.status-dot.pulsing {
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

#close-modal-btn {
  background: none;
  border: none;
  color: #888;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

#close-modal-btn:hover {
  color: #fff;
}

.modal-chat-area {
  flex-grow: 1;
  padding: 1.2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-chat-area .message {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 85%;
}

.message.system {
  background: rgba(100, 150, 255, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(100, 150, 255, 0.2);
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.message.user {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.message.ai {
  background: rgba(200, 220, 255, 0.1);
  color: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  border-left: 2px solid var(--color-primary);
}

/* ====== ANIMATED TYPING INDICATOR ====== */
.message.typing-indicator {
  background: rgba(200, 220, 255, 0.08);
  border-left: 2px solid var(--color-primary);
  align-self: flex-start;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 60px;
}

.typing-indicator span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: typing-bounce 1.2s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.modal-input-area {
  display: flex;
  padding: 1rem;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#chat-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.6rem 1rem;
  border-radius: 20px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

#chat-input:focus {
  border-color: rgba(100, 150, 255, 0.5);
}

#mic-btn, #send-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

#mic-btn:hover, #send-btn:hover {
  background: rgba(100, 150, 255, 0.2);
  border-color: var(--color-primary);
}

.mic-active {
  background: rgba(255, 100, 100, 0.2) !important;
  border-color: #ff6464 !important;
  animation: pulse-mic 1.5s infinite;
}

@keyframes pulse-mic {
  0% { box-shadow: 0 0 0 0 rgba(255, 100, 100, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 100, 100, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 100, 100, 0); }
}

@media (max-width: 768px) {
  #ask-steve-modal {
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 70vh;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
  }
}
