:root {
  --theme-primary: #1d4ed8;
  --theme-primary-strong: #1e40af;
  --theme-primary-soft: #eaf2ff;
  --theme-primary-border: #bfd3ff;
  --theme-primary-hero: #d8e7ff;
  --theme-primary-focus: rgba(29, 78, 216, 0.16);
  --theme-primary-icon-bg: #eef4ff;
  --theme-accent: #ff9f0a;
  --theme-ink: #172033;
  --theme-surface: #f4f7fd;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei",
    sans-serif;
  color: var(--theme-ink);
  background:
    radial-gradient(circle at top left, rgba(29, 78, 216, 0.08), transparent 26%),
    linear-gradient(180deg, #f7faff 0%, #eef3fb 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 7vw;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: #111827;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a,
.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover,
.button:hover {
  border-color: #cbd5e1;
  background: #ffffff;
}

.nav a:hover {
  color: #111827;
}

.button {
  cursor: pointer;
  background: #ffffff;
  border-color: #d6dee8;
}

.button.primary {
  border-color: var(--theme-primary);
  background: var(--theme-primary);
  color: #ffffff;
}

.button.dark {
  border-color: #1e3a8a;
  background: #1e3a8a;
  color: #ffffff;
}

.button.light {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.button.primary:hover {
  border-color: var(--theme-primary-strong);
  background: var(--theme-primary-strong);
  color: #ffffff;
}

.button.dark:hover {
  border-color: #1d4ed8;
  background: #1d4ed8;
  color: #ffffff;
}

.button.light:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.hero {
  min-height: 596px;
  display: flex;
  align-items: flex-end;
  padding: 64px 7vw 66px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 159, 10, 0.15), transparent 20%),
    linear-gradient(92deg, rgba(9, 16, 31, 0.84), rgba(13, 25, 48, 0.58) 46%, rgba(13, 25, 48, 0.16) 72%, rgba(13, 25, 48, 0.08)),
    url("/assets/official-hero-store.webp") center / cover no-repeat;
}

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

.eyebrow,
.section-kicker,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #eef4ff;
}

.section-kicker,
.panel-kicker {
  border: 1px solid var(--theme-primary-border);
  background: var(--theme-primary-soft);
  color: var(--theme-primary);
}

h1,
.page-title {
  max-width: 860px;
  margin: 16px 0 0;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.72;
}

.hero-focus {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero-actions,
.package-meta,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 24px;
  gap: 12px;
}

.trial-panel,
.trial-entry-panel {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  color: #182230;
  padding: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.trial-panel h2,
.trial-entry-panel h2 {
  margin: 12px 0 0;
  font-size: 24px;
}

.trial-panel p,
.trial-entry-panel p {
  margin: 8px 0 18px;
  color: #667085;
  line-height: 1.7;
}

.trial-panel .button,
.trial-entry-panel .button {
  width: 100%;
}

.field {
  margin-bottom: 12px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #ccd6e1;
  border-radius: 14px;
  color: #172033;
  font-size: 14px;
  outline: none;
  background: #ffffff;
}

.field input {
  height: 48px;
  padding: 0 14px;
}

.field select {
  height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 120px;
  padding: 14px;
  resize: vertical;
  font: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--theme-primary);
  box-shadow: 0 0 0 3px var(--theme-primary-focus);
}

.field-tip {
  margin-top: 8px;
  color: #667085;
  font-size: 12px;
  line-height: 1.6;
}

.register-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 12px;
  align-items: end;
}

.register-code-field {
  margin-bottom: 0;
}

.form-message {
  min-height: 22px;
  margin: 10px 0 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.5;
}

.form-message.error {
  color: #b42318;
}

.form-message.success {
  color: #027a48;
}

.proof-strip {
  padding: 18px 7vw 6px;
  background: #ffffff;
}

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

.trial-entry-section {
  padding-top: 48px;
}

.trial-entry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 440px);
  gap: 24px;
  align-items: start;
}

.trial-entry-copy {
  min-width: 0;
}

.trial-entry-panel {
  border-color: rgba(29, 78, 216, 0.14);
  box-shadow: 0 24px 60px rgba(23, 32, 51, 0.1);
}

.proof-item {
  min-height: 108px;
  padding: 20px 22px;
  border: 1px solid #dbe6f4;
  border-radius: 18px;
  background: #f8fbff;
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  color: #17325f;
}

.proof-item span {
  color: #667085;
  line-height: 1.7;
  font-size: 14px;
}

.section {
  padding: 68px 7vw;
}

.section.white {
  background: #ffffff;
}

.section.muted {
  background:
    linear-gradient(180deg, #eef4ff 0%, #f5f8ff 100%);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section h2,
.final-cta h2 {
  margin: 12px 0 0;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-intro,
.page-intro,
.showcase-copy p,
.final-cta p {
  max-width: 780px;
  margin: 12px 0 0;
  color: #667085;
  line-height: 1.8;
}

.grid-3,
.package-grid,
.case-grid,
.faq-grid,
.promise-grid,
.recommend-grid,
.consult-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

code {
  color: #17325f;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.94em;
}

pre {
  overflow-x: auto;
  margin: 14px 0 0;
  padding: 16px;
  border: 1px solid #dbe6f4;
  border-radius: 14px;
  background: #0f172a;
  color: #e5edff;
  line-height: 1.7;
}

pre code {
  color: inherit;
}

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

.card,
.package,
.case-card,
.faq-item,
.step,
.consult-card {
  border: 1px solid #dde4ed;
  border-radius: 20px;
  background: #ffffff;
  overflow: hidden;
}

.card,
.faq-item,
.consult-card {
  min-height: 184px;
  padding: 24px;
}

.card-media {
  min-height: 220px;
  padding: 0;
}

.card-media img,
.case-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.card strong,
.package strong,
.case-card strong,
.faq-item strong,
.step strong,
.consult-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.card p,
.package p,
.case-card p,
.faq-item p,
.step p,
.consult-card p {
  margin: 0;
  color: #667085;
  line-height: 1.7;
}

.consult-card {
  display: block;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.consult-card:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 78, 216, 0.24);
  box-shadow: 0 22px 44px rgba(16, 24, 40, 0.1);
}

.icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--theme-primary-icon-bg);
  color: var(--theme-primary);
  font-weight: 900;
}

.product-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  background: #f7faff;
}

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

.developer-panel {
  min-width: 0;
  padding: 24px;
  border: 1px solid #dde4ed;
  border-radius: 20px;
  background: #ffffff;
}

.developer-panel h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.developer-list {
  margin: 0;
  padding-left: 18px;
  color: #667085;
  line-height: 1.85;
}

.endpoint-table {
  border: 1px solid #dbe6f4;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
}

.endpoint-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(220px, 1.2fr) minmax(140px, 0.7fr);
  gap: 1px;
  border-top: 1px solid #dbe6f4;
}

.endpoint-row:first-child {
  border-top: 0;
}

.endpoint-row > div {
  min-width: 0;
  padding: 16px;
  color: #475467;
  line-height: 1.7;
}

.endpoint-head > div {
  background: #eef4ff;
  color: #17325f;
  font-weight: 900;
}

.showcase-copy {
  max-width: 560px;
}

.product-panel,
.industry-image {
  overflow: hidden;
  border: 1px solid #d7e0eb;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 52px rgba(23, 32, 51, 0.1);
}

.workspace-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.workspace-card,
.trust-card {
  overflow: hidden;
  border: 1px solid #dde4ed;
  border-radius: 20px;
  background: #ffffff;
}

.workspace-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.workspace-copy {
  padding: 18px 18px 20px;
}

.workspace-copy strong,
.trust-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.workspace-copy p,
.trust-card p {
  margin: 0;
  color: #667085;
  line-height: 1.7;
}

.product-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

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

.list.compact {
  margin-top: 22px;
}

.list-item {
  padding: 16px;
  border: 1px solid #dde4ed;
  border-radius: 16px;
  background: #ffffff;
}

.list-item strong {
  display: block;
  margin-bottom: 6px;
}

.list-item span {
  color: #667085;
  line-height: 1.6;
}

.industry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.industry-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.industry-list {
  display: grid;
  gap: 12px;
}

.industry-list div {
  padding: 20px;
  border: 1px solid #dde4ed;
  border-radius: 18px;
  background: #ffffff;
}

.industry-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.industry-list span {
  color: #667085;
  line-height: 1.7;
}

.inline-link {
  display: inline-flex;
  margin-left: 8px;
  color: var(--theme-primary);
  font-weight: 800;
}

.trust-section {
  background: #f8fbff;
}

.trust-card {
  min-height: 184px;
  padding: 22px;
}

.promise-section {
  background: #f7faff;
}

.promise-card,
.recommend-card,
.policy-card {
  border: 1px solid #dde4ed;
  border-radius: 20px;
  background: #ffffff;
}

.promise-card,
.recommend-card {
  min-height: 196px;
  padding: 22px;
}

.promise-card strong,
.recommend-card strong,
.policy-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.promise-card p,
.recommend-card p,
.policy-card p {
  margin: 0;
  color: #667085;
  line-height: 1.7;
}

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

.policy-card {
  min-height: 220px;
  padding: 22px;
}

.policy-card .section-kicker {
  margin-bottom: 16px;
}

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

.step {
  min-height: 210px;
  padding: 24px;
}

.step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--theme-primary-strong);
  font-weight: 900;
}

.package {
  min-height: 244px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.package-price {
  margin: 14px 0 8px;
  color: var(--theme-primary);
  font-size: 32px;
  font-weight: 900;
}

.package-price span {
  margin-left: 6px;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.package-section-title {
  margin: 16px 0 8px;
  color: #344054;
  font-size: 13px;
  font-weight: 900;
}

.package-feature-list,
.package-limit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.package-feature-list span,
.package-limit-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f2f4f7;
  color: #344054;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.package-limit-list span {
  background: #eef4ff;
  color: #1d4ed8;
}

.package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.compare-table,
.package-compare-matrix {
  overflow: hidden;
  border: 1px solid #dde4ed;
  border-radius: 20px;
  background: #ffffff;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  min-width: 720px;
}

.compare-row:not(:last-child) {
  border-bottom: 1px solid #e6edf5;
}

.compare-row > div {
  padding: 16px 18px;
  color: #344054;
  line-height: 1.6;
}

.compare-row > div:not(:last-child) {
  border-right: 1px solid #e6edf5;
}

.compare-head {
  background: #f6f9ff;
}

.compare-head > div {
  font-weight: 800;
}

.package-compare-matrix {
  overflow-x: auto;
}

.compare-module-row > div:first-child,
.compare-limit-row > div:first-child {
  font-weight: 800;
}

.compare-check,
.compare-miss {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.compare-check {
  background: #ecfdf3;
  color: #027a48;
}

.compare-miss {
  background: #f2f4f7;
  color: #667085;
}

.compare-empty {
  padding: 22px;
  color: #667085;
  line-height: 1.7;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 6px;
  background: #f0f4f8;
  color: #475467;
  font-size: 12px;
  font-weight: 700;
}

.page-hero {
  padding: 82px 7vw 56px;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 159, 10, 0.2), transparent 18%),
    linear-gradient(90deg, rgba(8, 13, 23, 0.92), rgba(8, 13, 23, 0.6)),
    url("/assets/official-hero-store.webp") center / cover no-repeat;
}

.page-hero .page-intro {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.page-actions {
  margin-top: 26px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 430px);
  gap: 24px;
  align-items: start;
}

.activation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 450px);
  gap: 24px;
  align-items: start;
}

.contact-copy {
  min-width: 0;
}

.activation-copy {
  min-width: 0;
}

.contact-panel,
.activation-panel {
  position: sticky;
  top: 96px;
  border: 1px solid #d9e3ee;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 26px;
  box-shadow: 0 20px 46px rgba(23, 32, 51, 0.08);
}

.contact-panel h2,
.activation-panel h2 {
  margin: 12px 0 0;
  font-size: 26px;
}

.contact-panel p,
.activation-panel p {
  margin: 10px 0 18px;
  color: #667085;
  line-height: 1.7;
}

.contact-panel .button,
.activation-panel .button {
  width: 100%;
}

.contact-proof {
  margin-top: 22px;
}

.consult-trigger {
  width: 100%;
  padding: 22px;
  text-align: left;
  cursor: pointer;
}

.consult-trigger.active {
  border-color: var(--theme-primary-border);
  background: #f5f9ff;
  box-shadow: 0 18px 36px rgba(29, 78, 216, 0.08);
}

.choice-group {
  display: grid;
  gap: 10px;
}

.package-choice-grid {
  gap: 12px;
}

.choice-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #dbe4ee;
  border-radius: 16px;
  background: #ffffff;
  cursor: pointer;
}

.package-choice.active {
  border-color: var(--theme-primary-border);
  background: #f5f9ff;
  box-shadow: 0 18px 36px rgba(29, 78, 216, 0.08);
}

.choice-option input {
  margin: 3px 0 0;
  accent-color: var(--theme-primary);
}

.choice-copy {
  display: grid;
  gap: 4px;
}

.choice-copy strong {
  color: #172033;
  font-size: 15px;
}

.choice-copy span {
  color: #667085;
  font-size: 13px;
  line-height: 1.6;
}

.summary-card {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid #dbe4ee;
  border-radius: 18px;
  background: #ffffff;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.summary-line span {
  color: #667085;
  font-size: 13px;
}

.summary-line strong {
  color: #172033;
  font-size: 16px;
}

.workflow {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

.scene-card {
  overflow: hidden;
  border: 1px solid #d7e0eb;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(23, 32, 51, 0.08);
}

.scene-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #d7e5ff;
  border-radius: 999px;
  background: #f7faff;
  color: var(--theme-primary-strong);
  font-size: 13px;
  font-weight: 800;
}

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

.deliverable-card {
  min-height: 188px;
  padding: 22px;
  border: 1px solid #dde4ed;
  border-radius: 20px;
  background: #ffffff;
}

.deliverable-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.deliverable-card p {
  margin: 0;
  color: #667085;
  line-height: 1.7;
}

.fit-compare,
.proof-metrics {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.fit-card,
.metric-card {
  padding: 18px;
  border: 1px solid #dde4ed;
  border-radius: 18px;
  background: #ffffff;
}

.fit-card.muted {
  background: #f8fbff;
}

.fit-card strong,
.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.fit-card p,
.metric-card p {
  margin: 0;
  color: #667085;
  line-height: 1.7;
}

.proof-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 18px;
  align-items: stretch;
}

.activation-proof {
  margin-top: 22px;
}

.status-shell {
  display: flex;
  justify-content: center;
}

.status-card {
  width: min(820px, 100%);
  border: 1px solid #d9e3ee;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 28px;
  box-shadow: 0 20px 46px rgba(23, 32, 51, 0.08);
}

.status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}

.status-head h2 {
  margin: 0;
  font-size: 28px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e9eff9;
  color: #344054;
  font-size: 13px;
  font-weight: 900;
}

.status-badge.pending {
  background: #eff6ff;
  color: var(--theme-primary-strong);
}

.status-badge.paid {
  background: #ecfdf3;
  color: #027a48;
}

.status-badge.closed {
  background: #fef3f2;
  color: #b42318;
}

.status-note {
  margin: 12px 0 0;
  color: #667085;
  line-height: 1.7;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.status-row {
  padding: 16px;
  border: 1px solid #dde4ed;
  border-radius: 18px;
  background: #ffffff;
}

.status-row span {
  display: block;
  margin-bottom: 8px;
  color: #667085;
  font-size: 13px;
}

.status-row strong {
  color: #172033;
  font-size: 16px;
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.status-actions .button {
  width: auto;
}

.status-empty {
  padding: 16px;
  border: 1px dashed #d2dbe7;
  border-radius: 16px;
  color: #667085;
  background: #ffffff;
  line-height: 1.7;
}

.faq-section {
  background: #f7faff;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 54px 7vw;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 159, 10, 0.16), transparent 18%),
    linear-gradient(135deg, #101828 0%, #1e3a8a 100%);
}

.final-cta .section-kicker {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--theme-primary-hero);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 30px 7vw;
  border-top: 1px solid #dde4ed;
  color: #667085;
  background: #ffffff;
}

body.register-modal-open {
  overflow: hidden;
}

.register-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.register-modal[hidden] {
  display: none;
}

.register-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.56);
  backdrop-filter: blur(10px);
}

.register-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: calc(100vh - 64px);
  overflow: auto;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 159, 10, 0.12), transparent 26%),
    linear-gradient(180deg, #fdfefe 0%, #f6f9ff 100%);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.32);
  outline: none;
}

.register-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 440px);
  gap: 28px;
  padding: 34px;
}

.register-modal-copy {
  min-width: 0;
}

.register-modal-copy h2,
.register-modal-panel h3 {
  margin: 14px 0 0;
  color: #172033;
}

.register-modal-copy h2 {
  font-size: 36px;
  line-height: 1.16;
}

.register-modal-panel h3 {
  font-size: 26px;
  line-height: 1.24;
}

.register-modal-intro,
.register-modal-panel p {
  margin: 12px 0 0;
  color: #667085;
  line-height: 1.8;
}

.register-modal-panel {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(29, 78, 216, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(23, 32, 51, 0.1);
}

.register-modal-panel .button.primary,
.register-modal-panel .button[data-register-send-code] {
  width: 100%;
}

.register-modal-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.register-modal-proof-item {
  min-height: 120px;
  padding: 18px 18px 16px;
  border: 1px solid #d8e3f2;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.register-modal-proof-item strong {
  display: block;
  margin-bottom: 8px;
  color: #17325f;
  font-size: 16px;
}

.register-modal-proof-item span {
  color: #667085;
  font-size: 13px;
  line-height: 1.7;
}

.register-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #d6dee8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #344054;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.register-modal-close:hover {
  border-color: #c4d2e4;
  background: #ffffff;
  color: #111827;
}

@media (max-width: 1120px) {
  .hero,
  .product-showcase,
  .industry-layout,
  .workflow,
  .proof-layout,
  .grid-2,
  .contact-layout,
  .activation-layout,
  .trial-entry-layout {
    grid-template-columns: 1fr;
  }

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

  .contact-panel,
  .activation-panel {
    position: static;
  }

  .steps,
  .faq-grid,
  .promise-grid,
  .recommend-grid,
  .workspace-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .register-modal-layout {
    grid-template-columns: 1fr;
  }

  .register-modal-proof {
    grid-template-columns: 1fr 1fr;
  }

  h1,
  .page-title {
    font-size: 42px;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 20px;
  }

  .brand {
    font-size: 18px;
  }

  .nav,
  .nav a,
  .button {
    width: 100%;
  }

  .hero,
  .section,
  .page-hero,
  .final-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
    padding-bottom: 48px;
  }

  .hero-content {
    max-width: none;
  }

  .hero-copy {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.68;
  }

  .hero-focus {
    font-size: 24px;
  }

  .proof-strip {
    padding: 0 20px;
    margin-top: 0;
  }

  .grid-3,
  .package-grid,
  .case-grid,
  .steps,
  .proof-panel,
  .faq-grid,
  .promise-grid,
  .recommend-grid,
  .consult-grid,
  .developer-layout,
  .workspace-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .endpoint-row {
    grid-template-columns: 1fr;
  }

  .proof-panel {
    gap: 12px;
  }

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

  .register-modal {
    padding: 0;
  }

  .register-modal-dialog {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  .register-modal-layout {
    gap: 20px;
    padding: 72px 20px 24px;
  }

  .register-modal-copy h2 {
    font-size: 30px;
  }

  .register-modal-panel h3 {
    font-size: 24px;
  }

  .register-modal-panel {
    padding: 24px 18px;
  }

  .proof-item {
    min-height: auto;
    padding: 20px 18px;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-row > div:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #e6edf5;
  }

  h1,
  .page-title {
    font-size: 34px;
  }

  .section h2,
  .final-cta h2 {
    font-size: 28px;
  }

  .section-head,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .status-head,
  .status-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .register-modal-proof {
    grid-template-columns: 1fr;
  }

  .product-panel img,
  .industry-image img {
    min-height: 260px;
  }
}
