:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5f6875;
  --quiet: #eef3f8;
  --line: #dbe3ed;
  --panel: #ffffff;
  --dark: #0b0f14;
  --dark-2: #141b24;
  --blue: #1665d8;
  --cyan: #14b8c4;
  --green: #22a06b;
  --amber: #f59e0b;
  --red: #dc2626;
  --shadow: 0 22px 58px rgba(15, 23, 42, 0.18);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f7fafc;
  line-height: 1.55;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(20, 184, 196, 0.72);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 40;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #ffffff;
  border-radius: 6px;
  background: var(--blue);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 54px);
  color: #ffffff;
  background: rgba(9, 13, 19, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 13, 19, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img,
.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  background: var(--dark);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: 50% 48%;
  opacity: 0.62;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 8, 12, 0.95), rgba(5, 8, 12, 0.72) 50%, rgba(5, 8, 12, 0.25)),
    linear-gradient(180deg, rgba(5, 8, 12, 0.48), rgba(5, 8, 12, 0.9));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 118px 0 44px;
}

.hero-logo {
  width: min(560px, 86vw);
  height: auto;
  max-height: 150px;
  margin-bottom: 24px;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-dark .eyebrow,
.connection-section .eyebrow {
  color: #67e8f9;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(4rem, 9vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.14rem;
  line-height: 1.22;
}

.hero-copy {
  max-width: 810px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  white-space: nowrap;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 16px 34px rgba(22, 101, 216, 0.28);
}

.button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(920px, 100%);
  margin: 42px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-stats div {
  padding: 18px;
  background: rgba(8, 13, 20, 0.68);
}

.hero-stats dt {
  margin-bottom: 4px;
  color: #ffffff;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.notice-band {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

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

.notice-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 86px;
  color: var(--muted);
}

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

.notice-grid a {
  color: var(--blue);
  font-weight: 850;
}

.section {
  padding: clamp(70px, 9vw, 124px) 0;
  background: #f7fafc;
}

.platform-section,
.feature-section,
.updates-section,
.proof-section {
  background: #ffffff;
}

.media-section,
.chart-section,
.ai-section,
.trust-section,
.download-section,
.early-access {
  background: #f4f8fb;
}

.section-dark {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(13, 19, 28, 0.98), rgba(8, 12, 18, 1)),
    var(--dark);
}

.connection-section {
  color: #ffffff;
  background: linear-gradient(135deg, #082f49, #111827 58%, #2c1900);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p,
.section-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark p,
.connection-section p {
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.capability-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.capability-grid article,
.feature-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.capability-grid article {
  min-height: 250px;
  padding: 22px;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 62px;
  color: var(--green);
  font-weight: 900;
}

.capability-grid p,
.feature-grid p,
.workflow p {
  margin-bottom: 0;
}

.media-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 20, 36, 0.14);
  border-radius: 8px;
  background: #111827;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-frame.wide img {
  aspect-ratio: 16 / 8.7;
}

.media-frame figcaption,
.shot-grid figcaption {
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  background: #111827;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
}

.section-dark .check-list li,
.connection-section .check-list li {
  color: rgba(255, 255, 255, 0.84);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  transform: translateY(-50%);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.workflow article {
  min-height: 260px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.045);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow article:last-child {
  border-right: 0;
}

.workflow span {
  display: inline-flex;
  margin-bottom: 78px;
  color: var(--amber);
  font-weight: 900;
}

.feature-grid img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  background: #111827;
}

.feature-grid h3,
.feature-grid p {
  padding-left: 18px;
  padding-right: 18px;
}

.feature-grid h3 {
  padding-top: 18px;
}

.feature-grid p {
  padding-bottom: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.updates-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.updates-grid h3 {
  margin-bottom: 12px;
}

.updates-grid p {
  margin: 0;
  color: var(--muted);
}

.placeholder-shot {
  display: grid;
  align-content: center;
  min-height: 390px;
  padding: 28px;
  color: #ffffff;
  border: 1px solid rgba(20, 184, 196, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #111827, #083344);
  background-size: 26px 26px, 26px 26px, auto;
  box-shadow: var(--shadow);
}

.placeholder-shot span {
  width: max-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #a7f3d0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.placeholder-shot strong {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.placeholder-shot p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.broker-grid,
.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.broker-copy {
  align-self: center;
}

.pill-row {
  margin-top: 24px;
}

.pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 750;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
}

.trust-grid p {
  max-width: 760px;
  color: var(--muted);
}

.policy-links {
  display: grid;
  gap: 12px;
}

.policy-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 18px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  font-weight: 850;
}

.policy-links a::after {
  content: "PDF";
  color: var(--blue);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.policy-links a:hover,
.policy-links a:focus-visible {
  border-color: rgba(22, 101, 216, 0.36);
  box-shadow: 0 16px 34px rgba(22, 101, 216, 0.12);
}

.download-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  color: #ffffff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 47, 73, 0.96), rgba(17, 24, 39, 0.98) 54%, rgba(12, 42, 49, 0.98)),
    #111827;
  box-shadow: var(--shadow);
}

.download-card h2 {
  max-width: 760px;
}

.download-card p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.download-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.download-panel span {
  color: #a7f3d0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-panel strong {
  font-size: 1.35rem;
  line-height: 1.2;
}

.download-panel p {
  margin-bottom: 4px;
  font-size: 0.94rem;
}

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

.shot-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111827;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.shot-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.access-form {
  display: grid;
  gap: 15px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.access-form label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 0.9rem;
  font-weight: 800;
}

.access-form input,
.access-form select,
.access-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  background: #f8fafc;
  font: inherit;
}

.access-form textarea {
  resize: vertical;
}

.access-form input:focus,
.access-form select:focus,
.access-form textarea:focus {
  outline: 3px solid rgba(20, 184, 196, 0.2);
  border-color: var(--cyan);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #080c12;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 124px;
}

.footer-grid p {
  max-width: 720px;
  margin: 0;
  font-size: 0.9rem;
}

.footer-grid a {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  font-size: 0.92rem;
}

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

  .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(8, 12, 18, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .notice-grid,
  .split,
  .split-reverse,
  .broker-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .workflow,
  .feature-grid,
  .updates-grid,
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow article:nth-child(2) {
    border-right: 0;
  }

  .workflow article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand span {
    font-size: 0.96rem;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-content {
    padding-top: 108px;
    padding-bottom: 34px;
  }

  .hero-logo {
    width: 100%;
    max-height: 112px;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-stats,
  .workflow,
  .feature-grid,
  .updates-grid,
  .capability-grid,
  .shot-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .download-card {
    grid-template-columns: 1fr;
  }

  .workflow article,
  .workflow article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .workflow article:last-child {
    border-bottom: 0;
  }

  .workflow span,
  .card-kicker {
    margin-bottom: 38px;
  }

  .media-frame img,
  .media-frame.wide img,
  .shot-grid img {
    aspect-ratio: 4 / 3;
  }

  .button {
    width: 100%;
  }

  .footer-grid {
    padding: 30px 0;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
