:root {
  --blue: #7abd73;
  --blue-dark: #5ea858;
  --blue-soft: #eef8ec;
  --green: #36bfa2;
  --green-dark: #238b74;
  --purple: #9659eb;
  --yellow: #ffe356;
  --ink: #1e2329;
  --muted: #707783;
  --line: #e4e8ef;
  --soft: #f7faf6;
  --dark: #352f3a;
  --white: #fff;
  --font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1160px;
  --shadow: 0 24px 70px rgba(52, 94, 49, .11);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(25, 39, 61, .06);
}

.header-inner {
  display: grid;
  grid-template-columns: 190px 1fr 220px;
  gap: 28px;
  align-items: center;
  min-height: 76px;
}

.brand { display: inline-flex; width: max-content; text-decoration: none; }
.brand img { width: 142px; height: auto; }

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.desktop-nav a {
  position: relative;
  color: #4e5661;
  font-size: .79rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transition: width .2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: .75rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

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

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 9px 22px rgba(122, 189, 115, .26);
}

.button-primary:hover { background: var(--blue-dark); box-shadow: 0 12px 27px rgba(122, 189, 115, .34); }
.button-ghost { color: #3e4650; background: #fff; border-color: var(--line); }
.button-ghost:hover { border-color: #c6ceda; }
.button-large { min-height: 49px; padding-inline: 25px; font-size: .8rem; }

.menu-button {
  display: none;
  width: 43px;
  height: 43px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  transition: opacity .2s ease, transform .2s ease;
}

.mobile-menu { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 62px;
}

.hero::before {
  position: absolute;
  top: -380px;
  left: 50%;
  width: 1040px;
  height: 720px;
  content: "";
  background: radial-gradient(circle, rgba(122, 189, 115, .12), rgba(122, 189, 115, 0) 68%);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-content { position: relative; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 19px;
  color: var(--blue);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow > span { width: 22px; height: 2px; background: currentColor; }

.hero h1 {
  max-width: 850px;
  margin: 0 auto;
  font-size: clamp(3.55rem, 6.2vw, 5.55rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.065em;
}

.hero h1 span { color: var(--blue); }

.hero-content > p {
  max-width: 690px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: .98rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 30px;
}

.hero-earning {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 9px 13px 9px 10px;
  color: #3f5d3d;
  background: #fff;
  border: 1px solid #dbead8;
  border-radius: 9px;
  box-shadow: 0 10px 30px rgba(63, 103, 58, .08);
  font-size: .69rem;
}

.hero-earning strong {
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 7px;
  font-size: .92rem;
}

.hero-earning span { color: var(--muted); }
.hero-earning b { color: var(--blue-dark); font-size: .77rem; }

.earning-disclaimer {
  display: block;
  max-width: 670px;
  margin: 9px auto 0;
  color: #929990;
  font-size: .56rem;
  line-height: 1.55;
}

.hero-stage {
  position: relative;
  width: min(100%, 910px);
  min-height: 390px;
  margin: 69px auto 0;
  background:
    linear-gradient(rgba(122,189,115,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122,189,115,.075) 1px, transparent 1px),
    #fcfefc;
  background-size: 28px 28px;
  border: 1px solid #e2eee0;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(58, 96, 53, .1);
}

.hero-stage::before,
.hero-stage::after {
  position: absolute;
  content: "";
  border: 2px solid #cfe5cc;
  border-radius: 50%;
}

.hero-stage::before { top: 43px; left: 90px; width: 90px; height: 90px; border-right-color: transparent; }
.hero-stage::after { right: 96px; bottom: 42px; width: 65px; height: 65px; border-left-color: transparent; }

.mascot-orbit {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 410px;
  min-height: 260px;
  padding: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid #e0ece0;
  border-radius: 40px;
  box-shadow: 0 26px 55px rgba(54, 89, 51, .13);
  transform: translate(-50%, -50%);
}

.mascot-orbit::before {
  position: absolute;
  inset: -19px;
  z-index: -1;
  content: "";
  border: 1px dashed #acd3a8;
  border-radius: 55px;
}

.mascot-orbit img { width: 100%; border-radius: 24px; }
.orbit-dot { position: absolute; z-index: 4; width: 13px; height: 13px; border-radius: 2px; }
.orbit-dot-one { top: -22px; right: 37px; background: var(--yellow); transform: rotate(18deg); }
.orbit-dot-two { bottom: 14px; left: -29px; background: var(--green); border-radius: 50%; }
.orbit-dot-three { top: 48px; left: -33px; background: var(--purple); transform: rotate(35deg); }

.float-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 214px;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 16px 35px rgba(27, 50, 84, .12);
  text-align: left;
}

.float-card-link { top: 72px; left: 36px; }
.float-card-stat { right: 35px; bottom: 72px; }
.float-card strong, .float-card small { display: block; }
.float-card strong { font-size: .72rem; }
.float-card small { margin-top: 2px; color: var(--muted); font-size: .61rem; }
.float-icon { display: grid; flex: 0 0 38px; height: 38px; place-items: center; border-radius: 8px; }
.float-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.float-icon-blue { color: var(--blue); background: var(--blue-soft); }
.float-icon-green { color: var(--green-dark); background: #def8ef; }

.flow-line { position: absolute; z-index: 2; height: 2px; background: #bfdcbb; }
.flow-line::after { position: absolute; top: -4px; width: 9px; height: 9px; content: ""; background: var(--blue); border-radius: 50%; }
.flow-line-left { top: 140px; left: 234px; width: 126px; transform: rotate(12deg); }
.flow-line-left::after { right: 0; }
.flow-line-right { right: 229px; bottom: 137px; width: 123px; transform: rotate(8deg); }
.flow-line-right::after { left: 0; background: var(--green); }

.capability-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 910px);
  margin: 35px auto 0;
  color: #8a919c;
  font-size: .67rem;
  font-weight: 600;
}

.capability-row span { padding: 7px 20px; border-right: 1px solid var(--line); }
.capability-row span:last-child { border-right: 0; }

.hero-confetti span { position: absolute; z-index: 1; width: 9px; height: 9px; }
.hero-confetti span:nth-child(1) { top: 145px; left: 10%; background: var(--yellow); transform: rotate(25deg); }
.hero-confetti span:nth-child(2) { top: 215px; right: 9%; background: var(--blue); border-radius: 50%; }
.hero-confetti span:nth-child(3) { top: 420px; left: 7%; background: var(--purple); transform: rotate(38deg); }
.hero-confetti span:nth-child(4) { top: 510px; right: 7%; background: var(--green); border-radius: 50%; }
.hero-confetti span:nth-child(5) { top: 110px; right: 22%; background: var(--blue); transform: rotate(15deg); }

.workflow-section { padding: 112px 0; }
.workflow-card {
  display: grid;
  grid-template-columns: 1.13fr .87fr;
  gap: 65px;
  align-items: center;
  padding: 48px;
  background: var(--soft);
  border-radius: 12px;
}

.workflow-preview {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dbe3ef;
  border-radius: 10px;
  box-shadow: 0 20px 45px rgba(34, 54, 81, .12);
  transform: rotate(-1deg);
}

.browser-bar { display: flex; align-items: center; gap: 6px; height: 41px; padding: 0 13px; background: #202631; }
.browser-bar > span { width: 7px; height: 7px; background: #69717d; border-radius: 50%; }
.browser-bar > span:first-child { background: #ff6e66; }
.browser-bar > span:nth-child(2) { background: #ffd057; }
.browser-bar > span:nth-child(3) { background: #42ce85; }
.browser-bar > div { flex: 1; margin-left: 10px; padding: 5px 12px; color: #9da5b0; background: #303744; border-radius: 4px; font-size: .55rem; }

.workflow-canvas { position: relative; min-height: 330px; padding: 45px 35px; background: linear-gradient(150deg,#fff,#f5f8fd); }
.url-input { display: flex; align-items: center; justify-content: space-between; padding: 14px 15px; background: #fff; border: 1px solid #d8e0eb; border-radius: 7px; box-shadow: 0 8px 18px rgba(34,54,81,.07); }
.url-input span { max-width: 78%; overflow: hidden; color: #8a929e; font-size: .63rem; text-overflow: ellipsis; white-space: nowrap; }
.url-input i { display: grid; width: 27px; height: 27px; place-items: center; color: #fff; background: var(--blue); border-radius: 5px; font-style: normal; }
.short-result { display: flex; align-items: center; gap: 12px; width: 75%; margin: 25px 0 0 18%; padding: 15px; background: #fff; border: 1px solid #dfe6f0; border-radius: 8px; box-shadow: 0 12px 24px rgba(36,59,92,.08); }
.result-check { display: grid; width: 34px; height: 34px; place-items: center; color: #008c63; background: #dcf9ee; border-radius: 50%; font-weight: 800; }
.short-result small, .short-result strong { display: block; }
.short-result small { color: var(--muted); font-size: .55rem; }
.short-result strong { color: var(--blue); font-size: .73rem; }
.mini-chart { position: absolute; right: 34px; bottom: 33px; left: 34px; display: flex; align-items: end; gap: 10px; height: 90px; padding: 15px 17px 0; border-bottom: 1px solid #dbe3ee; }
.mini-chart span { flex: 1; background: #c4e2c0; border-radius: 3px 3px 0 0; }
.mini-chart span:nth-child(1) { height: 28%; }
.mini-chart span:nth-child(2) { height: 45%; }
.mini-chart span:nth-child(3) { height: 37%; }
.mini-chart span:nth-child(4) { height: 66%; }
.mini-chart span:nth-child(5) { height: 53%; }
.mini-chart span:nth-child(6) { height: 82%; background: var(--blue); }

.section-tag { margin-bottom: 13px; color: var(--blue); font-size: .66rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.workflow-copy h2, .section-heading h2, .spotlight-copy h3, .insights-copy h2, .faq-intro h2, .cta-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 3.75rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.05em;
}
.workflow-copy > p { margin: 20px 0; color: var(--muted); font-size: .82rem; }
.workflow-copy ol { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.workflow-copy li { display: flex; align-items: center; gap: 12px; color: #4d5662; font-size: .75rem; font-weight: 600; }
.workflow-copy li span { display: grid; width: 30px; height: 30px; place-items: center; color: var(--blue); background: #fff; border: 1px solid #dfe7f2; border-radius: 50%; font-size: .65rem; font-weight: 800; }

.solutions-section { padding: 112px 0 124px; }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading.centered { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading > p { max-width: 650px; margin: 17px auto 0; color: var(--muted); font-size: .82rem; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.solution-card { position: relative; min-height: 470px; overflow: hidden; padding: 30px; color: #fff; border-radius: 10px; }
.solution-blue { background: var(--blue); }
.solution-green { background: var(--green); }
.solution-purple { background: var(--purple); }
.solution-number { margin-bottom: 25px; color: rgba(255,255,255,.65); font-size: .65rem; font-weight: 800; letter-spacing: .1em; }
.solution-card h3 { margin: 0 0 9px; font-size: 1.55rem; line-height: 1.1; letter-spacing: -.035em; }
.solution-card > p { margin: 0; color: rgba(255,255,255,.78); font-size: .74rem; }
.solution-art { position: absolute; right: 23px; bottom: 24px; left: 23px; height: 225px; overflow: hidden; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 9px; }

.link-art { display: grid; place-items: center; }
.link-node { display: grid; width: 82px; height: 82px; place-items: center; color: var(--blue); background: #fff; border-radius: 17px; box-shadow: 0 14px 28px rgba(0,0,0,.12); font-size: .7rem; font-weight: 800; }
.link-art > span { position: absolute; height: 2px; background: rgba(255,255,255,.7); transform-origin: left center; }
.link-art > span:nth-of-type(1) { top: 47px; left: 42px; width: 130px; transform: rotate(23deg); }
.link-art > span:nth-of-type(2) { right: 32px; bottom: 52px; width: 125px; transform: rotate(-18deg); }
.link-art > span:nth-of-type(3) { right: 48px; top: 37px; width: 58px; transform: rotate(65deg); }
.short-pill { position: absolute; right: 19px; bottom: 22px; padding: 10px 13px; color: #313a46; background: #fff; border-radius: 6px; box-shadow: 0 9px 20px rgba(0,0,0,.12); font-size: .61rem; font-weight: 700; }

.chart-art { display: flex; align-items: end; justify-content: center; gap: 11px; padding: 35px 26px 24px; }
.chart-art > span { z-index: 2; width: 30px; height: var(--h); background: rgba(255,255,255,.86); border-radius: 5px 5px 0 0; }
.chart-axis { position: absolute; right: 23px; bottom: 23px; left: 23px; height: 1px; background: rgba(255,255,255,.6); }
.chart-art::before, .chart-art::after { position: absolute; content: ""; border: 1px dashed rgba(255,255,255,.35); border-radius: 50%; }
.chart-art::before { top: 18px; right: 17px; width: 85px; height: 85px; }
.chart-art::after { bottom: 22px; left: 17px; width: 56px; height: 56px; }

.wallet-card { position: absolute; top: 53px; left: 44px; width: 185px; height: 112px; padding: 18px; color: var(--purple); background: #fff; border-radius: 12px; box-shadow: 0 15px 30px rgba(60,29,103,.2); transform: rotate(-6deg); }
.wallet-card span, .wallet-card strong { display: block; }
.wallet-card span { font-size: .65rem; font-weight: 800; }
.wallet-card strong { margin-top: 14px; font-size: 2.1rem; }
.wallet-coin { position: absolute; right: 33px; bottom: 24px; display: grid; width: 72px; height: 72px; place-items: center; color: #7b43c5; background: var(--yellow); border: 6px solid rgba(255,255,255,.7); border-radius: 50%; font-size: 1.4rem; font-weight: 800; }
.wallet-grid { position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.12) 1px,transparent 1px); background-size: 23px 23px; }

.features-section { padding: 115px 0 125px; background: var(--soft); }
.feature-spotlight { display: grid; grid-template-columns: .87fr 1.13fr; gap: 55px; align-items: center; padding: 48px; background: #fff; border: 1px solid #e4e9f1; border-radius: 11px; box-shadow: 0 18px 45px rgba(27,50,84,.06); }
.spotlight-copy h3 { font-size: clamp(2rem,3.5vw,3rem); }
.spotlight-copy > p { margin: 18px 0 22px; color: var(--muted); font-size: .78rem; }
.feature-label { display: inline-block; margin-bottom: 13px; padding: 5px 9px; color: #4d8248; background: #e5f3e3; border-radius: 4px; font-size: .57rem; font-weight: 800; text-transform: uppercase; }
.spotlight-copy ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.spotlight-copy li { display: flex; align-items: center; gap: 8px; color: #525b66; font-size: .7rem; font-weight: 600; }
.spotlight-copy li span { color: var(--green-dark); }

.spotlight-ui { overflow: hidden; background: #f9fbfe; border: 1px solid #dfe5ee; border-radius: 9px; box-shadow: 0 18px 40px rgba(31,60,99,.1); }
.panel-top { display: flex; align-items: center; gap: 11px; height: 45px; padding: 0 15px; color: #515b67; background: #fff; border-bottom: 1px solid #e5eaf1; }
.panel-top span { width: 22px; height: 22px; background: var(--blue); border-radius: 6px; }
.panel-top strong { font-size: .63rem; }
.panel-top i { width: 26px; height: 26px; margin-left: auto; background: #e9eff7; border-radius: 50%; }
.panel-layout { display: grid; grid-template-columns: 68px 1fr; min-height: 340px; }
.panel-side { display: grid; align-content: start; gap: 19px; padding: 24px 19px; background: #fff; border-right: 1px solid #e4eaf1; }
.panel-side span { width: 28px; height: 7px; background: #dbe3ee; border-radius: 99px; }
.panel-side span:first-child { background: var(--blue); }
.panel-main { padding: 22px; }
.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.metric-row > div { padding: 14px; background: #fff; border: 1px solid #e2e8f0; border-radius: 7px; }
.metric-row small, .metric-row strong, .metric-row em { display: block; }
.metric-row small { color: var(--muted); font-size: .5rem; }
.metric-row strong { margin: 4px 0; font-size: 1.25rem; }
.metric-row em { color: var(--green-dark); font-size: .48rem; font-style: normal; }
.area-chart { height: 155px; margin-top: 15px; padding: 20px 15px 0; background: #fff; border: 1px solid #e2e8f0; border-radius: 7px; }
.area-chart svg { width: 100%; height: 100%; }
.link-table { display: grid; gap: 8px; margin-top: 14px; }
.link-table span { display: block; height: 10px; background: linear-gradient(90deg,#dce5f0 20%,#edf1f6 20% 70%,#dce5f0 70%); border-radius: 3px; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 23px; margin-top: 24px; }
.feature-card { overflow: hidden; background: #fff; border: 1px solid #e3e8f0; border-radius: 10px; }
.feature-visual { position: relative; height: 260px; overflow: hidden; }
.feature-visual-blue { display: grid; place-items: center; background: var(--blue); }
.custom-link { display: flex; align-items: center; width: 76%; padding: 15px; background: #fff; border-radius: 7px; box-shadow: 0 15px 32px rgba(0,50,130,.25); font-size: .63rem; }
.custom-link span { color: #7e8792; }
.custom-link strong { color: var(--blue); }
.custom-link i { display: grid; width: 25px; height: 25px; margin-left: auto; place-items: center; color: #fff; background: var(--green); border-radius: 50%; font-style: normal; }
.feature-visual-yellow { display: grid; place-items: center; background: var(--yellow); }
.pulse-ring { position: absolute; width: 190px; height: 190px; border: 1px solid rgba(36,48,58,.2); border-radius: 50%; }
.pulse-ring::before, .pulse-ring::after { position: absolute; content: ""; border: 1px solid rgba(36,48,58,.14); border-radius: 50%; }
.pulse-ring::before { inset: 24px; }
.pulse-ring::after { inset: 50px; }
.pulse-ring span { position: absolute; top: 50%; left: 50%; width: 20px; height: 20px; background: var(--blue); border: 5px solid #fff; border-radius: 50%; transform: translate(-50%,-50%); }
.live-count { position: relative; z-index: 2; width: 185px; padding: 18px; background: #fff; border-radius: 8px; box-shadow: 0 14px 28px rgba(93,73,0,.16); }
.live-count i { display: inline-block; width: 7px; height: 7px; margin-right: 5px; background: #ff5b52; border-radius: 50%; }
.live-count span { font-size: .58rem; font-weight: 700; }
.live-count strong { display: block; margin-top: 7px; font-size: 1.8rem; }
.mascot-feature { background: #e6f8f1; }
.mascot-feature img { width: 100%; height: 100%; object-fit: cover; }
.mascot-tip { position: absolute; right: 18px; bottom: 18px; display: flex; align-items: center; gap: 8px; padding: 10px 12px; background: rgba(255,255,255,.94); border-radius: 7px; box-shadow: 0 10px 22px rgba(0,90,63,.15); font-size: .6rem; font-weight: 700; }
.mascot-tip span { display: grid; width: 22px; height: 22px; place-items: center; color: #fff; background: var(--green); border-radius: 50%; }
.feature-visual-purple { display: grid; place-items: center; background: var(--purple); }
.earning-card { width: 65%; padding: 21px; color: #4c2d74; background: #fff; border-radius: 10px; box-shadow: 0 16px 35px rgba(49,18,93,.25); }
.earning-card small, .earning-card strong, .earning-card span { display: block; }
.earning-card small { color: #9d8ab4; font-size: .55rem; }
.earning-card strong { margin: 6px 0 18px; font-size: 1.2rem; }
.earning-card span { padding-top: 11px; border-top: 1px solid #ece5f3; font-size: .58rem; }
.earning-card i { display: inline-block; width: 7px; height: 7px; margin-right: 5px; background: var(--green); border-radius: 50%; }
.feature-card-copy { padding: 24px 25px 27px; }
.feature-card-copy h3 { margin: 0 0 8px; font-size: 1.15rem; letter-spacing: -.025em; }
.feature-card-copy p { margin: 0; color: var(--muted); font-size: .7rem; }
.label-blue { color: #4d8248; background: #e5f3e3; }
.label-yellow { color: #7d6400; background: #fff4bd; }
.label-green { color: #007a56; background: #dff8ef; }
.label-purple { color: #6c35af; background: #eee2ff; }

.insights-section { padding: 118px 0; }
.insights-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.insights-copy > p { margin: 21px 0 28px; color: var(--muted); font-size: .8rem; }
.insights-copy dl { display: grid; gap: 0; margin: 0; }
.insights-copy dl > div { display: grid; grid-template-columns: 100px 1fr; padding: 13px 0; border-bottom: 1px solid var(--line); }
.insights-copy dt { color: var(--blue); font-size: .67rem; font-weight: 800; }
.insights-copy dd { margin: 0; color: #525b66; font-size: .68rem; }
.insights-dashboard { padding: 29px; background: #fff; border: 1px solid #e0e6ef; border-radius: 10px; box-shadow: var(--shadow); }
.dashboard-head { display: flex; justify-content: space-between; color: #59636f; font-size: .66rem; font-weight: 700; }
.dashboard-head small { color: #9299a3; font-size: .55rem; font-weight: 500; }
.dashboard-score { display: flex; align-items: baseline; gap: 12px; margin-top: 24px; }
.dashboard-score span { color: var(--muted); font-size: .56rem; }
.dashboard-score strong { font-size: 2rem; }
.dashboard-score em { color: var(--green-dark); font-size: .55rem; font-style: normal; font-weight: 700; }
.dashboard-bars { display: flex; align-items: end; gap: 10px; height: 190px; margin-top: 15px; padding: 25px 15px 0; background: repeating-linear-gradient(to bottom,#eef2f7 0,#eef2f7 1px,transparent 1px,transparent 42px); border-bottom: 1px solid #dce3ec; }
.dashboard-bars span { flex: 1; height: var(--bar); min-width: 13px; background: var(--blue); border-radius: 4px 4px 0 0; opacity: .75; }
.dashboard-bars span:nth-child(2n) { opacity: 1; }
.dashboard-list { display: grid; margin-top: 17px; }
.dashboard-list > div { display: grid; grid-template-columns: 14px 1fr auto; gap: 8px; align-items: center; padding: 9px 0; border-bottom: 1px solid #edf0f4; }
.dashboard-list strong { font-size: .59rem; }
.dashboard-list small { color: #828a94; font-size: .55rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-blue { background: var(--blue); }
.dot-green { background: var(--green); }
.dot-purple { background: var(--purple); }

.use-cases-section { padding: 115px 0 125px; color: #fff; background: var(--dark); }
.light-heading .section-tag { color: #a7d6a2; }
.light-heading > p { color: rgba(255,255,255,.62); }
.use-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.use-case-grid article { min-height: 190px; padding: 24px; background: #fff; color: var(--ink); border-radius: 8px; }
.use-case-icon { display: grid; width: 35px; height: 35px; margin-bottom: 18px; place-items: center; color: #fff; background: var(--blue); border-radius: 7px; font-size: .8rem; font-weight: 800; }
.use-case-grid article:nth-child(2) .use-case-icon, .use-case-grid article:nth-child(5) .use-case-icon { background: var(--green); }
.use-case-grid article:nth-child(3) .use-case-icon, .use-case-grid article:nth-child(6) .use-case-icon { background: var(--purple); }
.use-case-grid h3 { margin: 0 0 8px; font-size: .92rem; }
.use-case-grid p { margin: 0; color: var(--muted); font-size: .66rem; }

.faq-section { padding: 118px 0; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.faq-intro > p { max-width: 380px; margin: 19px 0 0; color: var(--muted); font-size: .78rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 3px; cursor: pointer; font-size: .78rem; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font-size: 1.2rem; font-weight: 500; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -5px 0 21px; padding-right: 45px; color: var(--muted); font-size: .7rem; }

.final-cta { padding: 0 0 95px; }
.cta-card { position: relative; display: grid; grid-template-columns: 1fr 360px; align-items: center; min-height: 310px; overflow: hidden; padding: 52px 56px; color: #fff; background: var(--blue); border-radius: 10px; }
.cta-copy { position: relative; z-index: 4; }
.cta-copy > span { font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.cta-copy h2 { max-width: 650px; margin-top: 9px; font-size: clamp(2rem,4vw,3.35rem); }
.cta-copy p { margin: 13px 0 20px; color: rgba(255,255,255,.75); font-size: .74rem; }
.cta-actions { display: flex; gap: 9px; }
.button-white { color: var(--blue); background: #fff; }
.button-blue-outline { color: #fff; border-color: rgba(255,255,255,.45); }
.button-blue-outline:hover { background: rgba(255,255,255,.1); }
.cta-mascot { position: relative; z-index: 3; width: 330px; justify-self: end; background: #fff; border: 9px solid rgba(255,255,255,.24); border-radius: 22px; box-shadow: 0 20px 45px rgba(0,45,130,.25); }
.cta-pattern { position: absolute; inset: 0; opacity: .35; background: radial-gradient(circle at 15% 120%,transparent 0 70px,rgba(255,255,255,.4) 72px 73px,transparent 75px 105px,rgba(255,255,255,.25) 107px 108px,transparent 110px),linear-gradient(rgba(255,255,255,.14) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.14) 1px,transparent 1px); background-size: auto,24px 24px,24px 24px; }

.site-footer { background: #f2f3f5; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 65px; padding-top: 68px; padding-bottom: 52px; }
.footer-brand img { width: 135px; height: auto; }
.footer-brand p { max-width: 330px; margin: 16px 0; color: var(--muted); font-size: .67rem; }
.footer-brand > a { color: var(--blue); font-size: .66rem; font-weight: 800; text-decoration: none; }
.footer-grid nav { display: grid; align-content: start; gap: 10px; }
.footer-grid nav h2 { margin: 0 0 6px; font-size: .7rem; }
.footer-grid nav a { color: #6c737d; font-size: .63rem; text-decoration: none; }
.footer-grid nav a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 19px; padding-bottom: 21px; border-top: 1px solid #dfe2e7; }
.footer-bottom p { margin: 0; color: #8a9098; font-size: .56rem; }

@media (max-width: 1050px) {
  .header-inner { grid-template-columns: 160px 1fr 202px; gap: 18px; }
  .desktop-nav { gap: 20px; }
  .workflow-card { gap: 40px; }
  .solution-card { min-height: 445px; }
  .feature-spotlight { gap: 35px; }
}

@media (max-width: 860px) {
  .header-inner { display: flex; justify-content: space-between; min-height: 70px; }
  .desktop-nav, .header-actions { display: none; }
  .menu-button { display: block; }
  .menu-button[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    padding: 15px 24px 25px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(30,46,72,.11);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-menu nav { display: grid; }
  .mobile-menu nav a { padding: 12px 2px; border-bottom: 1px solid var(--line); color: #4f5762; font-size: .75rem; font-weight: 600; text-decoration: none; }
  .mobile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 16px; }
  .hero { padding-top: 80px; }
  .float-card-link { left: 22px; }
  .float-card-stat { right: 22px; }
  .workflow-card, .feature-spotlight, .insights-grid, .faq-layout { grid-template-columns: 1fr; }
  .workflow-card { gap: 50px; }
  .workflow-copy { text-align: center; }
  .workflow-copy ol { max-width: 460px; margin-inline: auto; text-align: left; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 420px; }
  .solution-art { height: 210px; }
  .feature-spotlight { gap: 45px; }
  .spotlight-copy { text-align: center; }
  .spotlight-copy ul { width: max-content; max-width: 100%; margin-inline: auto; text-align: left; }
  .insights-grid { gap: 50px; }
  .insights-copy { text-align: center; }
  .insights-copy dl { max-width: 520px; margin-inline: auto; text-align: left; }
  .use-case-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { gap: 45px; }
  .faq-intro { text-align: center; }
  .faq-intro > p { margin-inline: auto; }
  .cta-card { grid-template-columns: 1fr 280px; padding: 45px; }
  .cta-mascot { width: 270px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid nav:last-child { grid-column: 2; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand img { width: 128px; }
  .hero { padding: 63px 0 50px; }
  .eyebrow { font-size: .58rem; }
  .hero h1 { font-size: clamp(2.85rem, 14vw, 4rem); }
  .hero-content > p { font-size: .82rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-earning { display: grid; grid-template-columns: 38px 1fr; max-width: 330px; text-align: left; }
  .hero-earning b { grid-column: 2; margin-top: -10px; }
  .earning-disclaimer { max-width: 340px; font-size: .53rem; }
  .hero-stage { min-height: 470px; margin-top: 52px; }
  .mascot-orbit { width: calc(100% - 48px); min-height: 220px; padding: 15px; border-radius: 28px; }
  .mascot-orbit::before { inset: -10px; border-radius: 34px; }
  .float-card { min-width: 0; padding: 10px 11px; }
  .float-card-link { top: 25px; left: 17px; }
  .float-card-stat { right: 17px; bottom: 25px; }
  .float-icon { flex-basis: 32px; height: 32px; }
  .float-card strong { font-size: .63rem; }
  .float-card small { font-size: .53rem; }
  .flow-line { display: none; }
  .capability-row { grid-template-columns: 1fr; gap: 0; }
  .capability-row span { padding: 10px; border-right: 0; border-bottom: 1px solid var(--line); }
  .capability-row span:last-child { border-bottom: 0; }
  .workflow-section, .solutions-section, .features-section, .insights-section, .use-cases-section, .faq-section { padding: 82px 0; }
  .workflow-card { width: 100%; padding: 28px 18px; border-radius: 0; }
  .workflow-canvas { min-height: 310px; padding: 35px 18px; }
  .short-result { width: 88%; margin-left: 12%; }
  .mini-chart { right: 18px; left: 18px; }
  .workflow-copy h2, .section-heading h2, .spotlight-copy h3, .insights-copy h2, .faq-intro h2, .cta-copy h2 { font-size: 2.45rem; }
  .section-heading { margin-bottom: 34px; }
  .solution-card { min-height: 440px; padding: 25px; }
  .feature-spotlight { padding: 27px 18px; }
  .panel-layout { grid-template-columns: 45px 1fr; }
  .panel-side { padding: 20px 10px; }
  .panel-side span { width: 24px; }
  .panel-main { padding: 13px; }
  .metric-row { grid-template-columns: 1fr; }
  .area-chart { height: 130px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-visual { height: 225px; }
  .earning-card { width: 72%; }
  .insights-dashboard { padding: 20px 14px; }
  .dashboard-bars { gap: 6px; padding-inline: 8px; }
  .dashboard-bars span { min-width: 7px; }
  .use-case-grid { grid-template-columns: 1fr; }
  .use-case-grid article { min-height: 170px; }
  .faq-list summary { font-size: .72rem; }
  .cta-card { grid-template-columns: 1fr; gap: 30px; padding: 36px 24px 25px; text-align: center; }
  .cta-copy h2 { font-size: 2.35rem; }
  .cta-actions { justify-content: center; }
  .cta-mascot { width: min(100%, 300px); justify-self: center; }
  .final-cta { padding-bottom: 65px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; padding-top: 52px; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-grid nav:last-child { grid-column: auto; }
  .footer-bottom { display: block; text-align: center; }
  .footer-bottom p + p { margin-top: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .mascot-orbit img, .cta-mascot { animation: none !important; }
}
