:root {
  --ink: #141512;
  --muted: #656a5f;
  --paper: #f7f4ed;
  --paper-2: #ece7dc;
  --line: rgba(20, 21, 18, 0.12);
  --surface: #fffdf8;
  --surface-soft: #f7f4ed;
  --mint: #17a37f;
  --mint-dark: #0a6f59;
  --amber: #e9aa2e;
  --coral: #df654c;
  --violet: #6c5dd3;
  --white: #fffdf8;
  --charcoal: #181916;
  --shadow: 0 24px 70px rgba(18, 20, 16, 0.18);
}

[data-theme="dark"] {
  --ink: #fffdf8;
  --muted: rgba(255, 253, 248, 0.68);
  --paper: #11120f;
  --paper-2: #181916;
  --line: rgba(255, 253, 248, 0.14);
  --surface: #20221d;
  --surface-soft: #171914;
  --mint-dark: #8ffff0;
  --charcoal: #0c0d0b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
  background: rgba(18, 19, 16, 0.72);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 20px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 14px;
  font-weight: 650;
}

.nav a:hover {
  color: var(--white);
}

.nav-cta {
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 8px;
  padding: 9px 13px;
  background: rgba(255, 253, 248, 0.08);
}

.language-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  padding: 0 10px;
  color: rgba(255, 253, 248, 0.82);
  background: rgba(255, 253, 248, 0.08);
}

.language-select svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.language-select select {
  max-width: 132px;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.language-select option {
  color: var(--ink);
}

.theme-switcher {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
}

.theme-switcher button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  padding: 0;
  color: rgba(255, 253, 248, 0.74);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.theme-switcher svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.theme-switcher button[aria-pressed="true"] {
  color: var(--charcoal);
  background: #b4fff0;
}

.theme-switcher button:focus-visible {
  outline: 2px solid #b4fff0;
  outline-offset: 2px;
}

.hero {
  position: relative;
  min-height: 76vh;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(23, 163, 127, 0.34), transparent 30%),
    radial-gradient(circle at 22% 72%, rgba(233, 170, 46, 0.16), transparent 28%),
    linear-gradient(135deg, #11120f 0%, #20241f 48%, #0b0d0c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(120deg, transparent 0%, rgba(255, 253, 248, 0.14) 48%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 44%, transparent 100%);
}

.hero-dashboard {
  display: none;
}

.dashboard-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.08);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  background: rgba(255, 253, 248, 0.07);
}

.dash-dots {
  display: flex;
  gap: 8px;
}

.dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.dash-dots span:nth-child(2) {
  background: var(--amber);
}

.dash-dots span:nth-child(3) {
  background: var(--mint);
}

.dash-label {
  color: rgba(255, 253, 248, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dash-body {
  display: grid;
  grid-template-columns: 190px 1fr 210px;
  gap: 16px;
  height: calc(100% - 58px);
  padding: 18px;
}

.dash-panel {
  border: 1px solid rgba(255, 253, 248, 0.13);
  border-radius: 12px;
  background: rgba(22, 24, 20, 0.72);
  overflow: hidden;
}

.dash-side {
  padding: 16px;
}

.side-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 12px;
  font-weight: 750;
}

.side-item b {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--mint);
}

.side-item:nth-child(3) b,
.side-item:nth-child(7) b {
  background: var(--amber);
}

.side-item:nth-child(5) b {
  background: var(--coral);
}

.dash-main {
  padding: 16px;
}

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

.metric {
  min-height: 94px;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: 10px;
  padding: 13px;
  background: rgba(255, 253, 248, 0.08);
}

.metric span {
  color: rgba(255, 253, 248, 0.62);
  font-size: 11px;
  font-weight: 750;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 150px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.06);
}

.chart span {
  flex: 1;
  min-width: 12px;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--mint), rgba(23, 163, 127, 0.22));
}

.orders {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.order-row {
  display: grid;
  grid-template-columns: 1fr 80px 70px;
  gap: 10px;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 253, 248, 0.1);
  border-radius: 8px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 11px;
  font-weight: 700;
}

.status {
  display: inline-flex;
  justify-content: center;
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(23, 163, 127, 0.18);
  color: #8ffff0;
}

.dash-right {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.stack-card {
  min-height: 110px;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: 10px;
  padding: 13px;
  background: rgba(255, 253, 248, 0.07);
}

.stack-card span {
  color: rgba(255, 253, 248, 0.58);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.stack-card strong {
  display: block;
  margin-top: 8px;
  font-size: 19px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 76vh;
  padding: 96px 0 32px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b4fff0;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--mint);
}

h1 {
  margin: 18px 0 18px;
  max-width: 780px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
}

.button.primary {
  background: var(--mint);
  color: var(--white);
}

.button.outline {
  border: 2px solid var(--mint);
  background: transparent;
  color: #b4fff0;
}

.button.outline:hover {
  background: rgba(23, 163, 127, 0.12);
}

.button.secondary {
  border: 1px solid rgba(255, 253, 248, 0.24);
  background: rgba(255, 253, 248, 0.08);
  color: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
  color: rgba(255, 253, 248, 0.76);
}

.proof-item strong {
  display: block;
  color: var(--white);
  font-size: 22px;
}

.proof-item span {
  font-size: 13px;
  font-weight: 700;
}

section {
  padding: 86px 0;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-copy {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.market {
  padding-top: 44px;
  background: var(--paper);
}

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

.problem-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.problem {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.problem b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(223, 101, 76, 0.12);
  color: var(--coral);
}

.problem strong {
  display: block;
  margin-bottom: 3px;
}

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

.pain-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.pain-chip {
  min-height: 74px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  font-size: 15px;
  font-weight: 720;
}

.pain-chip:nth-child(3n) {
  border-left-color: var(--amber);
}

.pain-chip:nth-child(4n) {
  border-left-color: var(--mint);
}

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

.switch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.switch-card {
  min-height: 176px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  background: var(--surface);
}

.switch-card:nth-child(2n) {
  border-left-color: var(--mint);
}

.switch-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.switch-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 21px;
  line-height: 1.15;
}

.switch-card p {
  margin: 0;
  color: var(--muted);
}

.built-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}

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

.built-card {
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.built-card b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(23, 163, 127, 0.12);
  color: var(--mint-dark);
  font-size: 12px;
}

.built-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.18;
}

.built-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.pricing-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.billing-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.billing-toggle button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  padding: 0 14px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.billing-toggle button[aria-pressed="true"] {
  color: var(--white);
  background: var(--mint);
}

.pricing-table {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.pricing-row.featured {
  border-color: rgba(23, 163, 127, 0.42);
  box-shadow: var(--shadow);
}

.pricing-row strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.pricing-row span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.price-value {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 950;
  line-height: 1;
}

.price-note {
  color: var(--muted);
  font-size: 14px;
}

.pricing-footnote {
  margin: 18px 0 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 760;
}

.investor-note {
  position: sticky;
  top: 92px;
  padding: 28px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow);
}

.investor-note h3 {
  margin: 0 0 14px;
  font-size: 26px;
}

.investor-note p {
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
}

.investor-note .note-line {
  height: 1px;
  margin: 22px 0;
  background: rgba(255, 253, 248, 0.14);
}

.note-metric {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.note-metric strong {
  display: block;
  font-size: 24px;
}

.note-metric span {
  color: rgba(255, 253, 248, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.features {
  background: var(--paper-2);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.feature-accordion {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.feature-detail {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}

.feature-detail summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 0 22px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
  list-style: none;
}

.feature-detail summary::-webkit-details-marker {
  display: none;
}

.feature-detail summary::after {
  content: "+";
  color: var(--mint-dark);
  font-size: 26px;
  font-weight: 700;
}

.feature-detail[open] summary::after {
  content: "-";
}

.feature-detail summary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  border-radius: 8px;
  background: rgba(23, 163, 127, 0.12);
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 900;
}

.feature-detail p {
  margin: 0;
  padding: 0 22px 12px 78px;
  color: var(--muted);
  font-size: 16px;
}

.feature-detail ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 22px 22px 78px;
  color: var(--muted);
  font-size: 16px;
  list-style: none;
}

.feature-detail li {
  position: relative;
  padding-left: 18px;
}

.feature-detail li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--mint);
}

.feature-detail li strong {
  color: var(--ink);
}

.feature {
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feature-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 32px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: rgba(23, 163, 127, 0.12);
  color: var(--mint-dark);
  font-weight: 900;
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

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

.platform {
  background: var(--charcoal);
  color: var(--white);
}

.platform .section-kicker {
  color: #8ffff0;
}

.platform .section-copy {
  color: rgba(255, 253, 248, 0.72);
}

.architecture {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  margin-top: 36px;
}

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

.layer {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 253, 248, 0.13);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.06);
}

.layer strong {
  color: #b4fff0;
}

.layer span {
  color: rgba(255, 253, 248, 0.74);
}

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

.breakthrough-grid {
  margin-top: 36px;
}

.app-capability-section {
  margin-top: 36px;
}

.app-capability-section h3,
.breakthrough-subtitle {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.app-capability-section > p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 17px;
}

.app-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.app-capability {
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(255, 253, 248, 0.13);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
}

.app-capability span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: rgba(23, 163, 127, 0.2);
  color: #b4fff0;
  font-size: 12px;
  font-weight: 900;
}

.app-capability strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 18px;
}

.app-capability p {
  margin: 0;
  color: rgba(255, 253, 248, 0.7);
}

#breakthrough .app-capability-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

#breakthrough .app-capability {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 4;
  overflow: hidden;
  padding: 24px;
  border-color: rgba(61, 232, 185, 0.26);
  background:
    linear-gradient(145deg, rgba(23, 163, 127, 0.24), rgba(255, 253, 248, 0.075) 44%, rgba(7, 8, 7, 0.34)),
    rgba(255, 253, 248, 0.06);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

#breakthrough .app-capability:nth-child(2),
#breakthrough .app-capability:nth-child(5),
#breakthrough .app-capability:nth-child(6) {
  grid-column: span 6;
}

#breakthrough .app-capability::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #3de8b9, rgba(180, 255, 240, 0.18));
}

#breakthrough .app-capability span {
  width: 52px;
  height: 44px;
  margin-bottom: 24px;
  background: rgba(180, 255, 240, 0.16);
  color: #d8fff7;
  font-size: 15px;
  box-shadow: inset 0 0 0 1px rgba(180, 255, 240, 0.2);
}

#breakthrough .app-capability strong {
  max-width: 420px;
  margin-bottom: 12px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.05;
}

#breakthrough .app-capability p {
  position: relative;
  max-width: 560px;
  color: rgba(255, 253, 248, 0.8);
  font-size: 16px;
  line-height: 1.55;
}

.breakthrough-subtitle {
  margin-top: 42px;
}

.app-deep-dive {
  border-top: 1px solid rgba(255, 253, 248, 0.1);
  background: #11120f;
}

.app-example-grid {
  margin-top: 34px;
}

.app-store-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.store-hero {
  padding-top: 150px;
}

.store-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 36px;
  align-items: center;
}

.store-hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.96;
}

.store-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: 19px;
}

.store-search {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
}

.store-search label {
  display: block;
  margin-bottom: 12px;
  color: #b4fff0;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.store-search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  border: 1px solid rgba(180, 255, 240, 0.24);
  border-radius: 8px;
  padding: 0 18px;
  background: rgba(0, 0, 0, 0.18);
}

.store-search-box svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: #b4fff0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.store-search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
}

.store-search-box input::placeholder {
  color: rgba(255, 253, 248, 0.48);
}

.store-search > span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 14px;
  font-weight: 760;
}

.capability-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.capability-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
  font-weight: 820;
}

.capability-strip a:hover {
  border-color: rgba(23, 163, 127, 0.45);
  color: var(--mint-dark);
}

.store-catalog {
  padding-top: 44px;
}

.store-category {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.store-category:first-child {
  border-top: 0;
  padding-top: 0;
}

.store-category-head {
  display: grid;
  grid-template-columns: 0.34fr 1fr 1.1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 20px;
}

.store-category-head span {
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.store-category-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.store-category-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.store-app {
  min-height: 194px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.store-app img {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  object-fit: contain;
}

.store-app b {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.16;
}

.store-app p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.store-empty {
  margin: 28px 0 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 800;
}

.flow-card {
  min-height: 152px;
  padding: 20px;
  border: 1px solid rgba(255, 253, 248, 0.13);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
}

.flow-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.flow-card p {
  margin: 0;
  color: rgba(255, 253, 248, 0.7);
}

.tenant-flow {
  margin-top: 32px;
}

.tenant-flow .layer,
.tenant-flow .flow-card {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.tenant-flow .layer strong {
  color: var(--mint-dark);
}

.tenant-flow .layer span,
.tenant-flow .flow-card p {
  color: var(--muted);
}

.tenant-flow .flow-card strong {
  color: var(--ink);
}

.deployment-grid,
.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

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

.plain-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.plain-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.plain-card p {
  margin: 0;
  color: var(--muted);
}

.mcp {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(20, 21, 18, 0.7), rgba(20, 21, 18, 0.9)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='900' viewBox='0 0 1600 900'%3E%3Crect width='1600' height='900' fill='%23242520'/%3E%3Cg fill='none' stroke='%2317a37f' stroke-opacity='.28' stroke-width='2'%3E%3Cpath d='M200 180h350v170h280v190h340v160'/%3E%3Cpath d='M300 700h260V520h240V320h430'/%3E%3Cpath d='M1040 160v180h220v220h150'/%3E%3C/g%3E%3Cg fill='%23e9aa2e' fill-opacity='.7'%3E%3Ccircle cx='200' cy='180' r='7'/%3E%3Ccircle cx='830' cy='350' r='7'/%3E%3Ccircle cx='1170' cy='540' r='7'/%3E%3Ccircle cx='1040' cy='160' r='7'/%3E%3Ccircle cx='1410' cy='560' r='7'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.mcp .section-kicker {
  color: #8ffff0;
}

.mcp .section-copy {
  color: rgba(255, 253, 248, 0.78);
}

.tool-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.tool {
  min-height: 98px;
  padding: 18px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
  font-weight: 850;
}

.roadmap {
  background: var(--paper);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.step {
  min-height: 230px;
  padding: 24px;
  border-left: 4px solid var(--mint);
  border-radius: 8px;
  background: var(--surface);
}

.step:nth-child(2) {
  border-color: var(--amber);
}

.step:nth-child(3) {
  border-color: var(--violet);
}

.step:nth-child(4) {
  border-color: var(--coral);
}

.step span {
  color: var(--muted);
  font-weight: 850;
  text-transform: uppercase;
}

.step h3 {
  margin: 14px 0 10px;
  font-size: 21px;
}

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

.closing {
  padding: 92px 0;
  color: var(--white);
  background: var(--charcoal);
}

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

.closing-inner.closing-single {
  grid-template-columns: 1fr;
  max-width: 960px;
}

.closing h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
}

.closing p {
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.75);
  font-size: 18px;
}

.closing-panel {
  padding: 28px;
  border: 1px solid rgba(255, 253, 248, 0.15);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.07);
}

.closing-panel strong {
  display: block;
  color: #b4fff0;
  font-size: 18px;
}

.closing-panel ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.closing-panel li {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 253, 248, 0.11);
  color: rgba(255, 253, 248, 0.78);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-dashboard {
    width: 112vw;
    height: 54vh;
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg) translateX(34vw)
      translateY(16vh);
    opacity: 0.48;
  }

  .hero-copy {
    max-width: 620px;
  }

  .topbar-actions {
    gap: 10px;
  }

  .language-select {
    min-height: 38px;
    padding: 0 8px;
  }

  .language-select select {
    max-width: 108px;
  }

  .market-grid,
  .architecture,
  .closing-inner {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .deployment-grid,
  .built-grid,
  .solution-card-grid,
  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tool-list,
  .timeline,
  .app-capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #breakthrough .app-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #breakthrough .app-capability,
  #breakthrough .app-capability:nth-child(2),
  #breakthrough .app-capability:nth-child(5),
  #breakthrough .app-capability:nth-child(6) {
    grid-column: auto;
  }

  .pricing-head {
    align-items: start;
    flex-direction: column;
  }

  .store-hero-inner,
  .store-category-head {
    grid-template-columns: 1fr;
  }

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

  .billing-toggle {
    width: 100%;
  }

  .investor-note {
    position: static;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .topbar-inner {
    min-height: 60px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    min-height: 78vh;
    padding-top: 90px;
  }

  .hero-dashboard {
    width: 170vw;
    height: 52vh;
    transform: perspective(900px) rotateY(-8deg) rotateX(4deg) translateX(58vw)
      translateY(22vh);
  }

  h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .hero-copy p {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  section {
    padding: 64px 0;
  }

  .feature-grid,
  .deployment-grid,
  .solution-grid,
  .integration-grid,
  .flow-board,
  .switch-grid,
  .tool-list,
  .timeline,
  .note-metric {
    grid-template-columns: 1fr;
  }

  .built-grid,
  .pain-chip-grid,
  .solution-card-grid,
  .app-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .built-card,
  .app-capability {
    min-height: auto;
    padding: 16px 14px;
  }

  #breakthrough .app-capability {
    min-height: 210px;
    padding: 18px 14px;
  }

  .pain-chip {
    min-height: auto;
    padding: 13px 12px;
    font-size: 14px;
  }

  .built-card b,
  .app-capability span {
    margin-bottom: 14px;
  }

  #breakthrough .app-capability span {
    width: 42px;
    height: 34px;
    margin-bottom: 18px;
    font-size: 13px;
  }

  .built-card strong,
  .app-capability strong {
    font-size: 17px;
  }

  #breakthrough .app-capability strong {
    font-size: 18px;
    line-height: 1.12;
  }

  .built-card p,
  .app-capability p {
    font-size: 14px;
  }

  #breakthrough .app-capability p {
    font-size: 14px;
    line-height: 1.45;
  }

  .store-hero {
    padding-top: 118px;
  }

  .store-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .store-search {
    padding: 16px;
  }

  .store-search-box {
    min-height: 60px;
    padding: 0 14px;
  }

  .store-search-box input {
    font-size: 16px;
  }

  .store-app {
    min-height: auto;
    padding: 16px 14px;
  }

  .store-app img {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
  }

  .store-app b {
    font-size: 16px;
  }

  .store-app p {
    font-size: 14px;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .layer {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .feature-accordion {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-detail summary {
    min-height: 64px;
    padding: 0 14px;
    gap: 12px;
    font-size: 18px;
    line-height: 1.25;
  }

  .feature-detail summary span {
    min-width: 44px;
    width: 44px;
    height: 36px;
    flex: 0 0 44px;
  }

  .feature-detail summary::after {
    flex: 0 0 auto;
    font-size: 24px;
  }

  .feature-detail p {
    padding: 0 14px 10px 70px;
    font-size: 15px;
  }

  .feature-detail ul {
    padding: 0 14px 18px 70px;
    font-size: 15px;
  }
}
