:root {
  --bg: #08090b;
  --bg-2: #0d1014;
  --ink: #f4efe7;
  --muted: #a9a195;
  --line: rgba(244, 239, 231, 0.13);
  --line-strong: rgba(244, 239, 231, 0.26);

  --blue: #3d8bff;
  --purple: #a66cff;
  --green: #9cff6a;
  --amber: #f0b35b;

  --max: 1440px;
  --pad: clamp(1.2rem, 4vw, 4.5rem);
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  background:
    linear-gradient(rgba(244, 239, 231, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 231, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(61, 139, 255, 0.08), transparent 24rem),
    radial-gradient(circle at 70% 35%, rgba(166, 108, 255, 0.06), transparent 26rem),
    radial-gradient(circle at 70% 80%, rgba(156, 255, 106, 0.045), transparent 24rem);
  z-index: -2;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 100;
  background-image:
    repeating-radial-gradient(circle at 0 0, rgba(255,255,255,0.8) 0, rgba(255,255,255,0.8) 1px, transparent 1px, transparent 4px);
  mix-blend-mode: screen;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 80;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 11, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: -0.05em;
}

.nav {
  display: flex;
  gap: 1.6rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--muted);
}

.nav a {
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--ink);
}

.hero,
.section-block,
.footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.hero {
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
}

.system-label {
  font-family: var(--mono);
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  line-height: 1.5;
}

h1 {
  margin-top: 1.5rem;
  font-size: clamp(3.2rem, 7.5vw, 8.8rem);
  line-height: 0.87;
  letter-spacing: -0.085em;
  font-weight: 760;
  max-width: 1020px;
}

h2 {
  font-size: clamp(2.3rem, 5.8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 760;
  max-width: 1060px;
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.hero-copy,
.section-intro p,
.manifesto p,
.contact-copy p {
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.72;
  max-width: 710px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.button {
  min-height: 48px;
  padding: 0 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: 0.25s ease;
  cursor: pointer;
}

.button-primary {
  background: var(--ink);
  color: var(--bg);
}

.button-primary:hover {
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--ink);
  background: rgba(244, 239, 231, 0.03);
}

.button-secondary:hover {
  background: rgba(244, 239, 231, 0.08);
}

.system-map {
  border: 1px solid var(--line-strong);
  background: rgba(13, 16, 20, 0.82);
  min-height: 590px;
  position: relative;
  overflow: hidden;
}

.system-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(244, 239, 231, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 231, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.map-header,
.map-footer {
  position: relative;
  z-index: 2;
  height: 52px;
  padding: 0 1rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.map-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 0;
  border-top: 1px solid var(--line);
}

.map-grid {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem 5rem;
  min-height: 486px;
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  grid-template-rows: repeat(7, 1fr);
  gap: 0;
  align-items: center;
}

.node {
  border: 1px solid var(--line-strong);
  background: rgba(8, 9, 11, 0.72);
  padding: 1rem;
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.node span {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.68rem;
}

.node strong {
  font-size: 1.25rem;
  letter-spacing: -0.045em;
}

.node-main {
  grid-column: 1;
}

.node.blue,
.node.purple,
.node.green {
  grid-column: 3;
}

.node.blue {
  grid-row: 2;
  border-color: rgba(61, 139, 255, 0.45);
}

.node.purple {
  grid-row: 4;
  border-color: rgba(166, 108, 255, 0.45);
}

.node.green {
  grid-row: 6;
  border-color: rgba(156, 255, 106, 0.45);
}

.node-main:first-of-type {
  grid-row: 1;
}

.node-main:last-of-type {
  grid-row: 7;
  grid-column: 1;
}

.connector {
  background: var(--line-strong);
  justify-self: stretch;
  align-self: center;
}

.connector.horizontal {
  height: 1px;
}

.connector.vertical {
  width: 1px;
  min-height: 64px;
  justify-self: center;
}

.section-block {
  padding-top: 130px;
  padding-bottom: 130px;
  border-top: 1px solid var(--line);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 4rem;
}

.section-intro h2 {
  margin-top: -0.2rem;
}

.capability-list {
  border-top: 1px solid var(--line);
}

.capability-item {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 2rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--line);
}

.capability-index {
  font-family: var(--mono);
  font-size: clamp(2.4rem, 6vw, 6rem);
  line-height: 0.8;
  letter-spacing: -0.12em;
}

.blue-text {
  color: var(--blue);
}

.purple-text {
  color: var(--purple);
}

.green-text {
  color: var(--green);
}

.capability-item p,
.system-card p,
.method-step p,
.product-feature p {
  color: var(--muted);
  line-height: 1.68;
  margin-top: 1rem;
  max-width: 820px;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.system-card {
  min-height: 260px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem;
  background: rgba(13, 16, 20, 0.36);
  transition: 0.25s ease;
}

.system-card:hover {
  background: rgba(244, 239, 231, 0.045);
}

.system-card span,
.method-step span {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.72rem;
}

.system-card h3 {
  margin-top: 4rem;
}

.product-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: stretch;
  border: 1px solid var(--line-strong);
  background: rgba(13, 16, 20, 0.48);
  padding: clamp(1.2rem, 4vw, 2.2rem);
}

.product-feature h3 {
  margin-top: 1rem;
  font-size: clamp(3.5rem, 8vw, 9rem);
  letter-spacing: -0.11em;
}

.product-panel {
  border-left: 1px solid var(--line);
  display: grid;
  place-items: center;
  min-height: 430px;
}

.mini-browser {
  width: min(360px, 100%);
  border: 1px solid var(--line-strong);
  background: rgba(8, 9, 11, 0.78);
  padding: 1rem;
}

.mini-browser-top {
  display: flex;
  gap: 0.45rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.mini-browser-top span {
  width: 8px;
  height: 8px;
  border: 1px solid var(--line-strong);
}

.mini-profile {
  width: 68px;
  height: 68px;
  margin: 1.7rem auto 1rem;
  border: 1px solid rgba(156, 255, 106, 0.5);
}

.mini-line {
  width: 58%;
  height: 10px;
  background: rgba(244, 239, 231, 0.12);
  margin: 0.7rem auto;
}

.mini-line.large {
  width: 78%;
}

.mini-button {
  height: 44px;
  border: 1px solid var(--line);
  margin-top: 0.8rem;
  background: rgba(244, 239, 231, 0.04);
}

.method-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.method-step {
  min-height: 310px;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-step h3 {
  margin-top: 7rem;
}

.manifesto {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  border: 1px solid var(--line-strong);
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
  background: rgba(13, 16, 20, 0.55);
}

label {
  display: grid;
  gap: 0.45rem;
  font-family: var(--mono);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(244, 239, 231, 0.035);
  color: var(--ink);
  padding: 1rem;
  font: inherit;
  outline: none;
  border-radius: 0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ink);
}

textarea {
  resize: vertical;
}

.footer {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: var(--muted);
}

.footer strong {
  color: var(--ink);
}

.footer p {
  margin-top: 0.35rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .nav {
    display: none;
  }

  .hero,
  .section-intro,
  .capability-item,
  .product-feature,
  .contact {
    grid-template-columns: 1fr;
  }

  .system-map {
    min-height: 520px;
  }

  .systems-grid {
    grid-template-columns: 1fr 1fr;
  }

  .method-timeline {
    grid-template-columns: 1fr;
  }

  .method-step {
    min-height: 220px;
  }

  .method-step h3 {
    margin-top: 4rem;
  }

  .product-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 2rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 68px;
  }

  .hero {
    padding-top: 115px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(2.5rem, 14vw, 4.4rem);
  }

  .systems-grid {
    grid-template-columns: 1fr;
  }

  .map-footer {
    display: none;
  }

  .map-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 2rem 1rem;
  }

  .node,
  .node.blue,
  .node.purple,
  .node.green,
  .node-main,
  .node-main:first-of-type,
  .node-main:last-of-type {
    grid-column: auto;
    grid-row: auto;
  }

  .connector {
    display: none;
  }

  .footer,
  .footer-links {
    flex-direction: column;
  }
}

/* Interactive refinements */

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle, rgba(61, 139, 255, 0.11), transparent 64%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.live-module {
  margin-top: 2.2rem;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid var(--line);
  background: rgba(13, 16, 20, 0.54);
  padding: 0.75rem 0.95rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.live-module strong {
  color: var(--ink);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(156, 255, 106, 0.7);
}

.node,
.system-card,
.method-step,
.product-feature,
.mini-browser,
.button,
.brand-mark {
  will-change: transform;
}

.node:hover {
  transform: translateX(-6px);
  background: rgba(244, 239, 231, 0.055);
}

.node.blue:hover {
  box-shadow: -12px 0 0 rgba(61, 139, 255, 0.45);
}

.node.purple:hover {
  box-shadow: -12px 0 0 rgba(166, 108, 255, 0.45);
}

.node.green:hover {
  box-shadow: -12px 0 0 rgba(156, 255, 106, 0.45);
}

.system-card:hover {
  transform: translateY(-6px);
}

.method-step:hover {
  background: rgba(244, 239, 231, 0.045);
}

.product-feature:hover .mini-browser {
  transform: translateY(-8px);
}

.map-footer span {
  cursor: default;
  transition: 0.25s ease;
}

.map-footer span:hover {
  color: var(--ink);
}

.product-details {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 580px;
}

.detail-toggle {
  width: 100%;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  cursor: pointer;
}

.detail-toggle strong {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.product-details.open .detail-toggle strong {
  transform: rotate(45deg);
}

.detail-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.detail-content > p {
  overflow: hidden;
  margin-top: 0;
  padding-bottom: 0;
}

.product-details.open .detail-content {
  grid-template-rows: 1fr;
}

.product-details.open .detail-content > p {
  padding-bottom: 1.1rem;
}

.form-success {
  border: 1px solid rgba(156, 255, 106, 0.35);
  background: rgba(156, 255, 106, 0.06);
  color: var(--ink);
  padding: 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: none;
}

.form-success.active {
  display: block;
}

@media (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

/* Operating modes */

.modes-console {
  border: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  min-height: 460px;
  background: rgba(13, 16, 20, 0.46);
}

.modes-tabs {
  border-right: 1px solid var(--line);
  display: grid;
}

.mode-tab {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  text-align: left;
  padding: 1.25rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transition: 0.25s ease;
}

.mode-tab span {
  color: var(--muted);
}

.mode-tab:hover {
  color: var(--ink);
  background: rgba(244, 239, 231, 0.035);
}

.mode-tab.active {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(61, 139, 255, 0.16), transparent 70%),
    rgba(244, 239, 231, 0.035);
}

.mode-display {
  padding: clamp(1.4rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mode-display h3 {
  margin-top: 1.4rem;
  font-size: clamp(2.3rem, 5vw, 5.8rem);
  max-width: 920px;
}

.mode-display p {
  color: var(--muted);
  line-height: 1.72;
  margin-top: 1.4rem;
  max-width: 720px;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.mode-output {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: grid;
  gap: 0.4rem;
}

.mode-output span {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-size: 0.7rem;
}

.mode-output strong {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  letter-spacing: -0.04em;
}

@media (max-width: 820px) {
  .modes-console {
    grid-template-columns: 1fr;
  }

  .modes-tabs {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

/* Premium aesthetic layer */

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  width: min(320px, 72vw);
  display: grid;
  gap: 1rem;
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.loader-bar {
  width: 100%;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}

.loader-bar div {
  height: 100%;
  width: 42%;
  background: var(--ink);
  animation: loadSlide 1.2s ease-in-out infinite;
}

@keyframes loadSlide {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(260%);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 200;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--green));
  transform-origin: left;
}

.ambient-orb {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.08;
  z-index: -3;
  animation: ambientFloat 16s ease-in-out infinite alternate;
}

.orb-one {
  background: var(--blue);
  top: 14%;
  left: -16%;
}

.orb-two {
  background: var(--purple);
  top: 44%;
  right: -18%;
  animation-delay: -5s;
}

.orb-three {
  background: var(--green);
  bottom: -22%;
  left: 35%;
  animation-delay: -9s;
}

@keyframes ambientFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(42px, -36px, 0) scale(1.12);
  }
}

.kinetic-title {
  display: grid;
  gap: 0.08em;
}

.kinetic-title span {
  display: block;
  transform-origin: left center;
  transition: letter-spacing 0.45s ease, transform 0.45s ease, opacity 0.45s ease;
}

.kinetic-title:hover span:nth-child(1) {
  letter-spacing: -0.095em;
  transform: translateX(6px);
}

.kinetic-title:hover span:nth-child(2) {
  letter-spacing: -0.075em;
  transform: translateX(18px);
  opacity: 0.92;
}

.kinetic-title:hover span:nth-child(3) {
  letter-spacing: -0.1em;
  transform: translateX(10px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.brand-mark {
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(244, 239, 231, 0.24), transparent);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.brand:hover .brand-mark::after {
  transform: translateX(120%);
}

.button {
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.button:hover::before {
  transform: translateX(120%);
}

.button-secondary:hover {
  border-color: rgba(244, 239, 231, 0.42);
}

.system-map {
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(244, 239, 231, 0.06);
}

.scan-line {
  position: absolute;
  left: 0;
  top: -20%;
  width: 100%;
  height: 120px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(156, 255, 106, 0.08),
    transparent
  );
  animation: scan 6s linear infinite;
}

@keyframes scan {
  from {
    transform: translateY(-120%);
  }
  to {
    transform: translateY(680%);
  }
}

.node {
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.node::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid var(--line-strong);
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  background: var(--bg);
}

.node {
  position: relative;
}

.capability-item {
  position: relative;
  overflow: hidden;
}

.capability-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244, 239, 231, 0.035), transparent 42%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.capability-item:hover::before {
  opacity: 1;
}

.capability-item:hover .capability-index {
  transform: translateX(8px);
}

.capability-index {
  transition: transform 0.35s ease;
}

.system-card {
  position: relative;
  overflow: hidden;
}

.system-card::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  opacity: 0.6;
}

.system-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.system-card:hover::before {
  transform: scaleX(1);
}

.modes-console,
.product-feature,
.contact-form {
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(244, 239, 231, 0.045);
}

.mode-display {
  position: relative;
  overflow: hidden;
}

.mode-display::after {
  content: "";
  position: absolute;
  right: -20%;
  bottom: -30%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(244, 239, 231, 0.055);
  transform: rotate(28deg);
}

.mode-tab.active {
  position: relative;
}

.mode-tab.active::before {
  content: "";
  width: 3px;
  height: 100%;
  background: linear-gradient(var(--blue), var(--purple), var(--green));
  position: absolute;
  left: 0;
  top: 0;
}

.product-panel {
  background:
    linear-gradient(rgba(244, 239, 231, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 231, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
}

.mini-browser {
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  box-shadow: 20px 20px 0 rgba(244, 239, 231, 0.035);
}

.product-feature:hover .mini-browser {
  box-shadow: 28px 28px 0 rgba(244, 239, 231, 0.055);
}

.mini-button {
  position: relative;
  overflow: hidden;
}

.mini-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(156, 255, 106, 0.12), transparent);
  transform: translateX(-100%);
  animation: miniPulse 3s ease-in-out infinite;
}

.mini-button:nth-child(7)::after {
  animation-delay: 0.4s;
}

.mini-button:nth-child(8)::after {
  animation-delay: 0.8s;
}

@keyframes miniPulse {
  0%, 40% {
    transform: translateX(-100%);
  }
  80%, 100% {
    transform: translateX(100%);
  }
}

.method-step {
  position: relative;
  overflow: hidden;
}

.method-step::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 3.2rem;
  width: 1px;
  height: 64px;
  background: var(--line);
}

.method-step:hover::after {
  background: linear-gradient(var(--blue), var(--purple), var(--green));
}

.manifesto {
  position: relative;
}

.manifesto::after {
  content: "DIGITAL OPERATING COMPANY";
  position: absolute;
  right: var(--pad);
  bottom: 4rem;
  font-family: var(--mono);
  color: rgba(244, 239, 231, 0.045);
  font-size: clamp(2.4rem, 9vw, 11rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
  max-width: 800px;
  text-align: right;
  z-index: -1;
}

input,
select,
textarea {
  transition: border-color 0.25s ease, background 0.25s ease;
}

input:hover,
select:hover,
textarea:hover {
  background: rgba(244, 239, 231, 0.055);
}

@media (max-width: 740px) {
  .kinetic-title:hover span {
    transform: none !important;
  }

  .manifesto::after {
    display: none;
  }

  .ambient-orb {
    opacity: 0.045;
  }
}

/* Production polish: mobile nav + metadata-ready assets */

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: rgba(244, 239, 231, 0.03);
  position: relative;
  cursor: pointer;
}

.mobile-menu-button span {
  position: absolute;
  left: 10px;
  width: 20px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.28s ease, top 0.28s ease;
}

.mobile-menu-button span:first-child {
  top: 16px;
}

.mobile-menu-button span:last-child {
  top: 25px;
}

.mobile-menu-button.active span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.mobile-menu-button.active span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 76px var(--pad) auto var(--pad);
  z-index: 70;
  border: 1px solid var(--line-strong);
  background: rgba(8, 9, 11, 0.94);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu a {
  padding: 1.1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-size: 0.75rem;
}

.mobile-menu a:last-child {
  border-bottom: 0;
  color: var(--ink);
}

.mobile-menu a:hover {
  background: rgba(244, 239, 231, 0.045);
  color: var(--ink);
}

@media (max-width: 1020px) {
  .mobile-menu-button {
    display: block;
  }
}

@media (max-width: 640px) {
  .mobile-menu {
    inset: 68px 1rem auto 1rem;
  }
}

/* Official Elias Global logo */

.brand-logo {
  display: inline-flex;
  align-items: center;
  width: 190px;
  height: auto;
}

.brand-logo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .brand-logo {
    width: 155px;
  }
}

/* Hybrid contact section */

.contact-direct {
  margin-top: 2.4rem;
  border: 1px solid var(--line-strong);
  background: rgba(13, 16, 20, 0.48);
  padding: clamp(1.2rem, 3vw, 1.6rem);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(244, 239, 231, 0.045);
}

.contact-email {
  display: inline-block;
  margin-top: 1rem;
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.35rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.contact-email:hover {
  color: var(--green);
  border-color: rgba(156, 255, 106, 0.5);
}

.email-guide {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.email-guide span {
  display: block;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-size: 0.68rem;
  margin-bottom: 0.85rem;
}

.email-guide ul {
  display: grid;
  gap: 0.5rem;
  list-style: none;
}

.email-guide li {
  color: var(--muted);
  line-height: 1.5;
  position: relative;
  padding-left: 1rem;
}

.email-guide li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--green);
  position: absolute;
  left: 0;
  top: 0.65rem;
}

.email-button {
  margin-top: 1.6rem;
}

.form-heading {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
  margin-bottom: 0.4rem;
}

.form-heading h3 {
  margin-top: 0.7rem;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.contact-form {
  position: relative;
}

.contact-form::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: 74px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--green));
}

@media (max-width: 900px) {
  .contact-email {
    word-break: break-word;
  }
}

/* High-impact interaction layer */

.system-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.52;
  pointer-events: none;
  z-index: 0;
}

.hero-left,
.system-map {
  z-index: 2;
}

.command-trigger {
  border: 1px solid var(--line-strong);
  background: rgba(244, 239, 231, 0.03);
  color: var(--muted);
  height: 36px;
  padding: 0 0.75rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: 0.25s ease;
}

.command-trigger:hover {
  color: var(--ink);
  background: rgba(244, 239, 231, 0.07);
}

.command-palette {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: start center;
  padding-top: 12vh;
  background: rgba(8, 9, 11, 0.68);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.command-palette.active {
  opacity: 1;
  visibility: visible;
}

.command-box {
  width: min(620px, calc(100vw - 32px));
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(rgba(244, 239, 231, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 231, 0.035) 1px, transparent 1px),
    rgba(13, 16, 20, 0.96);
  background-size: 32px 32px;
  box-shadow: 0 40px 140px rgba(0,0,0,.55);
  transform: translateY(-14px) scale(0.98);
  transition: transform 0.25s ease;
}

.command-palette.active .command-box {
  transform: translateY(0) scale(1);
}

.command-top {
  height: 54px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.command-close {
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 1.7rem;
  cursor: pointer;
}

.command-box button:not(.command-close) {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  padding: 0 1rem;
  font: inherit;
  cursor: pointer;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.command-box button:not(.command-close):hover {
  background: rgba(244, 239, 231, 0.06);
  padding-left: 1.35rem;
}

.command-box button:last-child {
  border-bottom: 0;
}

.email-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.copy-email {
  border: 1px solid var(--line-strong);
  background: rgba(244, 239, 231, 0.035);
  color: var(--muted);
  height: 38px;
  padding: 0 0.8rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: 0.25s ease;
}

.copy-email:hover,
.copy-email.copied {
  color: var(--green);
  border-color: rgba(156, 255, 106, 0.45);
}

.tilt-ready {
  transform-style: preserve-3d;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.tilt-ready:hover {
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(244, 239, 231, 0.055);
}

@media (max-width: 1020px) {
  .command-trigger {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .system-canvas,
  .scan-line,
  .ambient-orb {
    display: none;
  }

  .tilt-ready {
    transform: none !important;
  }
}

/* Colour appearance / disappearance system */

.signal-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.signal {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1px solid currentColor;
  opacity: 0;
  animation: signalDrift 11s ease-in-out infinite;
}

.signal::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: currentColor;
}

.signal-small {
  width: 6px;
  height: 6px;
}

.signal-blue {
  color: var(--blue);
  left: 14%;
  top: 22%;
  animation-delay: 0s;
}

.signal-purple {
  color: var(--purple);
  right: 16%;
  top: 38%;
  animation-delay: 2.5s;
}

.signal-green {
  color: var(--green);
  left: 62%;
  bottom: 18%;
  animation-delay: 5s;
}

.signal-blue.signal-small {
  left: 78%;
  top: 18%;
  animation-delay: 7s;
}

.signal-purple.signal-small {
  left: 22%;
  bottom: 24%;
  animation-delay: 3.8s;
}

.signal-green.signal-small {
  right: 22%;
  bottom: 36%;
  animation-delay: 8.4s;
}

@keyframes signalDrift {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) rotate(0deg) scale(0.72);
  }

  18% {
    opacity: 0.9;
  }

  52% {
    opacity: 0.42;
    transform: translate3d(32px, -24px, 0) rotate(90deg) scale(1);
  }

  76% {
    opacity: 0.76;
  }

  100% {
    opacity: 0;
    transform: translate3d(-18px, -58px, 0) rotate(180deg) scale(0.78);
  }
}

.color-zone {
  position: relative;
  overflow: hidden;
}

.color-zone::before {
  content: "";
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--purple), var(--green), transparent);
  opacity: 0;
  transform: scaleX(0.22);
  transform-origin: center;
  animation: sectionPulse 8s ease-in-out infinite;
}

.color-zone:nth-of-type(odd)::before {
  animation-delay: 2.2s;
}

.color-zone:nth-of-type(even)::before {
  animation-delay: 4.4s;
}

@keyframes sectionPulse {
  0%, 70%, 100% {
    opacity: 0;
    transform: scaleX(0.22);
  }

  12% {
    opacity: 0.7;
    transform: scaleX(1);
  }

  26% {
    opacity: 0.18;
    transform: scaleX(0.74);
  }
}

.color-zone::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(61, 139, 255, 0.08), transparent 24rem),
    radial-gradient(circle at 82% 42%, rgba(166, 108, 255, 0.07), transparent 24rem),
    radial-gradient(circle at 55% 88%, rgba(156, 255, 106, 0.05), transparent 22rem);
  transition: opacity 0.45s ease;
}

.color-zone:hover::after {
  opacity: 1;
}

.system-card:hover span,
.method-step:hover span {
  color: var(--green);
}

.capability-item:nth-child(1):hover h3 {
  color: var(--blue);
}

.capability-item:nth-child(2):hover h3 {
  color: var(--purple);
}

.capability-item:nth-child(3):hover h3 {
  color: var(--green);
}

.map-header::after {
  content: "";
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--green));
  opacity: 0;
  animation: mapStatusPulse 4s ease-in-out infinite;
}

@keyframes mapStatusPulse {
  0%, 100% {
    opacity: 0;
    transform: scaleX(0.25);
  }

  40% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.node.blue,
.node.purple,
.node.green {
  animation: nodeBreath 7s ease-in-out infinite;
}

.node.purple {
  animation-delay: 1.4s;
}

.node.green {
  animation-delay: 2.8s;
}

@keyframes nodeBreath {
  0%, 100% {
    background: rgba(8, 9, 11, 0.72);
  }

  45% {
    background: rgba(244, 239, 231, 0.055);
  }
}

.product-feature::before,
.modes-console::before,
.contact-direct::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border: 1px solid transparent;
  opacity: 0;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(120deg, var(--blue), var(--purple), var(--green)) border-box;
  mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: borderFlash 9s ease-in-out infinite;
}

.product-feature,
.modes-console,
.contact-direct {
  position: relative;
}

@keyframes borderFlash {
  0%, 74%, 100% {
    opacity: 0;
  }

  10% {
    opacity: 0.55;
  }

  26% {
    opacity: 0.12;
  }
}

@media (max-width: 740px) {
  .signal-field {
    display: none;
  }
}

.click-burst {
  position: fixed;
  width: 12px;
  height: 12px;
  border: 1px solid var(--green);
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0.9;
  animation: clickBurst 0.85s ease forwards;
}

@keyframes clickBurst {
  0% {
    transform: translate(-50%, -50%) scale(0.2) rotate(0deg);
    opacity: 0.9;
  }

  100% {
    transform: translate(-50%, -50%) scale(5.2) rotate(90deg);
    opacity: 0;
  }
}

.system-state {
  position: relative;
  overflow: hidden;
}

.system-state::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(244,239,231,.08), transparent);
  transform: translateX(-110%);
  animation: stateSweep 4s ease-in-out infinite;
}

@keyframes stateSweep {
  0%, 55% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(110%);
  }
}

.state-bars {
  display: flex;
  gap: 4px;
  margin-left: 0.3rem;
}

.state-bars span {
  width: 16px;
  height: 3px;
  opacity: 0.8;
  animation: barPulse 1.8s ease-in-out infinite;
}

.state-bars span:nth-child(1) {
  background: var(--blue);
}

.state-bars span:nth-child(2) {
  background: var(--purple);
  animation-delay: 0.2s;
}

.state-bars span:nth-child(3) {
  background: var(--green);
  animation-delay: 0.4s;
}

@keyframes barPulse {
  0%, 100% {
    transform: scaleX(0.35);
    opacity: 0.35;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@media (max-width: 1020px) {
  
}

.sequence-top {
  max-width: 980px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.sequence-top h2 {
  max-width: 960px;
}

.sequence-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.sequence-item {
  min-height: 390px;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(244,239,231,0.035), rgba(244,239,231,0.01)),
    rgba(8, 9, 11, 0.24);
  transition: transform 0.35s ease, background 0.35s ease;
}

.sequence-item::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 30% 10%, rgba(61,139,255,.15), transparent 18rem),
    radial-gradient(circle at 80% 80%, rgba(166,108,255,.12), transparent 18rem),
    radial-gradient(circle at 10% 90%, rgba(156,255,106,.10), transparent 16rem);
  transition: opacity 0.45s ease;
}

.sequence-item::after {
  content: "";
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.3rem;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--green));
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.sequence-item:hover {
  transform: translateY(-8px);
  background:
    linear-gradient(180deg, rgba(244,239,231,0.055), rgba(244,239,231,0.015)),
    rgba(8, 9, 11, 0.44);
}

.sequence-item:hover::before {
  opacity: 1;
}

.sequence-item:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.sequence-item span {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-bottom: clamp(4rem, 10vw, 8rem);
  position: relative;
  z-index: 1;
}

.sequence-item h3 {
  font-size: clamp(2.1rem, 4.5vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.sequence-item p {
  color: var(--muted);
  max-width: 26ch;
  position: relative;
  z-index: 1;
}

.sequence-item:nth-child(1):hover h3 {
  color: var(--blue);
}

.sequence-item:nth-child(2):hover h3 {
  color: var(--purple);
}

.sequence-item:nth-child(3):hover h3 {
  color: var(--green);
}

.sequence-item:nth-child(4):hover h3 {
  color: var(--ink);
}

.sequence-item:nth-child(5):hover h3 {
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--green));
  -webkit-background-clip: text;
  color: transparent;
}

@media (max-width: 1180px) {
  .sequence-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sequence-item {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .sequence-grid {
    grid-template-columns: 1fr;
  }

  .sequence-item {
    min-height: 260px;
  }

  .sequence-item span {
    margin-bottom: 3.5rem;
  }
}

/* Multilingual typography refinements */

.sequence-item h3 {
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  letter-spacing: -0.07em;
  overflow-wrap: normal;
  word-break: normal;
}

/* Arabic contact polish */

/* Prevent premium cards from feeling cramped */

@media (min-width: 1181px) and (max-width: 1450px) {
  .sequence-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .sequence-item {
    padding: 1.25rem;
  }

  .sequence-item h3 {
    font-size: clamp(1.9rem, 2.6vw, 3rem);
  }

  .sequence-item p {
    font-size: 0.96rem;
  }
}

@media (max-width: 980px) {
  .sequence-grid {
    grid-template-columns: 1fr;
  }

  .sequence-item {
    min-height: 240px;
  }

  .sequence-item h3 {
    font-size: clamp(2.6rem, 12vw, 5rem);
  }

  
}


/* Netlify Forms honeypot */
.hidden-field {
  display: none !important;
}

/* Success page */
.success-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: var(--pad);
}

.success-card {
  width: min(840px, 100%);
  border: 1px solid var(--line-strong);
  padding: clamp(2rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 10% 10%, rgba(61, 139, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 90% 90%, rgba(156, 255, 106, 0.08), transparent 22rem),
    rgba(244, 239, 231, 0.025);
}

.success-card h1 {
  font-size: clamp(2.6rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
  margin: 1rem 0;
}

.success-card p:not(.system-label) {
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.success-card a {
  color: var(--ink);
}

/* Success page button fix */
.success-button {
  display: inline-flex;
  width: auto;
  min-width: 220px;
  color: var(--bg) !important;
  background: var(--ink) !important;
}

.success-button span {
  color: var(--bg) !important;
}
