:root {
  --bg: #030512;
  --bg-2: #070a1c;
  --panel: rgba(8, 12, 34, 0.78);
  --panel-strong: rgba(12, 15, 42, 0.94);
  --ink: #f7f5ff;
  --muted: #b9c3e6;
  --line: rgba(255, 255, 255, 0.13);
  --lime: #7bff1f;
  --lime-2: #b2ff52;
  --blue: #13b8ff;
  --purple: #7f35ff;
  --pink: #ff2f91;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(127, 53, 255, 0.26), transparent 26rem),
    radial-gradient(circle at 78% 18%, rgba(123, 255, 31, 0.16), transparent 29rem),
    radial-gradient(circle at 58% 72%, rgba(19, 184, 255, 0.13), transparent 28rem),
    linear-gradient(115deg, #050719 0%, #02040e 48%, #07150f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 86%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.ambient-canvas,
.cursor-light,
.page-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient-canvas {
  z-index: -3;
}

.cursor-light {
  z-index: -2;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 18%), rgba(123, 255, 31, 0.14), transparent 20rem);
}

.page-grid {
  z-index: -4;
  background:
    linear-gradient(180deg, rgba(3, 5, 18, 0.04), rgba(3, 5, 18, 0.86)),
    radial-gradient(circle at 16% 34%, rgba(127, 53, 255, 0.12), transparent 18rem);
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(123, 255, 31, 0.2);
  border-radius: 14px;
  background: rgba(4, 7, 21, 0.68);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
  transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.site-header.is-scrolled {
  border-color: rgba(123, 255, 31, 0.42);
  background: rgba(4, 7, 21, 0.92);
  transform: translateY(-4px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(127, 53, 255, 0.72), 0 0 24px rgba(19, 184, 255, 0.34);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.08rem;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: #dce4ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: #e7eaff;
  font-size: 0.86rem;
  font-weight: 850;
}

.nav a:hover {
  color: #030512;
  background: var(--lime);
}

.header-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  font-weight: 950;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-cta,
.button.primary {
  color: #02040e;
  background: linear-gradient(135deg, #dfffbd 0%, var(--lime) 46%, #55ef00 100%);
  box-shadow: 0 0 26px rgba(123, 255, 31, 0.52), 0 20px 46px rgba(0, 0, 0, 0.32);
}

.button.ghost {
  border: 1px solid rgba(127, 53, 255, 0.55);
  color: #ffffff;
  background: linear-gradient(135deg, rgba(127, 53, 255, 0.24), rgba(19, 184, 255, 0.08));
  box-shadow: 0 0 24px rgba(127, 53, 255, 0.22);
}

.header-cta::after,
.button::after {
  content: "";
  position: absolute;
  inset: -80% auto -80% -35%;
  width: 36%;
  transform: rotate(18deg);
  background: rgba(255, 255, 255, 0.64);
  filter: blur(8px);
  animation: shine 3.4s ease-in-out infinite;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.8fr);
  gap: clamp(26px, 6vw, 76px);
  align-items: center;
  min-height: min(820px, calc(100vh - 90px));
  padding: clamp(58px, 9vw, 112px) 0 72px;
}

.hero-orbit {
  position: absolute;
  left: -42px;
  top: 18%;
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-orbit span {
  padding: 12px 7px;
  border: 1px solid rgba(123, 255, 31, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dbe7ff;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 8px rgba(123, 255, 31, 0.12), 0 0 26px rgba(123, 255, 31, 0.8);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
}

h1 {
  max-width: 720px;
  margin: 18px 0 24px;
  font-size: clamp(4rem, 8vw, 7.6rem);
  line-height: 0.86;
}

h1 em {
  color: var(--lime);
  font-style: normal;
  text-shadow: 0 0 28px rgba(123, 255, 31, 0.58);
}

.hero-copy p {
  max-width: 650px;
  margin-bottom: 30px;
  color: #d5dbf3;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 650;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.studio-console {
  position: relative;
  min-height: 560px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(127, 53, 255, 0.56);
  border-radius: 28px;
  background:
    radial-gradient(circle at 72% 26%, rgba(123, 255, 31, 0.14), transparent 18rem),
    linear-gradient(150deg, rgba(12, 14, 42, 0.96), rgba(8, 10, 29, 0.82));
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.studio-console::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  pointer-events: none;
}

.console-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.console-top span,
.console-top b,
.console-card small {
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-top span {
  color: #dce4ff;
}

.console-top b {
  color: var(--lime);
}

.console-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 310px;
}

.pulse-ring,
.pulse-ring::before,
.pulse-ring::after {
  position: absolute;
  border-radius: 50%;
}

.pulse-ring {
  width: 300px;
  height: 300px;
  border: 1px solid rgba(19, 184, 255, 0.26);
  box-shadow: inset 0 0 38px rgba(19, 184, 255, 0.08);
}

.pulse-ring::before,
.pulse-ring::after {
  content: "";
  inset: 42px;
  border: 1px solid rgba(127, 53, 255, 0.36);
}

.pulse-ring::after {
  inset: 92px;
  border-color: rgba(123, 255, 31, 0.36);
}

.console-stage img {
  position: relative;
  z-index: 2;
  width: 138px;
  height: 138px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 0 34px rgba(127, 53, 255, 0.7), 0 0 34px rgba(19, 184, 255, 0.36);
}

.scan-line {
  position: absolute;
  inset: auto -20% 42% -20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(123, 255, 31, 0.9), transparent);
  box-shadow: 0 0 24px rgba(123, 255, 31, 0.7);
  animation: scanLine 4.8s ease-in-out infinite;
}

.console-stage::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: conic-gradient(from 15deg, rgba(123, 255, 31, 0.32), transparent 28%, rgba(127, 53, 255, 0.22), transparent 58%);
  animation: radarSweep 8s linear infinite;
}

.console-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.console-card {
  min-height: 150px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(3, 5, 18, 0.7);
}

.console-card.bad {
  border: 1px solid rgba(255, 47, 145, 0.46);
}

.console-card.good {
  border: 1px solid rgba(123, 255, 31, 0.5);
}

.console-card small {
  color: var(--muted);
}

.console-card strong {
  display: block;
  margin-top: 18px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.36rem;
  line-height: 1.05;
}

.console-card.bad strong {
  color: var(--pink);
}

.console-card.good strong {
  color: var(--lime);
}

.ticker {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(123, 255, 31, 0.2);
  background: linear-gradient(90deg, rgba(127, 53, 255, 0.44), rgba(3, 5, 18, 0.96), rgba(123, 255, 31, 0.28));
}

.ticker div {
  display: flex;
  gap: 34px;
  width: max-content;
  padding: 16px 0;
  animation: marquee 28s linear infinite;
}

.ticker span {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 2rem);
  font-weight: 700;
  white-space: nowrap;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.lab-copy h2,
.proof-copy h2,
.quote-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  line-height: 0.92;
}

.switch-section,
.lab-section,
.method-section,
.proof-section {
  padding: clamp(74px, 10vw, 124px) 0;
}

.presence-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 84px minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.presence-card {
  position: relative;
  min-width: 0;
  min-height: 620px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.presence-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  pointer-events: none;
}

.presence-card.offline {
  background:
    radial-gradient(circle at 14% 68%, rgba(255, 47, 145, 0.18), transparent 18rem),
    linear-gradient(150deg, rgba(31, 7, 28, 0.9), rgba(5, 7, 20, 0.9));
}

.presence-card.online {
  background:
    radial-gradient(circle at 74% 66%, rgba(123, 255, 31, 0.17), transparent 19rem),
    radial-gradient(circle at 42% 18%, rgba(127, 53, 255, 0.22), transparent 22rem),
    linear-gradient(150deg, rgba(7, 12, 34, 0.95), rgba(4, 7, 20, 0.9));
}

.presence-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.presence-label span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.presence-label strong {
  color: var(--lime);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  line-height: 0.95;
}

.offline .presence-label strong {
  color: var(--pink);
}

.offline-screen,
.site-preview {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  margin: 44px auto 30px;
}

.offline-screen {
  display: grid;
  place-items: center;
  min-height: 330px;
  border: 1px solid rgba(255, 47, 145, 0.38);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 47, 145, 0.08), transparent),
    rgba(3, 5, 18, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 44px rgba(255, 47, 145, 0.14);
}

.offline-screen b {
  color: var(--pink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(5.4rem, 11vw, 8rem);
  line-height: 0.78;
  text-shadow: 0 0 28px rgba(255, 47, 145, 0.5);
}

.offline-screen small {
  max-width: 210px;
  color: #ffd4e7;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.site-preview {
  display: grid;
  gap: 18px;
  min-height: 330px;
  padding: 18px;
  border: 1px solid rgba(123, 255, 31, 0.35);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 0%, rgba(123, 255, 31, 0.18), transparent 12rem),
    linear-gradient(135deg, rgba(8, 12, 34, 0.96), rgba(16, 8, 48, 0.9));
  box-shadow: inset 0 -100px 130px rgba(127, 53, 255, 0.16), 0 0 44px rgba(123, 255, 31, 0.1);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.browser-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--purple);
}

.browser-bar i:nth-child(2) {
  background: var(--blue);
}

.browser-bar i:nth-child(3) {
  background: var(--lime);
}

.site-preview img {
  width: 68px;
  height: 68px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(127, 53, 255, 0.52);
}

.site-preview h3 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 0.92;
}

.site-preview .preview-cta {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #02040e;
  background: var(--lime);
  font-weight: 950;
}

.presence-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.presence-card li {
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(3, 5, 18, 0.58);
  color: #dce3f8;
  font-weight: 760;
  line-height: 1.42;
}

.conversion-spine {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 16px;
}

.conversion-spine span {
  width: 1px;
  height: 180px;
  background: linear-gradient(var(--purple), var(--lime));
  box-shadow: 0 0 22px rgba(123, 255, 31, 0.44);
}

.conversion-spine b {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(123, 255, 31, 0.38);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(3, 5, 18, 0.86);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.lab-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.lab-copy p,
.proof-copy p,
.quote-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.objective-panel {
  position: relative;
  min-height: 500px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(127, 53, 255, 0.42);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 16%, rgba(123, 255, 31, 0.16), transparent 18rem),
    rgba(8, 12, 34, 0.72);
  box-shadow: var(--shadow);
}

.objective-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% 20%;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(19, 184, 255, 0.26), rgba(123, 255, 31, 0.18), rgba(127, 53, 255, 0.24));
  filter: blur(36px);
}

.objective-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.objective-tabs button {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: #eaf0ff;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 900;
}

.objective-tabs button.is-active {
  color: #02040e;
  border-color: transparent;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(123, 255, 31, 0.38);
}

.objective-visual {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 372px;
  margin-top: 18px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, rgba(3, 5, 18, 0.72), rgba(9, 12, 36, 0.88));
  background-size: 42px 42px, 42px 42px, auto;
}

.objective-visual span {
  margin-bottom: 20px;
  color: var(--lime);
  font-weight: 950;
}

.objective-visual strong {
  max-width: 520px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: 0.92;
}

.objective-visual p {
  max-width: 470px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.method-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 16px;
}

.method-card {
  position: relative;
  min-height: 270px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(8, 12, 34, 0.72);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
}

.method-card::after {
  content: "";
  position: absolute;
  inset: auto -26% -44% 10%;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(127, 53, 255, 0.22), rgba(19, 184, 255, 0.16), rgba(123, 255, 31, 0.16));
  filter: blur(28px);
}

.method-card span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--lime);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
}

.method-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.method-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.proof-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(28px, 6vw, 68px);
  align-items: center;
}

.proof-art {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(123, 255, 31, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.proof-art img {
  width: 100%;
  border-radius: 20px;
}

.proof-copy .button {
  margin-top: 14px;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  margin-bottom: 86px;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(123, 255, 31, 0.28);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 20%, rgba(123, 255, 31, 0.16), transparent 24rem),
    radial-gradient(circle at 10% 84%, rgba(19, 184, 255, 0.14), transparent 22rem),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(8, 12, 34, 0.78);
  backdrop-filter: blur(18px);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #eef1ff;
  font-size: 0.86rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  outline: none;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.28);
}

input,
select {
  min-height: 52px;
  padding: 0 14px;
}

textarea {
  min-height: 136px;
  resize: vertical;
  padding: 14px;
}

select option {
  color: #02040e;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(123, 255, 31, 0.12);
}

.full {
  width: 100%;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  font-family: "Space Grotesk", Inter, sans-serif;
}

.site-footer span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--lime);
  font-weight: 900;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes shine {
  0%, 46% { transform: translateX(0) rotate(18deg); opacity: 0; }
  54% { opacity: 1; }
  100% { transform: translateX(430%) rotate(18deg); opacity: 0; }
}

@keyframes scanLine {
  0%, 100% { transform: translateY(-130px); opacity: 0; }
  18%, 74% { opacity: 1; }
  50% { transform: translateY(130px); }
}

@keyframes radarSweep {
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: space-between;
  }

  .hero,
  .lab-section,
  .proof-section,
  .quote-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-orbit {
    display: none;
  }

  .presence-board {
    grid-template-columns: 1fr;
  }

  .conversion-spine {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-items: stretch;
  }

  .conversion-spine span {
    width: 100%;
    height: 1px;
  }

  .method-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .section-shell,
  .site-header,
  .site-footer {
    width: calc(100vw - 20px);
  }

  .site-header {
    top: 10px;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    gap: 30px;
    padding-top: 54px;
    padding-bottom: 58px;
  }

  h1 {
    max-width: 360px;
    font-size: clamp(2.75rem, 13.6vw, 4rem);
    line-height: 0.92;
  }

  .hero-copy p {
    max-width: 360px;
    font-size: 0.98rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .studio-console {
    min-height: auto;
    padding: 16px;
    border-radius: 22px;
  }

  .console-top {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .console-stage {
    min-height: 250px;
  }

  .pulse-ring,
  .console-stage::after {
    width: 220px;
    height: 220px;
  }

  .console-stage img {
    width: 104px;
    height: 104px;
  }

  .console-cards {
    grid-template-columns: 1fr;
  }

  .console-card {
    min-height: 116px;
  }

  .section-heading h2,
  .lab-copy h2,
  .proof-copy h2,
  .quote-copy h2 {
    font-size: clamp(2.18rem, 11vw, 3.3rem);
  }

  .switch-section,
  .lab-section,
  .method-section,
  .proof-section {
    padding: 70px 0;
  }

  .presence-card {
    min-height: auto;
    padding: 18px;
    border-radius: 22px;
  }

  .presence-label {
    flex-direction: column;
  }

  .offline-screen,
  .site-preview {
    margin: 28px auto 22px;
  }

  .offline-screen,
  .site-preview {
    min-height: 280px;
  }

  .site-preview h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .conversion-spine b {
    width: 58px;
    height: 58px;
  }

  .objective-panel {
    min-height: auto;
    padding: 16px;
    border-radius: 22px;
  }

  .objective-tabs {
    grid-template-columns: 1fr;
  }

  .objective-visual {
    min-height: 330px;
  }

  .objective-visual strong {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .method-section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 8px;
  }

  .method-card {
    min-height: 210px;
  }

  .method-card span {
    margin-bottom: 34px;
  }

  .proof-art,
  .quote-section,
  .quote-form {
    border-radius: 22px;
  }

  .quote-section {
    padding: 20px;
    margin-bottom: 64px;
  }

  .quote-form {
    padding: 16px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
