/* =========================================================================
   Lvl8 Studio — atmospheric purple, glass + glow
   Detroit, MI · 2023
   ========================================================================= */

:root {
  /* Palette --------------------------------------------------------------- */
  --bg:        #07060E;     /* near-black with violet undertone */
  --bg-1:      #0D0B17;     /* lifted surface                    */
  --bg-2:      #14101F;     /* card surface                      */
  --bg-3:      #1B162A;     /* hover surface                     */
  --ink:       #F1ECFA;     /* primary text (warm white)         */
  --ink-2:     #A89FBE;     /* secondary text (lavender gray)    */
  --ink-3:     #6E6588;     /* tertiary / labels                 */
  --rule:      #221C36;     /* hairline                          */
  --rule-2:    #2F2747;     /* stronger hairline                 */
  --purple:    #7C3AED;     /* deep electric purple              */
  --purple-2:  #6D28D9;     /* deeper purple                     */
  --purple-3:  #4C1D95;     /* deep royal (rest state)           */
  --magenta:   #A21CAF;     /* deep magenta-wine                 */
  --aqua:      #4ECEFF;     /* tiny secondary accent (sparingly) */

  /* Type ------------------------------------------------------------------ */
  --font-display: "Funnel Display", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body:    "Plus Jakarta Sans", -apple-system, system-ui, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, monospace;

  /* Fluid scale ----------------------------------------------------------- */
  --t-micro: clamp(0.65rem, 0.62rem + 0.1vw, 0.72rem);
  --t-mono:  clamp(0.72rem, 0.7rem + 0.15vw, 0.82rem);
  --t-body:  clamp(0.96rem, 0.92rem + 0.2vw, 1.06rem);
  --t-lede:  clamp(1.08rem, 0.96rem + 0.5vw, 1.32rem);
  --t-h2:    clamp(2rem, 1.4rem + 3vw, 4.25rem);
  --t-h1:    clamp(2.8rem, 1.5rem + 6.5vw, 8.5rem);

  /* Spacing --------------------------------------------------------------- */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2.25rem;
  --sp-5: 3.5rem;
  --sp-6: 5.5rem;
  --sp-7: 8rem;

  /* Easing ---------------------------------------------------------------- */
  --ease-out:  cubic-bezier(0.18, 0.84, 0.28, 1);
  --ease-soft: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-snap: cubic-bezier(0.55, 0, 0.1, 1);
}

/* Reset ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
section[id] { scroll-margin-top: 80px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--purple); color: var(--bg); }

/* =========================================================================
   Atmospheric backgrounds — gradient mesh of slow-floating orbs
   ========================================================================= */
.bg-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  will-change: transform;
}

.bg-orb--1 {
  width: 60vw;
  height: 60vw;
  top: -20vw;
  left: -15vw;
  background: radial-gradient(circle, #4C1D95 0%, transparent 65%);
  opacity: 0.45;
  animation: drift1 28s var(--ease-soft) infinite alternate;
}

.bg-orb--2 {
  width: 50vw;
  height: 50vw;
  top: 20vh;
  right: -20vw;
  background: radial-gradient(circle, #6B1F8C 0%, transparent 65%);
  opacity: 0.26;
  animation: drift2 34s var(--ease-soft) infinite alternate;
}

.bg-orb--3 {
  width: 40vw;
  height: 40vw;
  bottom: -10vw;
  left: 25vw;
  background: radial-gradient(circle, #6D28D9 0%, transparent 65%);
  opacity: 0.22;
  animation: drift3 40s var(--ease-soft) infinite alternate;
}

@keyframes drift1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(8vw, 8vh) scale(1.1); }
}
@keyframes drift2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-6vw, 6vh) scale(0.95); }
}
@keyframes drift3 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-4vw, -8vh) scale(1.08); }
}

.bg-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================================================================
   Status bar
   ========================================================================= */
.statusbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem clamp(1rem, 3vw, 3rem);
  border-bottom: 1px solid var(--rule);
  background: rgba(7, 6, 14, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.statusbar::-webkit-scrollbar { display: none; }

.statusbar__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 12px var(--purple);
  animation: pulse 2.2s var(--ease-out) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

.statusbar__sep { color: var(--ink-3); opacity: 0.35; }
.statusbar__coord { color: var(--ink-3); opacity: 0.55; }
.statusbar__clock {
  color: var(--purple);
  margin-left: auto;
  padding-left: 0.65rem;
  font-feature-settings: "tnum";
  text-shadow: 0 0 12px rgba(124, 58, 237, 0.4);
}

/* =========================================================================
   Frame + Nav
   ========================================================================= */
.frame {
  position: relative;
  z-index: 2;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3.5vw, 3rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 6, 14, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--rule);
  margin: 0 calc(clamp(1.25rem, 3.5vw, 3rem) * -1);
  padding: 0 clamp(1.25rem, 3.5vw, 3rem);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-2) 0;
  gap: var(--sp-3);
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  transition: color 0.3s var(--ease-out);
}
.wordmark__paren { color: var(--purple); font-weight: 400; }
.wordmark__name { padding: 0 0.15em; font-feature-settings: "ss01"; }
.wordmark:hover .wordmark__paren { color: var(--magenta); text-shadow: 0 0 12px var(--magenta); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2vw, 2.25rem);
}

.nav__links > li > a {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease-out);
}
.nav__links > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
  transition: width 0.5s var(--ease-out);
}
.nav__links > li > a:hover { color: var(--ink); }
.nav__links > li > a:hover::after { width: 100%; }

.nav__cta {
  color: var(--ink) !important;
  background: linear-gradient(135deg, rgba(176,108,255,0.18), rgba(107,43,227,0.08));
  border: 1px solid rgba(124, 58, 237, 0.35);
  padding: 0.55rem 0.95rem !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.4s var(--ease-out) !important;
}
.nav__cta::after { display: none; }
.nav__cta:hover {
  background: linear-gradient(135deg, rgba(176,108,255,0.4), rgba(107,43,227,0.2));
  border-color: var(--purple);
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.3);
}
.nav__cta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
  animation: pulse 2s var(--ease-out) infinite;
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 9rem) 0 clamp(4rem, 7vw, 7rem);
  min-height: 84vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.75rem, 3vw, 2.75rem);
}

/* Tag pill above headline ------------------------------------------------ */
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.95rem;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--rule-2);
  width: max-content;
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  opacity: 0;
  animation: rise 0.9s var(--ease-soft) 0.15s forwards;
}
.hero__tag-mark { color: var(--purple); font-size: 0.55rem; }
.hero__tag-sep { color: var(--ink-3); opacity: 0.5; }

/* Title ------------------------------------------------------------------- */
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-h1);
  line-height: 0.88;
  letter-spacing: -0.045em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  max-width: 18ch;
}

.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 1s var(--ease-soft) forwards;
}
.hero__title-line:nth-child(1) { animation-delay: 0.30s; }
.hero__title-line:nth-child(2) { animation-delay: 0.45s; padding-left: clamp(2rem, 7vw, 6rem); }
.hero__title-line:nth-child(3) { animation-delay: 0.60s; }
.hero__title-line:nth-child(4) { animation-delay: 0.75s; padding-left: clamp(2rem, 5vw, 4rem); }

.hero__title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 60px rgba(124, 58, 237, 0.3);
}

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

/* Lede -------------------------------------------------------------------- */
.hero__lede {
  font-family: var(--font-body);
  font-size: var(--t-lede);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 48ch;
  font-weight: 300;
  opacity: 0;
  animation: rise 0.9s var(--ease-soft) 0.95s forwards;
}

/* CTA row ----------------------------------------------------------------- */
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: rise 0.9s var(--ease-soft) 1.1s forwards;
}

/* Bottom strip stats ----------------------------------------------------- */
.hero__strip {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(1.25rem, 2vw, 1.75rem) clamp(1.25rem, 2.5vw, 2rem);
  background: rgba(20, 16, 31, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--rule);
  border-radius: 2px;
  width: max-content;
  max-width: 100%;
  flex-wrap: wrap;
  margin-top: clamp(1rem, 3vw, 2.5rem);
  opacity: 0;
  animation: rise 0.9s var(--ease-soft) 1.3s forwards;
}

.hero__strip-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero__strip-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.65rem, 1.3rem + 1.5vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--purple);
  font-feature-settings: "tnum";
  text-shadow: 0 0 22px rgba(124, 58, 237, 0.35);
}

.hero__strip-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.hero__strip-sep {
  width: 1px;
  height: 28px;
  background: var(--rule-2);
}

/* =========================================================================
   Button system
   ========================================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 1.4rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color 0.3s var(--ease-out),
    color 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out),
    transform 0.3s var(--ease-snap),
    box-shadow 0.4s var(--ease-out);
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn__label { position: relative; z-index: 2; }
.btn__arrow {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  transition: transform 0.4s var(--ease-out);
  position: relative;
  z-index: 2;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: linear-gradient(135deg, var(--purple-2), var(--purple-3));
  color: var(--ink);
  border-color: var(--purple-2);
  box-shadow: 0 0 0 rgba(124, 58, 237, 0);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  border-color: var(--purple);
  box-shadow: 0 8px 30px -8px rgba(124, 58, 237, 0.55);
}
.btn--primary .btn__glow {
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at center, var(--magenta), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: 1;
}
.btn--primary:hover .btn__glow { opacity: 0.45; }

.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--ink);
  border-color: var(--rule-2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: rgba(124, 58, 237, 0.08);
}
.btn--ghost:hover .btn__arrow { transform: translateY(3px) translateX(0); }

/* =========================================================================
   Reveal hooks (used by JS-added .is-visible)
   ========================================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-soft), transform 0.9s var(--ease-soft);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-group] > [data-reveal]:nth-child(1) { transition-delay: 0s; }
[data-reveal-group] > [data-reveal]:nth-child(2) { transition-delay: 0.12s; }
[data-reveal-group] > [data-reveal]:nth-child(3) { transition-delay: 0.24s; }
[data-reveal-group] > [data-reveal]:nth-child(4) { transition-delay: 0.36s; }
[data-reveal-group] > [data-reveal]:nth-child(5) { transition-delay: 0.48s; }

/* =========================================================================
   Section head (shared)
   ========================================================================= */
.sec-head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 64rem;
  margin-bottom: clamp(3rem, 5vw, 4.75rem);
}

.sec-head__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.sec-head__num {
  color: var(--purple);
  font-weight: 500;
  margin-right: 0.5rem;
  text-shadow: 0 0 12px rgba(124, 58, 237, 0.4);
}

.sec-head__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-h2);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 22ch;
}

.sec-head__title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(124, 58, 237, 0.25);
}

.sec-head__lede {
  font-family: var(--font-body);
  font-size: var(--t-lede);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  font-weight: 300;
  margin-top: 0.25rem;
}

/* =========================================================================
   Capabilities — three stacked stripes
   ========================================================================= */
.cap {
  position: relative;
  padding: clamp(4rem, 7vw, 7.5rem) 0 clamp(4rem, 6vw, 6rem);
}

.stripes {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stripe {
  position: relative;
  display: grid;
  grid-template-columns: clamp(5rem, 14vw, 11rem) 1fr clamp(3rem, 8vw, 7rem);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.75rem, 3vw, 2.75rem);
  background: rgba(20, 16, 31, 0.55);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition:
    border-color 0.5s var(--ease-out),
    background-color 0.5s var(--ease-out),
    transform 0.5s var(--ease-out),
    box-shadow 0.6s var(--ease-out);
}

.stripe::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at left center,
    rgba(124, 58, 237, 0.07),
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}

.stripe:hover {
  border-color: rgba(124, 58, 237, 0.45);
  background: rgba(27, 22, 42, 0.65);
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -28px rgba(124, 58, 237, 0.5);
}
.stripe:hover::before { opacity: 1; }
.stripe:hover .stripe__rail-mark { transform: scaleY(1); }

/* Numeral on the left */
.stripe__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.5rem, 2.5rem + 4vw, 6.5rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px var(--purple-2);
  align-self: start;
  padding-top: 0.05em;
  font-feature-settings: "tnum";
}

/* Body content */
.stripe__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.stripe__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.stripe__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.stripe__tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(124, 58, 237, 0.4);
  background: rgba(124, 58, 237, 0.06);
}

.stripe__desc {
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 56ch;
  font-weight: 300;
}

.stripe__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--rule);
  margin-top: 0.5rem;
  max-width: 48rem;
}
.stripe__list li {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  padding-left: 1.05rem;
  position: relative;
}
.stripe__list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 500;
}

/* Vertical rail on the right (decorative) */
.stripe__rail {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding-block: 0.25rem;
}
.stripe__rail-mark {
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--purple-2) 30%,
    var(--purple-2) 70%,
    transparent
  );
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.5);
  flex: 1;
  transform: scaleY(0.2);
  transform-origin: center;
  transition: transform 0.6s var(--ease-out);
}

/* Cap footnote */
.cap__footnote {
  margin-top: clamp(2rem, 3vw, 2.5rem);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 60ch;
  font-weight: 300;
}
.cap__footnote em {
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
}

/* Mobile stripes -------------------------------------------------------- */
@media (max-width: 760px) {
  .stripe {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .stripe__num { font-size: 3rem; padding-top: 0; }
  .stripe__rail { display: none; }
  .stripe__list { grid-template-columns: 1fr; }
}

/* =========================================================================
   Pricing
   ========================================================================= */
.pricing {
  position: relative;
  padding: clamp(4rem, 7vw, 7.5rem) 0 clamp(4rem, 6vw, 6rem);
}

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

.tier {
  position: relative;
  background: rgba(20, 16, 31, 0.55);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid var(--rule);
  padding: clamp(2rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition:
    border-color 0.5s var(--ease-out),
    background-color 0.5s var(--ease-out),
    transform 0.5s var(--ease-out),
    box-shadow 0.6s var(--ease-out);
  overflow: hidden;
}

.tier:hover {
  border-color: rgba(124, 58, 237, 0.5);
  background: rgba(27, 22, 42, 0.65);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -28px rgba(124, 58, 237, 0.4);
}

/* Featured (Premium) — glowing halo treatment ---------------------------- */
.tier--featured {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.1) 0%, rgba(20, 16, 31, 0.7) 40%);
  border-color: rgba(124, 58, 237, 0.55);
  transform: translateY(-10px);
  z-index: 2;
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.15),
    0 24px 60px -22px rgba(124, 58, 237, 0.45);
}
.tier--featured:hover {
  transform: translateY(-16px);
  border-color: var(--purple);
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.3),
    0 32px 75px -22px rgba(124, 58, 237, 0.6);
}

.tier__halo {
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(124, 58, 237, 0.22), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(162, 28, 175, 0.12), transparent 70%);
}
.tier__halo + * { position: relative; z-index: 1; }
.tier--featured > *:not(.tier__halo) { position: relative; z-index: 1; }

/* Badge */
.tier__badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 0.95rem;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.5);
}

/* Tier head */
.tier__head {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}

.tier--featured .tier__head { border-bottom-color: rgba(124, 58, 237, 0.3); }

.tier__name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.85rem;
}

.tier__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.tier__name-accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tier__sigil {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--ink-3);
}

/* Price block */
.tier__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1;
}
.tier__price-main {
  font-size: clamp(2.4rem, 1.8rem + 2.2vw, 3.5rem);
  letter-spacing: -0.04em;
  color: var(--ink);
  font-feature-settings: "tnum";
}
.tier--featured .tier__price-main {
  background: linear-gradient(135deg, #FFFFFF, var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tier__price-plus {
  font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.9rem);
  color: var(--ink-3);
  font-weight: 400;
  font-style: italic;
}
.tier__price-ret {
  font-size: clamp(1.7rem, 1.3rem + 1.3vw, 2.3rem);
  color: var(--ink);
  font-feature-settings: "tnum";
}
.tier__price-cycle {
  font-family: var(--font-mono);
  font-size: 0.38em;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-left: 0.1em;
  vertical-align: baseline;
}

/* Delivery */
.tier__delivery {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.tier__delivery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
  animation: pulse 2.4s var(--ease-out) infinite;
}

/* Features list */
.tier__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.tier__features li {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.7rem;
  align-items: baseline;
  font-family: var(--font-body);
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 300;
}
.tier__check {
  font-family: var(--font-mono);
  color: var(--purple);
  font-weight: 600;
  font-size: 0.95em;
  text-shadow: 0 0 8px rgba(124, 58, 237, 0.4);
}

/* Footnote */
.pricing__footnote {
  margin-top: clamp(2.5rem, 4vw, 3.25rem);
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 76ch;
  font-weight: 300;
}
.pricing__footnote-accent {
  color: var(--purple);
  font-weight: 500;
  text-shadow: 0 0 8px rgba(124, 58, 237, 0.4);
}

/* Mobile tiers */
@media (max-width: 940px) {
  .tiers {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .tier--featured { transform: none; margin-top: 0.5rem; }
  .tier--featured:hover { transform: translateY(-4px); }
}

/* =========================================================================
   Studio / Team
   ========================================================================= */
.studio {
  position: relative;
  padding: clamp(4rem, 7vw, 7.5rem) 0 clamp(4rem, 7vw, 7.5rem);
}

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

.member {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(20, 16, 31, 0.55);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid var(--rule);
  padding: clamp(1.75rem, 2.75vw, 2.5rem);
  overflow: hidden;
  transition:
    border-color 0.5s var(--ease-out),
    background-color 0.5s var(--ease-out),
    transform 0.5s var(--ease-out),
    box-shadow 0.6s var(--ease-out);
}

.member:hover {
  border-color: rgba(124, 58, 237, 0.5);
  background: rgba(27, 22, 42, 0.65);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -28px rgba(124, 58, 237, 0.5);
}

/* Monogram block ------------------------------------------------------- */
.member__mono {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(13, 11, 23, 0.95), rgba(20, 16, 31, 0.95));
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  transition: border-color 0.5s var(--ease-out);
}

.member:hover .member__mono { border-color: rgba(124, 58, 237, 0.45); }

.member__mono-letter {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(5rem, 4rem + 8vw, 9rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(124, 58, 237, 0.35);
  position: relative;
  z-index: 2;
  font-feature-settings: "ss01";
}

.member__mono-letter + .member__mono-letter {
  margin-left: -0.12em;
}

.member__mono-halo {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(124, 58, 237, 0.15), transparent 65%);
  opacity: 0.7;
  transition: opacity 0.6s var(--ease-out);
}
.member:hover .member__mono-halo { opacity: 1; }

/* Body --------------------------------------------------------------- */
.member__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  position: relative;
}

.member__id {
  position: absolute;
  top: -3.85rem;
  right: -0.5rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  background: rgba(7, 6, 14, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--rule);
}

.member__role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  text-shadow: 0 0 8px rgba(124, 58, 237, 0.4);
}

.member__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.45rem, 1.2rem + 0.7vw, 1.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.member__bio {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 300;
}

/* Mobile crew */
@media (max-width: 920px) {
  .crew { grid-template-columns: repeat(2, 1fr); }
  .member__id { position: relative; top: 0; right: 0; align-self: flex-start; }
}
@media (max-width: 560px) {
  .crew { grid-template-columns: 1fr; }
}

/* =========================================================================
   Contact
   ========================================================================= */
.contact {
  position: relative;
  padding: clamp(4rem, 7vw, 7.5rem) 0 clamp(4rem, 6vw, 6rem);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

/* Form */
.contact__form {
  position: relative;
  background: rgba(20, 16, 31, 0.55);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid var(--rule);
  padding: clamp(2rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.25rem;
}

.field { display: flex; flex-direction: column; gap: 0.55rem; }
.field--full { grid-column: 1 / -1; }

.field__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}
.field__index { color: var(--purple); font-weight: 500; }
.field__req { color: var(--purple); font-weight: 500; margin-left: 0.1rem; }

.field__input {
  background: rgba(13, 11, 23, 0.7);
  border: 1px solid var(--rule);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.4;
  font-weight: 300;
  padding: 0.85rem 0.95rem;
  width: 100%;
  outline: none;
  transition: border-color 0.3s var(--ease-out), background-color 0.3s var(--ease-out), box-shadow 0.4s var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.field__input::placeholder { color: var(--ink-3); font-family: var(--font-body); font-weight: 300; }
.field__input:hover { border-color: var(--rule-2); }
.field__input:focus {
  border-color: var(--purple);
  background: rgba(13, 11, 23, 0.9);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18), 0 0 24px rgba(124, 58, 237, 0.18);
}

.field__textarea {
  resize: vertical;
  min-height: 130px;
}

.field__select-wrap { position: relative; }
.field__select { cursor: pointer; padding-right: 2.5rem; }
.field__select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--purple);
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-shadow: 0 0 8px rgba(124, 58, 237, 0.4);
}

/* Submit row */
.contact__submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  border-top: 1px solid var(--rule);
}
.contact__submit { cursor: pointer; border-radius: 0; }
.contact__submit[disabled] { opacity: 0.55; cursor: not-allowed; pointer-events: none; }

.contact__disclaimer {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  max-width: 32ch;
  line-height: 1.55;
}

/* Success state */
.contact__success {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: rgba(124, 58, 237, 0.07);
  border: 1px solid rgba(124, 58, 237, 0.45);
  animation: rise 0.55s var(--ease-out);
  margin-top: 0;
}
.contact__success[hidden] { display: none; }
.contact__success-dot {
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--purple);
  animation: pulse 2s var(--ease-out) infinite;
  flex-shrink: 0;
}
.contact__success-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.contact__success-body {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 300;
}
.contact__success-body a {
  color: var(--purple);
  border-bottom: 1px dotted rgba(124, 58, 237, 0.5);
}
.contact__success-body a:hover { color: var(--magenta); }

/* Form error */
.contact__error {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 77, 44, 0.06);
  border: 1px solid rgba(255, 77, 44, 0.35);
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #ffb8a3;
  letter-spacing: 0.04em;
}
.contact__error[hidden] { display: none; }

/* Info panel */
.contact__info {
  background: rgba(20, 16, 31, 0.55);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border: 1px solid var(--rule);
  padding: clamp(2rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.85rem;
}

.contact__info-block { display: flex; flex-direction: column; gap: 0.45rem; }

.contact__info-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.contact__info-value {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 300;
}
.contact__info-muted {
  color: var(--ink-3);
  font-size: 0.88em;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}
.contact__info-accent {
  color: var(--purple);
  font-weight: 500;
  text-shadow: 0 0 8px rgba(124, 58, 237, 0.3);
}
.contact__info-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 0.95rem + 0.7vw, 1.45rem);
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-bottom: 1px solid rgba(124, 58, 237, 0.4);
  letter-spacing: -0.01em;
  align-self: flex-start;
  word-break: break-all;
  transition: border-color 0.3s var(--ease-out);
}
.contact__info-link:hover { border-bottom-color: var(--magenta); }

/* Status callout */
.contact__status {
  margin-top: auto;
  padding: 1.1rem 1.2rem;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.contact__status-row {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.contact__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 12px var(--purple);
  animation: pulse 2s var(--ease-out) infinite;
}
.contact__status-detail {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.55;
  font-weight: 300;
}

/* =========================================================================
   Footer
   ========================================================================= */
.footer {
  margin-top: clamp(3rem, 5vw, 4.5rem);
  border-top: 1px solid var(--rule);
  padding: clamp(2.5rem, 4vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 2;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.footer__brand { display: flex; flex-direction: column; gap: 1.1rem; }
.footer__brand .wordmark { font-size: 1.05rem; }

.footer__tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: var(--ink-3);
  max-width: 30ch;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 3vw, 3rem);
}

.footer__col-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1rem;
}

.footer__list { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__list a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink-2);
  transition: color 0.3s var(--ease-out);
  word-break: break-word;
  font-weight: 300;
}
.footer__list a:hover { color: var(--purple); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy,
.footer__credit {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Contact + footer mobile */
@media (max-width: 920px) {
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .field-grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 720px) {
  .hero__title-line:nth-child(2),
  .hero__title-line:nth-child(4) { padding-left: 0; }
  .hero__strip { width: 100%; gap: 1rem; }
  .hero__strip-sep { display: none; }
  .statusbar { font-size: 0.6rem; gap: 0.4rem; }
  .statusbar__location { display: none; }
}

/* Focus visibility */
:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .bg-orb { animation: none; }
}
