/* ── Base reset for v2 pages ── */
.v2-page * { margin: 0; padding: 0; box-sizing: border-box; }
.v2-page { font-family: var(--v2-font-ui); color: var(--v2-navy); background: var(--v2-white); }
.v2-page ::-webkit-scrollbar { width: 6px; }
.v2-page ::-webkit-scrollbar-track { background: var(--v2-soft-bg); }
.v2-page ::-webkit-scrollbar-thumb { background: var(--v2-border); border-radius: 3px; }

/* ── Container ── */
.v2-container {
  max-width: var(--v2-container);
  margin: 0 auto;
  padding: 0 var(--v2-container-pad);
}

/* ── Badge ── */
.v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-family: var(--v2-font-ui);
}
.v2-badge--blue {
  background: var(--v2-blue-light);
  color: var(--v2-blue);
  border: 1px solid var(--v2-blue-light-border);
}
.v2-badge--navy {
  background: #E8EBF2;
  color: var(--v2-navy);
  border: 1px solid #C5CCDD;
}
.v2-badge--green {
  background: var(--v2-success-bg);
  color: var(--v2-success);
  border: 1px solid var(--v2-success-border);
}

/* ── Buttons ── */
.v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--v2-radius-sm);
  font-family: var(--v2-font-ui);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
  line-height: 1;
}
.v2-btn--sm { padding: 8px 18px; font-size: 14px; }
.v2-btn--md { padding: 12px 24px; font-size: 15px; }
.v2-btn--lg { padding: 14px 32px; font-size: 16px; }

.v2-btn--primary {
  background: var(--v2-blue);
  color: var(--v2-white);
  border-color: var(--v2-blue);
}
.v2-btn--primary:hover { background: var(--v2-blue-hover); border-color: var(--v2-blue-hover); color: var(--v2-white); }

.v2-btn--secondary {
  background: white;
  color: var(--v2-blue);
  border-color: var(--v2-blue);
}
.v2-btn--secondary:hover { background: var(--v2-blue-light); }

.v2-btn--ghost {
  background: transparent;
  color: var(--v2-gray);
  border-color: var(--v2-border);
}
.v2-btn--ghost:hover { background: var(--v2-soft-bg); }

/* ── Icon wrapper ── */
.v2-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--v2-soft-bg);
  border: 1.5px solid var(--v2-border);
  border-radius: 12px;
}
.v2-icon-box--sm { width: 32px; height: 32px; border-radius: 8px; }
.v2-icon-box--md { width: 44px; height: 44px; border-radius: 12px; }
.v2-icon-box--lg { width: 52px; height: 52px; border-radius: 14px; }
.v2-icon-box--xl { width: 64px; height: 64px; border-radius: 16px; }

/* ── Feature Card ── */
.v2-feature-card {
  background: var(--v2-white);
  border: 1.5px solid var(--v2-border);
  border-radius: var(--v2-radius-md);
  padding: 28px 24px;
  transition: all 0.18s ease;
  cursor: default;
}
.v2-feature-card:hover {
  border-color: var(--v2-blue-light-border);
  transform: translateY(-4px);
  box-shadow: var(--v2-shadow-hover);
}
.v2-feature-card:hover .v2-icon-box { background: var(--v2-blue-light); }
.v2-feature-card:hover .v2-icon-box svg { color: var(--v2-blue); stroke: var(--v2-blue); }
.v2-feature-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--v2-navy);
  margin: 18px 0 8px;
  line-height: 1.3;
}
.v2-feature-card__desc {
  font-size: 14px;
  color: var(--v2-gray);
  line-height: 1.55;
}

/* ── Use Case Card ── */
.v2-use-case-card {
  background: var(--v2-white);
  border: 1.5px solid var(--v2-border);
  border-radius: var(--v2-radius-lg);
  padding: 32px 28px;
  box-shadow: 0 2px 8px rgba(13,27,61,0.04);
  transition: all 0.2s ease;
}
.v2-use-case-card:hover {
  border-color: var(--v2-blue-light-border);
  box-shadow: 0 8px 28px rgba(13,27,61,0.10);
  transform: translateY(-4px);
}
.v2-use-case-card:hover .v2-icon-box { background: var(--v2-blue-light); }
.v2-use-case-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--v2-navy);
  margin: 20px 0 12px;
  letter-spacing: -0.01em;
}
.v2-use-case-card__desc {
  font-size: 15px;
  color: var(--v2-gray);
  line-height: 1.65;
  margin-bottom: 24px;
}
.v2-use-case-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.v2-use-case-card__tag {
  padding: 4px 12px;
  background: var(--v2-soft-bg);
  border: 1px solid var(--v2-border);
  border-radius: 20px;
  font-size: 12px;
  color: var(--v2-gray);
  font-weight: 500;
}

/* ── Related Card ── */
.v2-related-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--v2-white);
  border: 1.5px solid var(--v2-border);
  border-radius: var(--v2-radius-md);
  padding: 28px 24px;
  text-decoration: none;
  transition: all 0.18s ease;
  box-shadow: 0 1px 4px rgba(13,27,61,0.04);
}
.v2-related-card:hover {
  background: var(--v2-soft-bg);
  border-color: var(--v2-blue-light-border);
  box-shadow: 0 6px 20px rgba(13,27,61,0.09);
}
.v2-related-card:hover .v2-icon-box { background: var(--v2-blue-light); }
.v2-related-card__body { flex: 1; }
.v2-related-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--v2-navy);
  margin-bottom: 6px;
}
.v2-related-card__desc {
  font-size: 14px;
  color: var(--v2-gray);
  line-height: 1.5;
  margin-bottom: 14px;
}
.v2-related-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--v2-blue);
}

/* ── Pricing Card ── */
.v2-pricing-card {
  background: var(--v2-white);
  border: 1.5px solid var(--v2-border);
  border-radius: var(--v2-radius-lg);
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 2px 8px rgba(13,27,61,0.05);
  transition: all 0.2s ease;
}
.v2-pricing-card:hover { box-shadow: 0 8px 24px rgba(13,27,61,0.10); }
.v2-pricing-card--popular {
  background: var(--v2-navy);
  border-color: var(--v2-navy);
  box-shadow: var(--v2-shadow-lg);
  transform: scale(1.03);
}
.v2-pricing-card--popular:hover { box-shadow: var(--v2-shadow-lg); }
.v2-pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--v2-blue);
  color: var(--v2-white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.v2-pricing-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--v2-gray);
  margin-bottom: 12px;
}
.v2-pricing-card--popular .v2-pricing-card__name { color: var(--v2-gray-mid); }
.v2-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.v2-pricing-card__amount {
  font-size: 44px;
  font-weight: 700;
  color: var(--v2-navy);
  letter-spacing: -0.03em;
}
.v2-pricing-card--popular .v2-pricing-card__amount { color: var(--v2-white); }
.v2-pricing-card__period { font-size: 15px; color: var(--v2-gray); }
.v2-pricing-card--popular .v2-pricing-card__period { color: var(--v2-gray-mid); }
.v2-pricing-card__divider {
  height: 1px;
  background: var(--v2-border);
  margin: 24px 0;
}
.v2-pricing-card--popular .v2-pricing-card__divider { background: rgba(255,255,255,0.1); }
.v2-pricing-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.v2-pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--v2-gray);
}
.v2-pricing-card--popular .v2-pricing-card__feature { color: #C5CCDD; }
.v2-pricing-card__cta {
  width: 100%;
  padding: 13px 0;
  border-radius: var(--v2-radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--v2-font-ui);
  cursor: pointer;
  transition: all 0.15s;
  background: transparent;
  color: var(--v2-blue);
  border: 1.5px solid var(--v2-blue);
  text-align: center;
  text-decoration: none;
  display: block;
}
.v2-pricing-card__cta:hover { background: var(--v2-blue-light); }
.v2-pricing-card--popular .v2-pricing-card__cta {
  background: var(--v2-blue);
  color: var(--v2-white);
  border-color: var(--v2-blue);
}
.v2-pricing-card--popular .v2-pricing-card__cta:hover { background: var(--v2-blue-hover); }

/* ── Trust strip ── */
.v2-trust-strip {
  border-top: 1px solid var(--v2-border);
  border-bottom: 1px solid var(--v2-border);
  background: var(--v2-white);
}
.v2-trust-strip__inner {
  max-width: var(--v2-container);
  margin: 0 auto;
  padding: 0 var(--v2-container-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.v2-trust-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  font-size: 13px;
  color: var(--v2-navy);
  font-weight: 500;
  line-height: 1.35;
}
.v2-trust-strip__item:not(:last-child) {
  border-right: 1px solid var(--v2-border);
  padding-right: 28px;
}
.v2-trust-strip__item:not(:first-child) { padding-left: 28px; }

@media (max-width: 767px) {
  .v2-trust-strip__inner { grid-template-columns: 1fr 1fr; }
  .v2-trust-strip__item:nth-child(2) { border-right: none; }
  .v2-trust-strip__item:nth-child(3) { padding-left: 0; }
}

/* ── Code tabs ── */
.v2-code-panel { background: var(--v2-soft-bg); border: 1.5px solid var(--v2-border); }
.v2-code-tabs {
  display: flex;
  gap: 0;
  background: var(--v2-soft-bg);
  border: 1.5px solid var(--v2-border);
  border-radius: 14px 14px 0 0;
  border-bottom: none;
  padding: 4px 6px;
}
.v2-code-tab {
  padding: 8px 16px;
  border: none;
  border-radius: var(--v2-radius-sm);
  background: transparent;
  color: var(--v2-gray);
  font-weight: 400;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--v2-font-ui);
  transition: all 0.15s;
}
.v2-code-tab--active {
  background: var(--v2-white);
  color: var(--v2-navy);
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(13,27,61,0.08);
}
.v2-code-block {
  background: var(--v2-soft-bg);
  border: 1.5px solid var(--v2-border);
  border-radius: 0 0 14px 14px;
  border-top: none;
  overflow: hidden;
}
.v2-code-section { padding: 14px 20px; border-bottom: 1px solid var(--v2-border); }
.v2-code-section:last-child { border-bottom: none; }
.v2-code-label {
  font-size: 11px;
  color: var(--v2-gray);
  font-weight: 500;
  margin-bottom: 8px;
}
.v2-code-endpoint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.v2-code-endpoint code {
  font-size: 13px;
  color: var(--v2-navy);
  background: var(--v2-white);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--v2-border);
  display: block;
  flex: 1;
  font-family: var(--v2-font-mono);
}
.v2-code-pre {
  font-size: 12px;
  background: var(--v2-white);
  padding: 12px 14px;
  border-radius: var(--v2-radius-sm);
  border: 1px solid var(--v2-border);
  overflow: auto;
  line-height: 1.65;
  margin: 0;
  font-family: var(--v2-font-mono);
  color: var(--v2-navy);
}
.v2-code-response-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.v2-code-status {
  background: var(--v2-success);
  color: var(--v2-white);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
}
.v2-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--v2-white);
  border: 1px solid var(--v2-border);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 500;
  color: var(--v2-gray);
  cursor: pointer;
  font-family: var(--v2-font-ui);
  transition: all 0.15s;
  flex-shrink: 0;
}
.v2-copy-btn--copied {
  background: var(--v2-success-bg);
  border-color: var(--v2-success-border);
  color: var(--v2-success);
}
.v2-code-panel[data-lang] .v2-code-pane { display: none; }
.v2-code-panel .v2-code-pane--active { display: block; }

/* ── Syntax highlighting (light background) ── */
.hl-keyword  { color: #c0392b; }
.hl-func     { color: #6f42c1; }
.hl-string   { color: #0a3069; }
.hl-key      { color: #0550ae; }
.hl-bool     { color: #c04b00; }
.hl-number   { color: #116329; }
.hl-comment  { color: var(--v2-gray); font-style: italic; }
.hl-variable { color: #953800; }
.hl-method   { color: #8250df; }

/* ── Section headers ── */
.v2-section-header { text-align: center; margin-bottom: 56px; }
.v2-section-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--v2-navy);
  margin-top: 16px;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}
.v2-section-header p {
  font-size: 17px;
  color: var(--v2-gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .v2-section-header h2 { font-size: 28px; }
  .v2-section-header p { font-size: 15px; }
}

/* ── Developer section (shared component) ── */
.v2-developer-section {
  padding: 96px 0;
  background: var(--v2-white);
}
.v2-developer-section__inner {
  max-width: var(--v2-container);
  margin: 0 auto;
  padding: 0 var(--v2-container-pad);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.v2-developer-section__title {
  font-size: 38px;
  font-weight: 700;
  color: var(--v2-navy);
  margin-top: 16px;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.v2-developer-section__desc {
  font-size: 16px;
  color: var(--v2-gray);
  line-height: 1.65;
  margin-bottom: 32px;
}
.v2-developer-section__bullets { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.v2-developer-section__bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--v2-navy);
}
@media (max-width: 860px) {
  .v2-developer-section__inner { grid-template-columns: 1fr; }
  .v2-developer-section__title { font-size: 28px; }
}
@media (max-width: 767px) {
  .v2-developer-section { display: none; }
}

/* ── CTA section (shared component) ── */
.v2-cta-section {
  padding: 80px 0;
  background: var(--v2-white);
}
.v2-cta-card {
  background: var(--v2-soft-bg);
  border: 1.5px solid var(--v2-border);
  border-radius: 24px;
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.v2-cta-card__title {
  font-size: 34px;
  font-weight: 700;
  color: var(--v2-navy);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.v2-cta-card__desc {
  font-size: 16px;
  color: var(--v2-gray);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 380px;
}
.v2-cta-card__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.v2-cta-illustration {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-cta-terminal {
  width: 190px;
  height: 140px;
  background: var(--v2-navy);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(13,27,61,0.18);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.v2-cta-terminal__dots {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.v2-cta-terminal__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.8;
}
.v2-cta-terminal__dot--red    { background: var(--v2-error); }
.v2-cta-terminal__dot--yellow { background: var(--v2-warning); }
.v2-cta-terminal__dot--green  { background: var(--v2-success); }
.v2-cta-terminal__body { padding: 14px 16px; }
.v2-cta-terminal__prompt {
  font-family: var(--v2-font-mono);
  font-size: 13px;
  color: var(--v2-blue);
  margin-bottom: 6px;
}
.v2-cta-terminal__prompt span { color: var(--v2-white); }
.v2-cta-terminal__line1 {
  font-family: var(--v2-font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.v2-cta-terminal__line2 {
  font-family: var(--v2-font-mono);
  font-size: 11px;
  color: var(--v2-success);
  opacity: 0.8;
}
.v2-cta-api-card {
  z-index: 1;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-30%);
  background: var(--v2-white);
  border: 1.5px solid var(--v2-border);
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(13,27,61,0.12);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 120px;
}
.v2-cta-api-card__icon {
  width: 36px;
  height: 36px;
  background: var(--v2-soft-bg);
  border: 1.5px solid var(--v2-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-cta-api-card__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--v2-navy);
  margin-bottom: 5px;
}
.v2-cta-api-card__line {
  width: 48px;
  height: 5px;
  background: var(--v2-border);
  border-radius: 3px;
  margin-top: 4px;
}
.v2-cta-plane {
  position: absolute;
  top: -10px;
  right: -10px;
  pointer-events: none;
}
@media (max-width: 860px) {
  .v2-cta-card { grid-template-columns: 1fr; padding: 36px 32px; }
  .v2-cta-illustration { display: none; }
}

/* ── Hero ── */
.v2-hero {
  padding-top: 40px;
  padding-bottom: 80px;
  background: var(--v2-white);
  position: relative;
  overflow: hidden;
}
.v2-hero__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 40%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 100% at 50% 40%, black 30%, transparent 100%);
}
.v2-hero__inner {
  max-width: var(--v2-container);
  margin: 0 auto;
  padding: 0 var(--v2-container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.v2-hero__title {
  font-size: 56px;
  font-weight: 700;
  color: var(--v2-navy);
  line-height: 1.08;
  margin-top: 20px;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.v2-hero__title-sub {
  font-size: 48px;
  font-weight: 600;
  color: var(--v2-gray-mid);
  letter-spacing: -0.02em;
}
.v2-hero__desc {
  font-size: 18px;
  color: var(--v2-gray);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 440px;
}
.v2-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.v2-hero__demo {
  background: var(--v2-soft-bg);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius-md);
  padding: 20px;
}
.v2-hero__demo-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--v2-gray);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.v2-hero__demo-row { display: flex; gap: 10px; align-items: center; }
.v2-hero__demo-input-wrap { position: relative; flex: 1; }
.v2-hero__demo-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--v2-gray);
}
.v2-hero__demo-input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1.5px solid var(--v2-border);
  border-radius: var(--v2-radius-sm);
  font-size: 14px;
  font-family: var(--v2-font-mono);
  background: var(--v2-white);
  color: var(--v2-navy);
  outline: none;
  transition: border-color 0.15s;
}
.v2-hero__demo-input:focus   { border-color: var(--v2-blue); }
.v2-hero__demo-input--valid  { border-color: var(--v2-success); }
.v2-hero__demo-input--invalid { border-color: var(--v2-error); }
.v2-hero__demo-submit {
  background: var(--v2-blue);
  color: var(--v2-white);
  border: none;
  border-radius: var(--v2-radius-sm);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--v2-font-ui);
  transition: background 0.15s;
  flex-shrink: 0;
}
.v2-hero__demo-submit:hover { background: var(--v2-blue-hover); }
.v2-hero__demo-result {
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  display: none;
}
.v2-hero__demo-result--show    { display: flex; align-items: center; gap: 8px; }
.v2-hero__demo-result--success { background: var(--v2-success-bg); border: 1px solid var(--v2-success-border); color: var(--v2-success); }
.v2-hero__demo-result--error   { background: var(--v2-error-bg);   border: 1px solid var(--v2-error-border);   color: var(--v2-error); }
.v2-hero__demo-result--warning { background: var(--v2-warning-bg); border: 1px solid var(--v2-warning-border); color: var(--v2-warning); }

/* ── Hero illustration ── */
.v2-hero-illustration {
  position: relative;
  width: 520px;
  height: 420px;
  max-width: 100%;
}
.v2-hero-illustration__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ── Float cards ── */
.v2-float-card {
  position: absolute;
  background: var(--v2-white);
  border: 1.5px solid var(--v2-border);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(13,27,61,0.08);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  transition: border-color 0.25s, background 0.25s;
}
.v2-float-card__icon {
  width: 32px;
  height: 32px;
  background: var(--v2-soft-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.v2-float-card__label { font-size: 12px; font-weight: 600; color: var(--v2-navy); line-height: 1.2; }
.v2-float-card__status { font-size: 11px; font-weight: 500; margin-top: 2px; }
.v2-float-card__status--neutral { color: var(--v2-blue); }
.v2-float-card--valid   { border-color: var(--v2-success-border); background: var(--v2-success-bg); }
.v2-float-card--invalid { border-color: var(--v2-error-border);   background: var(--v2-error-bg); }
.v2-float-card--warning { border-color: var(--v2-warning-border); background: var(--v2-warning-bg); }
.v2-float-card--valid   .v2-float-card__status { color: var(--v2-success); }
.v2-float-card--invalid .v2-float-card__status { color: var(--v2-error); }
.v2-float-card--warning .v2-float-card__status { color: var(--v2-warning); }
@keyframes v2-card-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.v2-float-card--loading { animation: v2-card-pulse 1.1s ease-in-out infinite; }

/* ── API response card ── */
.v2-api-card__bool--true  { color: var(--v2-success); }
.v2-api-card__bool--false { color: var(--v2-warning); }
.v2-api-card {
  position: absolute;
  left: 237px;
  top: 16px;
  width: 280px;
  background: var(--v2-white);
  border: 1.5px solid var(--v2-border);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(13,27,61,0.09);
  padding: 11px 14px;
  font-size: 11px;
  font-family: var(--v2-font-mono);
  z-index: 2;
}
.v2-api-card__label {
  color: var(--v2-gray);
  margin-bottom: 6px;
  font-family: var(--v2-font-ui);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.v2-api-card__brace  { color: var(--v2-gray); line-height: 1.5; display: block; }
.v2-api-card__line   { padding-left: 12px; line-height: 1.5; }
.v2-api-card__line--nested { padding-left: 24px; }
.v2-api-card__line--deep   { padding-left: 36px; }
.v2-api-card__key    { color: var(--v2-blue); }
.v2-api-card__string { color: var(--v2-success); }
.v2-api-card__bool   { color: var(--v2-warning); }
.v2-api-card__number { color: #116329; }
.v2-api-card__json {
  margin: 0;
  padding: 0;
  font-family: var(--v2-font-mono);
  font-size: 11px;
  line-height: 1.5;
  white-space: pre;
  overflow-y: auto;
  max-height: 430px;
}
.v2-api-card__footer { margin-top: 6px; display: flex; justify-content: flex-end; }
.v2-api-card__status-badge {
  background: var(--v2-success);
  color: var(--v2-white);
  border-radius: 4px;
  padding: 1px 7px;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--v2-font-ui);
}

/* ── Features section ── */
.v2-features-section { padding: 96px 0; background: var(--v2-soft-bg); }
.v2-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Use Cases section ── */
.v2-use-cases-section { padding: 96px 0; background: var(--v2-soft-bg); }
.v2-use-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── Related Features section ── */
.v2-related-section {
  padding: 80px 0;
  background: var(--v2-white);
  border-top: 1px solid var(--v2-border);
}
.v2-related-section__header { margin-bottom: 40px; }
.v2-related-section__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--v2-navy);
  margin-top: 14px;
  letter-spacing: -0.02em;
}
.v2-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ── Pricing section ── */
.v2-pricing-section { padding: 96px 0; background: var(--v2-soft-bg); }
.v2-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

/* ── Benefits section ── */
.v2-benefits-section {
  padding: 96px 0;
  background: var(--v2-white);
  border-top: 1px solid var(--v2-border);
}
.v2-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.v2-benefit-card {
  background: var(--v2-soft-bg);
  border: 1.5px solid var(--v2-border);
  border-radius: var(--v2-radius-md);
  padding: 28px 24px;
  text-align: center;
}
.v2-benefit-card__icon {
  width: 52px;
  height: 52px;
  background: var(--v2-blue-light);
  border: 1px solid var(--v2-blue-light-border);
  border-radius: var(--v2-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.v2-benefit-card__stat  { font-size: 36px; font-weight: 700; color: var(--v2-blue); letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px; }
.v2-benefit-card__label { font-size: 14px; font-weight: 600; color: var(--v2-navy); margin-bottom: 8px; }
.v2-benefit-card__desc  { font-size: 13px; color: var(--v2-gray); line-height: 1.5; }

/* ── FAQ section ── */
.v2-faq-section {
  padding: 96px 0;
  background: var(--v2-soft-bg);
  border-top: 1px solid var(--v2-border);
}
.v2-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.v2-faq-item { border-bottom: 1px solid var(--v2-border); }
.v2-faq-item:first-child { border-top: 1px solid var(--v2-border); }
.v2-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--v2-navy);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.v2-faq-question::-webkit-details-marker { display: none; }
.v2-faq-question::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--v2-blue);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}
.v2-faq-item[open] .v2-faq-question::after { transform: rotate(45deg); }
.v2-faq-answer { padding: 0 4px 22px; font-size: 15px; color: var(--v2-gray); line-height: 1.65; margin: 0; }
.v2-faq-answer code {
  font-family: var(--v2-font-mono);
  font-size: 13px;
  background: var(--v2-blue-light);
  color: var(--v2-blue);
  padding: 1px 6px;
  border-radius: 4px;
}
.v2-faq-answer a { color: var(--v2-blue); text-decoration: none; }
.v2-faq-answer a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .v2-features-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .v2-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .v2-hero__title { font-size: 36px; }
  .v2-hero__title-sub { font-size: 32px; }
  .v2-hero__desc { font-size: 16px; }
  .v2-hero-illustration { width: 290px; }
  .v2-float-card { display: none; }
  .v2-hero-illustration__lines { display: none; }
  .v2-api-card { left: 0; }
  .v2-use-cases-grid { grid-template-columns: 1fr; }
  .v2-related-grid { grid-template-columns: 1fr; }
  .v2-pricing-grid { grid-template-columns: 1fr; }
  .v2-pricing-card--popular { transform: none; }
  .v2-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .v2-features-grid { grid-template-columns: 1fr; }
  .v2-benefits-grid { grid-template-columns: 1fr; }
  .v2-hero__actions { flex-direction: column; }
  .v2-hero__actions .v2-btn { width: 100%; justify-content: center; }
}
