/* ═══════════════════════════════════════════════
   Annet Cloud Business landing
   Base styles vendored as landing-base.css (copy of landing/style.css)
   so /business/ can deploy without the consumer landing folder on the same host.
═══════════════════════════════════════════════ */

@import url("landing-base.css");

/* ═══════════════════════════════════════════════
   Scoped overrides for more formal tone
═══════════════════════════════════════════════ */
body.biz {
  --biz-surface:        #141414;
  --biz-surface-soft:   #181818;
  --biz-surface-strong: #1d1d1d;
  --biz-line:           rgba(255, 255, 255, 0.08);
  --biz-line-strong:    rgba(255, 255, 255, 0.14);
  --biz-mono:           'JetBrains Mono', 'SFMono-Regular', Menlo, Consolas, monospace;
}

/* ═══════════════════════════════════════════════
   Header (formal variant)
═══════════════════════════════════════════════ */
.biz-header .header-inner {
  height: 72px;
}

.biz-header-nav {
  gap: 26px;
}

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

/* ═══════════════════════════════════════════════
   Hero (canvas-driven, "black hole" cinematic)
   Neutral charcoal: slightly above #000, no blue cast — horizon reads as deeper black.
═══════════════════════════════════════════════ */
.biz-hero {
  position: relative;
  min-height: auto;
  padding: 0;
  overflow: hidden;
}

.biz-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1300px 780px at 64% 52%, #1a1a1a 0%, transparent 58%),
    radial-gradient(880px 560px at 16% 24%, #171717 0%, transparent 54%),
    linear-gradient(180deg, #121212 0%, #0f0f0f 42%, #111111 72%, #0e0e0e 100%);
  pointer-events: none;
  z-index: 0;
}

/* Above .biz-hero-inner so the hole is visible when it follows the cursor over copy.
   pointer-events: none keeps links / buttons underneath clickable. */
.biz-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
  display: block;
}

.biz-hero-cursor-label,
.biz-hero-wander-label {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(-9999px, -9999px, 0);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 9px;
  background: rgba(13, 13, 13, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-family: var(--biz-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 260ms ease;
  white-space: nowrap;
  will-change: transform, opacity;
}

.biz-hero-cursor-label.is-visible,
.biz-hero-wander-label.is-visible {
  opacity: 0.75;
}

.biz-hero-cursor-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.75;
}

.biz-hero-cursor-sep {
  color: var(--text-dim);
  opacity: 0.7;
}

.biz-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 108px;
  display: flex;
  align-items: center;
  min-height: min(720px, 85vh);
  gap: 0;
}

.biz-hero-content {
  position: relative;
  max-width: 640px;
  z-index: 2;
}

.biz-hero-content .biz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--biz-line-strong);
  background: var(--biz-surface);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 26px;
}

.biz-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent-glow);
}

.biz-hero-title {
  font-size: clamp(36px, 4.6vw, 58px);
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  font-variant-ligatures: none;
  font-variant-numeric: tabular-nums;
}

.biz-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  max-width: 560px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.biz-hero-specs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--biz-line);
  font-family: var(--biz-mono);
}

.biz-hero-spec {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 2px 22px;
  border-right: 1px solid var(--biz-line);
}

.biz-hero-spec:first-child {
  padding-left: 0;
}

.biz-hero-spec:last-child {
  border-right: none;
  padding-right: 0;
}

.biz-hero-spec-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.biz-hero-spec-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.biz-hud-card {
  position: relative;
  border: 1px solid var(--biz-line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 60%),
    var(--biz-surface);
  padding: 24px 24px 22px;
  border-radius: 2px;
  clip-path: polygon(
    14px 0,
    100% 0,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    0 100%,
    0 14px
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 60px rgba(0, 0, 0, 0.4);
}

.biz-hud-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), transparent 80%);
  opacity: 0.55;
}

.biz-hud-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--biz-line-strong);
  margin-bottom: 14px;
}

.biz-hud-card-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.biz-hud-card-serial {
  font-family: var(--biz-mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

.biz-hud-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
}

.biz-hud-card-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--biz-line);
  color: var(--text-muted);
}

.biz-hud-card-list li:last-child {
  border-bottom: none;
}

.biz-hud-card-list li span:first-child {
  color: var(--text-muted);
}

.biz-hud-ok {
  font-family: var(--biz-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.biz-hud-card-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px dashed var(--biz-line-strong);
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--biz-mono);
  letter-spacing: 0.04em;
}

.biz-hud-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 960px) {
  .biz-hero-inner {
    padding-top: 64px;
    padding-bottom: 80px;
    min-height: auto;
  }
  .biz-hero-content {
    max-width: 100%;
  }
  .biz-hero-content::before {
    inset: -20px -24px;
  }
}

@media (max-width: 720px) {
  .biz-hero-specs {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .biz-hero-spec {
    padding: 0;
    border-right: none;
  }
}

/* ═══════════════════════════════════════════════
   Contour section (ex-hero HUD card, now promoted)
═══════════════════════════════════════════════ */
.biz-contour-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.biz-contour-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.biz-contour-text {
  max-width: 520px;
}

.biz-contour-section .biz-section-label {
  margin-bottom: 12px;
}

.biz-contour-title {
  font-size: clamp(26px, 2.8vw, 36px);
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 16px;
}

.biz-contour-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.biz-contour-card {
  max-width: 460px;
  width: 100%;
  justify-self: end;
}

@media (max-width: 960px) {
  .biz-contour-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .biz-contour-card {
    max-width: 100%;
    justify-self: stretch;
  }
}

/* ═══════════════════════════════════════════════
   Sections: shared biz section chrome
═══════════════════════════════════════════════ */
.biz-section {
  padding: 84px 0;
  position: relative;
}

.biz-section + .biz-section {
  border-top: 1px solid var(--biz-line);
}

.biz-section-head {
  text-align: center;
  margin: 0 auto 46px;
  max-width: 720px;
}

.biz-section-label {
  font-family: var(--biz-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.biz-section-title {
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.biz-section-sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   Value grid - formal feat cards
═══════════════════════════════════════════════ */
.biz-feat-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.biz-feat-card {
  background: var(--biz-surface);
  border: 1px solid var(--biz-line);
  padding: 28px 22px 26px;
}

.biz-feat-card .feat-tag {
  color: var(--text-muted);
  border-color: var(--biz-line-strong);
  background: transparent;
}

.biz-feat-card .feat-title {
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.biz-feat-card .feat-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 960px) {
  .biz-feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .biz-feat-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   Plans
═══════════════════════════════════════════════ */
.biz-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.biz-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--biz-surface);
  border: 1px solid var(--biz-line);
  padding: 30px 26px 26px;
  transition:
    border-color var(--dur-micro) ease,
    transform var(--dur-micro) var(--ease-out-expo),
    box-shadow var(--dur-micro) ease;
}

.biz-plan:hover {
  border-color: var(--biz-line-strong);
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

.biz-plan-slot {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--biz-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.biz-plan-head {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--biz-line-strong);
}

.biz-plan-kicker {
  font-family: var(--biz-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.biz-plan-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.biz-plan-subtitle {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.biz-plan-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 22px;
  font-variant-numeric: tabular-nums;
}

.biz-plan-price-prefix {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.biz-plan-price-value {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
  font-family: var(--biz-mono);
}

.biz-plan-price-value-sm {
  font-size: 26px;
}

.biz-plan-price-suffix {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.biz-plan-price-split {
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.biz-plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.biz-plan-price-row-sub {
  padding-top: 4px;
  border-top: 1px dotted var(--biz-line);
  width: 100%;
}

.biz-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.biz-plan-features li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.biz-plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 1px;
  background: var(--accent);
}

.biz-plan-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Featured plan */
.biz-plan-featured {
  border-color: rgba(213, 96, 0, 0.55);
  background:
    linear-gradient(180deg, rgba(213, 96, 0, 0.06), transparent 40%),
    var(--biz-surface);
  box-shadow:
    inset 0 1px 0 rgba(213, 96, 0, 0.2),
    0 18px 48px rgba(213, 96, 0, 0.08);
}

.biz-plan-featured:hover {
  border-color: rgba(213, 96, 0, 0.75);
  box-shadow:
    inset 0 1px 0 rgba(213, 96, 0, 0.25),
    0 22px 58px rgba(213, 96, 0, 0.14);
}

.biz-plan-ribbon {
  position: absolute;
  top: -11px;
  left: 20px;
  padding: 4px 12px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(213, 96, 0, 0.35);
}

@media (max-width: 960px) {
  .biz-plans {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ═══════════════════════════════════════════════
   Compare table
═══════════════════════════════════════════════ */
.biz-compare-wrap {
  position: relative;
  background: var(--biz-surface);
  border: 1px solid var(--biz-line);
  padding: 8px;
  overflow-x: auto;
}

.biz-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 640px;
}

.biz-compare thead th {
  text-align: left;
  padding: 18px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--biz-line-strong);
  background: var(--biz-surface-strong);
}

.biz-compare thead th.biz-compare-row-label {
  color: var(--text-dim);
  font-weight: 600;
}

.biz-compare tbody th {
  text-align: left;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--biz-line);
  background: transparent;
  width: 32%;
}

.biz-compare tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--biz-line);
  color: var(--text);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.biz-compare tbody tr:last-child th,
.biz-compare tbody tr:last-child td {
  border-bottom: none;
}

.biz-compare tbody tr:hover {
  background: var(--biz-surface-soft);
}

.biz-compare-featured {
  background: rgba(213, 96, 0, 0.04);
  color: var(--text) !important;
}

thead .biz-compare-featured {
  background: rgba(213, 96, 0, 0.08);
  color: var(--accent);
}

/* ═══════════════════════════════════════════════
   How it works (biz variant)
═══════════════════════════════════════════════ */
.biz-how .steps {
  gap: 14px;
}

.biz-step {
  background: var(--biz-surface);
  border-color: var(--biz-line);
}

.biz-step .step-tag {
  color: var(--text-muted);
  border-color: var(--biz-line-strong);
  background: transparent;
}

.biz-step .step-title {
  font-size: 17px;
}

.biz-step .step-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   Audience + Docs
═══════════════════════════════════════════════ */
.biz-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.biz-audience-col .biz-section-label {
  text-align: left;
  margin-bottom: 14px;
}

.biz-col-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  line-height: 1.3;
}

.biz-chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.biz-chip {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--biz-line);
  background: var(--biz-surface);
  font-size: 14px;
  color: var(--text);
}

.biz-chip-num {
  min-width: 62px;
  font-family: var(--biz-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.biz-docs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.biz-docs li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid var(--biz-line);
  border-left: 2px solid var(--accent);
  background: var(--biz-surface);
}

.biz-docs-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.biz-docs-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 820px) {
  .biz-audience-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.biz-faq {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.biz-faq-item {
  border: 1px solid var(--biz-line);
  background: var(--biz-surface);
  transition: border-color var(--dur-micro) ease;
}

.biz-faq-item[open] {
  border-color: var(--biz-line-strong);
}

.biz-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  padding-right: 52px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  line-height: 1.5;
}

.biz-faq-item summary::-webkit-details-marker {
  display: none;
}

.biz-faq-item summary::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--dur-micro) ease, border-color var(--dur-micro) ease;
}

.biz-faq-item[open] summary::after {
  transform: translateY(-25%) rotate(-135deg);
  border-color: var(--accent);
}

.biz-faq-item summary:hover {
  color: var(--accent);
}

.biz-faq-body {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   Lead form
═══════════════════════════════════════════════ */
.biz-lead-section {
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(213, 96, 0, 0.06), transparent 70%),
    transparent;
}

.biz-lead-wrap {
  max-width: 880px;
}

.biz-lead-head {
  text-align: center;
  margin-bottom: 36px;
}

.biz-form {
  position: relative;
  background: var(--biz-surface);
  border: 1px solid var(--biz-line-strong);
  padding: 32px 32px 28px;
}

.biz-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}

.biz-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.biz-field-wide {
  grid-column: 1 / -1;
}

.biz-field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.biz-field-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.biz-field-req {
  color: var(--accent);
}

.biz-field input,
.biz-field select,
.biz-field textarea {
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: #0f0f0f;
  border: 1px solid var(--biz-line);
  padding: 12px 14px;
  border-radius: 2px;
  outline: none;
  transition:
    border-color var(--dur-micro) ease,
    box-shadow var(--dur-micro) ease,
    background var(--dur-micro) ease;
  width: 100%;
}

.biz-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%),
                    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.biz-field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.55;
}

.biz-field input:focus,
.biz-field select:focus,
.biz-field textarea:focus {
  border-color: var(--accent);
  background: #141414;
  box-shadow: 0 0 0 3px rgba(213, 96, 0, 0.15);
}

.biz-field input:invalid:not(:placeholder-shown),
.biz-field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(230, 80, 80, 0.55);
}

.biz-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--biz-surface-soft);
  border: 1px solid var(--biz-line);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
  cursor: pointer;
}

.biz-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid var(--biz-line-strong);
  background: #0f0f0f;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur-micro) ease, background var(--dur-micro) ease;
  margin-top: 1px;
}

.biz-consent input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.biz-consent input[type="checkbox"]:checked::after {
  content: '';
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-1px) rotate(45deg);
}

.biz-form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.biz-form-submit {
  min-width: 260px;
}

.biz-form-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.biz-form-hint {
  font-size: 13px;
  color: var(--text-dim);
}

.biz-form-status {
  margin-top: 18px;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.55;
  border: 1px solid var(--biz-line);
}

.biz-form-status-success {
  background: rgba(70, 170, 90, 0.08);
  border-color: rgba(70, 170, 90, 0.35);
  color: #b3eac1;
}

.biz-form-status-error {
  background: rgba(230, 80, 80, 0.08);
  border-color: rgba(230, 80, 80, 0.35);
  color: #f3b0b0;
}

.biz-form-status-error .link {
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 680px) {
  .biz-form {
    padding: 24px 20px 22px;
  }
  .biz-form-grid {
    grid-template-columns: 1fr;
  }
  .biz-form-submit {
    width: 100%;
    min-width: 0;
  }
}

/* ═══════════════════════════════════════════════
   Footer tweaks
═══════════════════════════════════════════════ */
.biz-footer .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.biz-footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.55;
}

.biz-footer-back {
  color: var(--accent) !important;
}
