:root {
  --bg: #0b0f16;
  --surface: #141b26;
  --surface-2: #1b2433;
  --text: #f3f6fa;
  --muted: #a1adbf;
  --accent: #22d3ee;
  --accent-2: #0ea5e9;
  --line: #2a3648;
  --ok: #22c55e;
  --danger: #ef4444;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top right, #162237 0%, var(--bg) 55%);
  color: var(--text);
  line-height: 1.5;
}

.coming-soon-bar {
  background: var(--danger);
  color: #ffffff;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 15, 22, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--text);
}

.cta-link {
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
}

.hero {
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.18;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

h2 {
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
}

.subhead,
.section-intro,
.hero-proof,
.small {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.hero-card,
.card,
.price-card,
.signup-form,
.faq-list details {
  background: linear-gradient(180deg, rgba(27, 36, 51, 0.95), rgba(20, 27, 38, 0.95));
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.hero-card,
.card,
.price-card {
  padding: 1.2rem;
}

.hero-card {
  display: flex;
  flex-direction: column;
}

.hero-card ul {
  margin-bottom: 0;
}

.impact-graphic {
  margin-top: auto;
  min-height: 210px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(13, 22, 36, 0.95), rgba(10, 18, 29, 0.95));
  position: relative;
  overflow: hidden;
  padding: 0.9rem;
}

.impact-graphic__glow {
  position: absolute;
  inset: auto -25% -40% -25%;
  height: 120px;
  background: radial-gradient(circle at center, rgba(34, 211, 238, 0.35), rgba(14, 165, 233, 0));
}

.impact-graphic__header {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.impact-graphic__header span {
  border: 1px solid rgba(34, 211, 238, 0.35);
  background: rgba(20, 33, 52, 0.7);
  color: #8de8f7;
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  white-space: nowrap;
}

.impact-graphic__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.impact-graphic__stats span {
  font-size: 0.68rem;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(16, 25, 38, 0.9);
  border-radius: 6px;
  padding: 0.16rem 0.42rem;
}

.impact-graphic__bars {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  height: 58%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 0.55rem;
}

.impact-bar {
  border-radius: 8px 8px 3px 3px;
  border: 1px solid rgba(34, 211, 238, 0.35);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.85), rgba(14, 165, 233, 0.2));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.3rem 0.22rem;
  min-height: 46%;
}

.impact-bar__value {
  font-size: 0.73rem;
  font-weight: 800;
  color: #00131a;
  text-align: center;
}

.impact-bar__label {
  font-size: 0.56rem;
  letter-spacing: 0.02em;
  color: #c2f7ff;
  text-align: center;
}

.impact-bar:nth-child(1) { height: 96%; }
.impact-bar:nth-child(2) { height: 62%; }
.impact-bar:nth-child(3) { height: 70%; }
.impact-bar:nth-child(4) { height: 82%; }
.impact-bar:nth-child(5) { height: 50%; }

.section {
  padding: 3.5rem 0;
}

.alt {
  background: rgba(13, 18, 28, 0.75);
}

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

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

.price-card ul,
.hero-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.recommended {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.badge {
  display: inline-block;
  margin: 0 0 0.4rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #02161b;
  background: var(--accent);
}

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

.price {
  margin: 0.2rem 0 0.9rem;
  font-size: 2rem;
  font-weight: 700;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.signup-form {
  display: grid;
  gap: 0.6rem;
  padding: 1rem;
}

.signup-form label {
  font-weight: 600;
}

.signup-form input,
.signup-form select {
  width: 100%;
  background: #0f1623;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  padding: 0.75rem;
}

.form-message {
  min-height: 1.4rem;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  padding: 0.9rem 1rem;
}

.faq-list summary {
  font-weight: 600;
  cursor: pointer;
}

.final-cta {
  text-align: center;
}

.btn {
  border: 0;
  border-radius: 10px;
  padding: 0.74rem 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  color: #04151d;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
}

.btn-secondary {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1rem 0 2rem;
}

.footer-wrap {
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .value-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

  .recommended {
    transform: none;
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .menu {
    gap: 0.6rem;
    font-size: 0.9rem;
  }
}

/* ---- ACP-Log product section ---- */
.benchmark-table-wrap {
  margin: 2rem 0;
  overflow-x: auto;
}

.benchmark-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.benchmark-table th,
.benchmark-table td {
  padding: 0.6rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.benchmark-table th {
  color: var(--accent);
  font-weight: 600;
  background: var(--surface-2);
}

.benchmark-table tbody tr:hover {
  background: var(--surface-2);
}

.table-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.product-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.step code {
  display: block;
  margin-top: 0.25rem;
  background: var(--surface-2);
  padding: 0.4rem 0.75rem;
  border-radius: 0.4rem;
  font-family: monospace;
  font-size: 0.82rem;
  color: var(--accent);
  border: 1px solid var(--line);
  white-space: nowrap;
  overflow-x: auto;
}

.product-integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.badge-chip {
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 2rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
}

/* Production certification section */
.production-certification {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.05) 0%, rgba(14, 165, 233, 0.02) 100%);
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cert-card {
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(34, 211, 238, 0.1);
}

.cert-card h3 {
  color: var(--accent);
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
}

.cert-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.cert-footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.cert-footer a {
  color: var(--accent);
  text-decoration: none;
}

.cert-footer a:hover {
  text-decoration: underline;
}

.production-badge {
  background: var(--ok) !important;
  color: #000 !important;
  font-weight: 700;
  border-color: var(--ok) !important;
}

/* New product sections styling */
#acp-image,
#acp-backup,
#acp-metrics {
  scroll-margin-top: 80px;
}

#tool-catalog {
  scroll-margin-top: 80px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.tool-card {
  background: linear-gradient(180deg, rgba(27, 36, 51, 0.95), rgba(20, 27, 38, 0.95));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.tool-card h3 {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-size: 1.05rem;
}

.tool-card p {
  margin: 0 0 0.5rem;
  color: var(--muted);
}

.tool-integrates {
  border-top: 1px solid var(--line);
  padding-top: 0.5rem;
}

