:root {
  --primary: #0057b8;
  --primary-hover: #013e85;
  --primary-yellow: #ffc320;
  --primary-yellow-hover: #ffd562;
  --secondary: #555555;
  --dark: #111111;
  --light: #fafafa;
  --gray: #555555;
  --max-width: 1120px;
  --lp-ink: #111111;
  --lp-ink-muted: #555555;
  --lp-border: rgba(17, 17, 17, 0.12);
  --lp-surface: #ffffff;
  --lp-surface-alt: #fafafa;
  --lp-signal: #0057b8;
  --lp-warn: #ffd400;
  --lp-alert: #b35454;
  --lp-shadow: 0 26px 60px rgba(17, 17, 17, 0.16);
  --ct-ink: #111111;
  --ct-ink-muted: #555555;
  --ct-border: rgba(17, 17, 17, 0.12);
  --ct-surface: #ffffff;
  --ct-surface-alt: #fafafa;
  --ct-accent: #0057b8;
  --ct-warning: #ffd400;
  --ct-shadow: 0 24px 60px rgba(17, 17, 17, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Space Grotesk", sans-serif;
  color: var(--dark);
  background-color: var(--light);
  background-image:
    linear-gradient(180deg, #ffffff 0%, #fafafa 45%, #ffffff 100%),
    repeating-linear-gradient(0deg,
      rgba(17, 17, 17, 0.04) 0,
      rgba(17, 17, 17, 0.04) 1px,
      transparent 1px,
      transparent 48px),
    repeating-linear-gradient(90deg,
      rgba(17, 17, 17, 0.03) 0,
      rgba(17, 17, 17, 0.03) 1px,
      transparent 1px,
      transparent 48px);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Space Grotesk", "IBM Plex Sans", sans-serif;
  letter-spacing: -0.01em;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: rgba(12, 17, 23, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0.75rem;
  z-index: 1000;
  transition: all 0.3s ease;
  border-radius: 16px;
  max-width: var(--max-width);
  margin: 0.75rem auto 0;
  box-shadow: 0 20px 40px rgba(7, 10, 14, 0.35);
  backdrop-filter: blur(12px);
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 1.4rem;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f5f7f9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.logo-icon {
  width: 32px;
  height: 32px;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  flex: 1 1 auto;
  justify-content: center;
}

.nav-links li a {
  font-weight: 500;
  color: rgba(245, 247, 249, 0.72);
}

.nav-links li a:hover {
  color: #ffffff;
}

.toggle,
.hamburger {
  display: none;
}

.auth-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}


main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
}

.hero {
  text-align: center;
  padding: 4rem 1rem;
}

.hero .accent {
  color: var(--primary);
}

.hero-copy {
  text-align: left;
  max-width: 540px;
  margin: 0 auto;
}

.hero-eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--secondary);
  margin: 0 0 0.75rem 0;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  display: grid;
  gap: 0.75rem;
}

.hero-benefits li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--dark);
}

.hero-benefits span {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.4;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cta-btn.large {
  padding: 1rem 2rem;
}

.sample-report-teaser {
  margin-top: 1.5rem;
}

.sample-report-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
}

.sample-report-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.sample-report-card img {
  width: 160px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
}

.sample-report-copy {
  text-align: left;
  color: var(--dark);
}

.sample-report-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  margin-bottom: 0.35rem;
}

.sample-report-copy strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.sample-report-copy p {
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.cta-microcopy {
  margin-top: 0.75rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.trust-band {
  margin-top: 1.75rem;
  background: #fff;
  padding: 1.25rem;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.trust-intro {
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}

.trust-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--gray);
  font-size: 0.95rem;
}

.trust-stats strong {
  color: var(--primary);
  font-size: 1.1rem;
}

.trust-footnote {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--gray);
}

.chat-demo-container {
  text-align: center;
}

.chat-caption {
  margin-top: 0.75rem;
  color: var(--gray);
  font-size: 0.9rem;
}


.features {
  padding: 2rem 0;
}

.features .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.features article {
  background: #fff;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.features h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

.features article h4 {
  margin-top: 0;
  color: var(--primary);
  font-size: 1.1rem;
}

.features article p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 0.95rem;
}

.social-proof {
  padding: 3rem 1rem;
  text-align: center;
}

.social-proof h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

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

.testimonial-grid blockquote {
  background: #fff;
  border-radius: 6px;
  padding: 1.5rem;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.testimonial-grid p {
  margin: 0 0 1rem 0;
  color: var(--dark);
}

.testimonial-grid cite {
  color: var(--gray);
  font-style: normal;
  font-size: 0.9rem;
}

.cta-banner {
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 3rem 1rem;
  border-radius: 8px;
  margin: 3rem 0;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.cta-banner h2 {
  margin-top: 0;
  font-size: 2rem;
}

.cta-banner p {
  margin: 0.75rem auto 0 auto;
  max-width: 560px;
}

.cta-banner .cta-buttons {
  justify-content: center;
}

.cta-banner .cta-btn.secondary {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.chat-highlight,
.waitlist {
  background: #fff;
  padding: 2rem 1rem;
  border-radius: 6px;
  margin-top: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.waitlist-form {
  display: grid;
  gap: 1rem;
  max-width: 400px;
}

.waitlist-form input,
.waitlist-form textarea,
.waitlist-form button {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: inherit;
}

.waitlist-form button {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
}

.waitlist-form button:hover {
  opacity: .9;
}

.waitlist-form span {
  color: var(--secondary);
  margin-left: 4px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.9rem;
}

/* Make the two checkbox groups appear in one row */
.waitlist-form .checkbox-group:first-of-type,
.waitlist-form .checkbox-group:last-of-type {
  display: inline-flex;
  width: 48%;
}

.waitlist-form .checkbox-group:first-of-type {
  margin-right: 2%;
}

/* SMS Disclaimer Styling */
.sms-disclaimer {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  padding: 1rem;
  margin: 1rem 0;
  font-size: 0.85rem;
  line-height: 1.4;
}

.sms-disclaimer p {
  margin: 0;
  color: #495057;
}

.sms-disclaimer strong {
  color: var(--primary);
}

.sms-disclaimer a {
  color: var(--primary);
  text-decoration: underline;
}

.sms-disclaimer a:hover {
  color: var(--secondary);
}


.site-footer {
  background: #ffffff;
  border-top: 1px solid rgba(15, 27, 42, 0.12);
  padding: 2.75rem 1.5rem 2rem;
  margin-top: 3rem;
  font-size: 0.95rem;
  color: var(--gray);
}

.footer-columns {
  max-width: var(--max-width);
  margin: 0 auto 1.75rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-column {
  display: grid;
  gap: 0.75rem;
}

.footer-title {
  margin: 0;
  font-weight: 600;
  color: var(--dark);
}

.footer-note {
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.footer-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-link-list a,
.footer-link,
.footer-note a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.footer-link-list a:hover,
.footer-link:hover,
.footer-note a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.footer-cta:hover {
  background: var(--primary-hover);
  color: #ffffff;
  text-decoration: none;
}

.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.footer-links span {
  color: var(--gray);
}

.footer-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
  color: var(--secondary);
}

.footer-privacy-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-privacy-label {
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-privacy-note a {
  color: var(--primary);
  text-decoration: underline;
}

.footer-privacy-note a:hover {
  color: var(--secondary);
}

.footer-privacy-note span,
.footer-privacy-note a {
  text-align: center;
}

@media (max-width: 540px) {
  .footer-links {
    gap: 0.75rem;
  }

  .footer-privacy-note {
    font-size: 0.8rem;
  }
}

.floating-try-free {
  position: fixed;
  right: 1.5rem;
  bottom: 6.5rem;
  z-index: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.2rem 1.5rem;
  border-radius: 10px;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 18px 36px rgba(7, 10, 14, 0.35);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-try-free:hover {
  background: #182734;
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(7, 10, 14, 0.4);
  text-decoration: none;
}

@media (max-width: 768px) {
  .floating-try-free {
    right: 1rem;
    bottom: 7.5rem;
    padding: 0.65rem 1.35rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .floating-try-free {
    bottom: 9rem;
    font-size: 0.9rem;
  }
}


.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 24px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  z-index: 1000;
  transform: translateX(400px);
  transition: transform 0.3s ease-in-out;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  background-color: #10b981;
}

.notification.error {
  background-color: #ef4444;
}

.notification.info {
  background-color: #3b82f6;
}

.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading .cta-btn {
  position: relative;
}

.loading .cta-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hidden {
  display: none;
}

.blog-post {
  background: #fff;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}

.blog-post img {
  max-width: 100%;
  height: auto;
}

.blog-post.pinned {
  border: 2px solid var(--secondary);
}

.pinned-badge {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.category-badge {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.post-meta {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.tags {
  margin-top: 1rem;
}

.tag {
  display: inline-block;
  background: #e5e5e5;
  color: var(--dark);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.75rem;
  margin: 0 0.5rem 0.5rem 0;
}

.author-bio {
  margin-top: 2rem;
  padding: 1rem;
  background: #f7f9fc;
  border-left: 4px solid var(--primary);
}

.pagination {
  text-align: center;
  margin-top: 2rem;
}

.pagination a {
  margin: 0 0.25rem;
  padding: 0.25rem 0.5rem;
  color: var(--primary);
}

.pagination a.active {
  font-weight: bold;
}

.hero-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-top-grid h1 {
  margin: 0;
}


.feature-item {
  padding: 1rem;
  font-weight: 500;
  font-size: 0.9rem;
}


/* Responsive layout tweaks */
@media (max-width: 1080px) {
  .hero-top-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-copy {
    text-align: center;
    max-width: 100%;
  }

  .hero-benefits {
    margin: 1.5rem auto 0 auto;
  }

  .hero-benefits li {
    justify-content: center;
    text-align: left;
  }

  .cta-buttons {
    justify-content: center;
  }

  .sample-report-card {
    flex-direction: column;
    text-align: center;
  }

  .sample-report-card img {
    width: 200px;
  }

  .sample-report-copy {
    text-align: center;
  }

  .trust-stats {
    justify-content: center;
    text-align: center;
  }

  .trust-stats span {
    display: block;
  }
}

@media (max-width: 768px) {
  .navbar {
    gap: 0.5rem 1rem;
  }

  .logo {
    order: 1;
  }

  .auth-container {
    order: 2;
    margin-left: auto;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid #e5e5e5;
    gap: 1rem;
  }
}

@media (max-width: 540px) {
  .nav-links {
    justify-content: flex-start;
  }

  .sample-report-card {
    padding: 1rem;
  }
}

/* Landing page redesign */
.landing-page {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  padding: 2rem 0 4rem;
}

.landing-bleed {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 3.5rem 0;
}

.landing-bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(31, 59, 95, 0.12), transparent 55%),
    linear-gradient(135deg, #f6f2ea 0%, #eef2f7 60%, #ffffff 100%);
  border-top: 1px solid rgba(15, 27, 42, 0.08);
  border-bottom: 1px solid rgba(15, 27, 42, 0.08);
  z-index: 0;
}

.landing-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.lp-eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--secondary);
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.lp-subhead {
  font-size: 1.05rem;
  color: var(--lp-ink-muted);
  margin: 1rem 0 0;
  max-width: 32rem;
}

.lp-hero h1 {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.08;
  color: var(--lp-ink);
}

.lp-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.lp-microcopy {
  margin-top: 0.85rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.lp-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.lp-badge {
  background: rgba(31, 59, 95, 0.08);
  border: 1px solid rgba(31, 59, 95, 0.15);
  color: var(--primary);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
}

.lp-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.lp-trust-metric {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 12px 30px rgba(15, 27, 42, 0.08);
}

.lp-metric-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.lp-metric-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--lp-ink);
  margin-top: 0.35rem;
}

.lp-metric-note {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

.lp-hero-visual {
  display: grid;
  gap: 1.5rem;
}

.lp-command-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--lp-shadow);
  animation: float 8s ease-in-out infinite;
}

.lp-command-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--lp-ink);
}

.lp-command-status {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lp-signal);
}

.lp-command-list {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.lp-command-row {
  background: var(--lp-surface-alt);
  border: 1px solid rgba(15, 27, 42, 0.08);
  border-radius: 12px;
  padding: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.lp-command-title {
  margin: 0;
  font-weight: 600;
  color: var(--lp-ink);
  font-size: 0.95rem;
}

.lp-command-note {
  margin: 0.25rem 0 0;
  color: var(--gray);
  font-size: 0.8rem;
}

.lp-status {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}

.lp-status.good {
  background: rgba(47, 125, 106, 0.15);
  color: var(--lp-signal);
}

.lp-status.warn {
  background: rgba(196, 123, 42, 0.15);
  color: var(--lp-warn);
}

.lp-status.info {
  background: rgba(31, 59, 95, 0.15);
  color: var(--primary);
}

.lp-command-footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
  border-top: 1px solid var(--lp-border);
  padding-top: 1rem;
}

.lp-command-label {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.lp-command-value {
  margin: 0.3rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-ink);
}

.lp-command-footnote {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--gray);
}

.lp-field-screen {
  margin: 0;
  background: var(--lp-surface);
  border-radius: 16px;
  border: 1px solid var(--lp-border);
  padding: 0.75rem;
  box-shadow: 0 18px 36px rgba(15, 27, 42, 0.1);
  animation: float 8s ease-in-out infinite;
  animation-delay: 1.4s;
}

.lp-field-screen img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.lp-field-screen figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray);
}

.lp-section-head {
  max-width: 680px;
  margin-bottom: 2rem;
}

.lp-section-eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--secondary);
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.lp-section-head h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: 2rem;
}

.lp-section-head p {
  margin: 0;
  color: var(--lp-ink-muted);
}

.lp-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.lp-impact-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 27, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lp-impact-title {
  margin: 0;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
}

.lp-impact-body {
  margin: 0;
  color: var(--lp-ink-muted);
}

.lp-impact-number {
  margin: 0.75rem 0 0;
  font-family: "IBM Plex Mono", "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  color: var(--lp-ink);
  font-weight: 600;
}

.lp-impact-note {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--gray);
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.lp-step {
  background: var(--lp-surface-alt);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 1.5rem;
}

.lp-step-tag {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(31, 59, 95, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", "Space Grotesk", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.lp-step h3 {
  margin: 0 0 0.5rem 0;
}

.lp-step p {
  margin: 0;
  color: var(--lp-ink-muted);
}

.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.lp-feature-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 10px 24px rgba(15, 27, 42, 0.08);
}

.lp-feature-card h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.05rem;
}

.lp-feature-card p {
  margin: 0;
  color: var(--lp-ink-muted);
}

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

.lp-testimonials blockquote {
  background: var(--lp-surface);
  border-radius: 16px;
  border: 1px solid var(--lp-border);
  padding: 1.5rem;
  margin: 0;
  box-shadow: 0 12px 24px rgba(15, 27, 42, 0.08);
  text-align: left;
}

.lp-testimonials p {
  margin: 0 0 1rem 0;
  color: var(--lp-ink);
}

.lp-testimonials cite {
  color: var(--gray);
  font-style: normal;
  font-size: 0.85rem;
}

.lp-cta-panel::before {
  background: linear-gradient(135deg, #1f3b5f 0%, #162235 55%, #0f1b2a 100%);
  border: none;
}

.lp-cta-panel .lp-cta-inner {
  text-align: center;
  color: #f6f2ea;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.lp-cta-panel .lp-section-eyebrow {
  color: rgba(246, 242, 234, 0.7);
}

.lp-cta-panel .lp-section-head h2,
.lp-cta-panel h2 {
  color: #fff;
}

.lp-cta-panel .lp-section-head p,
.lp-cta-panel p {
  color: rgba(246, 242, 234, 0.8);
}

.lp-cta-panel .cta-btn.secondary {
  color: #f6f2ea;
  border-color: rgba(246, 242, 234, 0.4);
}

.lp-cta-panel .cta-btn.secondary:hover {
  background: rgba(246, 242, 234, 0.12);
  color: #fff;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero-copy {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .landing-bleed {
    padding: 2.5rem 0;
  }

  .landing-page {
    gap: 3.5rem;
  }

  .lp-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btn.large {
    width: 100%;
    text-align: center;
  }

  .lp-command-footer {
    grid-template-columns: 1fr;
  }

  .lp-section-head h2 {
    font-size: 1.7rem;
  }

  .lp-hero h1 {
    font-size: 2.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .lp-command-card,
  .lp-field-screen {
    animation: none;
  }
}

/* Cognitive Technician landing page */
.ct-page {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  padding: 2rem 0 5rem;
}

.ct-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ct-hero {
  position: relative;
  padding: 4rem 0 3rem;
}

.ct-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(20, 32, 43, 0.2), transparent 55%),
    linear-gradient(135deg, #f6f8fa 0%, #e8eef3 65%, #f9fafb 100%);
  border-top: 1px solid var(--ct-border);
  border-bottom: 1px solid var(--ct-border);
  z-index: 0;
}

.ct-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.ct-kicker {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--secondary);
  font-weight: 600;
  margin: 0 0 0.9rem 0;
}

.ct-title-main {
  display: block;
  font-size: 3rem;
  letter-spacing: -0.02em;
  color: var(--ct-ink);
}

.ct-title-sub {
  display: block;
  margin-top: 0.9rem;
  font-size: 1.05rem;
  color: var(--ct-ink-muted);
  font-weight: 500;
  max-width: 36rem;
}

.ct-lede {
  margin-top: 1.2rem;
  color: var(--ct-ink-muted);
  max-width: 36rem;
  font-size: 1.05rem;
}

.ct-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.ct-note {
  margin-top: 0.75rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.ct-hero-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  display: grid;
  gap: 0.6rem;
}

.ct-hero-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ct-ink);
  font-weight: 500;
}

.ct-hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 2px;
  background: var(--secondary);
  box-shadow: 0 0 0 3px rgba(181, 123, 46, 0.15);
}

.ct-hero-aside {
  display: grid;
  gap: 1.5rem;
}

.ct-brief-card {
  background: var(--ct-surface);
  border: 1px solid var(--ct-border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--ct-shadow);
}

.ct-brief-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ct-brief-title {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ct-ink-muted);
  font-weight: 600;
}

.ct-brief-tag {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ct-accent);
  font-weight: 600;
}

.ct-brief-list {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.ct-brief-row {
  background: var(--ct-surface-alt);
  border: 1px solid rgba(15, 27, 42, 0.08);
  border-radius: 12px;
  padding: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.ct-brief-name {
  margin: 0;
  font-weight: 600;
  color: var(--ct-ink);
  font-size: 0.95rem;
}

.ct-brief-note {
  margin: 0.35rem 0 0;
  color: var(--gray);
  font-size: 0.82rem;
}

.ct-status {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}

.ct-status.good {
  background: rgba(47, 125, 106, 0.16);
  color: var(--ct-accent);
}

.ct-status.warn {
  background: rgba(181, 123, 46, 0.18);
  color: var(--ct-warning);
}

.ct-status.info {
  background: rgba(20, 32, 43, 0.15);
  color: var(--primary);
}

.ct-brief-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
  border-top: 1px solid var(--ct-border);
  padding-top: 1rem;
}

.ct-brief-metrics .ct-metric-label {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}

.ct-brief-metrics .ct-metric-value {
  margin: 0.3rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ct-ink);
}

.ct-brief-footnote {
  margin: 0.8rem 0 0;
  font-size: 0.75rem;
  color: var(--gray);
}

.ct-field-figure {
  margin: 0;
  background: var(--ct-surface);
  border-radius: 16px;
  border: 1px solid var(--ct-border);
  padding: 0.75rem;
  box-shadow: 0 18px 36px rgba(12, 17, 23, 0.16);
}

.ct-field-figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.ct-field-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray);
}

.ct-section {
  padding: 0;
}

.ct-section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  color: var(--secondary);
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.ct-section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.ct-section-head h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: 2rem;
}

.ct-section-head p {
  margin: 0;
  color: var(--ct-ink-muted);
}

.ct-section-copy {
  display: grid;
  gap: 1rem;
}

.ct-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.ct-panel {
  background: var(--ct-surface);
  border: 1px solid var(--ct-border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--ct-shadow);
}

.ct-panel h3 {
  margin-top: 0;
}

.ct-panel-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.ct-panel-list li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--ct-ink-muted);
}

.ct-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 2px;
}

.ct-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.ct-card {
  background: var(--ct-surface);
  border: 1px solid var(--ct-border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(12, 17, 23, 0.12);
}

.ct-card h3 {
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
}

.ct-card p {
  margin: 0;
  color: var(--ct-ink-muted);
}

.ct-card-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
}

.ct-callout {
  margin-top: 2rem;
  background: rgba(181, 123, 46, 0.1);
  border: 1px solid rgba(181, 123, 46, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
}

.ct-callout-title {
  margin: 0 0 0.6rem 0;
  font-weight: 600;
  color: var(--ct-ink);
}

.ct-opportunity {
  margin-top: 2.5rem;
  background: var(--ct-surface-alt);
  border: 1px solid var(--ct-border);
  border-radius: 16px;
  padding: 1.5rem;
}

.ct-opportunity h3 {
  margin-top: 0;
}

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

.ct-opportunity-title {
  margin: 0 0 0.4rem 0;
  font-weight: 600;
}

.ct-metrics .ct-metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
}

.ct-metric {
  background: var(--ct-surface);
  border: 1px solid var(--ct-border);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(12, 17, 23, 0.1);
}

.ct-metric-number {
  margin: 0;
  font-family: "IBM Plex Mono", "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ct-ink);
}

.ct-metric .ct-metric-label {
  margin: 0.5rem 0 0;
  color: var(--gray);
  font-size: 0.9rem;
}

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

.ct-strategy-card {
  background: var(--ct-surface);
  border: 1px solid var(--ct-border);
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: 0 14px 32px rgba(12, 17, 23, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ct-rank {
  align-self: flex-start;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
}

.ct-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ct-pill {
  background: rgba(20, 32, 43, 0.08);
  border: 1px solid rgba(20, 32, 43, 0.2);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

.ct-strategy-cta {
  margin: 0;
  color: var(--gray);
  font-size: 0.85rem;
}

.ct-table-wrap {
  overflow-x: auto;
  background: var(--ct-surface);
  border: 1px solid var(--ct-border);
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(12, 17, 23, 0.1);
}

.ct-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.ct-table thead {
  background: rgba(20, 32, 43, 0.08);
}

.ct-table th,
.ct-table td {
  text-align: left;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--ct-border);
  font-size: 0.95rem;
}

.ct-table th {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ct-ink-muted);
}

.ct-table tbody tr:last-child td {
  border-bottom: none;
}

.ct-driver-block {
  margin-top: 2rem;
  background: var(--ct-surface-alt);
  border: 1px solid var(--ct-border);
  border-radius: 16px;
  padding: 1.5rem;
}

.ct-driver-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.ct-driver-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--ct-ink-muted);
}

.ct-driver-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--secondary);
  border-radius: 2px;
}

.ct-conclusion-card {
  background: linear-gradient(135deg, #14202b 0%, #0b1117 100%);
  color: #f5f7f9;
  border-radius: 18px;
  padding: 2.5rem;
  display: grid;
  gap: 1.5rem;
  box-shadow: 0 26px 50px rgba(7, 10, 14, 0.4);
}

.ct-conclusion-card h2 {
  color: #ffffff;
}

.ct-conclusion-card p {
  color: rgba(245, 247, 249, 0.78);
}

.ct-conclusion-card .ct-section-kicker {
  color: rgba(245, 247, 249, 0.6);
}

.ct-conclusion-card .cta-btn.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.ct-conclusion-card .cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ct-fade {
  animation: ct-rise 0.9s ease both;
  animation-delay: var(--delay, 0s);
}

@keyframes ct-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .ct-hero-grid {
    grid-template-columns: 1fr;
  }

  .ct-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .ct-hero {
    padding: 3rem 0 2.5rem;
  }

  .ct-title-main {
    font-size: 2.3rem;
  }

  .ct-title-sub {
    font-size: 0.98rem;
  }

  .ct-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btn.large {
    width: 100%;
    text-align: center;
  }

  .ct-brief-metrics {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ct-fade {
    animation: none;
  }
}

/* ------------------------------ */
/* Cognitive Technician Refresh   */
/* ------------------------------ */
:root {
  --primary: #0057b8;
  --secondary: #555555;
  --dark: #111111;
  --light: #fafafa;
  --gray: #555555;
  --max-width: 1180px;
  --ct-ink: #111111;
  --ct-ink-muted: #555555;
  --ct-border: rgba(17, 17, 17, 0.12);
  --ct-surface: #ffffff;
  --ct-surface-alt: #fafafa;
  --ct-accent: #0057b8;
  --ct-signal: #0057b8;
  --ct-shadow: 0 28px 60px rgba(17, 17, 17, 0.14);
}

body {
  font-family: "IBM Plex Sans", "Space Grotesk", sans-serif;
  color: var(--ct-ink);
  background-color: var(--light);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 212, 0, 0.12), transparent 45%),
    radial-gradient(circle at 88% 12%, rgba(0, 87, 184, 0.12), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 60%, #ffffff 100%),
    repeating-linear-gradient(0deg,
      rgba(17, 17, 17, 0.035) 0,
      rgba(17, 17, 17, 0.035) 1px,
      transparent 1px,
      transparent 40px),
    repeating-linear-gradient(90deg,
      rgba(17, 17, 17, 0.03) 0,
      rgba(17, 17, 17, 0.03) 1px,
      transparent 1px,
      transparent 40px);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "IBM Plex Sans", "Space Grotesk", sans-serif;
  letter-spacing: -0.015em;
}

header {
  background: rgba(250, 250, 250, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.08);
}

.logo {
  color: var(--ct-ink);
  font-size: 1.25rem;
  font-weight: 600;
}

.nav-links li a {
  color: var(--ct-ink-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links li a:hover {
  color: var(--ct-ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--primary-yellow);
  color: #020202;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(17, 17, 17, 0.16);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.2);
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--primary-yellow-hover);
  color: #020202;
  text-decoration: none;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 5rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #1d2b36, #0f1b23);
  border-radius: 12px;
  border: 1px solid rgba(15, 26, 34, 0.35);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-btn.secondary {
  background: transparent;
  color: var(--ct-ink);
  border-color: rgba(15, 26, 34, 0.25);
}

.cta-btn:hover {
  background: #14212b;
}

.cta-btn.secondary:hover {
  background: rgba(15, 26, 34, 0.06);
  color: var(--ct-ink);
}

.ct-page {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.ct-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ct-hero {
  position: relative;
  padding: 3.75rem 0 3.25rem;
  background: linear-gradient(140deg, #f9fbfd 0%, #eef2f6 50%, #f7f9fc 100%);
  border: 1px solid var(--ct-border);
  border-radius: 28px;
  box-shadow: var(--ct-shadow);
  overflow: hidden;
}

.ct-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(182, 122, 51, 0.18), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.ct-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.75rem;
  align-items: start;
}

.ct-kicker {
  font-family: "IBM Plex Mono", "IBM Plex Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--ct-accent);
  margin-bottom: 0.85rem;
}

.ct-hero-copy h1 {
  font-size: clamp(2.25rem, 2.7vw + 1.2rem, 3.5rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--ct-ink);
}

.ct-lede {
  font-size: 1.05rem;
  color: var(--ct-ink-muted);
  max-width: 40rem;
}

.ct-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 1.75rem;
}

.ct-hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.85rem;
}

.ct-meta-item {
  background: var(--ct-surface);
  border: 1px solid var(--ct-border);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  box-shadow: 0 10px 24px rgba(12, 18, 25, 0.08);
}

.ct-meta-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ct-ink-muted);
  margin-bottom: 0.35rem;
}

.ct-meta-value {
  font-weight: 600;
}

.ct-hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ct-brief-card {
  background: var(--ct-surface);
  border: 1px solid var(--ct-border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 16px 32px rgba(12, 18, 25, 0.1);
}

.ct-brief-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.ct-brief-title {
  margin: 0;
  font-weight: 600;
}

.ct-brief-tag {
  font-family: "IBM Plex Mono", "IBM Plex Sans", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ct-signal);
}

.ct-brief-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
  color: var(--ct-ink-muted);
}

.ct-brief-list strong {
  color: var(--ct-ink);
  font-weight: 600;
}

.ct-brief-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.ct-brief-metrics .ct-metric-label {
  font-size: 0.75rem;
  color: var(--ct-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 0.35rem;
}

.ct-brief-metrics .ct-metric-value {
  font-weight: 600;
  margin: 0;
}

.ct-brief-footnote {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  color: var(--ct-ink-muted);
}

.ct-field-figure {
  margin: 0;
  background: var(--ct-surface);
  border: 1px solid var(--ct-border);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 16px 32px rgba(12, 18, 25, 0.08);
}

.ct-field-figure img {
  width: 100%;
  border-radius: 12px;
}

.ct-field-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--ct-ink-muted);
}

.ct-section-head {
  max-width: 720px;
  margin-bottom: 1.75rem;
}

.ct-section-kicker {
  font-family: "IBM Plex Mono", "IBM Plex Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--ct-accent);
  margin-bottom: 0.5rem;
}

.ct-section-head h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.6rem, 1.4vw + 1.1rem, 2.35rem);
}

.ct-section-head p {
  color: var(--ct-ink-muted);
  margin: 0;
}

.ct-card-grid,
.ct-influencer-grid,
.ct-checklist-grid,
.ct-faq-grid {
  display: grid;
  gap: 1.5rem;
}

.ct-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ct-influencer-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.ct-card {
  background: var(--ct-surface);
  border: 1px solid var(--ct-border);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 16px 32px rgba(12, 18, 25, 0.08);
}

.ct-card h3 {
  margin-top: 0.4rem;
}

.ct-card-kicker {
  font-family: "IBM Plex Mono", "IBM Plex Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: var(--ct-signal);
  margin: 0;
}

.ct-bullets {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.6rem;
  color: var(--ct-ink-muted);
}

.ct-bullets li {
  position: relative;
  padding-left: 1rem;
}

.ct-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ct-accent);
}

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

.ct-panel {
  background: var(--ct-surface);
  border: 1px solid var(--ct-border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 16px 32px rgba(12, 18, 25, 0.08);
}

.ct-panel-kicker {
  font-family: "IBM Plex Mono", "IBM Plex Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: var(--ct-accent);
  margin: 0 0 0.6rem;
}

.ct-steps {
  display: grid;
  gap: 1rem;
}

.ct-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  background: var(--ct-surface);
  border: 1px solid var(--ct-border);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 14px 28px rgba(12, 18, 25, 0.07);
}

.ct-step-number {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(182, 122, 51, 0.15);
  color: var(--ct-accent);
  font-weight: 700;
  display: grid;
  place-items: center;
  font-family: "IBM Plex Mono", "IBM Plex Sans", sans-serif;
}

.ct-callout {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px dashed rgba(15, 26, 34, 0.2);
  background: rgba(182, 122, 51, 0.08);
}

.ct-callout-title {
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.ct-checklist-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ct-check-item {
  background: var(--ct-surface);
  border: 1px solid var(--ct-border);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 14px 28px rgba(12, 18, 25, 0.06);
  color: var(--ct-ink-muted);
}

.ct-faq-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.ct-faq-item {
  background: var(--ct-surface);
  border: 1px solid var(--ct-border);
  border-radius: 16px;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 14px 28px rgba(12, 18, 25, 0.07);
}

.ct-faq-item h3 {
  margin-top: 0;
}

.ct-cta-card {
  background: linear-gradient(135deg, #101c24, #1b2b36);
  border-radius: 24px;
  padding: 2.5rem;
  color: #f8fafc;
  box-shadow: 0 22px 45px rgba(10, 14, 20, 0.35);
}

.ct-cta-card h2 {
  color: #ffffff;
  margin-top: 0;
}

.ct-cta-card p {
  color: rgba(248, 250, 252, 0.78);
}

.ct-cta-card .cta-btn.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.ct-cta-card .cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ct-note {
  margin-top: 1rem;
  color: rgba(248, 250, 252, 0.7);
}

.ct-reveal {
  animation: ct-reveal 0.9s ease both;
  animation-delay: var(--delay, 0s);
}

@keyframes ct-reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .ct-hero-grid {
    grid-template-columns: 1fr;
  }

  .ct-cta-card {
    padding: 2rem;
  }
}

@media (max-width: 720px) {
  .ct-hero {
    padding: 3rem 0 2.5rem;
  }

  .ct-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btn.large {
    width: 100%;
    text-align: center;
  }

  .ct-step {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ct-reveal {
    animation: none;
  }
}

/* ------------------------------ */
/* ACLogics Landing Page           */
/* ------------------------------ */
.ac-landing {
  --ac-primary: #ffc320;
  --ac-blue: #0057b8;
  --ac-blue-dark: #003a7a;
  --ac-orange: #555555;
  --ac-cyan: #0057b8;
  --ac-ink: #111111;
  --ac-muted: #555555;
  --ac-border: rgba(17, 17, 17, 0.16);
  --ac-surface: #ffffff;
  --ac-surface-alt: #fafafa;
  --ac-shadow: 0 30px 70px rgba(17, 17, 17, 0.16);
  color: var(--ac-ink);
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  padding: 0 0 5rem;
}

.ac-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ac-section {
  position: relative;
  z-index: 1;
}

.ac-bleed {
  position: relative;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 4rem 0;
  overflow: hidden;
}

.ac-bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #fafafa 0%, #ffffff 55%, #fafafa 100%),
    repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.05) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(17, 17, 17, 0.04) 0 1px, transparent 1px 48px);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  z-index: -1;
  pointer-events: none;
}

.ac-hero {
  padding: 5.5rem 0;
  min-height: clamp(520px, 80vh, 820px);
  display: flex;
  align-items: center;
  color: #fafafa;
}

.ac-hero::before {
  background:
    linear-gradient(115deg, rgba(17, 17, 17, 0.92) 0%, rgba(17, 17, 17, 0.78) 45%, rgba(17, 17, 17, 0.35) 100%),
    url("/assets/aclogics-hero.png");
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(17, 17, 17, 0.6);
  border-bottom: 1px solid rgba(17, 17, 17, 0.6);
  filter: saturate(1) contrast(1.02);
}

.ac-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 212, 0, 0.22), transparent 55%),
    radial-gradient(circle at 86% 25%, rgba(0, 87, 184, 0.16), transparent 60%);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}

.ac-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.ac-hero-copy {
  display: grid;
  gap: 1.5rem;
}

.ac-hero-panel {
  background: rgba(17, 17, 17, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2.4rem;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.35);
  backdrop-filter: blur(5px);
}

.ac-kicker {
  font-family: "IBM Plex Mono", "IBM Plex Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  color: rgba(250, 250, 250, 0.78);
  margin: 0.6rem 0 0.8rem 0;
}

.ac-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 2.8vw + 1.2rem, 3.6rem);
  line-height: 1.05;
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(17, 17, 17, 0.45);
}

.ac-accent {
  color: var(--primary-yellow);
}

.ac-subhead {
  font-size: 1.08rem;
  color: rgba(250, 250, 250, 0.82);
  max-width: 36rem;
  margin: 0;
}

.ac-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.ac-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-yellow);
  text-decoration: none;
  margin-top: 0.65rem;
}

.ac-cta-link:hover {
  color: var(--primary-yellow-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ac-landing .cta-btn {
  background: var(--primary-yellow);
  color: #020202;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 14px;
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.25);
}

.ac-landing .cta-btn.ac-appstore {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.05rem 2.4rem;
  font-size: 1.02rem;
  border-radius: 16px;
  min-height: 54px;
  background: var(--primary-yellow);
  color: #030303;
  border-color: rgba(17, 17, 17, 0.2);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.25);
}

.ac-appstore-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.ac-appstore-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.ac-appstore-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: brightness(0);
}

.ac-landing .cta-btn.ac-btn-primary {
  background: var(--primary-yellow);
  color: #030303;
  border-color: rgba(17, 17, 17, 0.2);
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.1);
}

.ac-landing .cta-btn.ac-btn-primary:hover {
  background: var(--primary-yellow-hover);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.15);
}

.ac-landing .cta-btn.ac-btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: none;
}

.ac-landing .cta-btn.ac-btn-secondary:hover {
  background: rgba(0, 87, 184, 0.05);
  color: var(--primary);
  box-shadow: none;
}

.ac-hero-note {
  margin-top: 1rem;
  color: rgba(250, 250, 250, 0.85);
  font-size: 0.98rem;
}

.ac-hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
  margin-top: 0.1rem;
}

.ac-metric {
  background: rgba(17, 17, 17, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  color: #fafafa;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(6px);
}

.ac-metric-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.65);
  margin-bottom: 0.35rem;
}

.ac-metric-value {
  font-weight: 600;
  color: #ffffff;
}

.ac-hero-visual {
  display: grid;
  gap: 1.5rem;
  align-self: end;
}

.ac-brief-card {
  background: rgba(17, 17, 17, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.4rem;
  color: rgba(250, 250, 250, 0.85);
  box-shadow: 0 24px 46px rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(8px);
}

.ac-brief-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.ac-brief-title {
  margin: 0;
  font-weight: 600;
  color: #ffffff;
}

.ac-brief-tag {
  font-family: "IBM Plex Mono", "IBM Plex Sans", sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-yellow);
}

.ac-brief-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
  color: rgba(250, 250, 250, 0.76);
}

.ac-brief-list strong {
  color: #ffffff;
}

.ac-device {
  margin: 0;
  background: rgba(17, 17, 17, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 22px 44px rgba(17, 17, 17, 0.4);
  color: rgba(250, 250, 250, 0.82);
}

.ac-device img {
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ac-device figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(250, 250, 250, 0.72);
}

.ac-section-head {
  max-width: 720px;
  margin-bottom: 2rem;
}

.ac-section-kicker {
  font-family: "IBM Plex Mono", "IBM Plex Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.68rem;
  color: var(--ac-blue);
  margin: 0 0 0.6rem 0;
}

.ac-section-head h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.7rem, 1.6vw + 1.1rem, 2.4rem);
}

.ac-section-head p {
  margin: 0;
  color: var(--ac-muted);
}

.ac-value-grid,
.ac-feature-grid,
.ac-faq-grid {
  display: grid;
  gap: 1.5rem;
}

.ac-value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ac-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ac-faq-grid {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ac-card {
  background: var(--ac-surface);
  border: 1px solid var(--ac-border);
  border-top: 3px solid rgba(0, 87, 184, 0.7);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 18px 40px rgba(8, 12, 18, 0.08);
}

.ac-card h3 {
  margin: 0.4rem 0 0.6rem;
}

.ac-card p {
  margin: 0;
  color: var(--ac-muted);
}

.ac-card-kicker {
  font-family: "IBM Plex Mono", "IBM Plex Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: var(--ac-orange);
  margin: 0;
}

.ac-pricing-page {
  gap: 3.75rem;
}

.ac-pricing-hero {
  padding: 3.75rem 0;
}

.ac-pricing-head {
  text-align: center;
  margin: 0 auto;
}

.ac-pricing-title {
  margin: 0 0 0.85rem;
  font-size: clamp(2.1rem, 2vw + 1.2rem, 3rem);
  letter-spacing: -0.02em;
}

.ac-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}

.ac-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top-color: rgba(0, 87, 184, 0.85);
}

.ac-plan-card.is-featured {
  border-color: rgba(255, 195, 32, 0.42);
  border-top-color: rgba(255, 195, 32, 0.95);
  box-shadow: 0 24px 60px rgba(8, 12, 18, 0.12);
}

.ac-plan-header {
  display: grid;
  gap: 0.35rem;
  min-height: 5.6rem;
  align-content: start;
}

.ac-plan-card.is-featured .ac-plan-header {
  padding-right: 7.5rem;
}

.ac-plan-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-family: "IBM Plex Mono", "IBM Plex Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.65rem;
  background: rgba(255, 195, 32, 0.2);
  border: 1px solid rgba(255, 195, 32, 0.45);
  color: rgba(17, 17, 17, 0.82);
  margin: 0;
  white-space: nowrap;
}

.ac-plan-header h3 {
  margin: 0.35rem 0 0;
  font-size: 1.5rem;
  line-height: 1.15;
}

.ac-plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.ac-plan-amount {
  font-size: 2.55rem;
  font-weight: 700;
  color: var(--ac-blue);
  letter-spacing: -0.02em;
}

.ac-plan-suffix {
  color: var(--ac-muted);
  font-weight: 500;
}

.ac-plan-usage {
  margin: 0;
  padding: 0.95rem 1rem;
  background: var(--ac-surface-alt);
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--ac-muted);
  min-height: 4.4rem;
}

.ac-plan-usage strong {
  color: var(--ac-ink);
}

.ac-plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.ac-plan-features li {
  display: grid;
  grid-template-columns: 1.3rem 1fr;
  gap: 0.6rem;
  align-items: start;
  color: var(--ac-muted);
}

.ac-plan-check {
  color: rgba(0, 87, 184, 0.9);
  font-weight: 700;
  line-height: 1.2;
}

.ac-plan-cta {
  margin-top: auto;
  padding-top: 0.5rem;
}

.ac-plan-cta .cta-btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.ac-plan-cta .cta-btn:hover {
  text-decoration: none;
}

.ac-audience-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.ac-audience-card {
  background: var(--ac-surface);
  border: 1px solid var(--ac-border);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 18px 40px rgba(8, 12, 18, 0.08);
  display: grid;
  gap: 0.95rem;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.ac-audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(8, 12, 18, 0.14);
  border-color: rgba(0, 87, 184, 0.28);
}

.ac-audience-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(0, 87, 184, 0.08);
  color: rgba(0, 87, 184, 0.85);
  transition: transform 300ms ease, background-color 300ms ease, color 300ms ease, filter 300ms ease;
}

.ac-audience-icon svg {
  width: 22px;
  height: 22px;
}

.ac-audience-card:hover .ac-audience-icon {
  transform: rotate(-8deg);
  background: rgba(0, 87, 184, 0.12);
  color: rgba(0, 87, 184, 1);
  filter: saturate(1.1);
}

.ac-audience-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.ac-audience-points {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ac-muted);
  display: grid;
  gap: 0.45rem;
}

.ac-audience-points li {
  line-height: 1.55;
}

.ac-context-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.ac-panel {
  background: var(--ac-surface);
  border: 1px solid var(--ac-border);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 18px 40px rgba(8, 12, 18, 0.08);
}

.ac-panel h3 {
  margin-top: 0.4rem;
}

.ac-panel-kicker {
  font-family: "IBM Plex Mono", "IBM Plex Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.65rem;
  color: var(--ac-orange);
  margin: 0;
}

.ac-context-stack {
  display: grid;
  gap: 1.5rem;
}

.ac-context-intro {
  margin: 0;
  color: var(--ac-muted);
  line-height: 1.7;
  max-width: 60ch;
}

.ac-context-note {
  margin: 0.9rem 0 0;
  color: var(--ac-muted);
}

.ac-painpoints {
  --ac-solution-accent: #1a73e8;
  display: grid;
  gap: 2rem;
}

.ac-story {
  display: grid;
  gap: 1rem;
}

.ac-story-title {
  margin: 0;
  font-size: 1.1rem;
}

.ac-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.ac-story-body {
  margin: 0.85rem 0 0;
  line-height: 1.75;
}

.ac-painpoints .ac-panel-kicker {
  font-weight: 700;
}

.ac-painpoints .ac-challenge {
  background: rgba(17, 17, 17, 0.02);
}

.ac-painpoints .ac-challenge .ac-story-body {
  color: rgba(17, 17, 17, 0.78);
}

.ac-painpoints .ac-solution {
  background: rgba(26, 115, 232, 0.08);
  border-color: rgba(26, 115, 232, 0.22);
}

.ac-painpoints .ac-solution .ac-panel-kicker {
  color: var(--ac-solution-accent);
}

.ac-painpoints .ac-solution .ac-story-body {
  color: var(--ac-ink);
}

.ac-solution {
  background: rgba(0, 87, 184, 0.08);
}

.ac-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.7rem;
  color: var(--ac-muted);
}

.ac-list li {
  position: relative;
  padding-left: 1.2rem;
}

.ac-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--ac-blue);
}

.ac-how::before {
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 87, 184, 0.12), transparent 55%),
    linear-gradient(135deg, #ffffff 0%, #fafafa 55%, #ffffff 100%);
}

.ac-flow-grid {
  display: grid;
  gap: 1.5rem;
}

.ac-step-card {
  background: var(--ac-surface);
  border: 1px solid var(--ac-border);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 18px 38px rgba(8, 12, 18, 0.08);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}

.ac-step-number {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 87, 184, 0.12);
  color: var(--ac-blue);
  font-weight: 700;
  display: grid;
  place-items: center;
  font-family: "IBM Plex Mono", "IBM Plex Sans", sans-serif;
}

.ac-outcome-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 1rem;
}

.ac-outcome {
  background: var(--ac-surface-alt);
  border: 1px dashed rgba(0, 87, 184, 0.3);
  border-radius: 14px;
  padding: 0.85rem;
}

.ac-outcome-title {
  margin: 0 0 0.4rem;
  font-weight: 600;
  color: var(--ac-ink);
}

.ac-callout {
  margin-top: 1.5rem;
  background: rgba(0, 87, 184, 0.08);
  border: 1px solid rgba(0, 87, 184, 0.2);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  color: var(--ac-muted);
}

.ac-cta-band::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 212, 0, 0.22), transparent 55%),
    linear-gradient(135deg, #111111 0%, #1c1c1c 55%, #0f0f0f 100%);
}

.ac-cta-band {
  color: #ffffff;
}

.ac-cta-card {
  position: relative;
  z-index: 1;
  background: rgba(17, 17, 17, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 30px 60px rgba(17, 17, 17, 0.45);
  display: grid;
  gap: 1.5rem;
}

.ac-cta-card h2 {
  color: #ffffff;
  margin-top: 0;
}

.ac-cta-card p {
  color: rgba(255, 255, 255, 0.8);
}

.ac-cta-card .ac-section-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.ac-cta-card .cta-btn.ac-btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.ac-cta-card .cta-btn.ac-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.ac-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.ac-faq-item {
  background: var(--ac-surface);
  border: 1px solid var(--ac-border);
  border-radius: 18px;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 18px 36px rgba(8, 12, 18, 0.07);
  cursor: pointer;
  transition: all 0.2s ease;
}

.ac-faq-item:hover {
  border-color: rgba(0, 87, 184, 0.3);
}

.ac-faq-item h3 {
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
}

.ac-faq-item h3::after {
  content: '+';
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--primary);
  margin-left: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.ac-faq-item.expanded h3::after {
  transform: rotate(45deg);
}

.ac-faq-answer {
  display: none;
  margin-top: 1rem;
  color: #555555;
  /* Hardcoded from var(--ac-muted) lookup if needed, but var exists */
  color: var(--ac-muted);
  line-height: 1.6;
}

.ac-faq-item.expanded .ac-faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ac-about-card {
  background: var(--ac-surface-alt);
  border: 1px solid var(--ac-border);
  border-radius: 20px;
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  box-shadow: 0 20px 40px rgba(8, 12, 18, 0.08);
}

.ac-reveal {
  animation: ac-rise 0.9s ease both;
  animation-delay: var(--delay, 0s);
}

@keyframes ac-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {

  .ac-hero-grid,
  .ac-context-grid {
    grid-template-columns: 1fr;
  }

  .ac-value-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .ac-feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .ac-plan-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .ac-hero {
    min-height: auto;
    padding: 4.5rem 0;
  }
}

@media (max-width: 720px) {
  .ac-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .ac-story-grid {
    grid-template-columns: 1fr;
  }

  .ac-hero-panel {
    padding: 1.8rem;
  }

  .ac-hero-metrics {
    grid-template-columns: 1fr;
  }

  .ac-step-card {
    grid-template-columns: 1fr;
  }

  .ac-feature-grid {
    grid-template-columns: 1fr;
  }

  .ac-plan-grid {
    grid-template-columns: 1fr;
  }

  .ac-cta-card {
    padding: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ac-reveal {
    animation: none;
  }
}