:root {
  color: #1f2937;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
}

main {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
}

nav a,
.button {
  color: #1f2937;
  font-weight: 900;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  background: #64eb0a;
  padding: 0 22px;
}

.eyebrow {
  color: #94a3b8;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  margin: 22px 0 24px;
  color: #000000;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
}

h2 {
  margin: 0 0 18px;
  color: #000000;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

h3 {
  margin: 0 0 8px;
  color: #000000;
  font-size: 22px;
  font-weight: 900;
}

p,
li {
  color: #475569;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
}

.lead {
  max-width: 820px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
}

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

.card,
details {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.08);
  padding: 24px;
}

.blue {
  border-color: #eaf3ff;
  background: #f6faff;
}

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

figure {
  margin: 0;
}

.product-shot {
  min-height: 360px;
  border: 1px solid #eaf3ff;
  border-radius: 22px;
  background: #f6faff;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.08);
}

.shot-card {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.08);
}

.shot-card + .shot-card {
  margin-top: 14px;
}

.shot-label {
  color: #94a3b8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shot-title {
  margin-top: 10px;
  color: #000000;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.1;
}

.shot-metric {
  display: inline-flex;
  margin-top: 16px;
  border-radius: 999px;
  background: #64eb0a;
  padding: 8px 14px;
  color: #000000;
  font-size: 14px;
  font-weight: 900;
}

.shot-meter {
  height: 12px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: #edeef1;
}

.shot-meter span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #64eb0a;
}

.wheel-diagram {
  position: relative;
  display: block;
  width: min(520px, 100%);
  aspect-ratio: 1;
  margin-top: 28px;
  margin-inline: auto;
}

.wheel-step {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 138px;
  height: 138px;
  border: 2px solid #111111;
  border-radius: 999px;
  background: #ffffff;
  padding: 16px;
  text-align: center;
  z-index: 2;
}

.wheel-step strong {
  display: block;
  color: #000000;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.05;
}

.wheel-step span {
  display: none;
}

.wheel-step.cash {
  left: 50%;
  top: 6%;
  transform: translateX(-50%);
}

.wheel-step.put {
  right: 3%;
  top: 42%;
  transform: translateY(-50%);
}

.wheel-step.shares {
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
}

.wheel-step.call {
  left: 3%;
  top: 42%;
  transform: translateY(-50%);
}

.wheel-center {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: #64eb0a;
  color: #000000;
  font-size: 28px;
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.wheel-ring {
  position: absolute;
  inset: 18%;
  border: 8px solid #4fea00;
  border-radius: 999px;
}

.wheel-caption {
  margin-top: 24px;
  color: #71717a;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: 0.24em;
  text-align: center;
  text-transform: uppercase;
}

.wheel-caption span {
  color: #2f9f16;
}

.workflow-map {
  position: relative;
  min-height: 440px;
  margin-top: 28px;
  border-radius: 24px;
  background: #ffffff;
}

.workflow-map::before,
.workflow-map::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 12%;
  top: 54%;
  border-top: 2px dashed #d9d9d9;
  transform: rotate(-12deg);
}

.workflow-map::after {
  left: 14%;
  right: 22%;
  top: 48%;
  transform: rotate(11deg);
}

.workflow-chip {
  display: inline-flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #ffffff;
  padding: 0 22px;
  color: #737373;
  font-size: 24px;
  font-weight: 900;
  transform: rotate(-4deg);
}

.workflow-chip.center {
  left: 44%;
  top: 44%;
  border-style: dashed;
  transform: rotate(0deg);
}

.workflow-chip.chain {
  left: 10%;
  top: 18%;
}

.workflow-chip.broker {
  left: 14%;
  bottom: 18%;
  transform: rotate(3deg);
}

.workflow-chip.chart {
  right: 18%;
  top: 12%;
  transform: rotate(4deg);
}

.workflow-chip.sheet {
  right: 7%;
  bottom: 16%;
  transform: rotate(-5deg);
}

.deck-slide {
  min-height: 620px;
  padding: 56px;
}

.deck-slide h2 {
  max-width: 520px;
  font-size: clamp(44px, 6vw, 78px);
}

.deck-large {
  margin-top: 44px;
  color: #000000;
  font-size: clamp(54px, 8vw, 90px);
  font-weight: 950;
  line-height: 1.08;
}

.deck-large span {
  color: #4fea00;
}

.pricing-strip {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.08);
}

.price-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  background: #64eb0a;
  padding: 0 16px;
  color: #000000;
  letter-spacing: 0.18em;
}

.price {
  color: #000000;
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 950;
  line-height: 0.9;
}

.price span {
  color: #64eb0a;
}

.price small {
  margin-left: 8px;
  color: #71717a;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
}

.pricing-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 38px;
  color: #000000;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: #4fea00;
  font-size: 28px;
  font-weight: 950;
}

.pricing-list li.muted {
  color: #71717a;
}

.pricing-list li.muted::before {
  color: #bdbdbd;
}

figcaption {
  margin-top: 12px;
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

section {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid #f1f2f4;
}

summary {
  cursor: pointer;
  color: #000000;
  font-size: 20px;
  font-weight: 900;
}

.disclaimer {
  margin-top: 40px;
  border-radius: 12px;
  background: #f6faff;
  padding: 18px;
  color: #64748b;
  font-size: 14px;
}

.site-footer {
  margin-top: 56px;
  border-radius: 32px;
  background: #000000;
  padding: 40px;
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.08);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
}

.site-footer-brand {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
}

.site-footer-copy {
  max-width: 520px;
  margin: 14px 0 0;
  color: #a1a1aa;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.site-footer-heading {
  margin: 0;
  color: #64eb0a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-footer-links {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.site-footer a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.site-footer a:hover {
  color: #64eb0a;
}

.site-footer-contact {
  margin-top: 30px;
}

.site-footer-copyright {
  margin: 30px 0 0;
  color: #71717a;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .grid,
  .screenshots,
  .wheel-diagram,
  .pricing-strip,
  .pricing-list,
  .site-footer-grid,
  .site-footer-columns {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 28px;
  }

  .workflow-map {
    min-height: auto;
  }

  .workflow-chip {
    position: static;
    display: flex;
    margin: 12px 0;
    transform: none;
  }

  .wheel-diagram {
    display: grid;
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    gap: 12px;
  }

  .wheel-step,
  .wheel-step.cash,
  .wheel-step.put,
  .wheel-step.shares,
  .wheel-step.call,
  .wheel-center,
  .wheel-ring {
    position: static;
    width: auto;
    height: auto;
    transform: none;
  }

  .wheel-ring {
    display: none;
  }

  .deck-slide {
    min-height: auto;
    padding: 28px 0;
  }
}
