:root {
  --bg: #f6f6f3;
  --bg-soft: #f1f1ec;
  --bg-deep: #e8e9e1;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-muted: #f4f4ef;
  --surface-ink: #121417;
  --text: #102233;
  --muted: #6e747b;
  --muted-strong: #3f454b;
  --line: rgba(18, 21, 23, 0.07);
  --line-strong: rgba(18, 21, 23, 0.12);
  --primary: #17324D;
  --secondary: #B9D8E8;
  --accent: #13836F;
  --accent-soft: rgba(24, 87, 216, 0.08);
  --warm: #efefe9;
  --warn: #594a1b;
  --headline: "Segoe UI Variable Display", "Segoe UI", "Aptos Display", sans-serif;
  --body: "Segoe UI Variable Text", "Segoe UI", "Aptos", sans-serif;
  --radius-xl: 28px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shadow-soft: 0 18px 42px rgba(15, 23, 32, 0.05), 0 3px 10px rgba(15, 23, 32, 0.03);
  --shadow-card: 0 14px 34px rgba(15, 23, 32, 0.045), 0 2px 8px rgba(15, 23, 32, 0.025);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: linear-gradient(180deg, #fbfbf8 0%, var(--bg) 44%, var(--bg-soft) 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-shell { width: min(1180px, calc(100vw - 36px)); margin: 0 auto; padding: 20px 0 96px; position: relative; }
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(15, 23, 32, 0.04);
  position: sticky;
  top: 16px;
  z-index: 4;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--headline); font-weight: 700; font-size: 18px; letter-spacing: -0.04em; }
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 11px;
  border: 1px solid rgba(24, 87, 216, 0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.22)),
    linear-gradient(135deg, #eef3ff, #dbe4ff);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92), 0 8px 18px rgba(24, 87, 216, 0.1);
  position: relative;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 999px;
}
.brand-mark::before {
  width: 12px;
  height: 12px;
  left: 8px;
  top: 8px;
}
.brand-mark::after {
  width: 14px;
  height: 3px;
  right: 6px;
  bottom: 7px;
}
.topnav { display: flex; align-items: center; gap: 8px; color: var(--muted-strong); font-size: 14px; flex-wrap: wrap; }
.topnav a { padding: 10px 12px; border-radius: 999px; font-weight: 600; }
.topnav a:hover { background: rgba(24, 87, 216, 0.05); color: var(--primary); }
.nav-cta {
  background: linear-gradient(135deg, var(--primary), #2c66de);
  color: #fff !important;
  padding-inline: 16px !important;
  box-shadow: 0 10px 20px rgba(24, 87, 216, 0.14);
}
.locale-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.74);
}
.locale-link {
  padding: 7px 10px !important;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
}
.locale-link.active {
  background: rgba(24, 87, 216, 0.08);
  color: var(--primary);
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: 70px 0 32px;
}
.home-hero, .compact-hero, .product-hero, .account-hero { align-items: start; }
.compact-hero { padding: 54px 0 24px; }
.eyebrow, .section-label {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(24, 87, 216, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--headline);
  line-height: 1.04;
}
h1 { font-size: clamp(42px, 5.6vw, 70px); letter-spacing: -0.06em; max-width: 10ch; font-weight: 700; }
h2 { font-size: clamp(28px, 3.1vw, 44px); letter-spacing: -0.045em; font-weight: 700; }
h3 { font-size: 22px; letter-spacing: -0.03em; font-weight: 700; }
p { line-height: 1.74; }
.lede {
  margin: 16px 0 20px;
  max-width: 54ch;
  font-size: clamp(18px, 2vw, 20px);
  color: var(--muted-strong);
}
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(18, 21, 23, 0.07);
  background: rgba(255,255,255,0.92);
  color: var(--muted-strong);
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
}
.pill.verified { color: var(--accent); background: rgba(24, 87, 216, 0.08); border-color: rgba(24, 87, 216, 0.16); }
.hero-actions, .button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: linear-gradient(135deg, var(--primary), #2d66dd);
  color: white;
  box-shadow: 0 14px 28px rgba(24, 87, 216, 0.14);
}
.button.secondary {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--line-strong);
}
.button.ghost {
  background: rgba(24, 87, 216, 0.08);
  color: var(--primary);
}
.button.text { min-height: auto; padding: 0; border: 0; border-radius: 0; color: var(--accent); background: transparent; }
.button.disabled {
  opacity: 0.55;
  pointer-events: none;
}
.state-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.hero-proof,
.mini-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  max-width: 620px;
}
.metric,
.mini-kpis div {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.86);
}
.metric strong,
.mini-kpis strong { display: block; font-family: var(--headline); font-size: 24px; letter-spacing: -0.03em; }
.metric span,
.mini-kpis span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }
.hero-media { position: relative; }
.visual-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(18, 21, 23, 0.06);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  overflow: hidden;
  min-height: 100%;
}
.visual-card img, .panel img {
  border-radius: 22px;
  border: 1px solid rgba(18, 21, 23, 0.06);
  box-shadow: 0 18px 40px rgba(15, 23, 32, 0.07);
}
.section { padding: 38px 0 0; }
.section-heading { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; max-width: 720px; }
.section-heading.center { align-items: center; text-align: center; margin-inline: auto; }
.grid { display: grid; gap: 22px; }
.card-grid, .trust-strip, .plan-grid, .flow-grid, .feature-grid {
  display: grid;
  gap: 20px;
}
.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .trust-card, .plan-card, .faq-item, .screenshot-card, .flow-card, .feature-card, .checkout-card, .status-card, .panel, .hub-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow-card);
}
.benefit-card { padding: 28px; min-height: 168px; }
.benefit-card h3 { margin-bottom: 12px; }
.benefit-card p { margin: 0; color: var(--muted); }
.screenshot-grid { display: grid; gap: 22px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.screenshot-card { overflow: hidden; }
.screenshot-card img { border-radius: 22px 22px 0 0; width: 100%; }
.screenshot-copy { padding: 18px 20px 22px; }
.screenshot-copy p { margin: 10px 0 12px; color: var(--muted); line-height: 1.7; }
.screenshot-copy span { font-size: 13px; color: var(--accent); font-weight: 700; }
.split {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.spotlight-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}
.pricing-overview-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}
.pricing-stack,
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
}
.faq-intro {
  padding: 24px 0;
}
.panel { padding: 18px; }
.panel-note, .plan-footnote { margin: 14px 0 0; color: var(--muted); line-height: 1.7; }
.compact-list { margin: 18px 0 0; padding-left: 18px; color: var(--muted-strong); line-height: 1.8; }
.comparison-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.step-list, .plan-card ul, .prose-block ul, .feature-card ul, .checkout-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  line-height: 1.8;
}
.flow-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); counter-reset: step; }
.flow-card { padding: 24px; position: relative; overflow: hidden; }
.flow-card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--primary);
  font-weight: 700;
}
.flow-card p { margin: 10px 0 0; color: var(--muted); }
.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-card { padding: 28px; }
.feature-card p { color: var(--muted); margin-bottom: 0; }
.pricing-section .plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
.plan-card { padding: 32px; }
.plan-card h2 { margin-bottom: 12px; }
.plan-card-pro {
  background: linear-gradient(180deg, rgba(236, 242, 255, 0.92), rgba(255,255,255,0.98));
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.plan-card-pro::after {
  content: "";
  position: absolute;
  inset: auto -12% -44% auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(24, 87, 216, 0.12), transparent 68%);
}
.plan-card-pro .plan-footnote,
.plan-card-pro ul,
.plan-card-pro p { color: var(--muted-strong); }
.plan-label {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}
.plan-card-pro .plan-label { color: var(--primary); }
.price-line { display: flex; align-items: baseline; gap: 10px; margin: 12px 0 8px; }
.price-line strong { font-family: var(--headline); font-size: clamp(42px, 5vw, 70px); letter-spacing: -0.05em; }
.price-line span { color: var(--muted); }
.plan-card-pro .price-line span { color: var(--muted); }
.trust-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.trust-card { padding: 26px; }
.trust-card p, .faq-item p, .prose-block p, .checkout-card p, .status-card p { color: var(--muted); line-height: 1.8; }
.faq-item { padding: 26px; }
.status-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.status-card { padding: 26px; }
.status-card h3 { margin-bottom: 10px; }
.text-columns { align-items: start; }
.prose-block { padding: 28px; }
.prose-block h3, .prose-block h4 { margin-bottom: 10px; }
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(244, 245, 239, 0.98));
  box-shadow: var(--shadow-card);
}
.checkout-card { padding: 28px; }
.status-banner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(24, 87, 216, 0.08);
  color: var(--warn);
}
.status-banner strong { color: var(--primary); }
.guidance-page {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding-top: 64px;
}
.guidance-card {
  width: min(760px, 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-soft);
  padding: clamp(30px, 5vw, 56px);
}
.guidance-card h1 { max-width: 13ch; }
.legal-page { padding: 66px 0 24px; }
.legal-article {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-soft);
}
.legal-summary {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.76;
}
.legal-copy h3 { margin: 34px 0 12px; font-size: 20px; }
.legal-copy h4 { margin: 22px 0 8px; font-size: 17px; letter-spacing: -0.02em; }
.legal-copy p, .legal-copy li { color: var(--muted-strong); line-height: 1.84; }
.legal-copy ul { padding-left: 18px; }
.legal-extra { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.guidance-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.fine-print { color: var(--muted); font-size: 13px; line-height: 1.7; }
.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}
.footer-legal { display: inline-flex; flex-wrap: wrap; gap: 16px; }
.market-shell {
  min-height: 100vh;
  background: linear-gradient(180deg, #fbfbf8 0%, var(--bg) 48%, var(--bg-soft) 100%);
}
.market-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 24px;
}
.market-brand {
  font-family: var(--headline);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.market-nav, .market-actions, .market-chip-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.market-nav a {
  color: var(--muted-strong);
  font-weight: 600;
}
.market-nav a.active {
  color: var(--primary);
}
.market-search {
  min-width: 220px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  color: var(--muted);
  box-shadow: var(--shadow-soft);
}
.market-login {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}
.market-hero {
  display: grid;
  gap: 18px;
  padding: 60px 0 24px;
}
.market-hero h1 {
  max-width: 11ch;
  font-size: clamp(42px, 6vw, 62px);
}
.market-hero p {
  max-width: 56ch;
  margin: 0;
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.7;
  color: var(--muted-strong);
}
.market-chip-row { justify-content: flex-start; gap: 12px; }
.market-chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(18, 21, 23, 0.05);
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
}
.market-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 28px;
}
.market-section-head h2 {
  font-size: clamp(32px, 3vw, 48px);
}
.market-link {
  color: var(--primary);
  font-weight: 700;
}
.hub-shell {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 16px 0 72px;
}
.hub-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.hub-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 21, 23, 0.06);
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow-card);
}
.hub-card img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  margin-bottom: 18px;
}
.status-chip {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(24, 87, 216, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}
.catalog-meta {
  margin: 12px 0 18px;
  color: var(--muted);
}
.catalog-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-header {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}
.hero-icon-tile {
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f1f4fb);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-icon-tile img {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 0;
  box-shadow: none;
}
.hero-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}
.hero-meta strong {
  color: var(--primary);
  font-weight: 700;
}
.product-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}
.marketplace-page {
  background: #f8f8fa;
}
.marketplace-topbar {
  height: 92px;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #5b606a;
  color: rgba(255,255,255,0.78);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
}
.marketplace-brand {
  color: #94a4ff;
  font-size: 22px;
  font-weight: 800;
}
.marketplace-nav,
.marketplace-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.marketplace-nav a {
  padding: 31px 0 22px;
  color: rgba(255,255,255,0.62);
  font-size: 20px;
  font-weight: 700;
}
.marketplace-nav a.active {
  color: #9ca9ff;
  border-bottom: 3px solid #746bff;
}
.marketplace-top-search {
  min-width: 270px;
  padding: 17px 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: #6b7280;
  font-size: 16px;
}
.marketplace-signin {
  padding: 14px 24px;
  border-radius: 10px;
  background: #2445dc;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}
.marketplace-topbar .locale-switcher {
  display: none;
}
.marketplace-main {
  width: min(1260px, calc(100vw - 64px));
  margin: 0 auto;
}
.marketplace-hero {
  padding: 92px 0 70px;
  text-align: center;
}
.marketplace-hero h1 {
  max-width: none;
  font-size: 52px;
  letter-spacing: 0;
}
.marketplace-hero p {
  max-width: 760px;
  margin: 24px auto 0;
  color: #5f6369;
  font-size: 32px;
  line-height: 1.35;
}
.marketplace-search {
  width: min(720px, 100%);
  margin: 54px auto 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 32px;
  border-radius: 999px;
  background: #f1f1f4;
  color: #667085;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  text-align: left;
}
.marketplace-search span {
  font-size: 28px;
}
.marketplace-search strong {
  font-size: 22px;
}
.marketplace-chip-row {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}
.marketplace-chip-row span,
.marketplace-category {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 18px;
  border-radius: 999px;
  background: #dedee1;
  color: #15171a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.marketplace-section {
  padding-bottom: 84px;
}
.marketplace-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}
.marketplace-section-head h2 {
  font-size: 36px;
  letter-spacing: 0;
}
.marketplace-section-head a {
  color: #123fd1;
  font-size: 22px;
  font-weight: 700;
}
.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.marketplace-card {
  min-height: 286px;
  padding: 28px;
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.045);
}
.marketplace-card-head,
.marketplace-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.marketplace-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #e8eeff;
  color: #2346db;
  font-weight: 800;
}
.marketplace-icon img {
  width: 42px;
  height: 42px;
}
.marketplace-icon-2 { background: #dcf8e9; color: #14a15b; }
.marketplace-icon-3 { background: #ffe9e1; color: #9a3412; }
.marketplace-icon-4 { background: #f6e8ff; color: #8a3ffc; }
.marketplace-icon-5 { background: #fff7d7; color: #c97900; }
.marketplace-icon-6 { background: #d9f7fb; color: #088ba0; }
.marketplace-card h3 {
  margin-top: 22px;
  font-size: 24px;
  letter-spacing: 0;
}
.marketplace-card p {
  min-height: 58px;
  color: #52565c;
  font-size: 18px;
  line-height: 1.55;
}
.marketplace-card-foot {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  color: #667085;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.marketplace-card-button {
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: #111827;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}
.marketplace-card-button.disabled {
  color: #8b929d;
  background: #f4f4f5;
}
.marketplace-footer {
  min-height: 130px;
  padding: 34px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #050914;
  color: rgba(255,255,255,0.55);
}
.marketplace-footer strong {
  color: #fff;
  font-size: 18px;
}
.marketplace-footer nav {
  display: flex;
  gap: 30px;
}
.product-detail-page {
  background: #f8f8fa;
}
.product-detail-nav {
  width: min(1280px, calc(100vw - 64px));
  margin: 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.product-detail-nav nav,
.product-detail-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.product-detail-nav nav a,
.product-detail-actions a {
  color: #334155;
  font-weight: 700;
}
.product-detail-nav nav a.active {
  color: #173bd0;
}
.product-detail-nav .locale-switcher {
  display: none;
}
.product-detail-main {
  width: min(1180px, calc(100vw - 64px));
  margin: 0 auto;
  padding: 54px 0 96px;
}
.product-detail-hero {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  margin-bottom: 58px;
}
.product-detail-icon {
  width: 112px;
  height: 112px;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}
.product-detail-hero h1 {
  max-width: none;
  font-size: 46px;
  letter-spacing: 0;
}
.product-detail-hero p {
  margin: 10px 0 0;
  font-size: 20px;
  color: #111827;
}
.product-detail-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: #475569;
}
.product-detail-meta span:first-child {
  color: #173bd0;
}
.product-detail-shot {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.10);
}
.product-detail-shot img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}
.product-detail-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 24px;
  margin-top: 24px;
}
.product-detail-two-col article,
.product-detail-two-col aside,
.product-detail-feature-row article,
.product-detail-faq {
  padding: 32px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.055);
}
.product-detail-two-col h2,
.product-detail-faq h2 {
  font-size: 30px;
  letter-spacing: 0;
}
.product-detail-two-col p {
  color: #475569;
}
.product-detail-two-col img {
  margin-top: 22px;
  width: 100%;
  border-radius: 12px;
}
.product-detail-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.product-detail-feature-row article span {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #dee4ff;
}
.product-detail-feature-row h3 {
  font-size: 18px;
  letter-spacing: 0;
}
.product-detail-feature-row p {
  color: #475569;
}
.product-detail-faq {
  margin-top: 48px;
}
.product-detail-faq article {
  margin-top: 18px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.product-detail-faq h3 {
  font-size: 18px;
  letter-spacing: 0;
}
.product-detail-faq p {
  color: #475569;
}
.account-simple {
  width: min(980px, calc(100vw - 64px));
  margin: 0 auto;
  padding: 70px 0 96px;
}
.account-simple-hero {
  margin-bottom: 32px;
}
.account-simple-hero h1 {
  max-width: none;
  font-size: 52px;
  letter-spacing: 0;
}
.account-simple-hero p {
  max-width: 620px;
  color: #475569;
  font-size: 20px;
}
.account-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.account-simple-grid article {
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.055);
  border: 1px solid rgba(15, 23, 42, 0.05);
}
.account-simple-grid span {
  color: #0f766e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.account-simple-grid h2 {
  margin-top: 12px;
  font-size: 26px;
  letter-spacing: 0;
}
.account-simple-grid p {
  color: #475569;
}
.showcase-shell {
  width: min(1280px, calc(100vw - 32px));
}
.showcase-nav,
.checkout-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.showcase-nav {
  padding: 18px 0 30px;
}
.showcase-nav-home {
  padding: 18px 28px;
  border-radius: 26px;
  background: #5e636d;
  color: rgba(255,255,255,0.9);
  box-shadow: 0 20px 44px rgba(17, 24, 39, 0.12);
}
.showcase-nav-light {
  padding: 12px 0 26px;
}
.showcase-brand {
  color: inherit;
}
.showcase-nav-links,
.showcase-nav-actions,
.checkout-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.showcase-nav-home .showcase-nav-links a,
.showcase-nav-home .locale-link {
  color: rgba(255,255,255,0.74);
}
.showcase-nav-links a {
  font-weight: 600;
}
.showcase-nav-links a.active {
  color: var(--primary);
}
.showcase-nav-home .showcase-nav-links a.active {
  color: #96a6ff;
}
.showcase-search-mini {
  min-width: 230px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #6b7280;
  font-weight: 600;
}
.showcase-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  background: #2242d7;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(34, 66, 215, 0.2);
}
.showcase-text-link,
.checkout-brand {
  font-weight: 700;
  color: var(--primary);
}
.showcase-nav-home .locale-switcher {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.16);
}
.showcase-nav-home .locale-link.active {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.showcase-home-hero {
  padding: 82px 0 44px;
  text-align: center;
}
.showcase-home-copy {
  width: min(980px, 100%);
  margin: 0 auto;
}
.showcase-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}
.showcase-home-hero h1 {
  max-width: 12ch;
  margin: 0 auto;
  font-size: clamp(58px, 7vw, 84px);
}
.showcase-subtitle {
  width: min(760px, 100%);
  margin: 22px auto 0;
  color: var(--muted-strong);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.45;
}
.showcase-search-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(760px, 100%);
  margin: 38px auto 0;
  padding: 24px 32px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.06);
  color: #667085;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
}
.showcase-search-icon {
  font-size: 28px;
  color: #7c8596;
}
.showcase-chip-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.showcase-chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(18, 21, 23, 0.08);
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
}
.showcase-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 16px 0 28px;
}
.showcase-card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
}
.showcase-product-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.05);
  border: 1px solid rgba(18, 21, 23, 0.05);
}
.showcase-product-card-wide {
  grid-row: span 2;
}
.showcase-card-top,
.showcase-card-footer,
.showcase-card-actions,
.checkout-plan-top,
.checkout-summary-row,
.checkout-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.showcase-icon-box,
.showcase-mini-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f3f6ff, #e6ecff);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.showcase-icon-box img {
  width: 44px;
  height: 44px;
}
.showcase-mini-icon {
  width: 52px;
  height: 52px;
  color: var(--primary);
  font-weight: 700;
}
.showcase-tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34, 66, 215, 0.12);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}
.showcase-product-card h3 {
  margin-top: 20px;
  font-size: 22px;
}
.showcase-product-card p {
  color: var(--muted-strong);
}
.showcase-card-preview {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(18, 21, 23, 0.05);
}
.showcase-card-preview img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.showcase-card-footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 21, 23, 0.08);
  color: #667085;
  font-size: 14px;
}
.showcase-dual-panel {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  margin-top: 28px;
}
.showcase-panel,
.showcase-side-steps,
.detail-content-card,
.detail-feature-stage,
.detail-lower-copy,
.detail-lower-side,
.checkout-plan-card,
.checkout-summary-card,
.checkout-copy-card,
.checkout-side-card {
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(18, 21, 23, 0.05);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.05);
}
.showcase-panel {
  padding: 28px;
}
.showcase-panel-large {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 20px;
}
.showcase-panel-media img,
.detail-hero-shot img,
.detail-inline-media img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}
.showcase-side-steps {
  padding: 28px 24px;
}
.showcase-step-line {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
}
.showcase-step-dot {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 999px;
  background: #1f45da;
}
.showcase-step-dot.muted {
  background: rgba(18, 21, 23, 0.14);
}
.showcase-bottom-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 30px 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(247,247,242,0.95));
  border: 1px solid rgba(18, 21, 23, 0.06);
}
.page-detail .showcase-shell,
.page-pricing .showcase-shell {
  width: min(1360px, calc(100vw - 40px));
}
.detail-intro {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 48px 0 28px;
}
.detail-icon-card {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.06);
}
.detail-icon-card img {
  width: 58px;
  height: 58px;
}
.detail-intro-copy h1 {
  max-width: none;
  font-size: clamp(50px, 5vw, 72px);
}
.detail-subtitle {
  margin: 10px 0 0;
  max-width: 60ch;
  color: var(--muted-strong);
  font-size: 24px;
}
.detail-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: #667085;
}
.detail-stars {
  color: #2242d7;
  letter-spacing: 0.12em;
}
.detail-hero-shot {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
}
.detail-hero-shot img {
  aspect-ratio: 16 / 7;
}
.detail-split-grid,
.detail-lower-grid {
  display: grid;
  gap: 20px;
  margin-top: 18px;
  grid-template-columns: 1.05fr 0.95fr;
}
.detail-content-card,
.detail-lower-copy,
.detail-lower-side {
  padding: 28px;
}
.detail-content-card-large {
  min-height: 100%;
}
.detail-content-card-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.detail-inline-media {
  margin-top: 20px;
}
.detail-inline-media img {
  aspect-ratio: 16 / 9;
}
.detail-check-list {
  margin: 18px 0 0;
  padding-left: 20px;
  line-height: 1.9;
}
.detail-feature-stage {
  margin-top: 24px;
  padding: 42px 36px 48px;
}
.detail-feature-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}
.detail-feature-head p:last-child {
  color: var(--muted);
}
.detail-feature-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.detail-feature-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.04);
}
.detail-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(34, 66, 215, 0.12);
}
.detail-faq-list .faq-item h4 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.checkout-topbar {
  padding: 12px 0 28px;
}
.checkout-lock {
  color: var(--muted-strong);
  font-weight: 600;
}
.checkout-hero {
  padding: 26px 0 26px;
}
.checkout-hero h1 {
  max-width: 10ch;
  font-size: clamp(58px, 5.8vw, 82px);
}
.checkout-hero p {
  max-width: 34ch;
  margin: 16px 0 0;
  color: #4b5563;
  font-size: clamp(22px, 2.4vw, 30px);
}
.checkout-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
}
.checkout-main-column {
  display: grid;
  gap: 24px;
}
.checkout-plan-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.checkout-plan-card,
.checkout-summary-card,
.checkout-copy-card,
.checkout-side-card {
  padding: 32px;
}
.checkout-plan-card-active {
  position: relative;
  border: 2px solid #2242d7;
}
.checkout-plan-recommend {
  position: absolute;
  top: -16px;
  right: 28px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #4f68e5;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.checkout-plan-radio {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid rgba(34, 66, 215, 0.22);
}
.checkout-plan-radio.active {
  border-color: #2242d7;
  box-shadow: inset 0 0 0 6px #fff, inset 0 0 0 12px #2242d7;
}
.checkout-plan-card ul,
.checkout-copy-card ul {
  margin: 22px 0 0;
  padding-left: 22px;
  line-height: 1.9;
}
.checkout-price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 16px;
}
.checkout-price-line strong {
  font-family: var(--headline);
  font-size: clamp(48px, 5vw, 72px);
  letter-spacing: -0.05em;
}
.checkout-price-line span {
  color: var(--muted);
}
.checkout-summary-card {
  background: rgba(248,248,246,0.95);
}
.checkout-summary-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(18, 21, 23, 0.08);
  color: #4b5563;
}
.checkout-summary-total {
  padding-top: 26px;
  color: var(--text);
}
.checkout-summary-total strong {
  font-size: 54px;
  color: #2242d7;
  letter-spacing: -0.05em;
}
.checkout-copy-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.checkout-side-card {
  position: sticky;
  top: 18px;
}
.checkout-field-shell {
  padding: 18px 20px;
  margin-top: 16px;
  border-radius: 18px;
  border: 1px solid rgba(18, 21, 23, 0.08);
  background: rgba(249,249,248,0.96);
}
.checkout-field-shell label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4b5563;
}
.checkout-side-button {
  width: 100%;
  margin-top: 20px;
}
.checkout-security-note {
  margin: 18px 0 0;
  color: #4b5563;
  line-height: 1.8;
}
code {
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(18, 21, 23, 0.06);
}
@media (max-width: 980px) {
  .hero, .split, .pricing-section .plan-grid, .trust-strip, .faq-layout, .screenshot-grid, .feature-grid, .flow-grid, .status-grid, .spotlight-grid, .pricing-overview-grid, .showcase-card-grid, .showcase-dual-panel, .showcase-panel-large, .detail-split-grid, .detail-feature-cards, .detail-lower-grid, .checkout-layout, .checkout-plan-grid, .checkout-copy-grid {
    grid-template-columns: 1fr;
  }
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-band {
    display: grid;
    align-items: start;
  }
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
  }
  .market-topbar, .showcase-nav, .checkout-topbar, .marketplace-topbar, .product-detail-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .marketplace-topbar {
    height: auto;
    padding: 22px 28px;
  }
  .marketplace-nav,
  .marketplace-actions {
    gap: 16px;
  }
  .marketplace-grid,
  .product-detail-two-col,
  .product-detail-feature-row,
  .account-simple-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-detail-hero { grid-template-columns: 1fr; }
  .showcase-home-hero h1,
  .checkout-hero h1,
  .detail-intro-copy h1 {
    max-width: none;
  }
  .showcase-bottom-band {
    display: grid;
    align-items: start;
  }
  .detail-intro {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .site-shell, .hub-shell { width: min(100vw - 24px, 100%); }
  .card-grid { grid-template-columns: 1fr; }
  .hero-proof { grid-template-columns: 1fr; }
  .mini-kpis { grid-template-columns: 1fr; }
  h1 { font-size: 38px; }
  .hero { padding-top: 32px; }
  .topbar { border-radius: 22px; position: static; }
  .market-search {
    min-width: 0;
    width: 100%;
  }
  .marketplace-main { width: min(100vw - 24px, 100%); }
  .marketplace-grid { grid-template-columns: 1fr; }
  .product-detail-main,
  .product-detail-nav { width: min(100vw - 24px, 100%); }
  .product-detail-two-col,
  .product-detail-feature-row,
  .account-simple-grid { grid-template-columns: 1fr; }
  .account-simple { width: min(100vw - 24px, 100%); }
  .marketplace-hero h1 { font-size: 38px; }
  .marketplace-hero p { font-size: 22px; }
  .marketplace-section-head,
  .marketplace-card-foot,
  .marketplace-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .marketplace-top-search {
    min-width: 0;
    width: 100%;
  }
  .showcase-search-bar,
  .showcase-search-mini {
    min-width: 0;
    width: 100%;
  }
  .showcase-card-footer,
  .showcase-card-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .checkout-summary-total strong {
    font-size: 40px;
  }
}