*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #09090b;
  --bg-lift: #111114;
  --text: #fafaf7;
  --muted: rgba(250, 250, 247, 0.42);
  --border: rgba(250, 250, 247, 0.1);
  --accent: #c8ff00;
  --accent-dk: #9fcc00;
  --font-disp: "Barlow Condensed", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
a, button, input, textarea, select {
  cursor: none;
}
#c-ring,
#c-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}
#c-ring div {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(250, 250, 247, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.18s,
    height 0.18s;
}
#c-dot div {
  width: 6px;
  height: 6px;
  background: var(--text);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
body:has(a:hover) #c-ring div,
body:has(button:hover) #c-ring div,
body:has(input:hover) #c-ring div,
body:has(textarea:hover) #c-ring div,
body:has(select:hover) #c-ring div {
  width: 56px;
  height: 56px;
}
::-webkit-scrollbar {
  width: 2px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(200, 255, 0, 0.3);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.logo {
  font-family: var(--font-disp);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text);
  text-decoration: none;
}
.logo em {
  color: var(--accent);
  font-style: normal;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--bg);
  background: var(--accent);
  padding: 0.5rem 1.1rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 500;
  transition:
    background 0.2s,
    transform 0.15s;
  cursor: none;
}
.nav-cta:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 2.5rem 5rem;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(250, 250, 247, 0.09) 1px,
    transparent 1px
  );
  background-size: 38px 38px;
  mask-image: radial-gradient(
    ellipse 85% 75% at 40% 50%,
    black 30%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 85% 75% at 40% 50%,
    black 30%,
    transparent 100%
  );
  pointer-events: none;
}
.clabel {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.63rem;
  color: var(--muted);
  letter-spacing: 0.07em;
}
.clabel.tl {
  top: 76px;
  left: 2.5rem;
}
.clabel.tr {
  top: 76px;
  right: 2.5rem;
  text-align: right;
}
.clabel.bl {
  bottom: 2.5rem;
  left: 2.5rem;
}
.clabel.br {
  bottom: 2.5rem;
  right: 2.5rem;
  text-align: right;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 2rem;
  line-height: 1;
}
.pulse {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2.5s ease infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
.hero-h1 {
  font-family: var(--font-disp);
  font-size: clamp(5rem, 13.5vw, 13.5rem);
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 1100px;
  margin-bottom: 3.5rem;
}
.hero-h1 .l1 {
  display: block;
  color: var(--text);
}
.hero-h1 .l2 {
  display: block;
  color: var(--accent);
}
.hero-h1 .l3 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px rgba(250, 250, 247, 0.22);
}
.hero-lower {
  display: flex;
  align-items: flex-end;
  gap: 4rem;
  flex-wrap: wrap;
}
.hero-desc {
  max-width: 440px;
}
.hero-desc p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn-a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 2px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  line-height: 1;
  cursor: none;
}
.btn-a:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
}
.btn-b {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.8rem 1.6rem;
  border-radius: 2px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s;
  line-height: 1;
  cursor: none;
}
.btn-b:hover {
  border-color: rgba(250, 250, 247, 0.3);
}
.hero-disciplines {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 2.5rem;
  border-left: 1px solid var(--border);
}
.disc-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.disc-pill::before {
  content: "";
  width: 16px;
  height: 1px;
  background: rgba(200, 255, 0, 0.5);
  flex-shrink: 0;
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
  background: var(--bg-lift);
}
.ticker-track {
  display: inline-flex;
  -webkit-animation: roll 32s linear infinite;
  animation: roll 32s linear infinite;
  will-change: transform;
}
.ticker-track:hover {
  animation-play-state: paused;
}
@-webkit-keyframes roll {
  from {
    -webkit-transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
  }
}
@keyframes roll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ti {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.55);
}
.ti .sep {
  color: var(--accent);
}
.ti.hi {
  color: rgba(250, 250, 247, 0.7);
}

.section-wrap {
  padding: 6.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.section-wrap.alt {
  background: var(--bg-lift);
}
.inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}
.stag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.sttl {
  font-family: var(--font-disp);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
}
.scnt {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* PHILOSOPHY */
.phil-pull {
  font-family: var(--font-disp);
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 2rem;
}
.phil-pull em {
  color: var(--accent);
  font-style: normal;
}
.phil-body {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 400;
  line-height: 1.68;
  color: var(--muted);
}
.phil-body strong {
  color: var(--text);
  font-weight: 600;
}
.phil-footnote {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.phil-footnote em {
  color: var(--accent);
  font-style: normal;
}
.phil-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.pstat strong {
  display: block;
  font-family: var(--font-disp);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.pstat strong em {
  color: var(--accent);
  font-style: normal;
}
.pstat span {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* SERVICES */
.svc-list {
  border-top: 1px solid var(--border);
}
.svc-row {
  display: grid;
  grid-template-columns: 64px 1fr 220px auto;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  transition:
    padding 0.2s,
    background 0.2s;
  cursor: none;
}
.svc-row:hover {
  background: rgba(200, 255, 0, 0.025);
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0 -1rem;
  border-color: rgba(200, 255, 0, 0.15);
}
.svc-n {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.svc-row:hover .svc-n {
  color: var(--accent);
}
.svc-name {
  font-family: var(--font-disp);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.svc-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  border: 1px solid rgba(250, 250, 247, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}
.svc-arr {
  font-size: 1.1rem;
  color: var(--muted);
  transition:
    color 0.2s,
    transform 0.2s;
}
.svc-row:hover .svc-arr {
  color: var(--accent);
  transform: translateX(4px);
}

/* CAPABILITIES */
.cap-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.cap-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 1.5rem;
}
.cap-text p strong {
  color: var(--text);
  font-weight: 600;
}
.cap-blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.cap-blabel {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.cap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.cap-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(250, 250, 247, 0.6);
  background: rgba(250, 250, 247, 0.04);
  border: 1px solid rgba(250, 250, 247, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
  cursor: default;
}
.cap-tag:hover {
  color: var(--accent);
  border-color: rgba(200, 255, 0, 0.35);
  background: rgba(200, 255, 0, 0.04);
}
.cap-tag.hi {
  color: rgba(250, 250, 247, 0.85);
  border-color: rgba(250, 250, 247, 0.15);
}

/* PROCESS */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.proc-step {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
}
.proc-step:last-child {
  border-right: none;
}
.proc-num {
  font-family: var(--font-disp);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(250, 250, 247, 0.05);
  margin-bottom: 1.5rem;
}
.proc-title {
  font-family: var(--font-disp);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.65rem;
}
.proc-title em {
  color: var(--accent);
  font-style: normal;
}
.proc-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.72;
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
.why-cell {
  background: var(--bg-lift);
  padding: 2.5rem;
  transition: background 0.2s;
}
.why-cell:hover {
  background: rgba(200, 255, 0, 0.025);
}
.why-tag {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.why-cell h3 {
  font-family: var(--font-disp);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.why-cell p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* CTA */
.cta-wrap {
  padding: 9rem 2.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 60% 60% at 50% 50%,
    rgba(200, 255, 0, 0.055) 0%,
    transparent 70%
  );
}
.cta-name {
  font-family: var(--font-disp);
  font-size: clamp(4rem, 11vw, 11rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  position: relative;
}
.cta-name .n {
  color: var(--text);
}
.cta-name .a {
  color: var(--accent);
}
.cta-name .f {
  color: rgba(250, 250, 247, 0.2);
}
.cta-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.68;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

footer {
  padding: 2.25rem 2.5rem;
}
.ft {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.ft-logo {
  font-family: var(--font-disp);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text);
  text-decoration: none;
}
.ft-logo em {
  color: var(--accent);
  font-style: normal;
}
.ft-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}
.ft-links a,
.ft-email-copy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(250, 250, 247, 0.55);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.ft-links a:hover,
.ft-email-copy:hover {
  color: var(--text);
}
.ft-email-copy {
  background: none;
  border: none;
  padding: 0;
  position: relative;
}
.ft-copied {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-left: 0.6em;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.ft-copied.visible {
  opacity: 1;
}
.ft-copy {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: rgba(250, 250, 247, 0.5);
}

.rv {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.rl {
  opacity: 0;
  transform: translateX(-22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.rv.in,
.rl.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 920px) {
  nav {
    padding: 0 1.25rem;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 8rem 1.25rem 4rem;
  }
  .clabel.tr,
  .clabel.br {
    display: none;
  }
  .hero-lower {
    flex-direction: column;
    gap: 2.5rem;
  }
  .hero-disciplines {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 1.5rem 0 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
  }
  .section-wrap {
    padding: 4.5rem 1.25rem;
  }
.phil-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .svc-row {
    grid-template-columns: 48px 1fr auto;
    gap: 1rem;
  }
  .svc-tags {
    display: none;
  }
  .cap-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .proc-grid {
    grid-template-columns: 1fr;
  }
  .proc-step {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
  }
  .proc-step:last-child {
    border-bottom: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .cta-wrap {
    padding: 6rem 1.25rem;
  }
  footer {
    padding: 2rem 1.25rem;
  }
  .ft {
    flex-direction: column;
    align-items: flex-start;
  }
  body,
  a,
  button,
  input,
  textarea,
  select {
    cursor: auto;
  }
  #c-ring,
  #c-dot {
    display: none;
  }
}

/* ─── ACCORDION ─────────────────────────────────────────────── */
.svc-item {
  border-bottom: 1px solid var(--border);
}
.svc-item .svc-row {
  border-bottom: none;
}
.svc-item.open .svc-row {
  background: rgba(200, 255, 0, 0.025);
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0 -1rem;
  border-color: rgba(200, 255, 0, 0.15);
}
.svc-item.open .svc-row .svc-n {
  color: var(--accent);
}
.svc-item.open .svc-row .svc-arr {
  color: var(--accent);
  transform: rotate(90deg);
}
.svc-item.open .svc-row:hover .svc-arr {
  transform: rotate(90deg);
}
.svc-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0 -1rem;
  transition:
    max-height 0.42s ease,
    opacity 0.28s ease;
}
.svc-item.open .svc-panel {
  max-height: 320px;
  opacity: 1;
  transition:
    max-height 0.42s ease,
    opacity 0.28s ease 0.08s;
}
.svc-panel-inner {
  padding: 1.4rem 1rem 1.75rem calc(1rem + 64px + 2rem);
  background: rgba(200, 255, 0, 0.02);
  border-top: 1px solid rgba(200, 255, 0, 0.08);
  border-bottom: 1px solid rgba(200, 255, 0, 0.15);
}
.svc-panel p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 560px;
}
.svc-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
  text-decoration: none;
  margin-top: 1rem;
  transition:
    background 0.2s,
    transform 0.15s;
  line-height: 1;
  cursor: none;
}
.svc-panel-cta:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
}

/* ─── NAV SCROLL SPY ─────────────────────────────────────────── */
.nav-links a.spy-active {
  color: var(--text);
  position: relative;
}
.nav-links a.spy-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* ─── ACCORDION panel indent at tablet/mobile ─────────────────── */
@media (max-width: 920px) {
  .svc-panel-inner {
    padding-left: calc(1rem + 48px + 1rem);
  }
  .svc-row {
    min-height: 44px;
  }
}

/* ─── 768px ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .pstat strong {
    font-size: 1.5rem;
  }
  .hero-disciplines {
    overflow-x: hidden;
  }
  .why-cell {
    padding: 1.75rem;
  }
}

/* ─── 375px ──────────────────────────────────────────────────── */
/* ── TOAST ───────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-lift);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 2px;
  padding: 1rem 1.25rem;
  max-width: 340px;
  z-index: 9000;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.toast.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.toast-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff6b6b;
  margin-bottom: 0.4rem;
}
.toast-msg {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(250, 250, 247, 0.55);
  line-height: 1.6;
}
.toast-email {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(200, 255, 0, 0.35);
  padding: 0;
  cursor: none;
  display: inline;
  line-height: inherit;
}
.toast-email:hover {
  border-bottom-color: var(--accent);
}
.toast-copied {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  position: absolute;
  top: 0.85rem;
  right: 1.25rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.toast-copied.visible {
  opacity: 1;
}
@media (max-width: 920px) {
  .toast {
    bottom: 1.25rem;
    right: 1.25rem;
    left: 1.25rem;
    max-width: none;
  }
}

@media (max-width: 430px) {
  .hero-h1 .l3 {
    -webkit-text-stroke: 1.5px rgba(250, 250, 247, 0.28);
  }
  .disc-pill {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }
  .cta-name {
    font-size: clamp(3rem, 11vw, 11rem);
  }
  .svc-panel-inner {
    padding-left: calc(1rem + 48px + 0.75rem);
  }
  .proc-step {
    padding: 1.75rem 0;
  }
}
