:root {
  --bg: #0a0e0f;
  --bg-soft: #0d1112;
  --surface: #111718;
  --surface-raised: #151b1c;
  --surface-bright: #1a2021;
  --ink: #e4ebe8;
  --ink-dark: #f0f5f2;
  --muted: #a0aca7;
  --dim: #7a8682;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);
  --green: #62efa9;
  --green-strong: #3dd68c;
  --cyan: #4bc9d0;
  --violet: #a78bfa;
  --coral: #ff7f6d;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  --header-height: 68px;
  color-scheme: dark;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  min-width: 0;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.no-scroll,
body.dialog-open {
  overflow: hidden;
}

button,
a,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  color: #ffffff;
  background: var(--green);
}

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

.section {
  position: relative;
  padding: 96px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #ffffff;
  background: var(--green);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--green-strong);
  transform: translateY(-2px);
}

.button:focus-visible,
.site-nav a:focus-visible,
.role-tabs button:focus-visible,
.customize-option:focus-visible,
.faq-trigger:focus-visible,
.nav-toggle:focus-visible,
.header-cta:focus-visible,
.dialog-close:focus-visible,
.mobile-buy-bar button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.button-ghost {
  color: var(--ink);
  border-color: var(--line-strong);
  background: var(--surface);
}

.button-ghost:hover {
  color: var(--green-strong);
  border-color: var(--green);
  background: var(--bg-soft);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 16px rgba(15, 20, 25, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.brand-symbol {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.1);
}

.brand-symbol svg {
  width: 24px;
  height: 24px;
  fill: var(--green);
}

.brand-symbol .bolt {
  fill: var(--surface);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--ink-dark);
  font-size: 18px;
  font-weight: 900;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 24px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink-dark);
}

.site-nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  margin-left: 28px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #ffffff;
  background: var(--green);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  transition: background-color 160ms ease, transform 160ms ease;
}

.header-cta:hover {
  background: var(--green-strong);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle i {
  position: absolute;
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: transform 160ms ease;
}

.nav-toggle i:first-child {
  transform: translateY(-4px);
}

.nav-toggle i:last-child {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] i:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] i:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 160px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  background-color: #070b0b;
  background-image:
    linear-gradient(rgba(5, 9, 9, 0.79), rgba(5, 9, 9, 0.93)),
    linear-gradient(90deg, rgba(6, 10, 10, 0.5), rgba(6, 10, 10, 0.08), rgba(6, 10, 10, 0.5)),
    url("./assets/hero-esports.jpg");
  background-position: center 42%;
  background-size: cover;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 150px;
  content: "";
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(98, 239, 169, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 201, 208, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 5%, #000 38%, transparent 88%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  min-height: min(720px, calc(100svh - 160px));
  place-items: center;
  padding: 92px 0 54px;
}

.hero-copy {
  width: min(860px, 100%);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(16, 185, 129, 0.08);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eyebrow > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(98, 239, 169, 0.7);
}

.hero h1 {
  margin: 28px 0 18px;
  color: var(--white);
  font-size: 72px;
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

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

.hero-promise {
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-lead {
  width: min(650px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.hero-actions .button {
  min-height: 52px;
  padding-inline: 28px;
  font-size: 16px;
}

.hero-proof {
  display: grid;
  width: min(680px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 36px auto 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.hero-proof span {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: center;
  gap: 9px;
  padding: 17px 14px;
}

.hero-proof span + span {
  border-left: 1px solid var(--line);
}

.hero-proof strong {
  color: var(--white);
  font-size: 25px;
  line-height: 1;
}

.hero-proof small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.section-heading {
  position: relative;
  margin-bottom: 48px;
}

.section-heading.centered {
  width: min(780px, 100%);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: end;
  gap: 64px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.kicker::after {
  width: 38px;
  height: 2px;
  content: "";
  background: var(--green);
}

.centered .kicker {
  justify-content: center;
}

.section-heading h2,
.detail-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  color: var(--ink-dark);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-heading h2 span,
.detail-copy h2 span {
  color: var(--green);
}

.section-heading > p,
.section-heading.split > p {
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.section-heading.split > p {
  margin: 0;
}

.highlights-section {
  background: var(--bg);
}

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

.highlight-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(15, 20, 25, 0.04);
}

.highlight-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  content: "";
  background: var(--green);
  opacity: 0.6;
}

.highlight-card.wide {
  grid-column: span 2;
  min-height: 250px;
  padding: 30px 28px;
}

.highlight-card.wide h3 {
  font-size: 26px;
}

.highlight-card.wide > p {
  max-width: 46ch;
  font-size: 16px;
}

.highlight-card.accent::before {
  background: var(--coral);
}

.highlight-card.accent .card-index {
  color: var(--coral);
}

.highlight-card:nth-child(3) .card-index {
  color: var(--green);
}

.highlight-card:nth-child(4) .card-index {
  color: var(--cyan);
}

.highlight-card:nth-child(4)::before {
  background: var(--cyan);
}

.highlight-card:nth-child(5) .card-index {
  color: var(--violet);
}

.highlight-card:nth-child(5)::before {
  background: var(--violet);
}

.highlight-card:nth-child(6) .card-index {
  color: var(--coral);
}

.highlight-card:nth-child(6)::before {
  background: var(--coral);
}

.highlight-card h3 {
  margin: 18px 0 10px;
  color: var(--ink-dark);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}

.highlight-card > p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.highlight-flow,
.highlight-tags,
.highlight-mini {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.highlight-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.highlight-flow span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.highlight-flow b {
  color: var(--green);
  font-size: 13px;
}

.highlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.highlight-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 127, 109, 0.24);
  border-radius: 6px;
  color: #ffad9f;
  background: rgba(255, 127, 109, 0.06);
  font-size: 13px;
  font-weight: 600;
}

.highlight-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.highlight-mini span {
  position: relative;
  padding-left: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.highlight-mini span::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 2px;
  content: "";
  background: var(--green);
}

.plans-section {
  background: #0a0e0f;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 532px;
  flex-direction: column;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(15, 20, 25, 0.04);
}

.plan-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  content: "";
  background: var(--cyan);
  opacity: 0.58;
}

.plan-card > small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.plan-price {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 8px;
  margin-top: 23px;
}

.plan-price strong {
  color: var(--ink-dark);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
}

.plan-price span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.plan-card h3 {
  margin: 25px 0 10px;
  color: var(--ink-dark);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
}

.plan-audience {
  min-height: 50px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.plan-period {
  align-self: flex-start;
  margin-top: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(75, 201, 208, 0.25);
  border-radius: 6px;
  color: var(--cyan);
  background: rgba(75, 201, 208, 0.06);
  font-size: 14px;
  font-weight: 700;
}

.plan-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.plan-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.plan-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 2px;
  content: "";
  background: var(--green);
}

.plan-button {
  width: 100%;
  margin-top: auto;
  color: var(--ink);
  border-color: var(--line-strong);
  background: transparent;
}

.plan-button:hover {
  color: #07110d;
  border-color: var(--green);
  background: var(--green);
}

.plan-card.highlight {
  min-height: 550px;
  border-color: rgba(98, 239, 169, 0.74);
  background: #14211d;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.3);
  transform: translateY(-9px);
}

.plan-card.highlight::before {
  height: 3px;
  background: var(--green);
  opacity: 1;
}

.plan-card.highlight .plan-price strong,
.plan-card.highlight > small {
  color: var(--green);
}

.plan-card.highlight .plan-button {
  color: #07110d;
  border-color: var(--green);
  background: var(--green);
}

.plan-card.highlight .plan-button:hover {
  background: #7af6ba;
}

.custom-plan::before {
  background: var(--coral);
}

.custom-plan .plan-period {
  color: #ffad9f;
  border-color: rgba(255, 127, 109, 0.28);
  background: rgba(255, 127, 109, 0.07);
}

.recommend {
  position: absolute;
  top: 0;
  right: 18px;
  padding: 6px 12px 7px;
  border-radius: 0 0 6px 6px;
  color: #ffffff;
  background: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.pricing-note {
  margin: 18px 0 0;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.signal-strip {
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #070a0b;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.signal-grid span {
  min-width: 0;
  padding: 3px 13px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.signal-grid span + span {
  border-left: 1px solid var(--line);
}

.roles-section {
  background: var(--bg);
}

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

.role-card {
  position: relative;
  min-width: 0;
  min-height: 370px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(15, 20, 25, 0.04);
}

.role-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  content: "";
  background: var(--green);
}

.role-card.cs-role::before {
  background: var(--cyan);
}

.role-card.player-role::before {
  background: var(--violet);
}

.role-card.owner-role::before {
  background: var(--coral);
}

.role-no {
  color: var(--dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
}

.role-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-top: 24px;
  border: 1px solid rgba(98, 239, 169, 0.3);
  border-radius: 6px;
  color: var(--green);
  background: rgba(98, 239, 169, 0.07);
  font-size: 13px;
  font-weight: 900;
}

.cs-role .role-icon {
  color: var(--cyan);
  border-color: rgba(75, 201, 208, 0.32);
  background: rgba(75, 201, 208, 0.07);
}

.player-role .role-icon {
  color: var(--violet);
  border-color: rgba(148, 125, 224, 0.35);
  background: rgba(148, 125, 224, 0.07);
}

.owner-role .role-icon {
  color: var(--coral);
  border-color: rgba(255, 127, 109, 0.34);
  background: rgba(255, 127, 109, 0.07);
}

.role-card h3 {
  margin: 19px 0 9px;
  color: var(--ink-dark);
  font-size: 20px;
  font-weight: 700;
}

.role-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.role-card ul {
  display: grid;
  gap: 7px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.role-card li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.role-card li::before {
  margin-right: 8px;
  color: var(--green);
  content: "+";
}

.process-line {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(15, 20, 25, 0.04);
}

.process-line span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.process-line span i {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  margin-right: 7px;
  border: 1px solid rgba(98, 239, 169, 0.32);
  border-radius: 50%;
  color: var(--green);
  font-size: 8px;
  font-style: normal;
}

.process-line > b {
  height: 1px;
  overflow: hidden;
  color: transparent;
  background: var(--line-strong);
}

.product-section {
  background: #0b1011;
}

.product-workspace {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.role-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.role-tabs button {
  position: relative;
  display: flex;
  min-height: 92px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 15px 18px 15px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: var(--surface);
  text-align: left;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
  box-shadow: 0 1px 3px rgba(15, 20, 25, 0.04);
}

.role-tabs button::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: -1px;
  width: 3px;
  content: "";
  background: transparent;
  border-radius: 0 3px 3px 0;
}

.role-tabs button small {
  color: var(--dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.role-tabs button span {
  font-size: 16px;
  font-weight: 700;
}

.role-tabs button:hover {
  color: var(--ink-dark);
  border-color: var(--line-strong);
  background: var(--surface-bright);
}

.role-tabs button.active {
  color: var(--ink-dark);
  border-color: rgba(16, 185, 129, 0.3);
  background: var(--surface-bright);
}

.role-tabs button.active::before {
  background: var(--green);
}

.role-tabs button.active small {
  color: var(--green);
}

.role-showcase {
  display: grid;
  min-width: 0;
  min-height: 610px;
  grid-template-columns: minmax(0, 1fr) 390px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: var(--surface);
}

.showcase-copy {
  display: none;
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
  flex-direction: column;
  padding: 48px 42px 40px;
}

.showcase-copy.active {
  display: flex;
}

.copy-tag {
  align-self: flex-start;
  padding: 6px 10px;
  border: 1px solid rgba(75, 201, 208, 0.25);
  border-radius: 6px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.showcase-copy h3 {
  margin: 27px 0 14px;
  color: var(--ink-dark);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-wrap: balance;
}

.showcase-copy > p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.capability-list span {
  min-width: 0;
  padding: 12px 13px;
  border-left: 2px solid var(--green);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.capability-list span:nth-child(3n + 2) {
  border-left-color: var(--cyan);
}

.capability-list span:nth-child(3n) {
  border-left-color: var(--violet);
}

.scenario {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.scenario small {
  color: var(--dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.scenario b {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
  line-height: 1.8;
}

.showcase-device {
  position: relative;
  display: grid;
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
  place-items: center;
  overflow: hidden;
  border-left: 1px solid rgba(12, 35, 28, 0.12);
  background-color: #dcece6;
  background-image:
    linear-gradient(rgba(12, 35, 28, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 35, 28, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.phone-shell {
  position: relative;
  width: 300px;
  height: 598px;
  padding: 9px;
  overflow: hidden;
  border: 1px solid #2a3633;
  border-radius: 34px;
  background: #111716;
  box-shadow: 0 26px 54px rgba(16, 39, 31, 0.24);
}

.phone-speaker {
  position: absolute;
  z-index: 5;
  top: 15px;
  left: 50%;
  width: 56px;
  height: 5px;
  border-radius: 4px;
  background: #222b29;
  transform: translateX(-50%);
}

.phone-screen {
  position: absolute;
  inset: 9px;
  overflow: hidden;
  border-radius: 26px;
  color: #17231f;
  background: #f2f5f3;
}

.role-screen {
  display: none;
  flex-direction: column;
  padding: 25px 12px 0;
}

.role-screen.active {
  display: flex;
}

.mini-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 20px;
  padding: 0 4px;
  color: #26332f;
  font-size: 7px;
  font-weight: 800;
}

.page-title {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #dfe6e2;
  color: #14211d;
  font-size: 12px;
  font-weight: 900;
}

.page-title.with-status {
  justify-content: space-between;
}

.page-title.with-status > span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #2a8e68;
  font-size: 7px;
}

.page-title.with-status > span i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #35cf8f;
}

.order-summary {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 10px;
  padding: 11px;
  border: 1px solid #e0e6e3;
  border-radius: 7px;
  background: #fff;
}

.order-summary small {
  color: #87918e;
  font-size: 7px;
}

.order-summary b {
  font-size: 11px;
}

.order-summary span {
  color: #6c7773;
  font-size: 8px;
}

.form-panel {
  display: grid;
  gap: 0;
  margin-top: 9px;
  padding: 10px 11px 3px;
  border: 1px solid #e0e6e3;
  border-radius: 7px;
  background: #fff;
}

.form-panel > b {
  margin-bottom: 5px;
  font-size: 9px;
}

.form-panel label {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  min-height: 39px;
  border-top: 1px solid #edf1ef;
  color: #34413c;
  font-size: 8px;
}

.form-panel label > span {
  margin-left: 2px;
  color: var(--coral);
}

.form-panel label > i {
  justify-self: end;
  color: #929c98;
  font-size: 7px;
  font-style: normal;
}

.designate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 9px;
  padding: 10px 11px;
  border: 1px solid #e0e6e3;
  border-radius: 7px;
  background: #fff;
}

.designate-row > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.designate-row b {
  font-size: 8px;
}

.designate-row small {
  color: #909a96;
  font-size: 6px;
}

.designate-row > i {
  color: #258c66;
  font-size: 7px;
  font-style: normal;
  white-space: nowrap;
}

.paybar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: auto -12px 0;
  padding: 10px 12px 12px;
  border-top: 1px solid #dce4e0;
  background: #fff;
}

.paybar span {
  font-size: 7px;
}

.paybar span b {
  color: #e65f4f;
  font-size: 11px;
}

.paybar .demo-action,
.accept-row .demo-action,
.pending-panel .demo-action {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border: 0;
  border-radius: 5px;
  color: #07110d;
  background: #56e5a1;
  font-size: 7px;
  font-weight: 900;
}

.filter-chips {
  display: flex;
  gap: 5px;
  padding: 9px 0;
}

.filter-chips span {
  padding: 5px 8px;
  border-radius: 5px;
  color: #67736f;
  background: #e5ebe8;
  font-size: 7px;
}

.filter-chips span.active {
  color: #147651;
  background: #d4f6e7;
}

.hall-card {
  margin-bottom: 8px;
  padding: 10px;
  border: 1px solid #dfe6e2;
  border-radius: 7px;
  background: #fff;
}

.hall-head,
.accept-row,
.pending-panel > div,
.pending-panel article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.hall-head b {
  font-size: 9px;
}

.hall-head em {
  padding: 3px 5px;
  border-radius: 4px;
  color: #278764;
  background: #e5f8ef;
  font-size: 6px;
  font-style: normal;
}

.hall-card > p {
  margin: 3px 0 7px;
  color: #7c8783;
  font-size: 7px;
}

.hall-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 6px 0;
  border-top: 1px solid #edf1ef;
  border-bottom: 1px solid #edf1ef;
}

.hall-info span {
  display: flex;
  flex-direction: column;
  color: #929b98;
  font-size: 6px;
}

.hall-info b {
  color: #36433e;
  font-size: 8px;
}

.accept-row {
  padding-top: 8px;
}

.accept-row > span {
  display: flex;
  flex-direction: column;
}

.accept-row b {
  color: #e46251;
  font-size: 9px;
}

.accept-row small {
  color: #8b9692;
  font-size: 6px;
}

.mini-tabbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  min-height: 47px;
  margin: auto -12px 0;
  border-top: 1px solid #dde5e1;
  background: #fff;
}

.mini-tabbar span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  color: #929c98;
  font-size: 10px;
}

.mini-tabbar b {
  font-size: 6px;
}

.mini-tabbar span.active {
  color: #269369;
}

.todo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 10px;
}

.todo-grid article {
  display: flex;
  min-height: 54px;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
  border: 1px solid #dfe6e2;
  border-radius: 6px;
  background: #fff;
}

.todo-grid article.alert {
  border-color: #ffd2ca;
  background: #fff5f2;
}

.todo-grid b {
  color: #26342f;
  font-size: 14px;
  line-height: 1;
}

.todo-grid .alert b {
  color: #e25e4d;
}

.todo-grid span {
  margin-top: 4px;
  color: #7b8782;
  font-size: 6px;
}

.today-panel,
.pending-panel {
  margin-top: 8px;
  padding: 10px;
  border: 1px solid #dfe6e2;
  border-radius: 7px;
  background: #fff;
}

.today-panel > b,
.pending-panel > div b {
  font-size: 8px;
}

.today-panel > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 8px;
}

.today-panel span {
  display: flex;
  flex-direction: column;
  color: #8a9591;
  font-size: 6px;
}

.today-panel strong {
  color: #26342f;
  font-size: 12px;
}

.pending-panel > div > span {
  color: #2c906a;
  font-size: 6px;
}

.pending-panel article {
  padding: 8px 0;
  border-top: 1px solid #edf1ef;
}

.pending-panel article > i {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 5px;
  background: var(--cyan);
}

.pending-panel article > i.purple {
  background: var(--violet);
}

.pending-panel article > span {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.pending-panel article b {
  font-size: 7px;
}

.pending-panel article small {
  color: #8b9692;
  font-size: 6px;
}

.pending-panel .demo-action {
  min-height: 24px;
  padding-inline: 8px;
}

.android-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.android-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(75, 201, 208, 0.36);
  border-radius: 6px;
  color: var(--cyan);
  background: rgba(75, 201, 208, 0.07);
  font-size: 12px;
  font-weight: 900;
}

.android-note small {
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
}

.android-note h3 {
  margin: 2px 0 2px;
  font-size: 15px;
}

.android-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 10px;
}

.roadmap-status {
  padding: 6px 9px;
  border: 1px solid rgba(98, 239, 169, 0.25);
  border-radius: 5px;
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
}

.saas-section {
  background: #090d0e;
}

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

.saas-card {
  position: relative;
  min-width: 0;
  min-height: 350px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.card-index {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.saas-card:nth-child(2) .card-index {
  color: var(--cyan);
}

.saas-card:nth-child(3) .card-index {
  color: var(--violet);
}

.saas-card:nth-child(4) .card-index {
  color: var(--coral);
}

.saas-card h3 {
  margin: 20px 0 10px;
  color: var(--ink-dark);
  font-size: 22px;
  font-weight: 700;
}

.saas-card > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.tenant-demo,
.designer-demo,
.money-flow,
.risk-list {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.tenant-demo {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px 14px;
}

.tenant-demo span {
  color: var(--dim);
  font-size: 8px;
}

.tenant-demo b {
  color: var(--green);
  font-size: 18px;
}

.tenant-demo .demo-action {
  display: flex;
  grid-column: 1 / -1;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  color: #c5d0cc;
  background: transparent;
  font-size: 9px;
  font-weight: 800;
}

.designer-demo {
  display: grid;
  grid-template-columns: 1fr 90px;
  align-items: center;
  gap: 20px;
}

.designer-demo > div:first-child {
  display: grid;
  grid-template-columns: repeat(3, 26px);
  gap: 8px;
}

.designer-demo > div:first-child span {
  grid-column: 1 / -1;
  color: var(--dim);
  font-size: 8px;
}

.designer-demo > div:first-child i {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--green);
}

.designer-demo > div:first-child i:nth-of-type(2) {
  background: var(--cyan);
}

.designer-demo > div:first-child i:nth-of-type(3) {
  background: var(--coral);
}

.tiny-phone {
  display: grid;
  min-height: 115px;
  align-content: start;
  gap: 8px;
  padding: 12px 8px;
  border: 3px solid #283230;
  border-radius: 16px;
  background: #eff5f2;
}

.tiny-phone b {
  color: #1b2924;
  font-size: 7px;
  text-align: center;
}

.tiny-phone i {
  height: 24px;
  border-radius: 4px;
  background: var(--green);
}

.tiny-phone span {
  height: 8px;
  border-radius: 2px;
  background: #d8e2dd;
}

.money-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.money-flow span {
  color: #c1ccc8;
  font-size: 9px;
  white-space: nowrap;
}

.money-flow b {
  height: 1px;
  overflow: hidden;
  color: transparent;
  background: rgba(148, 125, 224, 0.45);
}

.risk-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.risk-list span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #bdc8c4;
  font-size: 9px;
}

.risk-list i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.risk-list i.ok {
  background: var(--green);
}

.risk-list i.warn {
  background: var(--coral);
}

.customization-section {
  background: var(--bg-soft);
}

.customize-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  gap: 14px;
  align-items: stretch;
}

.customize-panel {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #111718;
}

.customize-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.customize-panel-head > div,
.customize-panel-head > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.customize-panel-head > div {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.customize-panel-head small {
  color: var(--dim);
  font-size: 7px;
}

.customize-panel-head b {
  font-size: 14px;
}

.customize-panel-head > span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.customize-panel-head em {
  color: var(--green);
  font-size: 8px;
  font-style: normal;
}

.customize-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 15px;
}

.customize-option {
  display: flex;
  min-width: 0;
  min-height: 62px;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #acb8b3;
  background: #0c1112;
  text-align: left;
}

.customize-option > svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.customize-option > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.customize-option b {
  font-size: 9px;
}

.customize-option small {
  color: var(--dim);
  font-size: 7px;
}

.customize-option.active {
  color: var(--green);
  border-color: rgba(98, 239, 169, 0.46);
  background: #14201d;
}

.preview-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 15px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.preview-metric {
  display: flex;
  min-width: 0;
  min-height: 118px;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px;
  background: #0e1415;
}

.preview-metric > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9daaa5;
  font-size: 8px;
}

.preview-metric > span svg {
  width: 13px;
  height: 13px;
}

.preview-metric > b {
  color: var(--white);
  font-size: 23px;
  line-height: 1;
}

.preview-metric > small {
  color: var(--dim);
  font-size: 7px;
}

.preview-metric.primary > b {
  color: var(--green);
}

.preview-metric.accent > b {
  color: var(--coral);
}

.preview-progress {
  height: 6px;
  overflow: hidden;
  background: #202a28;
}

.preview-progress i {
  display: block;
  height: 100%;
  background: var(--cyan);
}

.customize-notes {
  display: grid;
  align-content: stretch;
  border-top: 1px solid var(--line);
}

.customize-notes article {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: center;
  gap: 14px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
}

.customize-notes article > svg {
  width: 19px;
  height: 19px;
  color: var(--green);
}

.customize-notes article:nth-child(2) > svg {
  color: var(--cyan);
}

.customize-notes article:nth-child(3) > svg {
  color: var(--violet);
}

.customize-notes b {
  font-size: 15px;
  font-weight: 700;
}

.customize-notes p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.detail-section {
  background: #090d0e;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 64px;
  align-items: center;
}

.detail-copy > p:not(.kicker) {
  margin: 22px 0 25px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.detail-stat {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.detail-stat b {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.detail-stat:nth-of-type(2) b {
  color: var(--cyan);
}

.detail-stat:nth-of-type(3) b {
  color: var(--coral);
}

.detail-stat span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.detail-board {
  min-width: 0;
  padding: 25px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: var(--surface);
}

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

.detail-top span {
  color: #c4cfca;
  font-size: 10px;
  font-weight: 800;
}

.detail-top em {
  padding: 5px 8px;
  border-radius: 4px;
  color: var(--green);
  background: rgba(98, 239, 169, 0.08);
  font-size: 8px;
  font-style: normal;
}

.detail-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 7px;
  padding: 22px 0;
}

.detail-flow span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--dim);
  font-size: 7px;
  white-space: nowrap;
}

.detail-flow span i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 8px;
  font-style: normal;
}

.detail-flow span.done,
.detail-flow span.active {
  color: var(--green);
}

.detail-flow span.active i {
  color: #07110d;
  border-color: var(--green);
  background: var(--green);
}

.detail-flow > b {
  height: 1px;
  margin-bottom: 17px;
  background: var(--line-strong);
}

.team-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-card > div {
  display: flex;
  flex-direction: column;
}

.team-card small {
  color: var(--dim);
  font-size: 7px;
}

.team-card b {
  margin-top: 3px;
  font-size: 10px;
}

.team-card em {
  margin-left: 5px;
  color: var(--green);
  font-size: 7px;
  font-style: normal;
}

.team-card > span {
  color: #a8b4af;
  font-size: 8px;
}

.exception-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 11px;
}

.exception-grid article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 4px 9px;
  min-width: 0;
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
}

.exception-grid article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.exception-grid article > i {
  display: grid;
  width: 26px;
  height: 26px;
  grid-row: 1 / 3;
  place-items: center;
  border: 1px solid rgba(255, 127, 109, 0.28);
  border-radius: 5px;
  color: var(--coral);
  font-size: 8px;
  font-style: normal;
}

.exception-grid article:nth-child(even) > i {
  color: var(--cyan);
  border-color: rgba(75, 201, 208, 0.28);
}

.exception-grid b {
  font-size: 13px;
  font-weight: 700;
}

.exception-grid span {
  color: var(--dim);
  font-size: 12px;
  line-height: 1.5;
}

.faq-section {
  background: var(--bg-soft);
}

.faq-grid {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-item h3 {
  margin: 0;
}

.faq-trigger {
  display: flex;
  width: 100%;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 5px;
  border: 0;
  color: var(--white);
  background: transparent;
  text-align: left;
}

.faq-trigger > span:first-child {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.faq-plus {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--green);
  font-size: 18px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-trigger[aria-expanded="true"] .faq-plus {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 55px 22px 5px;
}

.faq-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.hidden {
  display: none !important;
}

.contact-section {
  padding: 92px 0;
  border-top: 1px solid rgba(98, 239, 169, 0.22);
  background: #0d1714;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  align-items: center;
}

.contact-copy h2 {
  font-size: 48px;
}

.contact-copy > p:not(.kicker) {
  width: min(650px, 100%);
  margin: 20px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.contact-points span::first-letter {
  color: var(--green);
}

.contact-cta {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 27px;
  border: 1px solid rgba(98, 239, 169, 0.28);
  border-radius: 7px;
  background: #101d18;
}

.contact-cta > span {
  color: var(--green);
  font-size: 8px;
  font-weight: 850;
}

.contact-cta > strong {
  margin-top: 16px;
  color: var(--white);
  font-size: 46px;
  line-height: 1;
}

.contact-cta > strong small {
  color: var(--muted);
  font-size: 12px;
}

.contact-cta > p {
  margin: 16px 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.contact-cta > a {
  margin-top: 13px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.contact-cta > a:hover {
  color: var(--green);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #06090a;
}

.footer-main {
  display: flex;
  min-height: 96px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-buy {
  min-height: 38px;
  margin-left: 28px;
  padding: 0 20px;
  color: var(--green);
  border-color: rgba(98, 239, 169, 0.32);
  background: rgba(98, 239, 169, 0.06);
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 13px;
}

.purchase-dialog {
  width: min(500px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  padding: 0;
  overflow: auto;
  border: 1px solid #d7e2dd;
  border-radius: 7px;
  color: var(--ink-dark);
  background: #f6faf8;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.5);
  color-scheme: light;
}

.purchase-dialog::backdrop {
  background: rgba(3, 7, 7, 0.85);
  backdrop-filter: blur(7px);
}

.purchase-dialog[open] {
  animation: dialog-in 180ms ease-out;
}

.dialog-shell {
  position: relative;
  padding: 32px;
}

.dialog-close {
  position: absolute;
  top: 13px;
  right: 13px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  border: 1px solid #d7e1dc;
  border-radius: 5px;
  color: #50605a;
  background: #eef4f1;
}

.dialog-close svg {
  width: 17px;
  height: 17px;
}

.dialog-kicker {
  margin: 0 50px 8px 0;
  color: #16835d;
  font-size: 9px;
  font-weight: 900;
}

.purchase-dialog h2 {
  margin: 0;
  color: #12201b;
  font-size: 28px;
  line-height: 1.25;
}

.dialog-lead {
  margin: 11px 36px 19px 0;
  color: #68766f;
  font-size: 11px;
  line-height: 1.75;
}

.selected-plan {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5px 12px;
  padding: 14px;
  border: 1px solid #dbe5e0;
  border-radius: 6px;
  background: #fff;
}

.selected-plan span {
  grid-column: 1 / -1;
  color: #899690;
  font-size: 8px;
}

.selected-plan b,
.selected-plan strong {
  font-size: 14px;
}

.selected-plan strong {
  color: #16835d;
}

.qq-card {
  margin-top: 10px;
  padding: 17px;
  border-radius: 6px;
  color: var(--white);
  background: #11251d;
}

.qq-card span,
.qq-card small {
  display: block;
  color: #9db1a8;
  font-size: 8px;
}

.qq-card strong {
  display: block;
  margin: 7px 0;
  color: var(--green);
  font-size: 29px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.dialog-actions .button {
  min-width: 0;
  padding-inline: 10px;
  font-size: 10px;
}

.dialog-actions svg {
  width: 15px;
  height: 15px;
}

.copy-contact {
  color: #19382d;
  border-color: #cad9d2;
  background: #fff;
}

.copy-contact:hover,
.copy-contact.copied {
  color: #0c6949;
  border-color: #76d5ae;
  background: #eafff6;
}

.dialog-status {
  min-height: 17px;
  margin: 9px 0 0;
  color: #68766f;
  font-size: 9px;
  text-align: center;
}

.toast {
  position: fixed;
  z-index: 180;
  right: 18px;
  bottom: 18px;
  max-width: min(330px, calc(100% - 36px));
  padding: 11px 14px;
  border: 1px solid rgba(98, 239, 169, 0.35);
  border-radius: 6px;
  color: #dff9ec;
  background: rgba(13, 31, 24, 0.96);
  box-shadow: var(--shadow);
  font-size: 10px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.show {
  opacity: 1;
  transform: none;
}

.mobile-buy-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 90ms;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-height: 760px) and (min-width: 721px) {
  .hero-proof {
    display: none;
  }
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 17px;
  }

  .header-cta {
    margin-left: 18px;
  }

  .section-heading.split {
    gap: 42px;
  }

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

  .role-card {
    min-height: 320px;
  }

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

  .highlight-card.wide {
    grid-column: span 2;
  }

  .highlight-card.wide h3 {
    font-size: 21px;
  }

  .role-showcase {
    grid-template-columns: minmax(0, 1fr) 350px;
  }

  .showcase-copy {
    padding: 38px 30px 34px;
  }

  .showcase-copy h3 {
    font-size: 26px;
  }

  .contact-layout {
    gap: 48px;
  }
}

@media (max-width: 900px) {
  html {
    --header-height: 64px;
  }

  .shell {
    width: min(100% - 32px, 760px);
  }

  .section {
    padding: 78px 0;
  }

  .highlight-card.wide {
    min-height: 0;
    padding: 26px 24px;
  }

  .site-header,
  .site-header.scrolled {
    background: rgba(8, 11, 12, 0.94);
    backdrop-filter: blur(16px);
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: relative;
    display: grid;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    margin: 0;
    padding: 0 16px;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(8, 11, 12, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: max-height 200ms ease, padding 200ms ease, opacity 160ms ease, visibility 160ms ease;
  }

  .site-nav.open {
    max-height: 420px;
    padding-top: 8px;
    padding-bottom: 14px;
    border-bottom-color: var(--line);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: min(680px, calc(100svh - 160px));
  }

  .hero h1 {
    font-size: 54px;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading.split > p {
    width: min(620px, 100%);
    margin-right: auto;
  }

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

  .plan-card,
  .plan-card.highlight {
    min-height: 0;
    transform: none;
  }

  .plan-audience {
    min-height: 0;
  }

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

  .signal-grid span:nth-child(4) {
    border-left: 0;
  }

  .process-line {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .process-line > b {
    display: none;
  }

  .process-line span {
    white-space: normal;
  }

  .product-workspace {
    grid-template-columns: 1fr;
  }

  .role-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .role-tabs button {
    min-height: 76px;
    padding: 12px 13px;
  }

  .role-tabs button::before {
    top: auto;
    right: 12px;
    bottom: -1px;
    left: 12px;
    width: auto;
    height: 2px;
  }

  .role-tabs button span {
    font-size: 13px;
  }

  .role-showcase {
    min-height: 590px;
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .showcase-copy {
    padding: 32px 24px;
  }

  .showcase-copy h3 {
    font-size: 23px;
  }

  .showcase-device {
    min-height: 590px;
  }

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

  .saas-card {
    min-height: 0;
  }

  .customize-layout,
  .detail-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .customize-notes article {
    grid-template-columns: 1fr;
    align-content: start;
    border-right: 1px solid var(--line);
  }

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

  .detail-layout {
    gap: 38px;
  }

  .contact-cta {
    max-width: 480px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    min-height: calc(100svh - 148px);
    background-position: 57% center;
  }

  .hero-inner {
    min-height: calc(100svh - 148px);
    padding: 90px 0 38px;
  }

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

  .highlight-card.wide {
    grid-column: span 1;
  }

  .highlight-card.wide h3 {
    font-size: 19px;
  }

  .highlight-card.wide > p {
    font-size: 11px;
  }

  .hero h1 {
    margin: 21px 0 15px;
    font-size: 40px;
    line-height: 1.18;
  }

  .hero-promise {
    font-size: 12px;
  }

  .hero-lead {
    font-size: 12px;
    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-actions .button {
    min-height: 44px;
  }

  .hero-proof {
    display: none;
  }

  .hero-proof {
    margin-top: 27px;
  }

  .hero-proof span {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 13px 6px;
  }

  .hero-proof strong {
    font-size: 21px;
  }

  .hero-proof small {
    font-size: 8px;
  }

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

  .section-heading h2,
  .detail-copy h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .section-heading > p,
  .section-heading.split > p {
    font-size: 11px;
  }

  .plan-card {
    padding: 25px 20px;
  }

  .plan-price strong {
    font-size: 38px;
  }

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

  .signal-grid span:nth-child(odd) {
    border-left: 0;
  }

  .signal-grid span:nth-child(even) {
    border-left: 1px solid var(--line);
  }

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

  .role-card {
    min-height: 0;
  }

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

  .role-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-copy,
  .showcase-device {
    grid-column: 1;
  }

  .showcase-copy {
    grid-row: 1;
    min-height: 450px;
  }

  .showcase-device {
    grid-row: 2;
    min-height: 650px;
    border-top: 1px solid rgba(12, 35, 28, 0.12);
    border-left: 0;
  }

  .android-note {
    grid-template-columns: auto 1fr;
  }

  .roadmap-status {
    grid-column: 2;
    justify-self: start;
  }

  .saas-card {
    padding: 24px 20px;
  }

  .customize-panel {
    padding: 18px;
  }

  .customize-options {
    grid-template-columns: 1fr;
  }

  .customize-option {
    min-height: 54px;
  }

  .customize-notes {
    grid-template-columns: 1fr;
  }

  .customize-notes article {
    grid-template-columns: 32px 1fr;
    border-right: 0;
  }

  .detail-board {
    padding: 18px;
  }

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

  .exception-grid article:nth-child(odd) {
    border-right: 0;
  }

  .contact-section {
    padding: 68px 0;
  }

  .contact-points {
    display: grid;
    gap: 8px;
  }

  .footer-main {
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 0;
  }

  .footer-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    margin-left: 0;
  }

  .footer-buy {
    margin-left: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .mobile-buy-bar {
    position: fixed;
    z-index: 140;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line-strong);
    background: rgba(8, 13, 13, 0.96);
    box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(15px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .mobile-buy-bar > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 1px;
  }

  .mobile-buy-bar small {
    color: var(--muted);
    font-size: 8px;
  }

  .mobile-buy-bar b {
    color: var(--green);
    font-size: 12px;
    white-space: nowrap;
  }

  .mobile-buy-bar button {
    min-width: 118px;
    min-height: 42px;
    padding: 0 13px;
    border: 0;
    border-radius: 6px;
    color: #07110d;
    background: var(--green);
    font-size: 10px;
    font-weight: 900;
  }

  body.dialog-open .mobile-buy-bar {
    pointer-events: none;
    opacity: 0;
    transform: translateY(100%);
  }

  .toast {
    right: 12px;
    bottom: calc(78px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 480px) {
  .shell {
    width: calc(100% - 24px);
  }

  .brand-copy small {
    display: none;
  }

  .hero-inner {
    padding-top: 82px;
  }

  .eyebrow {
    font-size: 8px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button {
    width: 100%;
    padding-inline: 10px;
    font-size: 9px;
  }

  .section-heading h2,
  .detail-copy h2,
  .contact-copy h2 {
    font-size: 30px;
  }

  .plan-card h3 {
    font-size: 18px;
  }

  .role-tabs {
    gap: 5px;
  }

  .role-tabs button {
    min-height: 68px;
    padding: 9px;
  }

  .role-tabs button small {
    font-size: 6px;
  }

  .role-tabs button span {
    font-size: 11px;
  }

  .showcase-copy {
    min-height: 440px;
    padding: 25px 18px;
  }

  .showcase-copy h3 {
    margin-top: 20px;
    font-size: 21px;
  }

  .capability-list {
    gap: 6px;
  }

  .capability-list span {
    padding: 8px;
    font-size: 8px;
  }

  .showcase-device {
    min-height: 620px;
  }

  .phone-shell {
    width: 286px;
    height: 570px;
  }

  .money-flow {
    grid-template-columns: 1fr;
  }

  .money-flow b {
    display: none;
  }

  .risk-list {
    grid-template-columns: 1fr;
  }

  .preview-board {
    grid-template-columns: 1fr;
  }

  .preview-metric {
    min-height: 104px;
  }

  .detail-flow {
    gap: 4px;
  }

  .detail-flow span {
    font-size: 6px;
  }

  .detail-flow span i {
    width: 21px;
    height: 21px;
  }

  .team-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-cta {
    padding: 22px 18px;
  }

  .contact-cta > strong {
    font-size: 41px;
  }

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

  .purchase-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
  }

  .dialog-shell {
    padding: 24px 18px 19px;
  }

  .purchase-dialog h2 {
    font-size: 24px;
  }

  .dialog-lead {
    margin-right: 28px;
  }

  .qq-card strong {
    font-size: 25px;
  }

  .dialog-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .hero-inner {
    padding-top: 76px;
    padding-bottom: 24px;
  }

  .hero h1 {
    margin: 16px 0 10px;
    font-size: 32px;
  }

  .hero-lead {
    font-size: 10px;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-actions .button {
    min-height: 40px;
    padding-inline: 7px;
    font-size: 8px;
  }

  .hero-proof {
    margin-top: 18px;
  }

  .hero-proof span {
    padding: 10px 3px;
  }

  .hero-proof small {
    font-size: 7px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2,
  .detail-copy h2,
  .contact-copy h2 {
    font-size: 27px;
  }

  .highlight-card,
  .highlight-card.wide {
    padding: 22px 18px;
  }

  .role-tabs button span {
    font-size: 10px;
  }

  .showcase-copy {
    min-height: 430px;
    padding: 22px 14px;
  }

  .showcase-device {
    min-height: 574px;
  }

  .phone-shell {
    width: 264px;
    height: 528px;
  }

  .role-screen {
    padding-right: 10px;
    padding-left: 10px;
  }

  .paybar,
  .mini-tabbar {
    margin-right: -10px;
    margin-left: -10px;
  }

  .android-note {
    gap: 12px;
  }

  .detail-board {
    padding: 14px 11px;
  }

  .mobile-buy-bar {
    gap: 8px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .mobile-buy-bar button {
    min-width: 108px;
    padding-inline: 9px;
  }
}

@media (max-width: 340px) {
  .hero h1 {
    font-size: 29px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
