:root {
  --bg: #07100f;
  --panel: #0e1a18;
  --panel-2: #12231f;
  --ink: #f4fbf8;
  --muted: #a9bbb4;
  --line: rgba(244, 251, 248, 0.12);
  --green: #7dff9b;
  --cyan: #55d8ff;
  --amber: #ffc45d;
  --coral: #ff6f61;
  --dark: #050908;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 8%, rgba(85, 216, 255, 0.16), transparent 28rem),
    linear-gradient(180deg, #07100f 0%, #091311 46%, #f2f7f3 46%, #f2f7f3 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.topline {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 18px;
  background: #7dff9b;
  color: #06100d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.topline a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(6, 16, 13, 0.45);
}

.site-header {
  position: sticky;
  top: 38px;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 15, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 18px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  font-size: 14px;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--green);
  color: #06100d;
  box-shadow: 0 14px 38px rgba(125, 255, 155, 0.22);
}

.button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.button.dark {
  background: #07100f;
  color: #ffffff;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 52px;
  align-items: center;
  min-height: calc(100vh - 114px);
  padding: 64px 0 86px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(125, 255, 155, 0.36);
  border-radius: 8px;
  background: rgba(125, 255, 155, 0.08);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: #07100f;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.16;
}

.hero-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 680px;
  margin-top: 42px;
}

.stat {
  min-height: 96px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.stat strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.product-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(145deg, #10231f, #06100d);
  box-shadow: var(--shadow);
}

.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.screen-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.screen-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.live-pill {
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(255, 196, 93, 0.14);
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.screen-body {
  flex: 1;
  padding: 20px;
}

.workflow-card {
  min-height: 122px;
  padding: 18px;
  border: 1px solid rgba(85, 216, 255, 0.24);
  border-radius: 8px;
  background: rgba(85, 216, 255, 0.08);
  color: #d8f5ff;
}

.workflow-card span {
  display: block;
  color: var(--sky);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.workflow-card strong {
  display: block;
  margin-top: 12px;
  color: var(--paper);
  font-size: 28px;
  line-height: 1.08;
}

.workflow-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.market-table {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.market-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 10px;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid var(--line);
}

.market-row:last-child {
  border-bottom: 0;
}

.market-row small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.price {
  color: var(--green);
  font-weight: 900;
}

.task-summary {
  position: static;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 20px 20px;
}

.task-summary div {
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.task-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.task-summary strong {
  display: block;
  margin-top: 10px;
  color: var(--paper);
  font-size: 16px;
  line-height: 1.2;
}

.section {
  padding: 88px 0;
  background: #f2f7f3;
  color: #07100f;
}

.section.dark {
  background: #07100f;
  color: var(--ink);
}

.section.dark h2 {
  color: var(--ink);
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 540px;
  margin-bottom: 0;
  color: #50635c;
  font-size: 18px;
}

.dark .section-head p,
.dark .card p,
.dark .timeline p,
.dark .split p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(7, 16, 15, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.dark .card {
  border-color: var(--line);
  background: var(--panel);
}

.card .icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: #07100f;
  color: var(--green);
  font-weight: 900;
}

.card p {
  color: #50635c;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metric-strip div {
  padding: 22px;
  background: var(--panel);
}

.metric-strip strong {
  display: block;
  color: var(--green);
  font-size: 28px;
}

.metric-strip span {
  color: var(--muted);
  font-size: 13px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.diagram {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.flow {
  display: grid;
  gap: 12px;
}

.flow span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font-weight: 850;
}

.flow span b {
  color: var(--green);
}

.page-hero {
  padding: 82px 0 74px;
  background: #07100f;
  color: var(--ink);
}

.page-hero .wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 34px;
  align-items: center;
}

.page-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(42px, 7vw, 82px);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}

.page-logo {
  justify-self: end;
  width: 220px;
  filter: drop-shadow(0 22px 60px rgba(125, 255, 155, 0.22));
}

.offer-board {
  display: grid;
  gap: 14px;
}

.offer {
  display: grid;
  grid-template-columns: 1fr 120px 120px 120px;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(7, 16, 15, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.offer strong {
  display: block;
}

.offer small {
  color: #50635c;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(85, 216, 255, 0.15);
  color: #07506a;
  font-size: 12px;
  font-weight: 900;
}

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

.timeline article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.timeline span {
  color: var(--green);
  font-weight: 900;
}

.whitepaper {
  background: #ffffff;
  color: #07100f;
}

.whitepaper article {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.whitepaper h2 {
  margin-top: 46px;
  font-size: 34px;
}

.whitepaper h3 {
  margin-top: 26px;
}

.whitepaper p,
.whitepaper li {
  color: #3f514a;
  font-size: 18px;
}

.whitepaper .timeline h3 {
  color: var(--ink);
}

.whitepaper .timeline p {
  color: var(--muted);
  font-size: 16px;
}

.whitepaper pre {
  overflow-x: auto;
  padding: 22px;
  border-radius: 8px;
  background: #07100f;
  color: #dfffe7;
}

.buy-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.buy-callout {
  padding: 34px;
  border-radius: 8px;
  background: #7dff9b;
  color: #06100d;
}

.buy-callout h2 {
  color: #06100d;
}

.buy-callout p {
  color: #173029;
  font-size: 18px;
}

.contract-box {
  margin: 18px 0;
  padding: 14px;
  border: 1px solid rgba(6, 16, 13, 0.14);
  border-radius: 8px;
  background: rgba(6, 16, 13, 0.06);
}

.contract-box span {
  display: block;
  color: rgba(6, 16, 13, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contract-box code {
  display: block;
  margin-top: 8px;
  color: #06100d;
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.notice {
  padding: 18px;
  border: 1px solid rgba(255, 196, 93, 0.3);
  border-radius: 8px;
  background: rgba(255, 196, 93, 0.12);
  color: #ffe3a9;
}

.footer {
  padding: 44px 0;
  background: #07100f;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 920px) {
  .site-header {
    top: 52px;
  }

  .nav {
    min-height: 68px;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #07100f;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px;
  }

  .nav-actions .button.secondary {
    display: none;
  }

  .hero,
  .split,
  .page-hero .wrap,
  .buy-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .product-screen {
    min-height: auto;
  }

  .page-logo {
    justify-self: start;
    width: 150px;
  }

  .grid.three,
  .grid.two,
  .timeline,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

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

@media (max-width: 620px) {
  .topline {
    padding: 8px 12px;
    font-size: 12px;
  }

  .site-header {
    top: 50px;
  }

  .nav {
    width: min(100% - 24px, 1180px);
  }

  .brand span {
    display: none;
  }

  .hero,
  .wrap {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy p,
  .page-hero p,
  .section-head p {
    font-size: 17px;
  }

  .hero-stats,
  .task-summary {
    grid-template-columns: 1fr;
  }

  .market-row,
  .offer {
    grid-template-columns: 1fr;
  }

  .footer .wrap {
    display: block;
  }

  .footer-links {
    margin-top: 18px;
  }
}
