/* =========================================================
   genfisher.com — Design System
   Single stylesheet, BEM naming, CSS custom properties
   ========================================================= */

/* ---------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   --------------------------------------------------------- */

:root {
  /* Colours */
  --color-primary:          #2563eb;
  --color-primary-light:    #eff6ff;
  --color-primary-dark:     #1d4ed8;
  --color-text:             #111827;
  --color-text-muted:       #6b7280;
  --color-text-white:       #ffffff;
  --color-text-muted-dark:  rgba(255, 255, 255, 0.6);
  --color-bg-white:         #ffffff;
  --color-bg-light:         #f9fafb;
  --color-bg-dark:          #111827;
  --color-border:           #e5e7eb;
  --color-border-light:     #f3f4f6;
  --color-border-dark:      rgba(255, 255, 255, 0.1);
  --color-error:            #dc2626;
  --color-error-light:      #fef2f2;
  --color-error-dark:       #991b1b;
  --color-success:          #16a34a;
  --color-success-light:    #f0fdf4;
  --color-success-dark:     #166534;
  --color-info:             #2563eb;
  --color-info-light:       #eff6ff;
  --color-info-dark:        #1e40af;

  /* Typography */
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   1.875rem;
  --text-4xl:   2.25rem;
  --text-5xl:   3rem;

  /* Spacing */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   0.75rem;
  --space-lg:   1rem;
  --space-xl:   1.5rem;
  --space-2xl:  2rem;
  --space-3xl:  3rem;
  --space-4xl:  4rem;

  /* Layout */
  --max-width:  1200px;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
}


/* ---------------------------------------------------------
   2. Reset / Base
   --------------------------------------------------------- */

[x-cloak] { display: none !important; }

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  text-decoration: underline;
}

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

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}


/* ---------------------------------------------------------
   3. Layout
   --------------------------------------------------------- */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

main {
  min-height: 50vh;
}


/* ---------------------------------------------------------
   4. Navigation
   --------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.nav__link:hover {
  color: var(--color-text);
  text-decoration: none;
}

.nav__link--active {
  color: var(--color-text);
  font-weight: 600;
}

.nav__link--login {
  color: var(--color-text-muted);
}

.nav__cta {
  flex-shrink: 0;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__hamburger-bar {
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.2s, opacity 0.2s;
  display: block;
}

.nav__hamburger-bar--open:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger-bar--open:nth-child(2) {
  opacity: 0;
}

.nav__hamburger-bar--open:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile-menu {
  background: var(--color-bg-white);
  padding: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

/* Mobile menu transitions */
.nav__mobile-menu--enter,
.nav__mobile-menu--leave {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav__mobile-menu--enter-start,
.nav__mobile-menu--leave-end {
  opacity: 0;
  transform: translateY(-8px);
}

.nav__mobile-menu--enter-end,
.nav__mobile-menu--leave-start {
  opacity: 1;
  transform: translateY(0);
}

.nav__mobile-link {
  display: block;
  padding: var(--space-md) 0;
  font-size: var(--text-base);
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border-light);
}

.nav__mobile-link:hover {
  text-decoration: none;
}

.nav__mobile-link--active {
  font-weight: 600;
  color: var(--color-primary);
}

.nav__mobile-cta {
  display: block;
  width: 100%;
  margin-top: var(--space-lg);
  text-align: center;
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }
}


/* ---------------------------------------------------------
   5. Footer
   --------------------------------------------------------- */

.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  padding-top: var(--space-3xl);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg) var(--space-3xl);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-3xl);
}

.footer__logo {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.footer__tagline {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-white);
  margin-bottom: var(--space-sm);
}

.footer__description {
  font-size: var(--text-sm);
  color: var(--color-text-muted-dark);
  line-height: 1.6;
  max-width: 320px;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__col-heading {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-white);
  margin-bottom: var(--space-xs);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--color-text-muted-dark);
  text-decoration: none;
  transition: color 0.15s;
}

.footer__link:hover {
  color: var(--color-text-white);
  text-decoration: none;
}

.footer__bottom {
  border-top: 1px solid var(--color-border-dark);
  padding: var(--space-lg);
}

.footer__bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-text-muted-dark);
}

.footer__app-link {
  font-size: var(--text-xs);
  color: var(--color-text-muted-dark);
  text-decoration: none;
  transition: color 0.15s;
}

.footer__app-link:hover {
  color: var(--color-text-white);
}

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

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

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

  .footer__bottom-inner {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}


/* ---------------------------------------------------------
   6. Buttons
   --------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s, opacity 0.15s;
  white-space: nowrap;
  font-family: inherit;
}

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

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  text-decoration: none;
}

.btn--primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn--secondary,
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover,
.btn--outline:hover {
  background: var(--color-primary);
  color: white;
  text-decoration: none;
}

.btn--large {
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--text-base);
}

.btn--full-width {
  width: 100%;
}


/* ---------------------------------------------------------
   7. CTA Blocks
   --------------------------------------------------------- */

.cta-block {
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
}

.cta-block--accent {
  background: var(--color-primary-light);
  color: var(--color-text);
}

.cta-block--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
}

.cta-block--dark .cta-block__subhead {
  color: var(--color-text-muted-dark);
}

.cta-block--light {
  background: var(--color-bg-light);
  color: var(--color-text);
}

.cta-block__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-block__headline {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.cta-block__subhead {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.cta-block__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-block__secondary-link {
  font-size: var(--text-sm);
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.15s;
}

.cta-block__secondary-link:hover {
  opacity: 1;
  text-decoration: none;
}


/* ---------------------------------------------------------
   8. Forms
   --------------------------------------------------------- */

.form {
  max-width: 520px;
}

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

.form__group {
  margin-bottom: var(--space-lg);
}

.form__group--error .form__input,
.form__group--error .form__select,
.form__group--error .form__textarea {
  border-color: var(--color-error);
}

.form__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.form__required {
  color: var(--color-error);
  margin-left: 2px;
}

.form__optional {
  font-weight: 400;
  color: var(--color-text-muted);
}

.form__input,
.form__select,
.form__textarea {
  display: block;
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg-white);
  font-family: inherit;
  transition: border-color 0.15s;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--color-primary);
  outline: 2px solid var(--color-primary-light);
  outline-offset: 0;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__error {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-top: var(--space-xs);
}

.form__submit {
  margin-top: var(--space-xl);
}

.form__privacy {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-md);
  text-align: center;
}

.form__privacy-link {
  color: var(--color-primary);
  text-decoration: underline;
}

.form__server-error {
  padding: var(--space-md);
  background: var(--color-error-light);
  border: 1px solid var(--color-error);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-error-dark);
  margin-bottom: var(--space-lg);
}

.form__fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.form__legend {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.form__checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.form__checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  cursor: pointer;
}

.form__checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
}

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


/* ---------------------------------------------------------
   9. Email Capture
   --------------------------------------------------------- */

.email-capture__row {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.email-capture__field-wrap {
  flex: 1;
}

.email-capture__input {
  width: 100%;
}

.email-capture__note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

@media (max-width: 768px) {
  .email-capture__row {
    flex-direction: column;
  }
}


/* ---------------------------------------------------------
   10. Article Cards
   --------------------------------------------------------- */

.article-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.article-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.article-card__image-link {
  display: block;
}

.article-card__image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-card__body {
  padding: var(--space-lg);
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.article-card__read-time {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.article-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.article-card__title-link {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.15s;
}

.article-card__title-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.article-card__excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
}

.article-card__date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.article-card__cta {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.article-card__cta:hover {
  text-decoration: underline;
}


/* ---------------------------------------------------------
   11. Tags
   --------------------------------------------------------- */

.tag {
  display: inline-flex;
  align-items: center;
  padding: 2px var(--space-md);
  border-radius: 9999px;
  font-size: var(--text-xs);
  font-weight: 600;
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.tag--geo {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.tag--ai-search {
  background: #eff6ff;
  color: #1d4ed8;
}

.tag--content-strategy {
  background: #f0fdf4;
  color: #15803d;
}

.tag--agency-resources {
  background: #fdf4ff;
  color: #9333ea;
}

.tag--case-studies {
  background: #fff7ed;
  color: #c2410c;
}


/* ---------------------------------------------------------
   12. Pricing Cards
   --------------------------------------------------------- */

.pricing-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card--popular,
.pricing-card--highlighted {
  border-color: var(--color-primary);
  border-width: 2px;
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-card__header {
  margin-bottom: var(--space-xl);
}

.pricing-card__name {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--space-sm);
}

.pricing-card__amount {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-text);
}

.pricing-card__period {
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

.pricing-card__description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text);
}

.pricing-card__check {
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.4;
}

.pricing-card__cta {
  margin-top: auto;
}

.pricing-card__secondary-cta {
  display: block;
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
  text-decoration: none;
}

.pricing-card__secondary-cta:hover {
  text-decoration: underline;
}


/* ---------------------------------------------------------
   13. FAQ Accordion
   --------------------------------------------------------- */

.faq {
  border-top: 1px solid var(--color-border);
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  font-family: inherit;
  transition: color 0.15s;
}

.faq__question:hover {
  color: var(--color-primary);
}

.faq__icon {
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform 0.2s;
}

.faq__icon--open {
  transform: rotate(180deg);
}

.faq__answer {
  overflow: hidden;
}

.faq__answer--enter,
.faq__answer--leave {
  transition: max-height 0.25s ease, opacity 0.2s ease;
}

.faq__answer--enter-start,
.faq__answer--leave-end {
  max-height: 0;
  opacity: 0;
}

.faq__answer--enter-end,
.faq__answer--leave-start {
  max-height: 600px;
  opacity: 1;
}

.faq__answer-inner {
  padding: 0 0 var(--space-lg);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ---------------------------------------------------------
   14. Breadcrumbs
   --------------------------------------------------------- */

.breadcrumb {
  margin-bottom: var(--space-lg);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.breadcrumb__link {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumb__link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumb__sep,
.breadcrumb__separator {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  opacity: 0.5;
}

.breadcrumb__current {
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 500;
}


/* ---------------------------------------------------------
   15. Page Headers
   --------------------------------------------------------- */

/* Hero variant (dark background) */
.hero {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  padding: var(--space-4xl) var(--space-lg);
}

.hero__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero__headline {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.hero__sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  justify-content: center;
}

.hero__secondary-link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s;
}

.hero__secondary-link:hover {
  color: white;
  text-decoration: none;
}

.hero__visual {
  display: none;
}

/* Light page header variant */
.page-header {
  background: var(--color-bg-light);
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
}

.page-header--hero {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
}

.page-header--light {
  background: var(--color-bg-light);
}

.page-header__inner {
  max-width: 640px;
  margin: 0 auto;
}

.page-header__eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.page-header__headline {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.page-header__subhead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.page-header__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xl);
}


/* ---------------------------------------------------------
   16. Section Label
   --------------------------------------------------------- */

.section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section-label--light {
  color: rgba(255, 255, 255, 0.7);
}


/* ---------------------------------------------------------
   17. Feature Blocks
   --------------------------------------------------------- */

.feature-block {
  padding: var(--space-lg) 0;
}

.feature-block__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary);
}

.feature-block__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.feature-block__copy {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ---------------------------------------------------------
   18. Stat Strip
   --------------------------------------------------------- */

.stat-strip {
  background: var(--color-bg-dark);
  padding: var(--space-3xl) var(--space-lg);
}

.stat-strip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: var(--space-xl);
}

.stat-strip__item {
  text-align: center;
}

.stat-strip__number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-text-white);
  line-height: 1;
}

.stat-strip__label {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted-dark);
  margin-top: var(--space-xs);
  line-height: 1.4;
}

.stat-strip__divider {
  width: 1px;
  height: 48px;
  background: var(--color-border-dark);
  display: block;
}

.stat-strip__source {
  max-width: var(--max-width);
  margin: var(--space-xl) auto 0;
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted-dark);
}

@media (max-width: 768px) {
  .stat-strip__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl) var(--space-lg);
  }

  .stat-strip__divider {
    display: none;
  }
}


/* ---------------------------------------------------------
   19. Trust Pills
   --------------------------------------------------------- */

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  justify-content: center;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.07);
}

.trust-pill__dot {
  color: var(--color-primary);
  font-size: 8px;
  line-height: 1;
}


/* ---------------------------------------------------------
   20. Inline CTA (Article)
   --------------------------------------------------------- */

.cta-inline,
.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  background: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.cta-inline__headline,
.inline-cta__headline {
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.cta-inline__body,
.inline-cta__body {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.cta-inline__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
}

.cta-inline__link:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .cta-inline,
  .inline-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ---------------------------------------------------------
   21. Alert / Notification Banner
   --------------------------------------------------------- */

.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
  border-width: 1px;
  border-style: solid;
}

.alert--error {
  background: var(--color-error-light);
  border-color: var(--color-error);
  color: var(--color-error-dark);
}

.alert--success {
  background: var(--color-success-light);
  border-color: var(--color-success);
  color: var(--color-success-dark);
}

.alert--info {
  background: var(--color-info-light);
  border-color: var(--color-info);
  color: var(--color-info-dark);
}

.alert__icon {
  font-size: var(--text-base);
  font-weight: 700;
  flex-shrink: 0;
}


/* ---------------------------------------------------------
   22. Pricing Tab Toggle
   --------------------------------------------------------- */

.tab-toggle {
  display: inline-flex;
  background: var(--color-bg-light);
  border-radius: 9999px;
  padding: 4px;
  gap: 4px;
  margin-bottom: var(--space-3xl);
}

.tab-toggle__btn {
  padding: var(--space-sm) var(--space-xl);
  border-radius: 9999px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}

.tab-toggle__btn--active {
  background: var(--color-bg-white);
  color: var(--color-text);
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}


/* ---------------------------------------------------------
   23. Category Filter
   --------------------------------------------------------- */

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.category-pill {
  padding: var(--space-xs) var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  background: var(--color-bg-white);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}

.category-pill--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  font-weight: 600;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

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

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


/* ---------------------------------------------------------
   24. Expandable Note
   --------------------------------------------------------- */

.expandable {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.expandable__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg-light);
  border: none;
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  font-family: inherit;
}

.expandable__icon {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.expandable__icon--open {
  transform: rotate(180deg);
}

.expandable__inner {
  padding: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ---------------------------------------------------------
   25. Utility Classes
   --------------------------------------------------------- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.grid {
  display: grid;
  gap: var(--space-2xl);
}

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

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

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

@media (max-width: 1024px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}


/* ---------------------------------------------------------
   26. Page Sections (M4)
   --------------------------------------------------------- */

.section {
  padding: var(--space-4xl) var(--space-lg);
}

.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
}

.section--light {
  background: var(--color-bg-light);
}

.section--accent {
  background: var(--color-primary-light);
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__header {
  max-width: 640px;
  margin-bottom: var(--space-3xl);
}

.section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__headline {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-3xl));
  font-weight: 800;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.section__subhead {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.section--dark .section__subhead {
  color: var(--color-text-muted-dark);
}

.section__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--space-xl);
}

.section__link:hover {
  text-decoration: underline;
}

.section__footnote {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-xl);
  text-align: center;
}


/* ---------------------------------------------------------
   27. Homepage Hero — 2-Column (M4)
   --------------------------------------------------------- */

.hero--home .hero__inner {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  text-align: left;
}

.hero--home .hero__sub {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.hero--home .hero__headline {
  max-width: 12ch;
}

.hero--home .hero__sub--stacked {
  display: grid;
  gap: var(--space-sm);
  max-width: 56rem;
}

.hero--home .hero__subline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
}

.hero--home .hero__hook {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
}

.hero--home .hero__actions {
  justify-content: flex-start;
}

.hero--home .hero__actions--stacked {
  margin-top: var(--space-md);
}

.hero--home .hero__visual {
  display: block;
}

.hero-logo-list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.9rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-text);
  line-height: 1;
}

.hero-logo--claude { color: #b45309; }
.hero-logo--perplexity { color: #0f766e; }
.hero-logo--chatgpt { color: #047857; }
.hero-logo--grok { color: #334155; }
.hero-logo--google { color: #2563eb; }
.hero-logo--bing { color: #0284c7; }
.hero-logo--yahoo { color: #7c3aed; }

.hero-url-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-md);
  margin-top: var(--space-sm);
  max-width: 44rem;
}

.hero-url-form__input {
  width: 100%;
  min-height: 3.5rem;
  padding: 0 var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  font-size: var(--text-base);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.hero-url-form__input:focus {
  outline: 2px solid rgba(37, 99, 235, 0.16);
  border-color: var(--color-primary);
}

.hero-url-form__button {
  white-space: nowrap;
}

.hero-proofline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  font-size: var(--text-sm);
  color: var(--color-text);
}

.hero-proofline__bar {
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), #93c5fd);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes hero-caret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.hero-ticker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  min-width: 12rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.hero-ticker__logo {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: white;
  background: #111827;
  flex-shrink: 0;
}

.hero-ticker__word {
  min-width: 6ch;
  font-weight: 700;
  color: var(--color-text);
}

.hero-ticker__caret {
  width: 1px;
  height: 1.1em;
  background: currentColor;
  animation: hero-caret 0.9s steps(1) infinite;
}

.hero-ticker--claude .hero-ticker__logo { background: linear-gradient(135deg, #d97706, #92400e); }
.hero-ticker--perplexity .hero-ticker__logo { background: linear-gradient(135deg, #0f766e, #115e59); }
.hero-ticker--chatgpt .hero-ticker__logo { background: linear-gradient(135deg, #10b981, #065f46); }
.hero-ticker--grok .hero-ticker__logo { background: linear-gradient(135deg, #475569, #111827); }
.hero-ticker--google .hero-ticker__logo { background: linear-gradient(135deg, #2563eb, #dc2626); }
.hero-ticker--bing .hero-ticker__logo { background: linear-gradient(135deg, #0284c7, #0369a1); }
.hero-ticker--yahoo .hero-ticker__logo { background: linear-gradient(135deg, #7c3aed, #581c87); }

.hero-url-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-md);
  margin-top: var(--space-sm);
  max-width: 44rem;
}

.hero-url-form__input {
  width: 100%;
  min-height: 3.5rem;
  padding: 0 var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  font-size: var(--text-base);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.hero-url-form__input:focus {
  outline: 2px solid rgba(37, 99, 235, 0.16);
  border-color: var(--color-primary);
}

.hero-url-form__button {
  white-space: nowrap;
}

.hero-proofline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  font-size: var(--text-sm);
  color: var(--color-text);
}

.hero-proofline__bar {
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), #93c5fd);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .hero--home .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero--home .hero__actions {
    justify-content: center;
  }

  .hero--home .hero__headline {
    max-width: none;
  }

  .hero--home .hero__subline {
    justify-content: center;
  }

  .hero-url-form {
    grid-template-columns: 1fr;
  }

  .hero-proofline {
    justify-content: center;
  }

  .hero--home .trust-pills {
    justify-content: center;
  }
}


/* ---------------------------------------------------------
   27b. System Strip — 3-Part System
   --------------------------------------------------------- */

.system-strip {
  background: var(--color-bg-light);
  padding: var(--space-2xl) var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.system-strip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
}

.system-strip__item {
  flex: 1;
  text-align: center;
}

.system-strip__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-text-white);
  font-weight: 700;
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
}

.system-strip__headline {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.system-strip__copy {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.system-strip__arrow {
  display: flex;
  align-items: center;
  font-size: var(--text-2xl);
  color: var(--color-text-muted);
  padding-top: var(--space-xl);
}

@media (max-width: 768px) {
  .system-strip__inner {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .system-strip__arrow {
    display: none;
  }
}


/* ---------------------------------------------------------
   28. Problem Cards (M4)
   --------------------------------------------------------- */

.problem-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.problem-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
}

.problem-card__headline {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.problem-card__copy {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ---------------------------------------------------------
   29. Product Cards (M4)
   --------------------------------------------------------- */

.product-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.product-card__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.product-card__headline {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.product-card__copy {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.product-card__features {
  list-style: none;
  margin: 0 0 var(--space-xl);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.product-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
}

.product-card__check {
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
}


/* ---------------------------------------------------------
   30. Steps / Timeline (M4)
   --------------------------------------------------------- */

.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.steps__item {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
}

.steps__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  font-size: var(--text-lg);
  font-weight: 800;
}

.steps__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.steps__headline {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.steps__copy {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (min-width: 769px) {
  .steps--grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }

  .steps--grid .steps__item {
    flex-direction: column;
  }
}


/* ---------------------------------------------------------
   31. Industry Pills (M4)
   --------------------------------------------------------- */

.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.industry-pill {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  background: var(--color-bg-white);
}


/* ---------------------------------------------------------
   32. ICP Cards (M4)
   --------------------------------------------------------- */

.icp-card {
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.icp-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.icp-card__copy {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ---------------------------------------------------------
   33. Stat Cards (M4)
   --------------------------------------------------------- */

.stat-card {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
}

.stat-card__number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.stat-card__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}


/* ---------------------------------------------------------
   34. Margin Table (M4)
   --------------------------------------------------------- */

.table-responsive {
  overflow-x: auto;
}

.margin-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-xl) 0;
  font-size: var(--text-sm);
}

.margin-table th,
.margin-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.margin-table th {
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  background: var(--color-bg-light);
}

.margin-table td {
  color: var(--color-text);
}

.margin-table__highlight {
  font-weight: 700;
  color: var(--color-success);
}

.margin-table__footnote {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-md);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .margin-table {
    font-size: var(--text-xs);
  }

  .margin-table th,
  .margin-table td {
    padding: var(--space-sm);
  }
}


/* ---------------------------------------------------------
   35. Pull Quote (M4)
   --------------------------------------------------------- */

.pull-quote {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-xl);
  margin: var(--space-2xl) 0;
}


/* ---------------------------------------------------------
   36. Integration Cards (M4)
   --------------------------------------------------------- */

.integration-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
}

.integration-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  color: var(--color-text);
}

.integration-card__name {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.integration-card__copy {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.integration-card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
}


/* ---------------------------------------------------------
   37. Social Proof Placeholder (M4)
   --------------------------------------------------------- */

.social-proof {
  text-align: center;
}

.social-proof__copy {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto var(--space-xl);
}


/* ---------------------------------------------------------
   38. FAQ Wrapper (M4)
   --------------------------------------------------------- */

.faq-wrapper {
  max-width: 720px;
  margin: 0 auto;
}


/* ---------------------------------------------------------
   39. How It Works — Page Sections (M5)
   --------------------------------------------------------- */

.hiw-opportunity__copy {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.hiw-opportunity__copy p {
  margin-bottom: var(--space-lg);
}

.hiw-opportunity__copy p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--color-text);
}

.hiw-opportunity__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.hiw-channel {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.hiw-channel__name {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.hiw-channel__path {
  font-size: var(--text-sm);
  font-family: monospace;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.hiw-channel__copy {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.hiw-channel__difficulty {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
}

.hiw-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
  margin-top: var(--space-2xl);
}

.hiw-platforms__item {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.hiw-platforms__item a {
  font-weight: 600;
}

.hiw-quality {
  max-width: 720px;
  margin: 0 auto;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.hiw-quality p {
  margin-bottom: var(--space-lg);
}

.hiw-agency__intro {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.hiw-agency__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hiw-agency__list li {
  font-size: var(--text-base);
  color: var(--color-text);
  padding-left: var(--space-xl);
  position: relative;
}

.hiw-agency__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.hiw-timeline {
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.hiw-timeline__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.hiw-timeline__headline {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.hiw-timeline__copy {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ---------------------------------------------------------
   40. Pricing Page — Sections (M5)
   --------------------------------------------------------- */

.pricing-section {
  padding: var(--space-3xl) var(--space-lg) 0;
}

.pricing-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing-section__note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
}

.pricing-section__value-frame {
  text-align: center;
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.6;
}

.comparison-table td:first-child {
  font-weight: 600;
}


/* ---------------------------------------------------------
   41. Contact Page — Layout (M5)
   --------------------------------------------------------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: flex-start;
}

.contact-layout__form .form {
  max-width: none;
}

.contact-context__headline {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-xl);
}

.contact-context__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-context__step {
  counter-increment: steps;
  padding-left: var(--space-2xl);
  position: relative;
}

.contact-context__step::before {
  content: counter(steps) ".";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--color-primary);
  font-size: var(--text-lg);
}

.contact-context__step strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.contact-context__step span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact-context__agency {
  margin-top: var(--space-3xl);
  padding: var(--space-lg);
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact-context__agency strong {
  color: var(--color-text);
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}


/* ---------------------------------------------------------
   42. Thank You Page (M5)
   --------------------------------------------------------- */

.thank-you {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-3xl) 0;
}

.thank-you__headline {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.thank-you__subhead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.thank-you__body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  text-align: left;
}

.thank-you__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.thank-you__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.thank-you__link:hover {
  text-decoration: underline;
}


/* ---------------------------------------------------------
   42. Partner Features (M6 — Agency Partner)
   --------------------------------------------------------- */

.partner-feature {
  padding: var(--space-xl);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.partner-feature__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.partner-feature__copy {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ---------------------------------------------------------
   43. Deploy Cards (M6 — For Webflow / For WordPress)
   --------------------------------------------------------- */

.deploy-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
}

.deploy-card__badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 2px var(--space-md);
  border-radius: 9999px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.deploy-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.deploy-card__path {
  font-size: var(--text-sm);
  font-family: monospace;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.deploy-card__copy {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.deploy-card__meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.deploy-card__time {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text);
}


/* ---------------------------------------------------------
   44. Decision Table (M6)
   --------------------------------------------------------- */

.decision-table {
  margin-top: var(--space-3xl);
}

.decision-table__headline {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}


/* ---------------------------------------------------------
   45. Platform Opportunity Copy (M6)
   --------------------------------------------------------- */

.platform-opportunity__copy {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.platform-opportunity__copy p {
  margin-bottom: var(--space-lg);
}

.platform-opportunity__copy p:last-child {
  margin-bottom: 0;
}


/* ---------------------------------------------------------
   46. Margin Callout (M6)
   --------------------------------------------------------- */

.margin-callout {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.margin-callout__headline {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.margin-callout__line {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.margin-callout__result {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-top: var(--space-md);
}


/* ---------------------------------------------------------
   47. About Page (M6)
   --------------------------------------------------------- */

.about-story {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.about-story__copy {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
}

.about-story__copy p {
  margin-bottom: var(--space-lg);
}

.about-story__copy p:last-child {
  margin-bottom: 0;
}

.about-story__placeholder {
  background: var(--color-bg-light);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4xl) var(--space-lg);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .about-story {
    grid-template-columns: 1fr;
  }

  .about-story__image {
    order: -1;
  }
}

.about-mission {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-mission__text {
  font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

.principle {
  padding: var(--space-xl);
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
}

.principle__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.principle__copy {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ---------------------------------------------------------
   41. Article Header (M7)
   --------------------------------------------------------- */

.article-header {
  max-width: 720px;
}

.article-header .tag {
  margin-bottom: var(--space-md);
}

.article-header__title {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
}

.article-header__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.article-header__sep {
  opacity: 0.4;
}


/* ---------------------------------------------------------
   42. Article Body (M7)
   --------------------------------------------------------- */

.article-body {
  max-width: 720px;
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-text);
}

.article-body h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.article-body h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.article-body p {
  margin-bottom: var(--space-lg);
}

.article-body ul,
.article-body ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.article-body li {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.article-body a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-body a:hover {
  color: var(--color-primary-dark);
}

.article-body strong {
  font-weight: 700;
}

.article-body blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-lg);
  margin: var(--space-2xl) 0;
  font-style: italic;
  color: var(--color-text-muted);
}


/* ---------------------------------------------------------
   43. Insights Page Header Capture (M7)
   --------------------------------------------------------- */

.page-header__capture {
  max-width: 480px;
  margin: var(--space-xl) auto 0;
}


/* ---------------------------------------------------------
   44. Legal Pages — Privacy & Terms (M8)
   --------------------------------------------------------- */

.legal {
  max-width: 720px;
  margin: 0 auto;
}

.legal__title {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-sm);
}

.legal__updated {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3xl);
}

.legal__heading {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-md);
}

.legal__text {
  font-size: var(--font-size-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

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

.legal__text a:hover {
  color: var(--color-primary-dark);
}

.legal__list {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal__list li {
  font-size: var(--font-size-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}


/* ---------------------------------------------------------
   Theme Switcher (temporary — remove before launch)
   --------------------------------------------------------- */

.theme-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--color-border-dark);
}

.theme-switcher__label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.theme-switcher__select {
  font-size: var(--text-sm);
  font-family: inherit;
  padding: var(--space-xs) var(--space-md);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-white);
  cursor: pointer;
}

.theme-switcher__select option {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
}

/* Homepage hero redesign override */
.hero--home {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--space-4xl) + var(--space-lg));
  padding-bottom: calc(var(--space-4xl) + var(--space-lg));
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.24), transparent 28rem),
    radial-gradient(circle at bottom left, rgba(76, 214, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, #0c1322 0%, #111827 100%);
}

.hero--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(182, 196, 255, 0.18) 0.7px, transparent 0.7px);
  background-size: 16px 16px;
  opacity: 0.18;
  pointer-events: none;
}

.hero--home .hero__inner {
  position: relative;
  z-index: 1;
}

.hero--home .hero__content {
  max-width: 36rem;
}

.hero--home .hero__headline {
  max-width: 11ch;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.04em;
}

.hero-home__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: var(--space-xl);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(0, 121, 149, 0.18);
  color: #7fe8ff;
  box-shadow: inset 0 0 0 1px rgba(76, 214, 255, 0.08);
}

.hero-home__eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4cd6ff;
}

.hero-home__eyebrow-text {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-home__headline-accent {
  display: block;
  margin-top: 0.15em;
  background: linear-gradient(135deg, #2e62f6 0%, #b6c4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-home__headline-line {
  display: block;
  white-space: nowrap;
}

.hero-home__sub {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.hero-home__lede {
  max-width: 34rem;
  color: rgba(220, 226, 248, 0.78);
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  line-height: 1.7;
}

.hero-home__engines {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-xl);
}

.hero-home__engine {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(21, 27, 43, 0.85);
  color: #dce2f8;
  font-size: var(--text-sm);
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(67, 70, 85, 0.25);
}

.hero-home__engine--claude { color: #f2bf8a; }
.hero-home__engine--perplexity { color: #7fe8d9; }
.hero-home__engine--chatgpt { color: #88efbf; }
.hero-home__engine--google { color: #9db7ff; }

.hero-home__form {
  margin-top: var(--space-2xl);
}

.hero-home__input-wrap {
  position: relative;
}

.hero-home__input-icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: rgba(182, 196, 255, 0.72);
  pointer-events: none;
}

.hero-home__input {
  min-height: 4.25rem;
  padding-left: 3rem;
  border: none;
  border-radius: 1rem;
  background: rgba(7, 14, 29, 0.78);
  color: #dce2f8;
  box-shadow:
    inset 0 0 0 1px rgba(67, 70, 85, 0.35),
    0 18px 40px rgba(0, 0, 0, 0.18);
}

.hero-home__input::placeholder {
  color: rgba(141, 144, 161, 0.9);
}

.hero-home__input:focus {
  outline: 2px solid rgba(46, 98, 246, 0.22);
  border-color: transparent;
  background: rgba(21, 27, 43, 0.96);
}

.hero-home__cta {
  min-height: 4.25rem;
  padding: 0.9rem 1.65rem;
  border: none;
  border-radius: 1rem;
  background: linear-gradient(135deg, #2e62f6 0%, #4cd6ff 100%);
  color: #04111f;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(46, 98, 246, 0.28);
}

.hero-home__cta:hover {
  text-decoration: none;
  filter: brightness(1.03);
}

.hero-home__actions {
  justify-content: flex-start;
  margin-top: var(--space-lg);
}

.hero-home__founder-link {
  color: #ffffff;
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(182, 196, 255, 0.35);
  padding-bottom: 0.2rem;
}

.hero-home__founder-link:hover {
  color: #b6c4ff;
  border-bottom-color: #b6c4ff;
  text-decoration: none;
}

.hero-home__proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.hero-home__proof-card {
  padding: 1.35rem;
  border-radius: 1.5rem;
  background: rgba(21, 27, 43, 0.8);
  box-shadow:
    inset 0 0 0 1px rgba(67, 70, 85, 0.22),
    0 24px 48px rgba(3, 8, 20, 0.16);
}

.hero-home__proof-label {
  display: block;
  margin-bottom: 0.4rem;
  color: rgba(182, 196, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-home__proof-value {
  display: block;
  margin-bottom: 0.45rem;
  color: #ffffff;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 1;
}

.hero-home__proof-copy {
  color: rgba(220, 226, 248, 0.7);
  font-size: var(--text-sm);
  line-height: 1.55;
}

.hero-home-visual {
  position: relative;
}

.hero-home-visual__glow {
  position: absolute;
  inset: 3rem -2rem -2rem 2rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 98, 246, 0.22) 0%, rgba(46, 98, 246, 0) 70%);
  filter: blur(36px);
}

.hero-home-visual__panel {
  position: relative;
  min-height: 34rem;
  padding: 1.85rem;
  border-radius: 2rem;
  background: rgba(21, 27, 43, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(67, 70, 85, 0.24),
    0 32px 72px rgba(1, 6, 16, 0.38);
  backdrop-filter: blur(18px);
}

.hero-home-visual__topbar,
.hero-home-visual__engine-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.hero-home-visual__dots {
  display: flex;
  gap: 0.45rem;
}

.hero-home-visual__dots span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(182, 196, 255, 0.34);
}

.hero-home-visual__dots span:first-child { background: rgba(255, 180, 171, 0.45); }
.hero-home-visual__dots span:nth-child(2) { background: rgba(76, 214, 255, 0.45); }
.hero-home-visual__dots span:last-child { background: rgba(182, 196, 255, 0.45); }

.hero-home-visual__status,
.hero-home-visual__metric-label,
.hero-home-visual__engine-sync {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-home-visual__status {
  padding: 0.45rem 0.8rem;
  border-radius: 0.75rem;
  background: rgba(46, 53, 69, 0.95);
  color: rgba(220, 226, 248, 0.74);
}

.hero-home-visual__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.hero-home-visual__metric {
  padding: 1.15rem;
  border-radius: 1.25rem;
  background: rgba(46, 53, 69, 0.96);
}

.hero-home-visual__metric-label {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(182, 196, 255, 0.68);
}

.hero-home-visual__metric-value {
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
}

.hero-home-visual__metric-value--cyan {
  color: #4cd6ff;
}

.hero-home-visual__metric-value--blue {
  color: #b6c4ff;
}

.hero-home-visual__engine-card {
  margin-top: var(--space-lg);
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(7, 14, 29, 0.58);
  box-shadow: inset 0 0 0 1px rgba(67, 70, 85, 0.16);
}

.hero-home-visual__engine-title {
  color: #ffffff;
  font-size: var(--text-sm);
  font-weight: 700;
}

.hero-home-visual__engine-sync {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #b6c4ff;
}

.hero-home-visual__engine-ping {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #4cd6ff;
  box-shadow: 0 0 0 0 rgba(76, 214, 255, 0.45);
  animation: hero-ping 1.8s infinite;
}

.hero-home-visual__network {
  position: relative;
  min-height: 16rem;
  margin-top: var(--space-lg);
}

.hero-home-visual__network-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(182, 196, 255, 0.38), rgba(76, 214, 255, 0.18));
  transform-origin: left center;
}

.hero-home-visual__network-line--one {
  top: 5.25rem;
  left: calc(50% - 3rem);
  width: 8rem;
  transform: rotate(-30deg);
}

.hero-home-visual__network-line--two {
  top: 8rem;
  left: calc(50% - 3rem);
  width: 8.5rem;
  transform: rotate(18deg);
}

.hero-home-visual__network-line--three {
  top: 7.1rem;
  left: calc(50% - 9.5rem);
  width: 7rem;
  transform: rotate(200deg);
}

.hero-home-visual__hub,
.hero-home-visual__node {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
}

.hero-home-visual__hub {
  top: 4.3rem;
  left: 50%;
  width: 7rem;
  height: 7rem;
  transform: translateX(-50%);
  flex-direction: column;
  gap: 0.35rem;
  border-radius: 999px;
  background: rgba(46, 98, 246, 0.16);
  color: #b6c4ff;
  box-shadow: inset 0 0 0 1px rgba(182, 196, 255, 0.18);
}

.hero-home-visual__hub-icon {
  display: inline-flex;
  color: #4cd6ff;
}

.hero-home-visual__hub-label {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.hero-home-visual__node {
  min-width: 5.5rem;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  background: rgba(46, 53, 69, 0.95);
  color: rgba(220, 226, 248, 0.86);
  box-shadow: inset 0 0 0 1px rgba(67, 70, 85, 0.22);
}

.hero-home-visual__node--claude {
  top: 1.2rem;
  right: 1.1rem;
}

.hero-home-visual__node--perplexity {
  right: 2.4rem;
  bottom: 1.25rem;
}

.hero-home-visual__node--chatgpt {
  top: 2.75rem;
  left: 1.1rem;
}

.hero-home-visual__insight {
  margin-top: var(--space-lg);
  padding: 1rem 1.1rem;
  border-left: 4px solid #4cd6ff;
  border-radius: 1rem;
  background: rgba(0, 121, 149, 0.12);
  color: rgba(227, 246, 255, 0.88);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.hero-home-visual__insight strong {
  color: #7fe8ff;
}

@media (max-width: 768px) {
  .hero--home .hero__content,
  .hero--home .hero__headline {
    max-width: none;
  }

  .hero-home__headline-line {
    white-space: normal;
  }

  .hero-home__engines,
  .hero-home__actions {
    justify-content: center;
  }

  .hero-home__proof,
  .hero-home-visual__metrics {
    grid-template-columns: 1fr;
  }

  .hero-home-visual__panel {
    min-height: auto;
    padding: 1.35rem;
  }

  .hero-home-visual__topbar,
  .hero-home-visual__engine-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-home-visual__status {
    width: 100%;
  }

  .hero-home-visual__network {
    min-height: 14rem;
  }

  .hero-home-visual__node--claude {
    right: 0;
  }

  .hero-home-visual__node--perplexity {
    right: 0.5rem;
  }

  .hero-home-visual__node--chatgpt {
    left: 0;
  }

  .hero-home-visual__network-line--one {
    width: 6.5rem;
  }

  .hero-home-visual__network-line--two {
    width: 6.75rem;
  }

  .hero-home-visual__network-line--three {
    width: 5.75rem;
    left: calc(50% - 8rem);
  }
}

@keyframes hero-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 214, 255, 0.45);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(76, 214, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(76, 214, 255, 0);
  }
}
