/* ============================================================
   THE JUNO ROOM — styles.css  (v2 — dramatic redesign)
   ============================================================ */

/* ---- CUSTOM PROPERTIES ---------------------------------------- */
:root {
  /* Core palette */
  --bg:          #04060f;
  --bg-2:        #070a14;
  --bg-3:        #0a0d18;
  --surface:     #0d1020;
  --surface-2:   #111428;
  --surface-3:   #151930;

  /* Borders */
  --border:      rgba(255,255,255,0.06);
  --border-blue: rgba(88,160,255,0.25);
  --border-glow: rgba(88,160,255,0.55);

  /* Text */
  --text:        #f0ede8;
  --text-2:      #8a8898;
  --text-3:      #4e4c5c;

  /* Accents */
  --blue:        #4d8fff;
  --blue-bright: #78b0ff;
  --blue-dim:    rgba(77,143,255,0.15);
  --teal:        #00d4b4;
  --teal-dim:    rgba(0,212,180,0.12);
  --amber:       #f5a623;
  --amber-dim:   rgba(245,166,35,0.12);
  --purple:      #9b72ff;
  --purple-dim:  rgba(155,114,255,0.12);

  /* Glows */
  --glow-blue:   0 0 30px rgba(77,143,255,0.35), 0 0 80px rgba(77,143,255,0.15);
  --glow-teal:   0 0 30px rgba(0,212,180,0.3),   0 0 70px rgba(0,212,180,0.1);
  --glow-amber:  0 0 30px rgba(245,166,35,0.3),  0 0 70px rgba(245,166,35,0.1);
  --glow-purple: 0 0 30px rgba(155,114,255,0.3), 0 0 70px rgba(155,114,255,0.1);
  --glow-white:  0 0 20px rgba(255,255,255,0.15);

  /* Fonts */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --mono:  'Space Mono', monospace;

  /* Layout */
  --max-w:  1180px;
  --pad:    2rem;
  --nav-h:  68px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- RESET ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

/* ---- TYPE ----------------------------------------------------- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 300; line-height: 1.1; }

.label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: block;
  margin-bottom: 1.1rem;
}

.heading {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--text);
  margin-bottom: 1.1rem;
  font-weight: 300;
}

.intro {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.82;
}

.section-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: block;
  margin-bottom: 1.1rem;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
  padding-bottom: 0.1em;
  background: linear-gradient(135deg, #ffffff 0%, #c8dcff 40%, #7baeff 70%, #a0f0e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(77,143,255,0.18));
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 620px;
  line-height: 1.82;
  margin-bottom: 2.5rem;
}

.body-text {
  color: var(--text-2);
  line-height: 1.82;
  margin-bottom: 1.2rem;
}

/* ---- LAYOUT --------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section { padding-block: 7rem; }
.section-hd { margin-bottom: 4.5rem; }

/* ---- BUTTONS -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.1rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 280ms var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 0 0 rgba(77,143,255,0);
}
.btn-primary:hover {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  box-shadow: var(--glow-blue);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ---- NAV ----------------------------------------------------- */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 400ms var(--ease), border-color 400ms var(--ease);
}
.site-header.scrolled {
  background: rgba(4, 6, 15, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav-container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: color 180ms;
  flex-shrink: 0;
}
.nav-logo:hover { color: #fff; }
.nav-logo-img {
  display: inline-block;
  vertical-align: middle;
  height: 0.85em;
  width: auto;
  margin-bottom: 0.1em;
  filter: drop-shadow(0 0 28px rgba(140,190,255,0.55))
          drop-shadow(0 0 8px rgba(200,225,255,0.3));
}
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-link {
  font-size: 0.86rem;
  color: var(--text-2);
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: color 180ms, background 180ms;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-cta {
  background: var(--blue-dim);
  border: 1px solid var(--border-blue);
  color: var(--blue-bright);
  margin-left: 0.6rem;
}
.nav-cta:hover { background: rgba(77,143,255,0.25); border-color: var(--blue); color: #fff; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  border-radius: 6px;
  transition: background 180ms;
}
.nav-toggle:hover { background: rgba(255,255,255,0.06); }
.hamburger-bar {
  display: block;
  height: 1.5px;
  background: var(--text-2);
  border-radius: 2px;
  transition: transform 320ms var(--ease), opacity 320ms, background 180ms;
  transform-origin: center;
}
.hamburger-bar:nth-child(1) { width: 22px; }
.hamburger-bar:nth-child(2) { width: 15px; }
.hamburger-bar:nth-child(3) { width: 22px; }
.nav-toggle.open .hamburger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--text); width: 22px; }
.nav-toggle.open .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .hamburger-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--text); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

/* Animated gradient orbs — the big visual impact */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
}
.hero::before {
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(55, 100, 220, 0.28) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: orb-a 18s ease-in-out infinite;
}
.hero::after {
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(120, 60, 220, 0.2) 0%, transparent 70%);
  bottom: 50px; right: -80px;
  animation: orb-b 22s ease-in-out infinite;
}
@keyframes orb-a {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(120px, 60px) scale(1.1); }
  66%      { transform: translate(-40px, 100px) scale(0.95); }
}
@keyframes orb-b {
  0%,100% { transform: translate(0,0) scale(1); }
  40%      { transform: translate(-100px,-80px) scale(1.15); }
  70%      { transform: translate(60px, 40px) scale(0.9); }
}

/* Third orb — teal bottom center */
.hero-orb-3 {
  position: absolute;
  width: 500px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 200, 180, 0.14) 0%, transparent 70%);
  filter: blur(80px);
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  animation: orb-c 16s ease-in-out infinite;
}
@keyframes orb-c {
  0%,100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.2); }
}

/* Canvas */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Synth keys silhouette */
.hero-keys-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
  opacity: 0.07;
}
.hero-keys {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 110%; height: 100%;
  background: repeating-linear-gradient(
    90deg,
    rgba(180,210,255,0.95) 0px, rgba(180,210,255,0.95) 26px,
    rgba(10,15,35,0.3) 26px, rgba(10,15,35,0.3) 40px
  );
  mask-image: linear-gradient(to top, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 100%);
}

/* Noise texture overlay */
.hero::before { z-index: 0; }
.hero::after  { z-index: 0; }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) var(--pad) 7rem;
  max-width: 860px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 2.5rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal), 0 0 20px rgba(0,212,180,0.4);
  animation: dot-pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dot-pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.3; transform:scale(0.6); } }

/* MAIN HEADLINE */
.hero-headline {
  font-size: clamp(3.8rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #c8dcff 40%, #7baeff 70%, #a0f0e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(77,143,255,0.2));
}

/* Juno logo image inline in the headline — used as-is, no filters */
.juno-logo-img {
  display: inline-block;
  vertical-align: middle;
  height: 0.85em;
  width: auto;
  margin-bottom: 0.1em;
  filter: drop-shadow(0 0 28px rgba(140, 190, 255, 0.55))
          drop-shadow(0 0 8px rgba(200, 225, 255, 0.3));
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--text-2);
  line-height: 1.8;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 3rem;
  font-weight: 300;
}

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

.hero-models {
  display: flex; align-items: center; justify-content: center; gap: 0.85rem;
}
.model-pill {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-3);
  letter-spacing: 0.1em;
}
.model-sep { color: var(--text-3); opacity: 0.3; }

.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  pointer-events: none;
}
.scroll-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  opacity: 0.5;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(77,143,255,0.6), transparent);
  animation: scroll-drip 2s ease-in-out infinite;
}
@keyframes scroll-drip {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 1; }
  49%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ================================================================
   ABOUT
   ================================================================ */
.about { background: var(--bg-2); position: relative; }
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 100% 50%, rgba(77,143,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}

/* Visual frame */
.about-frame { position: relative; }

.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border-blue);
  object-fit: cover;
  display: block;
  box-shadow: 0 0 40px rgba(77,143,255,0.1);
}

.img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-blue);
  background: var(--surface);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.5rem;
  box-shadow: inset 0 0 60px rgba(77,143,255,0.04), 0 0 40px rgba(77,143,255,0.08);
}

/* Scanning line animation */
.img-placeholder::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77,143,255,0.4), transparent);
  animation: scan 4s ease-in-out infinite;
}
@keyframes scan {
  0%   { top: 0%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.placeholder-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(77,143,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.placeholder-lines {
  display: flex; flex-direction: column; gap: 10px;
  width: 55%; opacity: 0.15;
}
.placeholder-lines span {
  display: block; height: 1px;
  background: var(--blue-bright); border-radius: 1px;
}
.placeholder-lines span:nth-child(1) { width:100%; }
.placeholder-lines span:nth-child(2) { width:70%; }
.placeholder-lines span:nth-child(3) { width:88%; }
.placeholder-lines span:nth-child(4) { width:55%; }
.placeholder-lines span:nth-child(5) { width:76%; }

.placeholder-note {
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--text-3);
  text-align: center;
  line-height: 1.65;
  position: relative; z-index: 1;
}
.placeholder-note small { display: block; opacity: 0.5; margin-top: 0.3rem; }

.frame-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 75%; height: 75%;
  border: 1px solid var(--border-blue);
  border-radius: 16px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}

/* Pillars */
.pillar-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.pillar { display: flex; align-items: flex-start; gap: 1rem; }
.pillar-icon {
  color: var(--blue-bright);
  font-size: 0.85rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px var(--blue));
}
.pillar strong { display: block; font-size: 0.9rem; font-weight: 500; color: var(--text); margin-bottom: 0.15rem; }
.pillar span { font-size: 0.82rem; color: var(--text-3); }

/* ================================================================
   CALLOUT STRIP
   ================================================================ */
.callout-strip {
  background: var(--bg);
  padding: 5rem var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.callout-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(77,143,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.callout-strip__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
  position: relative;
}
.callout-strip__pre {
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-bright);
  opacity: 0.75;
}
.callout-strip__main {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  background: linear-gradient(135deg, #ffffff 0%, #c8dcff 45%, #7baeff 75%, #a0f0e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================================
   THE JUNOS
   ================================================================ */
.junos {
  background: var(--bg);
  position: relative;
}
.junos::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 15% 50%, rgba(77,143,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 50%, rgba(155,114,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.junos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  position: relative;
}

/* Card base */
.juno-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 320ms var(--ease), border-color 320ms, box-shadow 320ms;
  position: relative;
}
.juno-card:hover {
  transform: translateY(-6px);
}

/* Juno-6 — amber/warm */
.juno-card:nth-child(1):hover {
  border-color: rgba(245,166,35,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--glow-amber);
}
/* Juno-60 — blue/electric (featured) */
.juno-card--featured {
  border-color: var(--border-blue);
  box-shadow: 0 0 60px rgba(77,143,255,0.1);
}
.juno-card--featured:hover {
  border-color: rgba(77,143,255,0.6);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-blue);
}
/* Juno-106 — teal/cool */
.juno-card:nth-child(3):hover {
  border-color: rgba(0,212,180,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--glow-teal);
}

/* Top accent line per card */
.juno-card:nth-child(1)::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transition: opacity 320ms;
  z-index: 5;
}
.juno-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 1;
  z-index: 5;
}
.juno-card:nth-child(3)::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity 320ms;
  z-index: 5;
}
.juno-card:nth-child(1):hover::before,
.juno-card:nth-child(3):hover::before { opacity: 1; }

/* Visual area */
.juno-visual { position: relative; aspect-ratio: 5/4; overflow: hidden; }

.juno-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms cubic-bezier(0.22,1,0.36,1);
}
.juno-card:hover .juno-photo {
  transform: scale(1.04);
}

.juno-img {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.2rem;
}
.juno-img--6 {
  background: linear-gradient(155deg, #0f1525 0%, #0a1020 50%, #141c30 100%);
}
.juno-img--60 {
  background: linear-gradient(155deg, #0a1020 0%, #080e1e 50%, #0c1428 100%);
}
.juno-img--106 {
  background: linear-gradient(155deg, #0a1420 0%, #081218 50%, #0e1c28 100%);
}

/* Glows — much more dramatic */
.juno-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  border-radius: 50%;
  filter: blur(35px);
  pointer-events: none;
  animation: breathe 4s ease-in-out infinite;
}
.juno-glow--6 {
  width: 220px; height: 140px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.45) 0%, transparent 65%);
}
.juno-glow--60 {
  width: 240px; height: 150px;
  background: radial-gradient(ellipse, rgba(77,143,255,0.5) 0%, transparent 65%);
  animation-delay: -1.5s;
}
.juno-glow--106 {
  width: 230px; height: 140px;
  background: radial-gradient(ellipse, rgba(0,212,180,0.42) 0%, transparent 65%);
  animation-delay: -3s;
}
@keyframes breathe {
  0%,100% { opacity:0.7; transform: translate(-50%,-55%) scale(1); }
  50%      { opacity:1;   transform: translate(-50%,-55%) scale(1.18); }
}

.juno-num-bg {
  font-family: var(--serif);
  font-size: 5.5rem; font-weight: 300;
  color: rgba(255,255,255,0.035);
  letter-spacing: -0.04em; line-height: 1;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  user-select: none; pointer-events: none;
}
.juno-img .placeholder-note {
  font-family: var(--mono); font-size: 0.6rem;
  color: rgba(255,255,255,0.1);
  text-align: center; position: relative; z-index: 2;
}
.juno-year {
  position: absolute; top: 1rem; left: 1rem;
  z-index: 3;
  font-family: var(--mono); font-size: 0.64rem;
  color: #fff; letter-spacing: 0.12em;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.28rem 0.6rem; border-radius: 4px;
}
.featured-pill {
  position: absolute; top: 1rem; right: 1rem;
  z-index: 3;
  font-family: var(--mono); font-size: 0.6rem;
  color: var(--blue-bright); letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(77,143,255,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.28rem 0.65rem; border-radius: 100px;
}

/* Card body */
.juno-body { padding: 1.7rem; }
.juno-name {
  font-size: 2rem; font-weight: 400; color: var(--text);
  margin-bottom: 0.2rem; letter-spacing: -0.01em;
}
.juno-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: 0.9rem; margin-bottom: 1.1rem;
}
/* Per-instrument tagline color */
.juno-card:nth-child(1) .juno-tagline { color: var(--amber); }
.juno-card--featured .juno-tagline     { color: var(--blue-bright); }
.juno-card:nth-child(3) .juno-tagline  { color: var(--teal); }

.juno-desc { font-size: 0.9rem; color: var(--text-2); line-height: 1.78; margin-bottom: 1.1rem; }

.juno-why {
  font-size: 0.85rem; color: var(--text-2); line-height: 1.72;
  padding: 1rem 1rem 1rem 1.1rem;
  background: rgba(255,255,255,0.025);
  border-radius: 0 6px 6px 0;
  margin-bottom: 1.1rem;
}
.juno-card:nth-child(1) .juno-why { border-left: 2px solid var(--amber); }
.juno-card--featured      .juno-why { border-left: 2px solid var(--blue); }
.juno-card:nth-child(3) .juno-why { border-left: 2px solid var(--teal); }

.juno-why-label {
  display: block; font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 0.35rem;
}
.juno-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.tag {
  font-family: var(--mono); font-size: 0.66rem;
  color: var(--text-3); border: 1px solid var(--border);
  padding: 0.25rem 0.65rem; border-radius: 100px;
  letter-spacing: 0.04em;
  transition: all 200ms;
}
.juno-card:nth-child(1):hover .tag { border-color: rgba(245,166,35,0.25); color: rgba(245,166,35,0.7); }
.juno-card--featured:hover    .tag { border-color: rgba(77,143,255,0.3);  color: rgba(120,176,255,0.8); }
.juno-card:nth-child(3):hover .tag { border-color: rgba(0,212,180,0.25); color: rgba(0,212,180,0.7); }

/* ================================================================
   AUDIO DEMOS
   ================================================================ */
.audio-section {
  background: var(--bg-2);
  padding-block: 5rem;
  border-top: 1px solid var(--border);
}
.demos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.demo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  display: flex; align-items: center; gap: 1.2rem;
  transition: border-color 280ms, background 280ms;
  cursor: default;
}
.demo-card:hover { border-color: var(--border-blue); background: var(--surface-2); }
.demo-play {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--text-2); flex-shrink: 0;
  transition: all 200ms;
}
.demo-card:hover .demo-play {
  border-color: var(--blue); color: var(--blue-bright);
  box-shadow: 0 0 20px rgba(77,143,255,0.25);
}
.demo-info { display: flex; flex-direction: column; gap: 0.2rem; flex: 1; min-width: 0; }
.demo-model { font-family: var(--serif); font-size: 1.1rem; color: var(--text); font-weight: 400; }
.demo-desc  { font-family: var(--mono); font-size: 0.68rem; color: var(--text-3); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.demo-status { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); opacity: 0.4; white-space: nowrap; }

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.process { background: var(--bg); }

.steps-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
}
.steps-list::before {
  content: '';
  position: absolute;
  top: 2.4rem;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(77,143,255,0.3) 15%,
    rgba(77,143,255,0.3) 85%, transparent);
  pointer-events: none; z-index: 0;
}

.step {
  position: relative; z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: border-color 280ms, box-shadow 280ms, transform 280ms var(--ease);
}
.step:hover {
  border-color: var(--border-blue);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 30px rgba(77,143,255,0.08);
  transform: translateY(-3px);
}
.step-num {
  font-family: var(--mono); font-size: 0.65rem;
  color: var(--blue-bright); letter-spacing: 0.12em;
  margin-bottom: 1rem; opacity: 0.8;
}
.step-title {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  color: var(--text); margin-bottom: 0.7rem;
}
.step-desc { font-size: 0.875rem; color: var(--text-2); line-height: 1.78; }

/* Deliverables */
.deliverables {
  background: var(--surface);
  border: 1px solid var(--border-blue);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 3rem;
  align-items: start;
  box-shadow: 0 0 40px rgba(77,143,255,0.06);
}
.deliverables-label {
  font-family: var(--mono); font-size: 0.64rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-bright); white-space: nowrap; padding-top: 0.25rem;
}
.deliverables-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem 2rem;
}
.deliverables-list li {
  font-size: 0.875rem; color: var(--text-2);
  padding-left: 1.2rem; position: relative;
}
.deliverables-list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--blue); font-size: 0.72rem;
}

/* ================================================================
   HISTORY
   ================================================================ */
.history {
  background: var(--bg-2);
  position: relative; overflow: hidden;
}
.history-atmosphere {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 100% 50% at 50% 0%,   rgba(30,55,100,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 100%,  rgba(100,50,200,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 60%,   rgba(0,180,160,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.history-prose { max-width: 680px; margin-bottom: 4.5rem; }
.history-prose p { font-size: 1.02rem; color: var(--text-2); line-height: 1.88; margin-bottom: 1.25rem; }

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2.8rem;
  margin-bottom: 5rem;
  max-width: 640px;
}
.timeline-track {
  position: absolute; top: 0.4rem; bottom: 0.4rem; left: 0; width: 1px;
  background: linear-gradient(to bottom,
    transparent, rgba(77,143,255,0.4) 8%, rgba(77,143,255,0.4) 92%, transparent);
}
.timeline-item { position: relative; padding-bottom: 2.4rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -2.8rem; top: 0.3rem;
  width: 9px; height: 9px; border-radius: 50%;
  border: 1.5px solid var(--blue); background: var(--bg-2);
  translate: -4px 0;
  box-shadow: 0 0 8px rgba(77,143,255,0.4);
}
.timeline-dot--now {
  border-color: var(--teal); background: rgba(0,212,180,0.2);
  box-shadow: 0 0 12px rgba(0,212,180,0.5);
}
.timeline-year {
  display: block; font-family: var(--mono); font-size: 0.7rem;
  color: var(--blue-bright); letter-spacing: 0.12em; margin-bottom: 0.45rem;
}
.timeline-year--now { color: var(--teal); }
.timeline-content strong { display: block; font-size: 0.96rem; font-weight: 500; color: var(--text); margin-bottom: 0.35rem; }
.timeline-content p { font-size: 0.875rem; color: var(--text-2); line-height: 1.72; }

/* Legacy */
.legacy-preface { font-size: 1rem; color: var(--text-2); line-height: 1.85; max-width: 640px; margin-bottom: 2rem; }
.legacy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.legacy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 1.6rem;
  transition: border-color 280ms, box-shadow 280ms;
}
.legacy-card:hover {
  border-color: var(--border-blue);
  box-shadow: 0 0 30px rgba(77,143,255,0.07);
}
.legacy-genre {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 400;
  color: var(--text); margin-bottom: 0.75rem;
}
.legacy-card p { font-size: 0.86rem; color: var(--text-2); line-height: 1.76; }
.legal-note {
  font-family: var(--mono); font-size: 0.7rem; color: var(--text-3);
  line-height: 1.65; padding-top: 1.25rem;
  border-top: 1px solid var(--border); max-width: 700px;
}

/* ================================================================
   REQUEST
   ================================================================ */
.request {
  background: var(--bg);
  position: relative;
}
.request::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(155,114,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.request-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  position: relative;
}

.what-to-send {
  margin-top: 2rem;
  padding: 1.5rem 1.6rem;
  background: rgba(77,143,255,0.04);
  border: 1px solid rgba(77,143,255,0.14);
  border-radius: 10px;
}
.send-label {
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-bright); margin-bottom: 1rem; display: block;
}
.send-list { display: flex; flex-direction: column; gap: 0.55rem; }
.send-list li {
  font-size: 0.875rem; color: var(--text-2);
  padding-left: 1.3rem; position: relative;
}
.send-list li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-size: 0.8rem; }

/* Form */
.request-form {
  background: var(--surface);
  border: 1px solid var(--border-blue);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  box-shadow: 0 0 60px rgba(77,143,255,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.48rem; }
.form-group label {
  font-size: 0.8rem; font-weight: 500; color: var(--text-2); letter-spacing: 0.01em;
}
.req { color: var(--blue-bright); }

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  padding: 0.78rem 1rem;
  font-size: 0.9rem;
  transition: border-color 180ms, box-shadow 180ms;
  -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); opacity: 0.9; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(77,143,255,0.15);
}
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: rgba(240,80,80,0.5);
  box-shadow: 0 0 0 3px rgba(240,80,80,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpolyline points='1,1 6,6 11,1' fill='none' stroke='%234e4c5c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem; cursor: pointer;
}
.form-group select option { background: var(--surface-2); color: var(--text); }
.btn-arrow { font-size: 1rem; }
.form-footnote { font-family: var(--mono); font-size: 0.7rem; color: var(--text-3); text-align: center; }

/* Success */
.form-success {
  background: var(--surface);
  border: 1px solid var(--border-blue);
  border-radius: 20px; padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 0 60px rgba(77,143,255,0.08);
}
.success-mark {
  display: block; font-size: 2.2rem; color: var(--blue-bright);
  filter: drop-shadow(0 0 16px var(--blue));
  margin-bottom: 1.25rem;
}
.form-success h3 { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; margin-bottom: 0.75rem; }
.form-success p  { font-size: 0.92rem; color: var(--text-2); line-height: 1.75; max-width: 380px; margin-inline: auto; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding-top: 5rem; padding-bottom: 3rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem; margin-bottom: 4rem;
}
.footer-logo { margin-bottom: 1rem; }
.footer-logo .nav-logo-img {
  filter: drop-shadow(0 0 28px rgba(140,190,255,0.55))
          drop-shadow(0 0 8px rgba(200,225,255,0.3))
          brightness(1.25);
}
.footer-tagline { font-size: 0.875rem; color: var(--text-3); line-height: 1.72; margin-bottom: 0.75rem; }
.footer-legal { font-family: var(--mono); font-size: 0.66rem; color: var(--text-3); opacity: 0.4; line-height: 1.65; }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-nav a { font-size: 0.875rem; color: var(--text-3); transition: color 180ms; }
.footer-nav a:hover { color: var(--text); }
.footer-contact-label { font-family: var(--mono); font-size: 0.63rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); margin-bottom: 0.75rem; display: block; }
.footer-socials { display: flex; gap: 1rem; margin-top: 1.2rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-3);
  font-size: 0.82rem;
  transition: color 200ms;
}
.social-link:hover { color: var(--blue-bright); }
.social-link svg { flex-shrink: 0; }
.footer-contact a { font-size: 0.875rem; color: var(--text-2); transition: color 180ms; }
.footer-contact a:hover { color: var(--blue-bright); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--border); }
.footer-bottom p { font-family: var(--mono); font-size: 0.7rem; color: var(--text-3); }
.footer-built { opacity: 0.3; }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal-up    { transform: translateY(30px); }
.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translate(0); }
[data-delay="100"].visible { transition-delay: 100ms; }
[data-delay="200"].visible { transition-delay: 200ms; }
[data-delay="300"].visible { transition-delay: 300ms; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  :root { --pad: 1.5rem; }
  .deliverables { grid-template-columns: 1fr; }
  .deliverables-list { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .junos-grid { grid-template-columns: 1fr 1fr; max-width: 700px; margin-inline: auto; }
  .juno-card:nth-child(3) { grid-column: 1 / -1; max-width: 340px; margin-inline: auto; }
  .steps-list { grid-template-columns: 1fr 1fr; }
  .steps-list::before { display: none; }
  .legacy-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 780px) {
  .section { padding-block: 5rem; }
  .about-grid     { grid-template-columns: 1fr; }
  .about-body     { padding-left: 0; }
  .about-frame    { max-width: 380px; margin-inline: auto; }
  .junos-grid     { grid-template-columns: 1fr; max-width: 440px; }
  .juno-card:nth-child(3) { grid-column: auto; max-width: none; }
  .demos-grid     { grid-template-columns: 1fr; }
  .steps-list     { grid-template-columns: 1fr; }
  .legacy-grid    { grid-template-columns: 1fr; }
  .request-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand   { grid-column: auto; }
}
@media (max-width: 640px) {
  :root { --pad: 1.25rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(4,6,15,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch;
    padding: 0.75rem 0 1rem; gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 0.875rem var(--pad); border-radius: 0; }
  .nav-cta  { margin: 0.5rem var(--pad) 0; border-radius: 6px; text-align: center; }
  .hero-headline { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-actions  { flex-direction: column; align-items: center; }
  .scroll-hint   { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .request-form  { padding: 1.75rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 380px) { .hero-headline { font-size: 2.6rem; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}
