/* ==============================
   ELVA LAB — Design Tokens
   ============================== */
:root {
  --black:        #0B0A12;
  --black-deep:   #08070D;
  --black-card:   #13111E;
  --black-raised: #1C1929;
  --phone-bg:     #0A0A0C;
  --white:        #F0EDF8;
  --white-dim:    #C4BDD9;
  --muted:        #7A7390;

  --violet:       #A855F7;
  --violet-light: #C792FF;
  --violet-deep:  #6B21A8;
  --orb-hi:       #E9D5FF;
  --violet-dim:   rgba(168, 85, 247, 0.18);
  --violet-glow:  rgba(168, 85, 247, 0.30);

  --vet:          #30C992;
  --vet-dim:      rgba(48, 201, 146, 0.10);
  --vet-border:   rgba(48, 201, 146, 0.22);
  --vet-glow:     rgba(48, 201, 146, 0.14);

  --mark:         #C792FF;
  --mark-dim:     rgba(168, 85, 247, 0.10);
  --mark-border:  rgba(168, 85, 247, 0.30);
  --mark-glow:    rgba(168, 85, 247, 0.22);

  --divider:      rgba(255, 255, 255, 0.07);
  --radius-card:  22px;
  --radius-sm:    10px;
  --max-w:        1120px;
}

/* ==============================
   RESET
   ============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ==============================
   AMBIENT BACKGROUND
   ============================== */
.bg-aura {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(168, 85, 247, 0.16), transparent 70%),
    radial-gradient(45% 40% at 85% 30%, rgba(107, 33, 168, 0.14), transparent 70%),
    radial-gradient(50% 45% at 12% 75%, rgba(168, 85, 247, 0.10), transparent 70%),
    var(--black);
}

/* ==============================
   HEADER
   ============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 10, 18, 0.55);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--divider);
}

.nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.025em;
  color: var(--white);
}

.nav-links { display: flex; gap: 26px; }

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.18s;
}
.nav-links a:hover { color: var(--white); }

/* ==============================
   HERO — living orb
   ============================== */
.hero {
  min-height: calc(100vh - 62px);
  padding: 40px 28px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.orb-stage {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto -28px;
  flex-shrink: 0;
}

.orb-stage > * {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  transform-origin: center;
}

.orb-core {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at 36% 30%, var(--orb-hi), var(--violet) 58%, var(--violet-deep));
  box-shadow: 0 0 70px rgba(168, 85, 247, 0.5), 0 0 140px rgba(168, 85, 247, 0.25);
  animation: breathe 5.5s ease-in-out infinite;
}

.orb-halo {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.34), transparent 68%);
  filter: blur(4px);
  animation: haloPulse 5.5s ease-in-out infinite;
}

.orb-shimmer {
  width: 300px;
  height: 300px;
  background: conic-gradient(from 0deg,
    transparent 0deg,
    rgba(199, 146, 255, 0.22) 60deg,
    transparent 150deg,
    transparent 230deg,
    rgba(168, 85, 247, 0.16) 300deg,
    transparent 360deg);
  -webkit-mask: radial-gradient(circle, transparent 45%, #000 46%);
          mask: radial-gradient(circle, transparent 45%, #000 46%);
  opacity: 0.9;
  animation: spin 14s linear infinite;
}

.orb-ring {
  width: 230px;
  height: 230px;
  border: 1.5px solid rgba(168, 85, 247, 0.45);
  opacity: 0;
  animation: ringPulse 3.6s ease-out infinite;
}
.ring1 { animation-delay: 0s; }
.ring2 { animation-delay: 1.2s; }
.ring3 { animation-delay: 2.4s; }

@keyframes breathe {
  0%, 100% { transform: scale(0.94); filter: brightness(0.9); }
  50%      { transform: scale(1.06); filter: brightness(1.12); }
}
@keyframes haloPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.7; }
  50%      { transform: scale(1.08); opacity: 1; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes ringPulse {
  0%   { opacity: 0;    transform: scale(0.72); }
  35%  { opacity: 0.5; }
  100% { opacity: 0;    transform: scale(1.22); }
}

.hero-copy {
  position: relative;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 14px;
}

.hero-clock {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: clamp(1.375rem, 4vw, 1.875rem);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  font-variant-numeric: tabular-nums;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.75rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--orb-hi), var(--violet-light) 55%, var(--violet));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--violet-light);
}

.hero-sub {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  color: var(--white-dim);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-cta { display: flex; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.scroll-hint:hover { color: var(--white-dim); }
.scroll-arrow {
  width: 1px;
  height: 30px;
  background: linear-gradient(var(--muted), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-arrow::after {
  content: '';
  position: absolute;
  top: -12px; left: 0;
  width: 1px; height: 12px;
  background: var(--violet-light);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { top: -12px; opacity: 0; }
  30%  { opacity: 1; }
  100% { top: 30px; opacity: 0; }
}

/* ==============================
   SECTION HEADINGS
   ============================== */
.section-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet-light);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
}

/* ==============================
   ETHOS
   ============================== */
.ethos {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 28px 40px;
  text-align: center;
}
.ethos .section-title { max-width: 640px; margin: 0 auto 48px; }

.ethos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  text-align: left;
}

.ethos-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--divider);
  border-radius: var(--radius-card);
  padding: 30px 28px 32px;
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(.22,.68,0,1.2), background 0.3s;
}
.ethos-card:hover {
  border-color: var(--mark-border);
  transform: translateY(-4px);
  background: rgba(168, 85, 247, 0.05);
}

.ethos-glyph {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--violet-dim);
  border: 1px solid var(--mark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--violet-light);
}
.ethos-glyph svg { width: 22px; height: 22px; }
.glyph-orb {
  width: 20px; height: 20px; border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, var(--orb-hi), var(--violet) 58%, var(--violet-deep));
  box-shadow: 0 0 14px 2px rgba(168, 85, 247, 0.5);
}

.ethos-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 9px;
}
.ethos-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.72;
}

/* ==============================
   SHOWCASE — phone
   ============================== */
.showcase {
  padding: 60px 28px 90px;
}
.showcase-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  flex-wrap: wrap;
}

/* Phone frame */
.phone {
  width: 268px;
  flex-shrink: 0;
  background: linear-gradient(160deg, #26232f, #14121b);
  border-radius: 48px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8), 0 0 60px -20px var(--violet-glow);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 26px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.phone-screen {
  background: radial-gradient(120% 80% at 30% 10%, #14130f, var(--phone-bg));
  border-radius: 38px;
  padding: 44px 20px 24px;
  height: 540px;
  overflow: hidden;
  position: relative;
}

.pscreen-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
.pscreen-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #fff;
}
.pscreen-date {
  font-size: 0.6875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}
.pscreen-gear {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  flex-shrink: 0;
}
.pscreen-gear::before {
  content: '';
  position: absolute; inset: 0; margin: auto;
  width: 15px; height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

/* mini orb inside phone */
.pscreen-stage {
  position: relative;
  height: 150px;
  margin: 10px 0 4px;
}
.pscreen-stage > * {
  position: absolute; inset: 0; margin: auto;
  border-radius: 50%;
}
.pmini-orb {
  width: 84px; height: 84px;
  background: radial-gradient(circle at 36% 30%, var(--orb-hi), var(--violet) 58%, var(--violet-deep));
  box-shadow: 0 0 44px rgba(168, 85, 247, 0.55);
  animation: breathe 5.5s ease-in-out infinite;
}
.pmini-halo {
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3), transparent 68%);
  animation: haloPulse 5.5s ease-in-out infinite;
}
.pmini-ring {
  width: 120px; height: 120px;
  border: 1.5px solid rgba(168, 85, 247, 0.4);
  opacity: 0;
  animation: ringPulse 3.6s ease-out infinite;
}

.pscreen-hint {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}
.pscreen-clock {
  text-align: center;
  font-weight: 200;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.24);
  font-variant-numeric: tabular-nums;
  margin-bottom: 22px;
}

.pscreen-recent { display: flex; flex-direction: column; gap: 7px; }
.precent-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 3px;
}
.precent-row {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 11px 13px;
}
.precent-time {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--violet);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.precent-body { display: flex; flex-direction: column; min-width: 0; }
.precent-note {
  font-size: 0.75rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.precent-loc {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Showcase copy */
.showcase-copy { max-width: 400px; }
.showcase-copy .section-title { margin-bottom: 24px; }
.showcase-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.showcase-list li {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
.showcase-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, var(--orb-hi), var(--violet) 60%, var(--violet-deep));
  box-shadow: 0 0 10px 1px rgba(168, 85, 247, 0.5);
}
.showcase-list li strong { color: var(--white); font-weight: 600; }

.text-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--violet-light);
  transition: color 0.18s;
}
.text-link:hover { color: var(--white); }

/* ==============================
   App Store badge
   ============================== */
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 22px 10px 18px;
  border-radius: 13px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.20);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.appstore-badge:hover {
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -12px var(--violet-glow);
}
.appstore-logo {
  width: 23px; height: 27px;
  fill: #fff; flex-shrink: 0;
  margin-top: -2px;
}
.appstore-text {
  display: flex; flex-direction: column;
  line-height: 1.12; color: #fff;
}
.appstore-small { font-size: 0.6875rem; font-weight: 400; letter-spacing: 0.005em; }
.appstore-big {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1875rem; font-weight: 700; letter-spacing: -0.015em;
}

/* ==============================
   STUDIO LANDING (root index)
   ============================== */
.studio-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 104px 28px 52px;
  text-align: center;
}
.studio-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.03;
  color: var(--white);
  margin: 0 auto 22px;
}
.studio-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--orb-hi), var(--violet-light) 55%, var(--violet));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--violet-light);
}
.studio-sub {
  font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
  color: var(--white-dim);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

.apps-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 8px 28px 100px;
}
.apps-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 26px;
}
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 400px));
  gap: 20px;
  justify-content: center;
}

/* App card (clickable → app page) */
.app-card {
  position: relative;
  background: var(--black-card);
  border: 1px solid var(--divider);
  border-radius: var(--radius-card);
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.2), border-color 0.3s, box-shadow 0.3s;
}
.app-card:hover {
  transform: translateY(-5px);
  border-color: var(--mark-border);
  box-shadow: 0 24px 60px -24px var(--violet-glow);
}
.app-card-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius-card);
}
.app-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}
.app-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  box-shadow: 0 10px 30px -8px var(--violet-glow);
}
.app-card-open {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s, transform 0.25s, color 0.25s;
}
.app-card:hover .app-card-open {
  opacity: 1;
  transform: translateX(0);
  color: var(--violet-light);
}
.app-platform {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.app-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.022em;
  color: var(--white);
  margin-bottom: 10px;
}
.app-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 26px;
  flex: 1;
}
.app-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.app-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid var(--divider);
}
.app-legal a {
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.18s;
}
.app-legal a:hover { color: var(--white); }
.app-legal-sep { color: var(--divider); }

/* App page — back link + hero legal links */
.app-back {
  display: block;
  max-width: var(--max-w);
  width: 100%;
  margin: 18px auto -12px;
  padding: 0 28px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.18s;
}
.app-back:hover { color: var(--white); }

.hero-legal {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
}
.hero-legal a { color: var(--muted); transition: color 0.18s; }
.hero-legal a:hover { color: var(--white-dim); }
.hero-legal-sep { color: var(--divider); }

/* ==============================
   FOOTER
   ============================== */
.site-footer {
  border-top: 1px solid var(--divider);
  padding: 56px 28px 32px;
  background: rgba(8, 7, 13, 0.5);
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}
.footer-brand .logo { display: block; margin-bottom: 8px; }
.footer-tagline { font-size: 0.875rem; color: var(--muted); }
.footer-devlink {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--violet-light);
  transition: color 0.18s;
}
.footer-devlink:hover { color: var(--white); }
.footer-col-title {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 12px;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.875rem; color: var(--muted); transition: color 0.18s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }

/* ==============================
   LEGAL PAGES
   ============================== */
.legal-wrap { max-width: 680px; margin: 0 auto; padding: 52px 28px 100px; }
.legal-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem; color: var(--muted); margin-bottom: 44px;
  transition: color 0.18s;
}
.legal-back:hover { color: var(--white); }

.legal-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 13px; border-radius: 100px;
  margin-bottom: 18px;
}
.legal-badge.vet  { background: var(--vet-dim);  color: var(--vet);  border: 1px solid var(--vet-border); }
.legal-badge.mark { background: var(--mark-dim); color: var(--violet-light); border: 1px solid var(--mark-border); }

.badge-orb {
  width: 11px; height: 11px; border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, var(--orb-hi), var(--violet) 60%, var(--violet-deep));
  display: inline-block; flex-shrink: 0;
}

.legal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 14px;
}
.legal-updated {
  font-size: 0.875rem; color: var(--muted);
  padding-bottom: 40px; margin-bottom: 40px;
  border-bottom: 1px solid var(--divider);
}

.legal-body h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem; font-weight: 700; color: var(--white);
  margin-top: 38px; margin-bottom: 10px;
}
.legal-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem; font-weight: 700; color: var(--white-dim);
  margin-top: 24px; margin-bottom: 8px;
}
.legal-body p {
  font-size: 0.9375rem; color: var(--white-dim);
  line-height: 1.8; margin-bottom: 10px;
}
.legal-body ul { padding-left: 18px; list-style: disc; margin-bottom: 10px; }
.legal-body ul li {
  font-size: 0.9375rem; color: var(--white-dim);
  line-height: 1.8; margin-bottom: 4px;
}
.legal-body a { color: var(--violet-light); transition: color 0.18s; }
.legal-body a:hover { color: var(--white); }

.legal-contact-box {
  margin-top: 44px; padding: 22px 24px;
  background: var(--black-card); border-radius: var(--radius-sm);
  border: 1px solid var(--divider);
}
.legal-contact-box p { font-size: 0.9rem; color: var(--muted); margin: 0; }
.legal-contact-box a { color: var(--violet-light); transition: color 0.18s; }
.legal-contact-box a:hover { color: var(--white); }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 820px) {
  .showcase-inner { gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .hero { padding: 24px 20px 56px; min-height: calc(100vh - 62px); }
  .orb-stage { width: 240px; height: 240px; margin-bottom: -20px; }
  .orb-core { width: 120px; height: 120px; }
  .orb-halo { width: 210px; height: 210px; }
  .orb-shimmer { width: 240px; height: 240px; }
  .orb-ring { width: 190px; height: 190px; }
  .ethos { padding: 24px 20px; }
  .ethos-grid { grid-template-columns: 1fr; }
  .showcase { padding: 40px 20px 64px; }
  .showcase-copy { text-align: center; }
  .showcase-list { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .site-footer { padding: 40px 20px 24px; }
  .nav { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .legal-wrap { padding: 36px 20px 72px; }
  .studio-hero { padding: 72px 20px 40px; }
  .apps-section { padding: 0 20px 72px; }
  .app-card { padding: 26px 22px 24px; }
  .app-back { padding: 0 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .orb-core, .orb-halo, .orb-shimmer, .orb-ring,
  .pmini-orb, .pmini-halo, .pmini-ring,
  .scroll-arrow::after {
    animation: none;
  }
  .orb-core, .pmini-orb { transform: none; }
  html { scroll-behavior: auto; }
}
