:root {
  --ink: #08090d;
  --panel: #0d0f16;
  --panel-2: #141723;
  --paper: #f4f3f7;
  --white: #ffffff;
  --muted: #6a6e79;
  --muted-strong: #4c5260;
  --light-copy: rgba(255, 255, 255, 0.78);
  --light-muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(12, 15, 22, 0.085);
  --violet: #8c4dff;
  --violet-2: #c7a7ff;
  --cyan: #42d7dc;
  --green: #48d597;
  --amber: #d8b15d;
  --blue: #6b91ff;
  --shadow: 0 30px 90px rgba(5, 7, 13, 0.28);
  --premium-shadow: 0 42px 120px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
  overflow-x: hidden;
}

.kingston-page {
  background:
    radial-gradient(circle at 80% 8%, rgba(26, 118, 255, 0.22), transparent 28%),
    radial-gradient(circle at 18% 42%, rgba(66, 215, 220, 0.12), transparent 30%),
    linear-gradient(180deg, #050a16 0%, #07111f 46%, #08101d 100%);
}

.kingston-page::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.38;
  animation: navyGridDrift 18s linear infinite;
}

.violet-page {
  background: var(--paper);
}

@keyframes navyGridDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(56px, 56px, 0);
  }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 9px 10px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(20, 20, 30, 0.82), rgba(10, 11, 18, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(26px) saturate(135%);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
}

.brand,
.brand span,
.nav-links,
.hero-actions,
.trust-bar,
.signal-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 225px;
}

.brand-mark {
  flex: 0 0 42px;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 3px;
  overflow: hidden;
  border: 1px solid rgba(215, 194, 255, 0.28);
  border-radius: 999px;
  background: #02040d;
  box-shadow:
    0 0 0 1px rgba(75, 198, 255, 0.08),
    0 0 26px rgba(140, 77, 255, 0.32);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.brand span:last-child {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.brand strong {
  font-size: 13px;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.nav-links {
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  min-height: 36px;
  padding: 9px 12px;
  border: 1px solid rgba(216, 177, 93, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.nav-links a::after {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  background: linear-gradient(135deg, rgba(216, 177, 93, 0.28), rgba(140, 77, 255, 0.2));
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--white);
}

.nav-links a,
.nav-cta,
.contact-card a,
.faq-list summary {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  padding: 10px 14px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(216, 177, 93, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(216, 177, 93, 0.58);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
}

.nav-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0 28%, rgba(255, 255, 255, 0.22) 46%, transparent 66%);
  opacity: 0;
  transform: translateX(-65%);
  transition: opacity 180ms ease, transform 420ms ease;
}

.nav-cta:hover::before {
  opacity: 1;
  transform: translateX(65%);
}

.nav-cta::after {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  content: "->";
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover::after {
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(2px);
}

.nav-cta:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(140, 77, 255, 0.18));
  border-color: rgba(215, 194, 255, 0.42);
  box-shadow: 0 12px 34px rgba(124, 60, 255, 0.24);
}

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

main > section:not(.hero) {
  position: relative;
  color: var(--ink);
}

main > section:not(.hero)::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  content: "";
  background: var(--paper);
}

.kingston-page main > section:not(.hero):not(.product-feature):not(.event-section):not(.partner-section)::before {
  background:
    radial-gradient(circle at 88% 0%, rgba(26, 118, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #08111f, #0a1322);
}

.kingston-page .split-section h2,
.kingston-page .platform-section h2,
.kingston-page .insights-section h2,
.kingston-page .contact-faq h2 {
  color: var(--white);
}

.kingston-page .section-heading p,
.kingston-page .rich-copy,
.kingston-page .rich-copy p {
  color: rgba(235, 243, 255, 0.8);
}

.kingston-page .eyebrow {
  color: #9cc9ff;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  gap: 54px;
  min-height: 820px;
  margin-top: -64px;
  padding: 152px 0 96px;
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 73% 20%, rgba(140, 77, 255, 0.44), transparent 27%),
    radial-gradient(circle at 92% 55%, rgba(66, 215, 220, 0.16), transparent 26%),
    radial-gradient(circle at 24% 30%, rgba(199, 167, 255, 0.13), transparent 28%),
    linear-gradient(180deg, #05060a 0%, #10111a 68%, #08090d 100%);
  background-size: 48px 48px, 48px 48px, auto, auto, auto, auto;
}

.kingston-page .hero::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 78% 16%, rgba(26, 118, 255, 0.24), transparent 30%),
    radial-gradient(circle at 92% 52%, rgba(66, 215, 220, 0.12), transparent 28%),
    radial-gradient(circle at 22% 26%, rgba(54, 128, 255, 0.1), transparent 30%),
    linear-gradient(180deg, #020814 0%, #071426 58%, #050b16 100%);
  background-size: 48px 48px, 48px 48px, auto, auto, auto, auto;
}

body::before {
  display: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.signal-row {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
}

.signal-row span {
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d7c2ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.7vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0;
  color: inherit;
}

h3 {
  margin-bottom: 10px;
  font-size: 17px;
  letter-spacing: 0;
}

.hero-subhead,
.section-heading p,
.rich-copy,
.violet-panel p,
.ea-engine-section p,
.final-cta p {
  color: var(--light-copy);
  font-size: 17px;
  line-height: 1.75;
}

.hero-subhead {
  max-width: 650px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 28px;
}

.section-actions,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-actions {
  margin-top: 28px;
}

.panel-actions {
  margin-top: 28px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  overflow: hidden;
  border-radius: 7px;
  border: 1px solid rgba(216, 177, 93, 0.58);
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::after {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-left: 10px;
  content: "->";
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(216, 177, 93, 0.38);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.9;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0 24%, rgba(255, 255, 255, 0.2) 44%, transparent 64%);
  opacity: 0;
  transform: translateX(-70%);
  transition: opacity 180ms ease, transform 460ms ease;
}

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

.button:hover::before {
  opacity: 1;
  transform: translateX(70%);
}

.button:hover::after {
  opacity: 1;
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.2);
}

.button:focus-visible,
.nav-cta:focus-visible,
.contact-card a:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid rgba(215, 194, 255, 0.9);
  outline-offset: 3px;
}

.button.primary {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(216, 177, 93, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 48%),
    linear-gradient(135deg, #a46aff, #6530f1 58%, #3420b8);
  box-shadow: 0 18px 50px rgba(124, 60, 255, 0.44), 0 0 0 1px rgba(216, 177, 93, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.button.primary,
.button.secondary,
.button.dark,
.nav-cta {
  isolation: isolate;
}

.button.secondary {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.045));
  border-color: rgba(216, 177, 93, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button.primary:hover {
  box-shadow: 0 22px 62px rgba(124, 60, 255, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.button.secondary:hover {
  border-color: rgba(216, 177, 93, 0.86);
  background:
    linear-gradient(180deg, rgba(216, 177, 93, 0.18), rgba(140, 77, 255, 0.08));
}

.button.dark {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    linear-gradient(135deg, #151923, #080a10);
  border-color: rgba(216, 177, 93, 0.5);
  box-shadow: 0 16px 40px rgba(10, 12, 20, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.button.dark:hover {
  border-color: rgba(216, 177, 93, 0.82);
  box-shadow: 0 20px 54px rgba(10, 12, 20, 0.2), 0 0 0 1px rgba(140, 77, 255, 0.1);
}

.trust-bar {
  flex-wrap: wrap;
  gap: 8px 16px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
}

.trust-bar span::before,
.benefit-list span::before,
.widget-list span::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--green);
  border-radius: 999px;
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.ambient-grid {
  position: absolute;
  inset: 14px -20px 0 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background-image:
    radial-gradient(circle at 56% 33%, rgba(140, 77, 255, 0.22), transparent 26%),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
}

.hero-visual::before {
  position: absolute;
  right: 8%;
  bottom: 42px;
  left: 2%;
  height: 92px;
  content: "";
  background: radial-gradient(ellipse, rgba(124, 60, 255, 0.36), rgba(0, 0, 0, 0) 68%);
  filter: blur(18px);
  transform: rotate(-4deg);
}

.dashboard-card {
  position: absolute;
  top: 74px;
  right: 24px;
  z-index: 2;
  width: min(560px, calc(100% - 48px));
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(12, 14, 21, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--premium-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(28px) saturate(140%);
  animation: dashboardFloat 7s ease-in-out infinite;
}

.dashboard-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(112deg, transparent 0 34%, rgba(216, 177, 93, 0.12) 48%, transparent 62%);
  opacity: 0;
  transform: translateX(-80%);
  animation: dashboardSheen 5.8s ease-in-out infinite;
}

.dashboard-topbar,
.chart-header,
.positions div,
.status-strip,
.site-footer,
.ea-engine-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-topbar {
  height: 40px;
  gap: 7px;
  padding: 0 8px 10px;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
}

.dashboard-topbar strong {
  margin-left: 8px;
  margin-right: auto;
  font-size: 13px;
}

.dashboard-topbar em {
  padding: 4px 8px;
  color: #06140e;
  background: var(--green);
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.window-dot {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.metric-grid,
.feature-grid,
.proof-grid,
.performance-grid {
  display: grid;
  gap: 12px;
}

.metric-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
}

.metric-grid article,
.chart-panel,
.positions div,
.feature-grid article,
.performance-grid article,
.proof-grid article,
.earnings-stack article {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.metric-grid article {
  min-height: 90px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

small,
.metric-grid span,
.positions span,
.proof-grid small,
.earnings-stack small {
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
}

.metric-grid small {
  color: rgba(255, 255, 255, 0.72);
}

.metric-grid strong {
  display: block;
  margin: 12px 0 6px;
  color: var(--white);
  font-size: 20px;
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.76);
}

.metric-grid .positive {
  color: var(--green);
}

.chart-panel {
  margin-top: 12px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 255, 255, 0.12);
}

.chart-header {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.equity-chart {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 9px;
  height: 142px;
  margin-top: 18px;
  padding: 12px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 33%, 16.6% 100%;
  border-radius: 7px;
}

.equity-chart span {
  display: block;
  min-height: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 38%),
    linear-gradient(180deg, var(--cyan), var(--violet));
  border-radius: 7px 7px 2px 2px;
  box-shadow: 0 0 22px rgba(140, 77, 255, 0.22);
  animation: barGlow 3.2s ease-in-out infinite;
}

.equity-chart span:nth-child(2n) {
  animation-delay: 180ms;
}

.equity-chart span:nth-child(3n) {
  animation-delay: 360ms;
}

@keyframes dashboardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes dashboardSheen {
  0%,
  45% {
    opacity: 0;
    transform: translateX(-82%);
  }

  58% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(82%);
  }
}

@keyframes barGlow {
  0%,
  100% {
    filter: saturate(1);
  }

  50% {
    filter: saturate(1.25) brightness(1.08);
  }
}

.positions {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.positions div {
  min-height: 48px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}

.positions strong {
  color: var(--white);
}

.positions span {
  color: rgba(255, 255, 255, 0.74);
}

.launch-preview,
.split-section,
.platform-section,
.violet-section,
.dashboard-section,
.ea-engine-section,
.agents-section,
.steps-section,
.event-section,
.final-cta,
.contact-faq {
  padding: 104px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading p,
.violet-panel p,
.ea-engine-section p,
.final-cta p {
  color: var(--muted);
}

.split-section h2,
.platform-section h2,
.dashboard-section h2,
.ea-engine-section h2,
.agents-section h2,
.steps-section h2,
.contact-faq h2,
.launch-preview h2 {
  color: var(--ink);
}

.split-section .rich-copy,
.split-section .rich-copy p,
.ea-engine-section p {
  color: var(--muted-strong);
}

.violet-panel h2,
.final-cta h2 {
  color: var(--white);
}

.launch-preview .section-heading p,
.platform-section .section-heading p,
.dashboard-section .section-heading p,
.agents-section .section-heading p {
  color: var(--muted-strong);
}

.video-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: clamp(18px, 4vw, 34px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 28%, rgba(140, 77, 255, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    #090b12;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
  overflow: hidden;
}

.video-stage::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(199, 167, 255, 0.72), transparent);
}

.event-section {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 28px;
  align-items: stretch;
  padding: 44px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 177, 93, 0.16), transparent 32%),
    radial-gradient(circle at 92% 20%, rgba(140, 77, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #070910, #131827);
  border: 1px solid rgba(216, 177, 93, 0.18);
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
}

.event-copy {
  display: grid;
  align-content: center;
}

.event-copy h2 {
  color: var(--white);
  max-width: 800px;
}

.event-copy p {
  color: var(--light-copy);
  line-height: 1.72;
}

.countdown-card {
  display: grid;
  align-content: center;
  gap: 20px;
  min-height: 280px;
  padding: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(216, 177, 93, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.055);
  background-size: 44px 44px;
}

.countdown-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0 32%, rgba(216, 177, 93, 0.18) 50%, transparent 68%);
  animation: countdownSweep 3.8s ease-in-out infinite;
}

.countdown-card > * {
  position: relative;
  z-index: 1;
}

.countdown-card > span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.countdown-grid strong {
  display: grid;
  place-items: center;
  min-height: 82px;
  color: var(--white);
  border: 1px solid rgba(216, 177, 93, 0.36);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 177, 93, 0.22), transparent 52%),
    rgba(3, 5, 12, 0.54);
  font-size: clamp(32px, 6vw, 58px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: countdownPulse 1.9s ease-in-out infinite;
}

.countdown-grid strong:nth-child(2) {
  animation-delay: 160ms;
}

.countdown-grid strong:nth-child(3) {
  animation-delay: 320ms;
}

.countdown-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
}

@keyframes countdownSweep {
  0% {
    transform: translateX(-90%);
    opacity: 0;
  }

  42% {
    opacity: 1;
  }

  100% {
    transform: translateX(90%);
    opacity: 0;
  }
}

@keyframes countdownPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  50% {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(216, 177, 93, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
}

.teaser-video {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 430px);
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #05060a;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 86px;
}

.rich-copy {
  color: #454a55;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid article,
.performance-grid article,
.proof-grid article {
  min-height: 190px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84));
  box-shadow: 0 18px 55px rgba(10, 12, 20, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.feature-grid p {
  color: var(--muted-strong);
  line-height: 1.65;
}

.icon-chip {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 45%),
    var(--violet);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
}

.icon-chip.gold {
  background: var(--amber);
}

.icon-chip.teal {
  background: var(--cyan);
  color: #061513;
}

.icon-chip.slate {
  background: #222631;
}

.icon-chip.blue {
  background: var(--blue);
}

.icon-chip.green {
  background: var(--green);
  color: #06140e;
}

.violet-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  padding: 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(199, 167, 255, 0.36), transparent 25%),
    radial-gradient(circle at 82% 20%, rgba(66, 215, 220, 0.12), transparent 26%),
    linear-gradient(135deg, #080a10, #171329 58%, #080a10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
}

.violet-panel p,
.final-cta p {
  color: var(--light-copy);
}

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

.performance-grid article {
  min-height: 126px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
  border-color: rgba(255, 255, 255, 0.13);
}

.performance-grid small {
  color: rgba(255, 255, 255, 0.74);
}

.performance-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--white);
  font-size: 21px;
}

.risk-note {
  margin: 16px 0 0;
  color: var(--muted-strong);
  font-size: 13px;
}

.dashboard-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  padding: 20px;
  background:
    radial-gradient(circle at 82% 18%, rgba(140, 77, 255, 0.2), transparent 28%),
    #090b12;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
}

.showcase-main,
.widget-list {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.showcase-main {
  min-height: 430px;
  padding: 18px;
}

.status-strip {
  min-height: 66px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
}

.status-strip strong {
  color: var(--green);
}

.large-chart {
  position: relative;
  height: 300px;
  margin-top: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 36%, rgba(140, 77, 255, 0.18), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 100% 25%, 12.5% 100%;
  border-radius: 7px;
}

.large-chart div {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 40px;
  height: 160px;
  background:
    linear-gradient(180deg, rgba(38, 213, 195, 0.25), rgba(124, 60, 255, 0)),
    linear-gradient(115deg, transparent 0 8%, var(--cyan) 8% 10%, transparent 10% 22%, var(--violet) 22% 24%, transparent 24% 37%, var(--cyan) 37% 39%, transparent 39% 52%, var(--violet) 52% 54%, transparent 54% 65%, var(--cyan) 65% 67%, transparent 67% 76%, var(--violet) 76% 78%, transparent 78%);
  clip-path: polygon(0 72%, 11% 62%, 22% 68%, 34% 44%, 47% 50%, 59% 28%, 72% 36%, 85% 15%, 100% 20%, 100% 100%, 0 100%);
}

.widget-list {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.widget-list span {
  padding: 15px 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
}

.ea-engine-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 44px;
  align-items: stretch;
  padding: 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 0%, rgba(199, 167, 255, 0.2), transparent 30%),
    radial-gradient(circle at 96% 100%, rgba(66, 215, 220, 0.13), transparent 30%),
    linear-gradient(135deg, #080a10, #111522 58%, #080a10);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
}

.ea-engine-section::before {
  background: var(--paper);
}

.ea-engine-copy {
  display: grid;
  align-content: center;
}

.ea-engine-section h2 {
  color: var(--white);
}

.ea-engine-section p {
  color: var(--light-copy);
}

.ea-engine-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.ea-engine-badges span {
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.proof-grid {
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}

.proof-grid article {
  position: relative;
  min-height: 190px;
  padding: 22px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.proof-grid article::after {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 116px;
  height: 116px;
  content: "";
  background: radial-gradient(circle, rgba(140, 77, 255, 0.26), transparent 68%);
  border-radius: 50%;
}

.proof-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  color: #f8f5ff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 45%),
    linear-gradient(135deg, #8c4dff, #42d7dc);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.proof-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.proof-grid article:last-child strong {
  max-width: 260px;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.12;
}

.proof-grid small {
  color: rgba(255, 255, 255, 0.76);
}

.proof-grid em {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.agent-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.benefit-list,
.earnings-stack {
  display: grid;
  gap: 12px;
}

.benefit-list {
  align-content: start;
}

.benefit-list span {
  display: block;
  padding: 18px;
  color: #2c313a;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 18, 28, 0.08);
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 14px 40px rgba(10, 12, 20, 0.045);
}

.earnings-stack article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  align-items: center;
  min-height: 126px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    #0b0d13;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.earnings-stack small,
.earnings-stack span {
  color: rgba(255, 255, 255, 0.74);
}

.earnings-stack strong {
  grid-row: span 2;
  color: var(--cyan);
  font-size: clamp(26px, 4vw, 42px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.steps article {
  min-height: 180px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 18, 28, 0.08);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(10, 12, 20, 0.045);
}

.steps span {
  display: block;
  margin-bottom: 52px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 900;
}

.steps strong {
  line-height: 1.35;
}

.final-cta {
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(140, 77, 255, 0.4), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    #080a10;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
}

.final-cta p {
  max-width: 660px;
}

.contact-faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
}

.contact-card,
.faq-list details {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 18, 28, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(10, 12, 20, 0.055);
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
}

.contact-card a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  color: #202635;
  font-weight: 800;
  padding: 12px 14px;
  background: rgba(140, 77, 255, 0.055);
  border: 1px solid rgba(140, 77, 255, 0.12);
  border-radius: 7px;
  overflow-wrap: anywhere;
}

.contact-card a::after {
  display: inline-grid;
  flex: 0 0 24px;
  place-items: center;
  width: 24px;
  height: 24px;
  content: "->";
  color: #ffffff;
  background: linear-gradient(135deg, #8c4dff, #42d7dc);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  transition: transform 180ms ease;
}

.contact-card a:hover {
  color: #4f25c8;
  background: rgba(140, 77, 255, 0.1);
  border-color: rgba(140, 77, 255, 0.24);
  transform: translateY(-1px);
}

.contact-card a:hover::after {
  transform: translateX(3px);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 34px;
  cursor: pointer;
  color: #151923;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  width: 28px;
  height: 28px;
  content: "+";
  color: #ffffff;
  background: linear-gradient(135deg, #8c4dff, #42d7dc);
  border-radius: 999px;
  font-size: 17px;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-list details[open] summary,
.faq-list summary:hover {
  color: #5f2de0;
}

.faq-list details[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-list p {
  margin: 16px 0 0;
  color: var(--muted-strong);
  line-height: 1.65;
}

.corporate-hero h1 {
  max-width: 820px;
}

.corporate-visual .dashboard-card {
  transform: none;
}

.product-feature {
  display: grid;
  grid-template-columns: 0.75fr 0.95fr;
  gap: 28px;
  align-items: center;
  padding: 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(140, 77, 255, 0.28), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(216, 177, 93, 0.12), transparent 28%),
    linear-gradient(135deg, #080a10, #151126 56%, #080a10);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
}

.product-copy p {
  color: var(--light-copy);
  line-height: 1.72;
}

.product-copy h2 {
  color: var(--white);
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.32);
}

.product-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.product-metrics {
  grid-column: 1 / -1;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.insights-section {
  margin-top: 12px;
  padding: 96px 0 132px;
}

.insight-grid article {
  display: grid;
  align-content: start;
  min-height: 320px;
  padding: 16px;
  border: 1px solid rgba(15, 18, 28, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.84));
  box-shadow: 0 18px 55px rgba(10, 12, 20, 0.055);
}

.kingston-page .feature-grid article,
.kingston-page .insight-grid article,
.kingston-page .contact-card,
.kingston-page .faq-list details {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 255, 0.92));
  border-color: rgba(137, 170, 220, 0.18);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.kingston-page .feature-grid article::after,
.kingston-page .insight-grid article::after,
.kingston-page .contact-card::after,
.kingston-page .faq-list details::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 38%, rgba(75, 198, 255, 0.14) 50%, transparent 62%);
  opacity: 0;
  transform: translateX(-80%);
  animation: whiteCardSheen 7s ease-in-out infinite;
}

.kingston-page .feature-grid article > *,
.kingston-page .insight-grid article > *,
.kingston-page .contact-card > *,
.kingston-page .faq-list details > * {
  position: relative;
  z-index: 1;
}

@keyframes whiteCardSheen {
  0%,
  58% {
    opacity: 0;
    transform: translateX(-80%);
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(80%);
  }
}

.kingston-page .feature-grid h3,
.kingston-page .insight-grid h3,
.kingston-page .contact-card h2,
.kingston-page .faq-list summary {
  color: #08111f;
}

.kingston-page .feature-grid p,
.kingston-page .insight-grid ul,
.kingston-page .faq-list p {
  color: #243044;
}

.kingston-page .split-section .rich-copy,
.kingston-page .split-section .rich-copy p,
.kingston-page .platform-section > .section-heading p,
.kingston-page .insights-section > .section-heading p {
  color: #ffffff;
}

.kingston-page .split-section .rich-copy p {
  font-weight: 500;
}

.kingston-page .contact-card a {
  color: #101a2b;
  background: rgba(26, 118, 255, 0.07);
  border-color: rgba(26, 118, 255, 0.16);
}

.insight-grid small {
  display: inline-flex;
  width: fit-content;
  margin: 14px 0 10px;
  padding: 8px 10px;
  color: #5226c9;
  background: rgba(140, 77, 255, 0.08);
  border: 1px solid rgba(140, 77, 255, 0.14);
  border-radius: 999px;
  text-transform: uppercase;
}

.insight-grid ul {
  display: grid;
  gap: 7px;
  margin: 8px 0 16px;
  padding-left: 18px;
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.45;
}

.insight-visual {
  display: block;
  min-height: 118px;
  margin: 0;
  border: 1px solid rgba(15, 18, 28, 0.08);
  border-radius: 7px;
  background: #07111f;
  overflow: hidden;
  position: relative;
}

.insight-visual img {
  display: block;
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.mini-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  color: #16130b;
  border: 1px solid rgba(216, 177, 93, 0.56);
  border-radius: 999px;
  background: rgba(216, 177, 93, 0.12);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.mini-actions a:hover,
.mini-actions a:focus-visible {
  border-color: rgba(216, 177, 93, 0.9);
  background: rgba(216, 177, 93, 0.2);
  transform: translateY(-1px);
}

.insight-dialog {
  width: min(560px, calc(100% - 28px));
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(216, 177, 93, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 0%, rgba(75, 198, 255, 0.18), transparent 36%),
    radial-gradient(circle at 90% 8%, rgba(140, 77, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #07111f, #101827 54%, #121022);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.58);
}

.insight-dialog::backdrop {
  background: rgba(2, 5, 12, 0.74);
  backdrop-filter: blur(8px);
}

.insight-form {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.insight-form .eyebrow {
  margin-bottom: 0;
  color: #d8b15d;
}

.insight-form h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.insight-form p {
  margin: 0 0 4px;
  color: rgba(232, 239, 255, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

.insight-form label {
  display: grid;
  gap: 8px;
}

.insight-form label span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.insight-form input,
.insight-form select {
  min-height: 48px;
  width: 100%;
  padding: 12px 13px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  background: rgba(3, 7, 18, 0.68);
  font: inherit;
  outline: none;
}

.insight-form input:focus,
.insight-form select:focus {
  border-color: rgba(216, 177, 93, 0.72);
  box-shadow: 0 0 0 4px rgba(216, 177, 93, 0.14);
}

.dialog-close {
  justify-self: end;
  min-height: 34px;
  padding: 8px 12px;
  color: #e8efff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  cursor: pointer;
}

.dialog-close:hover,
.dialog-close:focus-visible {
  border-color: rgba(216, 177, 93, 0.72);
  color: #fff5d8;
}

.partner-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
  padding: 48px;
  color: var(--white);
  margin-top: 64px;
  background:
    radial-gradient(circle at 0% 0%, rgba(75, 198, 255, 0.16), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(140, 77, 255, 0.24), transparent 28%),
    linear-gradient(135deg, #090b12, #121827);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
}

.kingston-page .partner-section {
  background:
    radial-gradient(circle at 0% 0%, rgba(75, 198, 255, 0.18), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(26, 118, 255, 0.28), transparent 28%),
    linear-gradient(135deg, #07101d, #0b1a31);
  border-color: rgba(75, 198, 255, 0.18);
}

.partner-intro h2 {
  color: var(--white);
}

.partner-intro p {
  color: var(--light-copy);
  line-height: 1.72;
}

.partner-flow {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.partner-flow span {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.partner-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.partner-form label {
  display: grid;
  gap: 8px;
}

.partner-form span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.partner-form input,
.partner-form select,
.partner-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--white);
  background: rgba(3, 5, 12, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  font: inherit;
}

.partner-form textarea {
  resize: vertical;
}

.partner-form input:focus,
.partner-form select:focus,
.partner-form textarea:focus {
  outline: 2px solid rgba(215, 194, 255, 0.82);
  outline-offset: 2px;
}

.form-wide,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

.video-stage-wide {
  min-height: auto;
}

.video-stage-vertical {
  min-height: auto;
}

.vertical-video {
  width: min(100%, 430px);
  aspect-ratio: 9 / 16;
}

.video-placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(100%, 920px);
  aspect-ratio: 16 / 9;
  padding: 32px;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(140, 77, 255, 0.22), transparent 30%),
    #05060a;
  background-size: 80px 80px, 80px 80px, auto, auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.video-placeholder span {
  color: var(--violet-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-placeholder strong {
  display: block;
  color: var(--white);
  font-size: clamp(28px, 5vw, 58px);
  line-height: 1;
}

.video-placeholder p {
  max-width: 420px;
  margin: 0;
  color: var(--light-muted);
}

.status-page,
.portal-shell {
  min-height: calc(100vh - 180px);
  margin-top: 84px;
}

.status-page {
  display: grid;
  align-content: center;
  justify-items: start;
  color: var(--white);
  padding: 64px;
  background:
    radial-gradient(circle at 80% 12%, rgba(140, 77, 255, 0.28), transparent 32%),
    linear-gradient(135deg, #090b12, #121827);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
}

.status-page h1 {
  max-width: 820px;
}

.status-page p {
  max-width: 720px;
  color: var(--light-copy);
  line-height: 1.72;
}

.status-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.status-list span {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.portal-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: stretch;
  padding: 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 0% 0%, rgba(75, 198, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #080a10, #111522);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: var(--premium-shadow);
}

.portal-lock {
  display: grid;
  align-content: center;
}

.portal-lock h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 68px);
}

.portal-lock p {
  color: var(--light-copy);
  line-height: 1.72;
}

.portal-preview {
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.portal-grid article {
  min-height: 86px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  font-weight: 800;
}

.partner-benefit-layout {
  grid-template-columns: 1fr;
}

.partner-benefit-layout .benefit-list {
  grid-template-columns: repeat(3, 1fr);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  align-items: start;
  justify-content: initial;
  gap: 32px 54px;
  width: 100%;
  margin: 96px 0 0;
  padding: 34px max(16px, calc((100% - 1180px) / 2)) 42px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(216, 177, 93, 0.22);
  border-radius: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(216, 177, 93, 0.11), transparent 30%),
    radial-gradient(circle at 100% 18%, rgba(140, 77, 255, 0.2), transparent 38%),
    linear-gradient(135deg, rgba(4, 6, 13, 0.99), rgba(13, 12, 23, 0.99));
  box-shadow: var(--premium-shadow);
}

.footer-brand {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 82px;
}

.footer-logo {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  padding: 4px;
  overflow: hidden;
  border: 1px solid rgba(216, 177, 93, 0.34);
  border-radius: 999px;
  background: #02040d;
  box-shadow: 0 0 34px rgba(216, 177, 93, 0.16), 0 0 34px rgba(140, 77, 255, 0.2);
}

.footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.site-footer strong {
  display: block;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.footer-socials {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff7df;
  border: 1px solid rgba(216, 177, 93, 0.36);
  border-radius: 999px;
  background:
    radial-gradient(circle at 25% 20%, rgba(75, 198, 255, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(216, 177, 93, 0.16), rgba(140, 77, 255, 0.12));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--white);
  border-color: rgba(216, 177, 93, 0.78);
  background:
    radial-gradient(circle at 25% 20%, rgba(75, 198, 255, 0.28), transparent 36%),
    linear-gradient(135deg, rgba(216, 177, 93, 0.24), rgba(140, 77, 255, 0.2));
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-socials a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.footer-link-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 18px;
  justify-self: end;
  width: min(100%, 520px);
}

.footer-group {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
}

.footer-group span {
  margin-bottom: 5px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-group a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.footer-group a:hover,
.footer-group a:focus-visible {
  color: var(--white);
  transform: translateX(3px);
}

.footer-risk {
  grid-column: 1 / -1;
  max-width: none;
  margin: 0;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  line-height: 1.7;
}

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 900px;
    overflow: hidden;
  }

  .ambient-grid {
    inset: 14px 0 0 24px;
  }

  .dashboard-card {
    top: 54px;
    right: 18px;
    width: min(560px, calc(100% - 36px));
  }

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

  .split-section,
  .violet-panel,
  .dashboard-showcase,
  .ea-engine-section,
  .agent-layout,
  .event-section,
  .product-feature,
  .partner-section,
  .portal-shell,
  .contact-faq {
    grid-template-columns: 1fr;
  }

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

  .partner-benefit-layout .benefit-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-link-groups {
    justify-self: stretch;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .section-shell {
    width: calc(100% - 24px);
  }

  .hero {
    padding-top: 126px;
    gap: 20px;
  }

  .hero::before {
    inset: 0 -12px;
  }

  h1 {
    font-size: 39px;
    line-height: 1;
  }

  h2 {
    font-size: 34px;
  }

  .hero-visual {
    min-height: 900px;
    margin-top: -20px;
  }

  .dashboard-card {
    top: 40px;
    right: 0;
    width: 100%;
  }

  .feature-grid,
  .performance-grid,
  .proof-grid,
  .insight-grid,
  .partner-form,
  .portal-grid,
  .partner-benefit-layout .benefit-list,
  .steps {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .metric-grid article {
    min-height: 96px;
    padding: 10px;
  }

  .metric-grid strong {
    font-size: 17px;
  }

  .violet-panel,
  .video-stage,
  .product-feature,
  .partner-section,
  .portal-shell,
  .status-page {
    padding: 24px;
  }

  .launch-preview,
  .split-section,
  .platform-section,
  .violet-section,
  .dashboard-section,
  .ea-engine-section,
  .agents-section,
  .steps-section,
  .event-section,
  .final-cta,
  .contact-faq {
    padding: 68px 0;
  }

  .event-section {
    padding: 24px;
  }

  .earnings-stack article {
    grid-template-columns: 1fr;
  }

  .earnings-stack strong {
    grid-row: auto;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .footer-link-groups {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-card,
  .dashboard-card::after,
  .equity-chart span,
  .kingston-page::after,
  .kingston-page .feature-grid article::after,
  .kingston-page .insight-grid article::after,
  .kingston-page .contact-card::after,
  .kingston-page .faq-list details::after,
  .countdown-card::after,
  .countdown-grid strong {
    animation: none;
  }
}
