:root {
  --music-bone: #faf8f3;
  --music-silver: #d8dde2;
  --music-ink: #0a0a0a;
  --music-navy: #0a0a0a;
  --music-blue: #102b4a;
  --music-signal: #ff5f3a;
  --music-signal-soft: #ff9478;
  --music-cyan: #53d7ef;
  --music-magenta: #d948b7;
  --music-line: rgba(8, 11, 16, 0.22);
  --music-dark-line: rgba(238, 234, 224, 0.22);
  --music-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --music-radius: 6px;
  --title-shift: 0px;
  --signal-phase: 0;

  --mithya-black: #0a0a0a;
  --mithya-burnt-orange: #d94d2a;
  --mithya-signal-orange: #ff5f3a;
  --mithya-white: #faf8f3;
  --mithya-text-secondary: rgba(232, 232, 232, 0.7);
  --mithya-glass-light: rgba(217, 77, 42, 0.12);
  --mithya-glass-border: rgba(217, 77, 42, 0.3);
  --mithya-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  color: var(--mithya-white);
  background: radial-gradient(ellipse 120% 70% at 50% -10%, rgba(217, 77, 42, 0.1), transparent 60%), var(--mithya-black);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  -webkit-font-smoothing: antialiased;
}
@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.wrap {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(217, 77, 42, 0.18);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(217, 77, 42, 0.4);
  box-shadow: 0 0 60px rgba(217, 77, 42, 0.3), inset 0 0 60px rgba(217, 77, 42, 0.05);
  width: 100%;
  padding: 1.8rem 0;
  min-height: 1.5in;
  display: flex;
  align-items: center;
}
.topbar .row {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
}
.brand .mark {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--mithya-glass-border);
  border-radius: 2px;
  color: var(--mithya-signal-orange);
  font-size: 1rem;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}
.nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mithya-text-secondary);
  padding-bottom: 0.2rem;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 1px;
  background: var(--music-signal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: clamp(4.5rem, 8vw, 7rem) 0 3rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--mithya-text-secondary);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-copy .eyebrow {
  animation: fadeInDown 0.8s ease-out both;
}
.hero-title {
  margin: 0 0 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.08em;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(6rem, 16vw, 14rem);
  line-height: 0.85;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--mithya-white);
}
.title-piece {
  display: inline-block;
  white-space: nowrap;
}
.title-piece:first-child {
  color: var(--mithya-white);
  text-shadow:
    0 0 20px rgba(217, 77, 42, 0.4),
    0 0 40px rgba(217, 77, 42, 0.25);
  animation: glitchTop 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.title-piece:last-child {
  color: var(--mithya-burnt-orange);
  text-shadow:
    0 0 30px rgba(217, 77, 42, 0.8),
    0 0 60px rgba(217, 77, 42, 0.6),
    0 0 100px rgba(217, 77, 42, 0.4);
  animation: glitchBottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both;
}
.hero-subtitle {
  margin: 0 0 1.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mithya-text-secondary);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-intro,
.hero-philosophy {
  max-width: 60ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(250, 248, 243, 0.82);
}
.hero-intro { margin: 0 0 0.8rem; }
.hero-philosophy { margin: 0 0 1.8rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
}
.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.8rem 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  background: linear-gradient(135deg, var(--mithya-burnt-orange), var(--mithya-signal-orange));
  border: none;
  color: var(--mithya-white);
  box-shadow: 0 0 40px rgba(217, 77, 42, 0.4);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.action-link:hover,
.action-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 0 80px rgba(217, 77, 42, 0.6);
}
.action-link--primary {
  color: var(--mithya-white);
}
.action-link--ghost {
  background: transparent;
  color: var(--mithya-white);
  border: 1px solid var(--mithya-glass-border);
  box-shadow: none;
}
.action-link--ghost:hover,
.action-link--ghost:focus-visible {
  background: rgba(217, 77, 42, 0.15);
  border-color: rgba(217, 77, 42, 0.6);
  box-shadow: 0 0 60px rgba(217, 77, 42, 0.3);
}

.signal-line-shell {
  margin-top: 1.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(217, 77, 42, 0.2);
}
.signal-line {
  display: block;
  width: 100%;
  height: 4.5rem;
}
.signal-line path {
  fill: none;
  stroke: var(--music-signal);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 780;
  stroke-dashoffset: 780;
  opacity: 0.92;
  filter: drop-shadow(0 0 12px rgba(255, 95, 58, 0.6));
  transition: stroke-dashoffset 0.5s ease, opacity 0.5s ease, stroke 0.5s ease;
}
.signal-line.is-active path {
  stroke-dashoffset: 0;
  opacity: 1;
}
.signal-line.state-valley path { stroke: rgba(250, 248, 243, 0.42); }
.signal-line.state-plateau path { stroke: var(--music-blue); }
.signal-line.state-drop path { stroke: var(--music-signal); }
.signal-line.state-silence path { stroke: rgba(250, 248, 243, 0.16); opacity: 0.45; }
.signal-line.state-return path { stroke: var(--music-cyan); }

.hero-art {
  position: relative;
}
.art-frame {
  position: relative;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--mithya-glass-border);
  box-shadow: var(--mithya-shadow);
}
.art-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 95, 58, 0.25);
  pointer-events: none;
}
.art-frame img {
  width: 100%;
  height: min(72vh, 620px);
  object-fit: cover;
  object-position: center;
  background: var(--music-navy);
}
.art-caption {
  margin-top: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mithya-text-secondary);
}

.signal-deck {
  margin-top: 1.2rem;
  padding: clamp(1.2rem, 2.4vw, 2rem);
  background: var(--mithya-glass-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--mithya-white);
  border: 1px solid var(--mithya-glass-border);
  box-shadow: 0 0 40px rgba(217, 77, 42, 0.2);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.signal-deck:hover {
  transform: translateY(-6px);
  background: rgba(217, 77, 42, 0.18);
  border-color: rgba(217, 77, 42, 0.5);
  box-shadow: 0 0 60px rgba(217, 77, 42, 0.3);
}
.signal-deck__copy { margin-bottom: 1rem; }
.signal-deck__copy h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.2;
}
.signal-deck__player {
  display: grid;
  gap: 0.9rem;
}
.player-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mithya-text-secondary);
}
.player-status::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--music-signal);
  box-shadow: 0 0 0 4px rgba(255,95,58,0.16);
}
.player-title {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
}
.player-meta {
  color: rgba(250, 248, 243, 0.8);
  font-size: 0.95rem;
}
.player-progress {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.84rem;
  color: rgba(250, 248, 243, 0.76);
}
.player-progress input[type="range"] {
  flex: 1;
  accent-color: var(--music-signal);
  cursor: pointer;
}
.player-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.player-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.9rem;
  min-height: 2.9rem;
  padding: 0.7rem;
  border: 1px solid var(--mithya-glass-border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--mithya-white);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.player-btn:hover,
.player-btn:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(217, 77, 42, 0.6);
}
.player-btn--primary {
  min-width: 3.3rem;
  min-height: 3.3rem;
  background: var(--music-signal);
  border-color: var(--music-signal);
  color: var(--mithya-white);
}
.player-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.volume-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(250, 248, 243, 0.82);
  font-size: 0.85rem;
}
.volume-row input[type="range"] {
  width: 140px;
  accent-color: var(--music-signal);
}
.player-note {
  font-size: 0.84rem;
  color: var(--mithya-text-secondary);
}

section {
  padding: clamp(3rem, 5vw, 4.6rem) 0;
}
.section-head {
  max-width: 720px;
  margin-bottom: 1.8rem;
}
.section-head h2,
.manifesto-copy h2,
.handoff-card h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  line-height: 1.15;
}

/* ARC SECTION - NO RECTANGLES */
.arc-grid {
  display: grid;
  gap: 1.5rem;
}
.arc-stage {
  padding: 2rem 0;
  border-bottom: 2px solid rgba(217, 77, 42, 0.2);
  background: transparent;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
  opacity: 0;
  animation: slideInUp 0.8s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}
.arc-stage:hover {
  border-bottom-color: rgba(217, 77, 42, 0.5);
  transform: translateX(8px);
}
.arc-stage .stage-number {
  margin: 0 0 0.5rem;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.84rem;
  letter-spacing: 0.24em;
  color: var(--mithya-burnt-orange);
  text-transform: uppercase;
}
.arc-stage h3 {
  margin: 0 0 0.8rem;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.arc-stage p {
  margin: 0;
  color: rgba(250, 248, 243, 0.85);
  max-width: 58ch;
  font-size: 1.01rem;
}

/* FREQUENCY STRIPS - NO RECTANGLES */
.frequency-strips {
  display: grid;
  gap: 1.5rem;
}
.frequency-strip {
  padding: 2rem 0;
  border-bottom: 2px solid rgba(217, 77, 42, 0.2);
  background: transparent;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
  opacity: 0;
  animation: slideInUp 0.8s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}
.frequency-strip:hover,
.frequency-strip:focus-within {
  border-bottom-color: rgba(217, 77, 42, 0.5);
  transform: translateX(8px);
}
.frequency-strip__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mithya-burnt-orange);
  margin-bottom: 0.8rem;
}
.frequency-strip h3 {
  margin: 0 0 0.8rem;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 600;
}
.frequency-strip p {
  margin: 0;
  color: rgba(250, 248, 243, 0.85);
  max-width: 64ch;
  font-size: 1.01rem;
}
.frequency-strip__action {
  color: var(--mithya-burnt-orange);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 1rem;
  display: inline-block;
  font-weight: 600;
}

/* MANIFESTO - NO RECTANGLE */
.manifesto-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 3rem;
  align-items: start;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 2px solid rgba(217, 77, 42, 0.2);
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--mithya-white);
  transition: all 0.3s ease;
}
.manifesto-shell:hover {
  border-bottom-color: rgba(217, 77, 42, 0.5);
}
.manifesto-copy h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  will-change: animation;
}
.manifesto-line {
  margin: 0 0 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.3;
  color: var(--mithya-white);
  font-weight: 600;
  will-change: animation;
}
.manifesto-support {
  display: grid;
  gap: 1.2rem;
  color: rgba(250, 248, 243, 0.8);
}
.manifesto-support p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

/* HANDOFF - NO RECTANGLE */
.handoff-card {
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 2px solid rgba(217, 77, 42, 0.2);
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--mithya-white);
  transition: all 0.3s ease;
}
.handoff-card:hover {
  border-bottom-color: rgba(217, 77, 42, 0.5);
}
.handoff-card .eyebrow { color: var(--mithya-text-secondary); }
.handoff-card h2 {
  margin-bottom: 1.2rem;
}
.handoff-card p {
  max-width: 60ch;
  color: rgba(250, 248, 243, 0.8);
  font-size: 1.01rem;
}

footer {
  padding: 2.2rem 0 3rem;
  text-align: center;
  color: var(--mithya-text-secondary);
  font-size: 0.9rem;
}
footer a { text-decoration: none; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.95rem;
}
.footer-links a {
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--mithya-glass-border);
  transition: all 0.2s ease;
}
.footer-links a:hover {
  border-color: rgba(217, 77, 42, 0.6);
  color: var(--mithya-burnt-orange);
}

#dissolve {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#dissolve.is-active {
  opacity: 1;
}
#dissolve::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 1), rgba(20, 9, 6, 0.96));
  transform: scaleY(0.1);
  transform-origin: center bottom;
  transition: transform 0.35s ease;
}
#dissolve.is-active::before {
  transform: scaleY(1);
}

/* ANIMATIONS */
@keyframes glitchTop {
  0% { transform: translateX(0); }
  5% { transform: translateX(-8px); }
  10% { transform: translateX(8px); }
  15% { transform: translateX(-4px); }
  20% { transform: translateX(0); }
  100% { transform: translateX(0); }
}

@keyframes glitchBottom {
  0% { transform: translateX(0); }
  5% { transform: translateX(8px); }
  10% { transform: translateX(-8px); }
  15% { transform: translateX(4px); }
  20% { transform: translateX(0); }
  100% { transform: translateX(0); }
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-12px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* LAYERED ROTATION - Below MITH/YA */
.layered-rotation {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 2rem 0 0;
  opacity: 0;
  animation: fadeInDown 0.8s ease-out 0.4s both;
}

.rotation-layer {
  position: absolute;
  inset: 0;
  border: 2px solid var(--mithya-burnt-orange);
  border-radius: 50%;
  opacity: 0.6;
}

.layer-1 {
  width: 100%;
  height: 100%;
  animation: speakerVibrate1 0.15s ease-in-out infinite !important;
  will-change: transform;
}

.layer-2 {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  opacity: 0.5;
  border-color: rgba(217, 77, 42, 0.7);
  animation: speakerVibrate2 0.18s ease-in-out infinite 0.05s !important;
  will-change: transform;
}

.layer-3 {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  opacity: 0.4;
  border-color: rgba(255, 95, 58, 0.6);
  animation: speakerVibrate3 0.2s ease-in-out infinite 0.1s !important;
  will-change: transform;
}

@keyframes speakerVibrate1 {
  0% { transform: scale(1) translateX(0) translateY(0); }
  10% { transform: scale(1.15) translateX(-4px) translateY(-4px); }
  20% { transform: scale(0.88) translateX(5px) translateY(5px); }
  30% { transform: scale(1.12) translateX(-3px) translateY(3px); }
  40% { transform: scale(0.90) translateX(4px) translateY(-4px); }
  50% { transform: scale(1.13) translateX(-5px) translateY(-3px); }
  60% { transform: scale(0.89) translateX(4px) translateY(4px); }
  70% { transform: scale(1.14) translateX(-4px) translateY(3px); }
  80% { transform: scale(0.91) translateX(3px) translateY(-5px); }
  90% { transform: scale(1.11) translateX(-3px) translateY(4px); }
  100% { transform: scale(1) translateX(0) translateY(0); }
}

@keyframes speakerVibrate2 {
  0% { transform: scale(1) translateX(0) translateY(0); }
  10% { transform: scale(0.85) translateX(4px) translateY(3px); }
  20% { transform: scale(1.18) translateX(-4px) translateY(-3px); }
  30% { transform: scale(0.88) translateX(3px) translateY(4px); }
  40% { transform: scale(1.15) translateX(-5px) translateY(-2px); }
  50% { transform: scale(0.87) translateX(5px) translateY(4px); }
  60% { transform: scale(1.16) translateX(-3px) translateY(-5px); }
  70% { transform: scale(0.86) translateX(4px) translateY(3px); }
  80% { transform: scale(1.14) translateX(-4px) translateY(2px); }
  90% { transform: scale(0.89) translateX(2px) translateY(-4px); }
  100% { transform: scale(1) translateX(0) translateY(0); }
}

@keyframes speakerVibrate3 {
  0% { transform: scale(1) translateX(0) translateY(0); }
  10% { transform: scale(1.17) translateX(-5px) translateY(2px); }
  20% { transform: scale(0.87) translateX(3px) translateY(-4px); }
  30% { transform: scale(1.13) translateX(4px) translateY(4px); }
  40% { transform: scale(0.88) translateX(-4px) translateY(-2px); }
  50% { transform: scale(1.16) translateX(2px) translateY(5px); }
  60% { transform: scale(0.86) translateX(-5px) translateY(-3px); }
  70% { transform: scale(1.15) translateX(4px) translateY(2px); }
  80% { transform: scale(0.89) translateX(-2px) translateY(4px); }
  90% { transform: scale(1.12) translateX(3px) translateY(-3px); }
  100% { transform: scale(1) translateX(0) translateY(0); }
}

/* STOP RUNNING — the original long-travel motion resolves into stillness. */
.floating-element-section {
  --stop-size: clamp(3.35rem, 8.7vw, 8.15rem);
  --stop-row-gap: clamp(0.85rem, 1.8vw, 1.6rem);
  padding: clamp(6rem, 12vw, 11rem) clamp(1rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(100svh, 960px);
  overflow: clip;
  background: #050403;
}

.floating-phrase-shell {
  width: min(100%, 1180px);
  display: grid;
  gap: var(--stop-row-gap);
  justify-items: start;
  align-content: center;
}

.stop-row {
  --row-gap: clamp(0.75rem, 1.2vw, 1.2rem);
  --run-distance: -38vw;
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: baseline;
  column-gap: var(--row-gap);
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  line-height: 0.84;
  opacity: 1;
  transform: none;
}

.stop-row__left,
.stop-row__right,
.stop-row__single {
  display: inline-block;
  color: #f1eadc;
  font-size: var(--stop-size);
}

.stop-row--two { --row-gap: clamp(1.35rem, 2.6vw, 2.8rem); --run-distance: -27vw; }
.stop-row--three { --row-gap: clamp(2.5rem, 5vw, 5.5rem); --run-distance: -17vw; }
.stop-row--four,
.stop-row--five { --row-gap: clamp(3.8rem, 7.4vw, 8rem); --run-distance: -7vw; }
.stop-row--five { --run-distance: -3vw; }
.stop-row--six { --row-gap: 0; }

.stop-row--six .stop-row__single {
  color: var(--mithya-signal-orange);
  font-size: calc(var(--stop-size) * 1.18);
  font-weight: 800;
  line-height: 0.78;
}

.stop-running-armed .stop-row { opacity: 0; }
.stop-running-armed.is-resolved .stop-row { opacity: 1; transform: none; animation: none !important; }
.stop-running-armed.is-resolved .stop-row--six { opacity: 1; transform: none; }
.stop-running-armed.is-resolved .stop-row--six .stop-row__single { color: var(--mithya-signal-orange); }
.stop-running-armed.is-running .stop-row--one { animation: stopDecelerate 0.62s cubic-bezier(.12,.76,.22,1) 0s both; }
.stop-running-armed.is-running .stop-row--two { animation: stopDecelerate 0.76s cubic-bezier(.14,.72,.22,1) 0.28s both; }
.stop-running-armed.is-running .stop-row--three { animation: stopDecelerate 0.9s cubic-bezier(.16,.68,.24,1) 0.66s both; }
.stop-running-armed.is-running .stop-row--four { animation: stopDecelerate 1.02s cubic-bezier(.18,.62,.26,1) 1.12s both; }
.stop-running-armed.is-running .stop-row--five { animation: stopDecelerate 1.12s cubic-bezier(.2,.56,.28,1) 1.65s both; }
.stop-running-armed.is-running .stop-row--six { animation: stopResolve 0.01s step-end 3.22s both; }

@keyframes stopDecelerate {
  0% { opacity: 0; transform: translate3d(var(--run-distance), -0.1em, 0) skewX(-5deg); }
  52% { opacity: 0.88; }
  76% { transform: translate3d(0.13em, 0, 0) skewX(0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) skewX(0); }
}

@keyframes stopResolve {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@media (max-width: 860px) {
  .floating-element-section {
    min-height: auto;
    padding: clamp(5rem, 12vw, 7rem) clamp(1rem, 4vw, 2rem);
  }
}

@media (max-width: 640px) {
  .floating-element-section {
    --stop-size: clamp(2.5rem, 10.4vw, 4rem);
    --stop-row-gap: clamp(0.8rem, 3vw, 1.15rem);
  }
  .floating-phrase-shell {
    width: 100%;
  }
  .stop-row--two { --row-gap: clamp(0.8rem, 3vw, 1.25rem); }
  .stop-row--three { --row-gap: clamp(1.35rem, 5.5vw, 2.25rem); }
  .stop-row--four,
  .stop-row--five { --row-gap: clamp(2rem, 8vw, 3.25rem); }
  .stop-running-armed.is-running .stop-row--one { animation: stopDecelerateMobile 0.46s ease-out 0s both; }
  .stop-running-armed.is-running .stop-row--two { animation: stopDecelerateMobile 0.56s ease-out 0.18s both; }
  .stop-running-armed.is-running .stop-row--three { animation: stopDecelerateMobile 0.66s ease-out 0.36s both; }
  .stop-running-armed.is-running .stop-row--four { animation: stopDecelerateMobile 0.72s ease-out 0.54s both; }
  .stop-running-armed.is-running .stop-row--five { animation: stopDecelerateMobile 0.8s ease-out 0.7s both; }
  .stop-running-armed.is-running .stop-row--six { animation: stopResolve 0.01s step-end 1.62s both; }
}

@keyframes stopDecelerateMobile {
  0% { opacity: 0; transform: translate3d(0, 10px, 0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (max-width: 390px) {
  .floating-element-section { --stop-size: clamp(2.25rem, 10.1vw, 3.15rem); }
}

@media (prefers-reduced-motion: reduce) {
  .stop-running-armed .stop-row,
  .stop-running-armed.is-running .stop-row {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

/* PULSING SIGNAL - Bottom of Page */
.pulsing-signal-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  background: transparent;
  overflow: visible;
  position: relative;
  width: 100%;
}

.pulsing-signal {
  width: 80px;
  height: 80px;
  border: 3px solid var(--mithya-burnt-orange);
  border-radius: 50%;
  background: rgba(217, 77, 42, 0.08);
  box-shadow: 0 0 30px rgba(217, 77, 42, 0.3), inset 0 0 30px rgba(217, 77, 42, 0.1);
  opacity: 0;
  animation: pulse 6.25s ease-in-out infinite forwards !important;
  will-change: transform, opacity, box-shadow;
  position: absolute;
  left: 0;
}

@keyframes pulse {
  0% {
    transform: translateX(calc(-120vw)) scale(0.2) rotateZ(0deg);
    opacity: 0.2;
    box-shadow: 0 0 15px rgba(217, 77, 42, 0.2), inset 0 0 15px rgba(217, 77, 42, 0.05);
  }
  25% {
    transform: translateX(calc(-60vw)) scale(0.8) rotateZ(1080deg);
    opacity: 0.5;
    box-shadow: 0 0 40px rgba(217, 77, 42, 0.4), inset 0 0 40px rgba(217, 77, 42, 0.1);
  }
  50% {
    transform: translateX(0) scale(1.3) rotateZ(2160deg);
    opacity: 1;
    box-shadow: 0 0 60px rgba(217, 77, 42, 0.6), inset 0 0 60px rgba(217, 77, 42, 0.2);
  }
  75% {
    transform: translateX(calc(60vw)) scale(1.8) rotateZ(3240deg);
    opacity: 0.7;
    box-shadow: 0 0 80px rgba(217, 77, 42, 0.5), inset 0 0 80px rgba(217, 77, 42, 0.15);
  }
  100% {
    transform: translateX(calc(120vw)) scale(2.2) rotateZ(4320deg);
    opacity: 0.3;
    box-shadow: 0 0 100px rgba(217, 77, 42, 0.3), inset 0 0 100px rgba(217, 77, 42, 0.08);
  }
}

@supports (animation-timeline: view()) {
  .signal-line-shell {
    animation: lineReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
}

@keyframes lineReveal {
  0% { opacity: 0.5; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes burnAway {
  0% {
    opacity: 1;
    text-shadow: 0 0 0 rgba(217, 77, 42, 0);
    filter: brightness(1) blur(0px);
    transform: translateY(0) rotateZ(0deg) scale(1);
  }
  50% {
    text-shadow:
      0 0 20px rgba(255, 95, 58, 0.8),
      0 0 40px rgba(217, 77, 42, 0.6),
      0 0 60px rgba(255, 95, 58, 0.4);
    filter: brightness(1.3) blur(2px);
  }
  100% {
    opacity: 0;
    text-shadow:
      0 0 80px rgba(255, 95, 58, 1),
      0 0 120px rgba(217, 77, 42, 0.8),
      0 0 160px rgba(255, 95, 58, 0.6);
    filter: brightness(0.3) blur(8px);
    transform: translateY(-40px) rotateZ(2deg) scale(0.95);
  }
}

@media (max-width: 860px) {
  .hero-grid,
  .manifesto-shell {
    grid-template-columns: 1fr;
  }
  .hero-art {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .art-frame img { height: auto; max-height: 460px; }
}

@media (max-width: 640px) {
  .topbar .row { flex-direction: column; align-items: flex-start; }
  .nav { justify-content: flex-start; gap: 0.7rem; }
  .hero { padding-top: 2.8rem; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .hero-copy {
    display: contents;
  }
  .eyebrow { order: 0; }
  .hero-title {
    order: 1;
    display: block;
    font-size: clamp(4rem, 14vw, 7rem);
    line-height: 0.9;
  }
  .title-piece {
    display: block;
    white-space: normal;
  }
  .layered-rotation {
    order: 2;
    width: 96px;
    height: 96px;
    margin: 1.1rem 0 1.4rem;
  }
  .hero-art {
    order: 3;
    width: 100%;
    margin: 0 0 1rem;
  }
  .hero-subtitle { order: 4; }
  .hero-intro { order: 5; }
  .hero-philosophy { order: 6; }
  .hero-actions { order: 7; flex-direction: column; align-items: stretch; }
  .action-link { width: 100%; }
  .signal-line-shell {
    order: 8;
    animation: none !important;
    animation-timeline: auto;
    animation-range: auto;
    opacity: 1;
    transform: none;
  }
  .signal-deck {
    order: 9;
    padding: 1rem;
  }
  .layer-1,
  .layer-2,
  .layer-3 {
    animation: none !important;
    transform: none;
    will-change: auto;
  }
  .signal-line {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  .art-frame {
    padding: 0.8rem;
  }
  .art-frame img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }
  .player-progress { flex-direction: column; align-items: stretch; }
  .player-controls { justify-content: space-between; }
  .volume-row { justify-content: space-between; }
  .frequency-strip__meta { flex-direction: column; align-items: flex-start; }
  .manifesto-shell { grid-template-columns: 1fr; }
  .pulsing-signal-section {
    overflow: hidden;
  }
  .pulsing-signal {
    position: relative;
    left: auto;
    width: min(140px, 38vw);
    height: min(140px, 38vw);
    animation: pulseMobile 3.6s ease-in-out infinite !important;
    will-change: auto;
    transform-origin: center;
  }
}

@keyframes pulseMobile {
  0%, 100% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

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