/* Auto-compiled from components */

/* From: /approot/watch/components/Footer/Footer.css */
/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  padding: 50px 0 25px;
  background: #FFF;
  color: #1e293b;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

/* Main content area - no padding */
.footer-main {
  padding:0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Top section with logo */
.footer-top {
  padding: 40px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-brand {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.footer-logo {
  height: 60px;
  width: auto;
  filter: brightness(1.1);
  transition: transform var(--duration-fast) var(--ease-out);
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-brand::after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 2px;
}

/* Navigation with company logos */
.footer-nav {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.footer-heading {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #222;
  margin-bottom: 20px;
}

/* Company logos section */
.footer-companies {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.company-logo-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--color-surface-bright);
  border: 1px solid var(--color-outline);
  transition: all var(--duration-fast) var(--ease-standard);
}

.company-logo-item:hover {
  background: var(--color-surface-bright); /* Keep original background, no grey */
  border-color: var(--color-primary-light); /* Light blue border */
  transform: translateY(-1px);
  box-shadow: var(--shadow-card-hover);
}

.company-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: white;
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 6px;
}

.company-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.company-logo-text {
  flex: 1;
}

.company-logo-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.company-logo-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

/* Products section with icons */
.footer-products {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.product-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--color-surface-bright);
  border: 1px solid var(--color-outline);
  transition: all var(--duration-fast) var(--ease-standard);
}

.product-item:hover {
  background: var(--color-surface-bright); /* Keep original background, no grey */
  border-color: var(--senicity-blue-light); /* Light blue border */
  transform: translateY(-1px);
  box-shadow: var(--shadow-card-hover);
}

.product-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--color-surface-container);
  border: 1px solid var(--color-outline);
}

.product-icon svg {
  width: 20px;
  height: 20px;
}

.product-text {
  flex: 1;
}

.product-title {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-on-surface);
  margin-bottom: var(--space-xs);
}

.product-desc {
  font-size: var(--text-xs);
  color: var(--color-on-surface-variant);
  line-height: 1.5;
}

/* Links section */
.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links-col a {
  font-size: var(--text-sm);
  color: var(--color-on-surface-variant);
  transition: all var(--duration-fast) var(--ease-standard);
  padding: var(--space-xs) 0 var(--space-xs) var(--space-sm);
  display: flex;
  align-items: center;
  text-align: left;
  gap: var(--space-xs);
  border-left: 2px solid transparent;
}

.footer-links-col a:hover {
  color: var(--color-primary);
  padding-left: var(--space-lg);
  border-left-color: var(--color-primary);
}

.footer-links-col a::before {
  content: '→';
  opacity: 0;
  font-size: var(--text-xs);
  transition: opacity var(--duration-fast) var(--ease-standard);
  transform: translateX(-4px);
}

.footer-links-col a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Bottom section */
.footer-bottom {
  padding: 15px 0!important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-divider);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--color-on-surface-subtle);
  margin: 0;
}

.footer-policies {
  display: flex;
  gap: var(--space-xl);
}

.footer-policies a {
  font-size: var(--text-xs);
  color: var(--color-on-surface-variant);
  transition: color var(--duration-fast) var(--ease-standard);
}

.footer-policies a:hover {
  color: var(--color-primary);
}

.footer-main .container {
  padding-bottom: var(--space-3xl);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

  .footer-brand {
    margin-bottom: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: var(--space-2xl) 0;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .footer-logo {
    height: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 30px 0 0;
    text-align:center!important;
  }

  .footer-policies {
    flex-wrap: wrap;
    gap: 20px;
  }

}

/* ── Aviajo development status ──────────────────────────────── */
.company-logo-item--disabled {
  cursor: default;
}

.company-logo-item--disabled:hover {
  border-color: var(--color-outline);
  transform: none;
  box-shadow: none;
}

.development-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  margin-bottom: 4px;
  padding: 1px 7px;
  border: 1px solid #f1df9a;
  border-radius: var(--radius-full);
  background: #fff8e1;
  color: #6b5a1a;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.15px;
  white-space: nowrap;
}

.development-label::before {
  content: '';
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: #d69e00;
}


/* ── Google × Apple visual refinement ────────────────────────── */
.site-footer {
  padding: var(--space-4xl) 0 var(--space-xl);
  background: var(--color-surface-bright);
  color: var(--color-on-surface);
  border-top-color: var(--color-divider);
}

.footer-top {
  padding: var(--space-3xl) 0;
  border-bottom-color: var(--color-divider);
}

.footer-brand::after {
  width: 48px;
  height: 2px;
  bottom: -20px;
  background: var(--color-primary);
  border-radius: 0;
}

.company-logo-item,
.product-item {
  border-radius: var(--radius-lg);
  transition: background-color var(--duration-fast) var(--ease-standard),
              border-color var(--duration-fast) var(--ease-standard),
              box-shadow var(--duration-fast) var(--ease-standard);
}

.company-logo-item:hover,
.product-item:hover {
  background: var(--color-surface-container-low);
  border-color: var(--color-outline);
  transform: none;
  box-shadow: var(--shadow-xs);
}

.footer-links-col a:hover {
  padding-left: var(--space-sm);
  border-left-color: transparent;
}


/* ── Footer disclaimer spacing ───────────────────────────────── */
.footer-bottom {
  margin-top: var(--space-lg);
  padding: var(--space-2xl) 0 var(--space-xl);
  gap: var(--space-2xl);
  align-items: flex-start;
}

.footer-policies {
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .footer-bottom {
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-2xl) 0 var(--space-xl);
    text-align: left !important;
  }

  .footer-policies {
    gap: var(--space-md) var(--space-xl);
  }
}


/* ── Footer disclaimer alignment ─────────────────────────────── */
.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: var(--space-2xl);
  row-gap: var(--space-lg);
  margin-top: var(--space-2xl);
  padding: var(--space-3xl) 0 var(--space-2xl);
}

.footer-bottom p {
  text-align: left;
}

.footer-policies {
  justify-self: end;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-2xl);
}

@media (max-width: 768px) {
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding: 15px 15px;
    text-align: center !important;
  }

  .footer-bottom p {
    width: 100%;
    text-align: center;
  }

  .footer-policies {
    width: 100%;
    justify-self: auto;
    justify-content: center;
    align-items: center;
    gap: var(--space-md) var(--space-xl);
  }
}

/* ── Company links: fixed left alignment + hover arrows ─────── */
.footer-links-col a {
  position: relative;
  display: block;
  padding: var(--space-xs) 0;
  border-left: 0;
  text-align: left;
  transition: color var(--duration-fast) var(--ease-standard);
}

.footer-links-col a:hover {
  padding-left: 0;
  border-left-color: transparent;
}

.footer-links-col a::before {
  position: absolute;
  top: 50%;
  left: -18px;
  content: '→';
  opacity: 0;
  font-size: var(--text-xs);
  line-height: 1;
  transform: translate(-4px, -50%);
  transition: opacity var(--duration-fast) var(--ease-standard), transform var(--duration-fast) var(--ease-standard);
}

.footer-links-col a:hover::before,
.footer-links-col a:focus-visible::before {
  opacity: 1;
  transform: translate(0, -50%);
}


/* From: /approot/watch/components/Products/Products.css */
/* ── Promo Section (centered, like Google around the globe) ── */
.promo-section {
  padding: 96px 0;
}

.promo-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promo-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-xl);
}

.promo-center h2 {
  margin-bottom: var(--space-lg);
}

.promo-desc {
  font-size: 18px;
  line-height: 1.6;
  max-width: 540px;
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.promo-cta .btn {
  font-size: 15px;
  height: 44px;
  padding: 0 28px;
}


/* From: /approot/watch/components/InstanceioNewsPage/InstanceioNewsPage.css */
/* Shared news story styles are defined in NewsArticlePage.css. */


/* From: /approot/watch/components/ContactPage/ContactPage.css */
/* ── Contact Page ──────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
  align-items: start;
}

.contact-info p {
  margin-top: var(--space-md);
}

.contact-detail {
  margin-top: var(--space-2xl);
}

.contact-link {
  color: var(--color-primary);
  font-size: 16px;
  transition: color var(--duration-fast) var(--ease-out);
}

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

/* ── Form ──────────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-on-surface);
}

.form-field input,
.form-field textarea {
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-md);
  background: var(--color-surface-bright);
  color: var(--color-on-surface);
  font-size: 16px;
  transition: border-color var(--duration-fast) var(--ease-out);
  min-height: 48px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-primary);
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

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


/* ── Google × Apple visual refinement ────────────────────────── */
.form-field input,
.form-field textarea {
  border-radius: var(--radius-lg);
  background: var(--color-surface-bright);
  transition: border-color var(--duration-fast) var(--ease-standard),
              box-shadow var(--duration-fast) var(--ease-standard);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px var(--color-primary-light);
}


/* From: /approot/watch/components/MixqlPage/MixqlPage.css */
.product-page--mixql .product-terminal {
  border-color: #1f3a5f;
}

.product-page--mixql .product-metrics-grid strong {
  color: var(--color-primary);
}

.product-page--mixql .product-section--tinted {
  background: #edf7fc;
}

.product-page--mixql .product-architecture {
  border-left-color: #b9dced;
}


/* From: /approot/watch/components/NewsPage/NewsPage.css */
.editorial-page,
.career-page {
  color: var(--color-on-surface);
  background: var(--color-surface);
}

.editorial-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.editorial-kicker::before {
  width: 22px;
  height: 2px;
  background: currentColor;
  content: '';
}

.editorial-issue {
  color: var(--color-on-surface-subtle);
  font-family: var(--font-mono);
  font-size: 11px;
}

.news-hero {
  padding: 32px 0 104px;
  background: var(--color-surface-bright);
  border-bottom: 1px solid var(--color-divider);
}

.news-hero-top,
.news-archive-heading,
.news-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  align-items: end;
  gap: var(--space-4xl);
  margin-top: 92px;
}

.news-hero-copy h1,
.career-hero-copy h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(58px, 9vw, 124px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: .88;
}

.news-hero-copy h1 em,
.career-hero-copy h1 em {
  color: var(--color-primary);
  font-style: normal;
}

.news-hero-copy p {
  max-width: 360px;
  margin: var(--space-3xl) 0 0 8px;
  color: var(--color-on-surface-variant);
  font-size: 18px;
  line-height: 1.55;
}

.news-hero-mark {
  position: relative;
  min-height: 330px;
  padding: var(--space-xl);
  overflow: hidden;
  background: var(--color-primary);
  color: var(--white);
}

.news-hero-mark span {
  position: absolute;
  top: var(--space-xl);
  left: var(--space-xl);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
}

.news-hero-mark strong {
  position: absolute;
  right: 20px;
  bottom: 12px;
  font-size: clamp(100px, 16vw, 220px);
  font-weight: 500;
  letter-spacing: -.1em;
  line-height: .78;
}

.news-hero-mark i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.news-hero-mark i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  content: '';
  transform: translate(-50%, -50%);
}

.news-feature {
  padding: var(--space-5xl) 0;
}

.news-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.news-section-heading h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
}

.news-feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--color-on-surface);
  border-bottom: 1px solid var(--color-outline);
}

.news-feature-art {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--google-grey-800);
  color: var(--white);
}

.news-feature-number {
  position: absolute;
  top: 24px;
  left: 24px;
  color: var(--google-blue-400);
  font-family: var(--font-mono);
  font-size: 12px;
}

.news-feature-lines {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  align-items: flex-end;
  gap: 10px;
  width: 65%;
  height: 55%;
  transform: translate(-50%, -50%);
}

.news-feature-lines i {
  flex: 1;
  border-top: 2px solid var(--google-blue-400);
  transform: rotate(-42deg);
  transform-origin: left center;
}

.news-feature-lines i:nth-child(2) { margin-bottom: 32px; opacity: .75; }
.news-feature-lines i:nth-child(3) { margin-bottom: 64px; opacity: .55; }
.news-feature-lines i:nth-child(4) { margin-bottom: 96px; opacity: .35; }
.news-feature-lines i:nth-child(5) { margin-bottom: 128px; opacity: .18; }

.news-feature-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: var(--google-grey-400);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
}

.news-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 80px);
}

.news-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.news-feature-copy h3 {
  max-width: 500px;
  margin: var(--space-xl) 0 var(--space-lg);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: 1;
}

.news-feature-copy p {
  max-width: 450px;
  margin-bottom: var(--space-2xl);
  color: var(--color-on-surface-variant);
  font-size: 16px;
  line-height: 1.65;
}

.news-archive {
  padding: var(--space-5xl) 0;
  background: var(--color-surface-container);
  border-top: 1px solid var(--color-outline);
}

.news-archive-heading {
  align-items: baseline;
  margin-bottom: var(--space-2xl);
}

.news-archive-heading p {
  color: var(--color-on-surface-variant);
  font-size: 14px;
}

.news-list {
  border-top: 1px solid var(--color-on-surface);
}

.news-list-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 40px;
  gap: var(--space-xl);
  align-items: start;
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-outline);
}

.news-list-index {
  color: var(--color-on-surface-subtle);
  font-family: var(--font-mono);
  font-size: 12px;
}

.news-list-item h3 {
  margin: var(--space-sm) 0;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -.04em;
}

.news-list-item p {
  max-width: 580px;
  margin: 0;
  color: var(--color-on-surface-variant);
  font-size: 14px;
  line-height: 1.55;
}

.news-list-arrow {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--color-outline);
  border-radius: 50%;
  color: var(--color-on-surface);
  font-size: 18px;
  transition: background-color .2s ease, color .2s ease;
}

.news-list-arrow:hover { background: var(--color-on-surface); color: var(--white); }

.news-cta { padding: 25px 15px !important; }

.news-cta-inner {
  padding: 15px!important;
  background: var(--color-primary);
  color: var(--white);
}

.news-cta .editorial-kicker { color: var(--white); }
.news-cta h2 { margin: var(--space-md) 0 0; font-size: clamp(28px, 4vw, 48px); font-weight: 500; letter-spacing: -.05em; }
.news-cta .btn { background: var(--white); color: var(--color-on-surface); }
.news-cta .btn:hover { background: var(--google-grey-100); }

@media (max-width: 768px) {
  .news-hero { padding-bottom: var(--space-4xl); }
  .news-hero-grid { grid-template-columns: 1fr; gap: var(--space-3xl); margin-top: var(--space-5xl); }
  .news-hero-mark { min-height: 220px; }
  .news-section-heading { display: block; }
  .news-section-heading h2 { margin-top: var(--space-xl); }
  .news-feature-card { grid-template-columns: 1fr; }
  .news-feature-art { min-height: 280px; }
  .news-list-item { grid-template-columns: 32px minmax(0, 1fr) 36px; gap: var(--space-md); }
  .news-archive-heading { display: block; }
  .news-archive-heading p { margin-top: var(--space-md); }
  .news-cta-inner { display: block; padding: var(--space-2xl) var(--space-xl); }
  .news-cta .btn { margin-top: var(--space-2xl); }
}


/* ── Keep in touch breathing room ───────────────────────────── */
.news-cta {
  padding: clamp(128px, 14vw, 176px) 0;
}

@media (max-width: 768px) {
  .news-cta {
    padding: 112px 0;
  }
}


/* ── Keep in touch final spacing guarantee ───────────────────── */
section.news-cta {
  padding-top: clamp(128px, 14vw, 176px) !important;
  padding-bottom: clamp(128px, 14vw, 176px) !important;
}

@media (max-width: 768px) {
  section.news-cta {
    padding-top: 112px !important;
    padding-bottom: 112px !important;
  }
}


/* From: /approot/watch/components/TermsPage/TermsPage.css */
/* TermsPage uses the shared PrivacyPage legal-page styles. */


/* From: /approot/watch/components/CtaBand/CtaBand.css */
/* ── Callout Module ────────────────────────────────────────── */
.callout-section {
  padding: 48px 0 80px;
}

.callout-box {
  background: var(--color-surface-container);
  border-radius: 32px;
  padding: 56px 48px;
}

.callout-body {
  max-width: 600px;
}

.callout-body h3 {
  margin-bottom: var(--space-md);
}

.callout-desc {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
}

.callout-cta .btn {
  font-size: 15px;
  height: 44px;
  padding: 0 24px;
  background: var(--color-primary);
  color: var(--color-on-primary);
  border-radius: var(--radius-xl);
}

.callout-cta .btn:hover {
  background: var(--color-primary-hover);
}

@media (max-width: 768px) {
  .callout-box {
    padding: 40px 24px;
    border-radius: 24px;
  }
}


/* ── Google × Apple visual refinement ────────────────────────── */
.callout-section {
  padding: var(--space-3xl) 0 var(--space-5xl);
}

.callout-box {
  background: var(--color-surface-container);
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-2xl);
  padding: var(--space-4xl) var(--space-3xl);
}

.callout-cta .btn {
  border-radius: var(--radius-full);
}

@media (max-width: 768px) {
  .callout-box {
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-xl);
  }
}


/* From: /approot/watch/components/MixqlNewsPage/MixqlNewsPage.css */
/* Shared news story styles are defined in NewsArticlePage.css. */


/* From: /approot/watch/components/AboutPage/AboutPage.css */
/* ── About Page ────────────────────────────────────────────── */

.about-intro {
  max-width: 640px;
  margin-bottom: var(--space-4xl);
}

.about-intro p {
  margin-top: var(--space-lg);
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.about-block h3 {
  font-size: 20px;
  margin-bottom: var(--space-md);
}

.about-block p {
  font-size: 15px;
  line-height: 1.6;
}

.about-block:last-child {
  grid-column: 1 / -1;
}

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

  .about-block:last-child {
    grid-column: auto;
  }
}

/* ── Aviajo development status ──────────────────────────────── */
.development-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  padding: 1px 7px;
  border: 1px solid #f1df9a;
  border-radius: var(--radius-full);
  background: #fff8e1;
  color: #6b5a1a;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.15px;
  white-space: nowrap;
}

.development-label::before {
  content: '';
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: #d69e00;
}

.development-label--inline {
  margin-left: var(--space-xs);
  vertical-align: middle;
  white-space: nowrap;
}

/* ── About destinations ─────────────────────────────────────── */
.about-destinations {
  margin-top: var(--space-5xl);
  padding-top: var(--space-4xl);
  border-top: 1px solid var(--color-divider);
}

.about-destinations-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.about-eyebrow {
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-destinations-heading h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: 1;
}

.about-destination-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--color-outline);
  border: 1px solid var(--color-outline);
}

.about-destination {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-xl);
  background: var(--color-surface-bright);
  transition: background-color var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard);
}

.about-destination:hover {
  background: var(--color-surface-container-low);
  box-shadow: inset 0 -3px 0 var(--color-primary);
}

.about-destination-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-on-surface-subtle);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about-destination-top span:last-child {
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-size: 22px;
  line-height: 1;
}

.about-destination-copy { max-width: 360px; }
.about-destination-copy h3 { margin-bottom: var(--space-md); font-size: clamp(25px, 3vw, 36px); font-weight: 500; letter-spacing: -.05em; }
.about-destination-copy p { color: var(--color-on-surface-variant); font-size: 15px; line-height: 1.6; }
.about-destination-link { color: var(--color-primary); font-size: 14px; font-weight: 600; }
.about-destination-link span { display: inline-block; margin-left: var(--space-xs); transition: transform var(--duration-fast) var(--ease-out); }
.about-destination:hover .about-destination-link span { transform: translateX(4px); }
.about-destination--careers { background: var(--color-surface-container-low); }
.about-destination--news { background: var(--color-surface-bright); }

@media (max-width: 768px) {
  .about-destinations { margin-top: var(--space-4xl); padding-top: var(--space-3xl); }
  .about-destinations-heading { display: block; }
  .about-destinations-heading h2 { margin-top: var(--space-md); }
  .about-destination-grid { grid-template-columns: 1fr; }
  .about-destination { min-height: 260px; }
}


/* From: /approot/watch/components/CareersPage/CareersPage.css */
.career-hero {
  padding: 32px 0 var(--space-5xl);
  background: var(--color-surface-bright);
  border-bottom: 1px solid var(--color-divider);
}

.career-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  align-items: stretch;
  gap: clamp(40px, 8vw, 120px);
  margin-top: 92px;
}

.career-hero-copy h1 { margin-top: var(--space-3xl); }

.career-lead {
  max-width: 490px;
  margin: var(--space-3xl) 0;
  color: var(--color-on-surface-variant);
  font-size: 19px;
  line-height: 1.6;
}

.career-hero-panel {
  position: relative;
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-xl);
  background: var(--google-grey-800);
  color: var(--white);
}

.career-panel-label,
.career-panel-mark {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.career-panel-label { color: var(--google-grey-400); }
.career-panel-mark { color: var(--google-blue-400); }
.career-hero-panel strong {
  max-width: 5ch;
  color: var(--google-blue-400);
  font-size: clamp(54px, 8vw, 96px);
  font-weight: 500;
  letter-spacing: -.08em;
  line-height: .85;
}

.career-hero-panel::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 76px;
  height: 76px;
  border: 1px solid var(--google-blue-400);
  border-radius: 50%;
  content: '';
}

.career-hero-panel::before {
  position: absolute;
  right: 56px;
  bottom: 56px;
  width: 12px;
  height: 12px;
  background: var(--google-blue-400);
  border-radius: 50%;
  content: '';
  z-index: 1;
}

.career-values { padding: var(--space-5xl) 0; }

.career-intro {
  display: grid;
  grid-template-columns: minmax(180px, .7fr) minmax(0, 1fr);
  gap: var(--space-4xl);
  padding-bottom: var(--space-4xl);
  border-bottom: 1px solid var(--color-on-surface);
}

.career-intro h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: .98;
}

.career-intro p {
  grid-column: 2;
  max-width: 510px;
  margin-top: calc(var(--space-xl) * -1);
  color: var(--color-on-surface-variant);
  font-size: 16px;
  line-height: 1.65;
}

.career-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: var(--space-4xl);
  background: var(--color-outline);
  border: 1px solid var(--color-outline);
}

.career-value-grid article {
  min-height: 250px;
  padding: var(--space-xl);
  background: var(--color-surface);
}

.career-value-grid article > span {
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: 11px;
}

.career-value-grid h3 {
  margin: 72px 0 var(--space-md);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -.03em;
}

.career-value-grid p {
  color: var(--color-on-surface-variant);
  font-size: 14px;
  line-height: 1.55;
}

.career-opportunity {
  padding: var(--space-5xl) 0;
  background: var(--color-surface-container);
  border-top: 1px solid var(--color-outline);
}

.career-opportunity-grid {
  display: grid;
  grid-template-columns: minmax(180px, .6fr) minmax(0, 1.4fr);
  align-items: center;
  gap: var(--space-4xl);
}

.career-opportunity-stamp {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-xl);
  background: var(--color-primary);
  color: var(--white);
}

.career-opportunity-stamp span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  line-height: 1.4;
}

.career-opportunity-stamp strong { align-self: flex-end; font-size: 56px; font-weight: 400; line-height: .7; }
.career-opportunity-copy h2 { margin: var(--space-xl) 0; font-size: clamp(38px, 6vw, 72px); font-weight: 500; letter-spacing: -.07em; line-height: .92; }
.career-opportunity-copy p { max-width: 560px; margin-bottom: var(--space-xl); color: var(--color-on-surface-variant); font-size: 17px; line-height: 1.65; }

.career-cta { padding: var(--space-5xl) 0; }
.career-cta-inner { max-width: 720px; }
.career-cta h2 { margin: var(--space-xl) 0 var(--space-md); font-size: clamp(42px, 7vw, 84px); font-weight: 500; letter-spacing: -.08em; line-height: .9; }
.career-cta p { max-width: 480px; margin-bottom: var(--space-2xl); color: var(--color-on-surface-variant); font-size: 18px; line-height: 1.6; }

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

@media (max-width: 768px) {
  .career-hero { padding-bottom: var(--space-4xl); }
  .career-hero-grid { grid-template-columns: 1fr; gap: var(--space-3xl); margin-top: var(--space-5xl); }
  .career-hero-panel { min-height: 300px; }
  .career-intro { display: block; }
  .career-intro h2 { margin-top: var(--space-xl); }
  .career-intro p { margin-top: var(--space-xl); }
  .career-value-grid { grid-template-columns: 1fr; }
  .career-value-grid article { min-height: 200px; }
  .career-value-grid h3 { margin-top: 48px; }
  .career-opportunity-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .career-opportunity-stamp { min-height: 180px; }
}


/* From: /approot/watch/components/SeniCityNewsPage/SeniCityNewsPage.css */
/* Shared news story styles are defined in NewsArticlePage.css. */


/* From: /approot/watch/components/PrivacyPage/PrivacyPage.css */
.legal-page {
  background: var(--color-surface-bright);
}

.legal-header {
  max-width: 720px;
  padding: var(--space-3xl) 0 var(--space-4xl);
  border-bottom: 1px solid var(--color-divider);
}

.legal-header h1 {
  margin-bottom: var(--space-lg);
  font-size: clamp(42px, 6vw, 64px);
  letter-spacing: -1.5px;
}

.legal-lead {
  max-width: 52ch;
  margin-bottom: var(--space-lg);
  color: var(--color-on-surface-variant);
  font-size: 19px;
  line-height: 1.6;
}

.legal-updated {
  margin: 0;
  color: var(--color-on-surface-subtle);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 680px);
  gap: clamp(40px, 8vw, 112px);
  align-items: start;
  padding: var(--space-4xl) 0 var(--space-5xl);
}

.legal-nav {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-xl));
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.legal-nav a {
  padding: 6px 0;
  border-left: 2px solid transparent;
  color: var(--color-on-surface-variant);
  font-size: 13px;
  line-height: 1.4;
}

.legal-nav a:hover {
  padding-left: var(--space-sm);
  border-left-color: var(--color-primary);
  color: var(--color-on-surface);
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  scroll-margin-top: calc(var(--nav-height) + var(--space-xl));
  padding: 0 0 var(--space-3xl);
  margin-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--color-divider);
}

.legal-content section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: var(--space-md);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.legal-content p {
  max-width: 68ch;
  color: var(--color-on-surface-variant);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content a {
  color: var(--color-primary);
  font-weight: 500;
}

.legal-content a:hover {
  color: var(--color-primary-hover);
}

@media (max-width: 768px) {
  .legal-header {
    padding: var(--space-2xl) 0 var(--space-3xl);
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    padding: var(--space-3xl) 0 var(--space-4xl);
  }

  .legal-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 var(--space-lg);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-divider);
  }
}


/* From: /approot/watch/components/Hero/Hero.css */
/* ── Hero (2-Up) ───────────────────────────────────────────── */
.hero {
  padding: 0;
  background: var(--color-surface-bright);
  overflow: hidden;
  position: relative;
  max-width: 100vw;
  min-height: calc(80vh - var(--nav-height));
  display: flex;
  align-items: center;
}

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
  margin-top: calc(var(--nav-height) * -0.5);
}

.hero-text {
  max-width: 600px;
  flex: 1;

}

.hero-text h1 {
  margin-bottom: var(--space-xl);
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.1;
  max-width:500px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--color-on-surface-variant);
  margin-bottom: var(--space-2xl);
  max-width:450px;
  margin-bottom: var(--space-8);
  max-width: 45ch;
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-cta .btn {
  font-size: 16px;
  height: 48px;
  padding: 0 32px;
}

/* ── Hero Media ────────────────────────────────────────────── */
.hero-media {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-logo-anim {
  position: relative;
  width: 600px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-img {
  width: 600px;
  position: relative;
  z-index: 2;
  transition: transform 0.15s ease-out, filter 0.15s ease-out;
  will-change: transform, filter;
}

.hero-logo-img:hover {
  transform: scale(1.05);
}

img.hero-logo-anim
{
  max-width: 750px !important;
}

@media (max-width: 768px) {
  .hero {
    padding: 48px 0 64px;
    min-height: 85vh;
    display: flex;
    align-items: center;
  }

  .hero-grid {
    flex-direction: column;
    text-align: center;
    margin-top: 0;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 48px;
  }

  .hero-media {
    justify-content: center;
    width: 100%;
  }

  .hero-logo-anim {
    width: 450px;
    height: 450px;
  }

  .hero-logo-img {
    width: 450px;
    animation: mobile-3d 6s ease-in-out infinite;
    transition: none;
  }

  .hero-text {
    position: relative;
    z-index: 3;
  }
}

@keyframes mobile-3d {
  0%, 100% { transform: perspective(600px) rotateX(0deg) rotateY(0deg); filter: brightness(1); }
  25% { transform: perspective(600px) rotateX(-8deg) rotateY(12deg); filter: brightness(1.15); }
  50% { transform: perspective(600px) rotateX(5deg) rotateY(-8deg); filter: brightness(0.9); }
  75% { transform: perspective(600px) rotateX(-3deg) rotateY(-12deg); filter: brightness(0.85); }
}


/* ── Google × Apple visual refinement ────────────────────────── */
.hero {
  min-height: calc(74vh - var(--nav-height));
}

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

.hero-text h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -1px;
}

.hero-sub {
  max-width: 48ch;
  color: var(--color-on-surface-variant);
}

.hero-logo-anim {
  width: 520px;
  height: 520px;
}

.hero-logo-img {
  width: 520px;
}

.hero-logo-img:hover {
  transform: none;
}

@media (max-width: 768px) {
  .hero-logo-anim,
  .hero-logo-img {
    width: 360px;
    height: 360px;
  }
}


/* ── Mobile hero reset ───────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 40px 0 56px;
    display: block;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3xl);
    margin-top: 0;
    text-align: center;
  }

  .hero-text {
    width: 100%;
    max-width: 520px;
    margin: 0;
  }

  .hero-text h1 {
    max-width: 15ch;
    margin: 0 auto var(--space-lg);
    font-size: clamp(40px, 11vw, 54px);
    line-height: 1;
    letter-spacing: -.8px;
    text-wrap: balance;
  }

  .hero-sub {
    max-width: 36ch;
    margin: 0 auto var(--space-xl);
    font-size: 17px;
    line-height: 1.5;
    text-wrap: balance;
  }

  .hero-cta {
    justify-content: center;
    gap: var(--space-md);
  }

  .hero-cta .btn {
    min-height: 48px;
  }

  .hero-media {
    width: 100%;
    justify-content: center;
    margin: 0;
  }

  .hero-logo-anim {
    width: min(468px, 124vw);
    height: min(468px, 124vw);
    flex: 0 0 auto;
    margin: 16px 0 -72px;
    animation: mobile-logo-drift 9s ease-in-out infinite;
  }

  .hero-logo-img {
    width: 100%;
    height: auto;
    animation: none;
    pointer-events: none;
  }
}


@keyframes mobile-logo-drift {
  0%, 100% {
    transform: perspective(900px) rotateX(0deg) rotateY(0deg) scale(1);
    filter: brightness(1);
  }

  25% {
    transform: perspective(900px) rotateX(-8deg) rotateY(14deg) scale(1.02);
    filter: brightness(1.08);
  }

  50% {
    transform: perspective(900px) rotateX(5deg) rotateY(-10deg) scale(1);
    filter: brightness(.96);
  }

  75% {
    transform: perspective(900px) rotateX(-4deg) rotateY(-16deg) scale(1.015);
    filter: brightness(.92);
  }
}

/* ── Hero title emphasis ────────────────────────────────────── */
.hero-text h1 {
  font-weight: 600;
  letter-spacing: -1.4px;
}

.hero-title-accent {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: var(--color-primary-light);
  text-decoration-thickness: .14em;
  text-underline-offset: .08em;
  text-shadow: 0 8px 24px rgba(26, 115, 232, .14);
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-weight: 600;
    letter-spacing: -1px;
  }
}

/* ── Hero logo scale ────────────────────────────────────────── */
@media (min-width: 769px) {
  .hero-logo-anim,
  .hero-logo-img {
    width: 600px;
    height: 600px;
  }
}

@media (max-width: 768px) {
  .hero-logo-anim,
  .hero-logo-img {
    width: min(520px, 124vw);
    height: min(520px, 124vw);
  }
}

/* ── Desktop hero logo art direction ───────────────────────── */
@media (min-width: 769px) {
  .hero-logo-anim {
    width: 680px;
    height: 680px;
    transform: translateX(64px);
  }

  .hero-logo-img {
    width: 680px;
    height: 680px;
  }
}

/* ── Desktop hero composition ──────────────────────────────── */
@media (min-width: 769px) {
  .hero-text {
    max-width: 700px;
  }

  .hero-text h1 {
    max-width: 18ch;
  }

  .hero-logo-anim {
    transform: translateX(112px);
  }
}


/* From: /approot/watch/components/AichatPage/AichatPage.css */
.product-page--aichat .product-chat-window {
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-2xl);
  background: var(--color-surface-bright);
  box-shadow: var(--shadow-lg);
}

.product-chat-window { overflow: hidden; }

.chat-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  min-height: 68px;
  padding: 0 var(--space-xl);
  border-bottom: 1px solid var(--color-divider);
}

.chat-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #b7f326;
  color: #126b32;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.chat-header > div:nth-child(2) { display: flex; flex: 1; flex-direction: column; gap: 2px; }
.chat-header strong { font-size: 14px; font-weight: 600; }
.chat-header span { color: var(--color-on-surface-variant); font-size: 11px; }
.chat-status,
.dashboard-live i { flex-shrink: 0; }

.chat-thread {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--color-surface-container-low);
}

.chat-message {
  max-width: 86%;
  padding: var(--space-md) var(--space-lg);
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.55;
}

.chat-message--user {
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  background: var(--color-primary);
  color: var(--color-on-primary);
}

.chat-message--assistant {
  display: flex;
  align-self: flex-start;
  gap: 8px;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--color-outline);
  background: var(--color-surface-bright);
  color: var(--color-on-surface);
}

.chat-mark {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  border-radius: 50%;
  background: #b7f326;
  color: #126b32;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
}

.chat-message strong { color: #126b32; }

.chat-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  margin: var(--space-md);
  padding: 0 var(--space-md) 0 var(--space-lg);
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-lg);
  background: var(--color-surface-bright);
  color: var(--color-on-surface-subtle);
  font-size: 12px;
}

.chat-input b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #126b32;
  color: #b7f326;
  font-size: 16px;
  font-weight: 400;
}

.product-page--aichat .product-section--tinted { background: #f1f8ef; }
.product-architecture--hellochat { border-left-color: #b7dcae; }
.product-solution-logo { width: 34px; height: 34px; margin-top: var(--space-lg); object-fit: contain; object-position: left center; }
.product-page--aichat .product-feature-grid--solutions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
}
.product-page--aichat .product-feature-grid--solutions .product-feature-card { min-height: 260px; }
.product-page--aichat .product-feature-grid--solutions .feature-index { color: #126b32; }

@media (max-width: 900px) {
  .product-page--aichat .product-feature-grid--solutions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .chat-thread { min-height: 330px; padding: var(--space-lg); }
  .chat-message { max-width: 92%; }
  .product-page--aichat .product-feature-grid--solutions { grid-template-columns: 1fr; }
}


/* From: /approot/watch/components/NewsArticlePage/NewsArticlePage.css */
.news-story-page {
  --story-accent: var(--color-primary);
  --story-ink: var(--color-on-surface);
  color: var(--story-ink);
  background: var(--color-surface);
}

.news-story-page--mixql { --story-accent: #1683c2; }
.news-story-page--instanceio { --story-accent: #6857d8; }
.news-story-page--senicity { --story-accent: #d26a3a; }

.story-hero {
  position: relative;
  padding: 32px 0 var(--space-5xl);
  overflow: hidden;
  background: var(--color-surface-bright);
  border-bottom: 1px solid var(--color-divider);
}

.story-hero::after {
  position: absolute;
  right: -80px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid color-mix(in srgb, var(--story-accent) 45%, transparent);
  border-radius: 50%;
  content: '';
}

.story-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-on-surface-variant);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.story-back:hover { color: var(--story-accent); }

.story-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: var(--space-3xl);
  margin-top: 88px;
}

.story-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: var(--story-accent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.story-hero h1 {
  max-width: 980px;
  margin: var(--space-2xl) 0 0;
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: .9;
}

.story-hero h1 em {
  color: var(--story-accent);
  font-style: normal;
}

.story-dek {
  max-width: 650px;
  margin: var(--space-3xl) 0 0;
  color: var(--color-on-surface-variant);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.story-hero-index {
  align-self: end;
  color: var(--story-accent);
  font-family: var(--font-mono);
  font-size: clamp(72px, 11vw, 150px);
  letter-spacing: -.12em;
  line-height: .7;
  text-align: right;
}

.story-body {
  padding: var(--space-5xl) 0;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(140px, .45fr) minmax(0, 1.55fr);
  gap: clamp(40px, 9vw, 140px);
  max-width: 1080px;
  margin: 0 auto;
}

.story-aside {
  position: sticky;
  top: 32px;
  align-self: start;
  padding-top: 6px;
  color: var(--color-on-surface-subtle);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  line-height: 1.7;
  text-transform: uppercase;
}

.story-aside strong {
  display: block;
  margin-bottom: var(--space-lg);
  color: var(--story-accent);
  font-size: 13px;
  font-weight: 500;
}

.story-content {
  max-width: 700px;
}

.story-content > p,
.story-content > ul {
  color: var(--color-on-surface-variant);
  font-size: 17px;
  line-height: 1.78;
}

.story-content .story-lead {
  color: var(--color-on-surface);
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -.025em;
  line-height: 1.35;
}

.story-content h2 {
  margin: var(--space-4xl) 0 var(--space-lg);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: 1;
}

.story-content h3 {
  margin: var(--space-2xl) 0 var(--space-md);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.03em;
}

.story-content p + p { margin-top: var(--space-xl); }

.story-diagram {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: var(--space-3xl) 0;
  background: var(--color-outline);
  border: 1px solid var(--color-outline);
}

.story-diagram span {
  min-height: 116px;
  padding: var(--space-lg);
  background: var(--color-surface-container);
  color: var(--story-accent);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.4;
}

.story-diagram span::after {
  display: block;
  margin-top: 30px;
  color: var(--color-on-surface-subtle);
  content: '→';
}

.story-diagram span:last-child::after { content: '↗'; }

.story-pullquote {
  margin: var(--space-4xl) 0;
  padding: var(--space-xl) 0 var(--space-xl) var(--space-xl);
  border-left: 3px solid var(--story-accent);
  color: var(--color-on-surface);
  font-size: clamp(25px, 4vw, 40px);
  letter-spacing: -.05em;
  line-height: 1.05;
}

.story-content ul {
  margin: var(--space-xl) 0;
  padding-left: var(--space-xl);
}

.story-content li + li { margin-top: var(--space-sm); }

.story-end {
  padding: var(--space-5xl) 0;
  background: var(--color-surface-container);
  border-top: 1px solid var(--color-outline);
}

.story-end-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-2xl);
}

.story-end h2 {
  max-width: 620px;
  margin: var(--space-lg) 0 0;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .95;
}

.story-end .btn { background: var(--story-accent); }
.story-end .btn:hover { filter: brightness(.92); }

@media (max-width: 768px) {
  .story-hero { padding-bottom: var(--space-4xl); }
  .story-hero-grid { grid-template-columns: 1fr; gap: var(--space-2xl); margin-top: var(--space-5xl); }
  .story-hero-index { font-size: 84px; text-align: left; }
  .story-layout { display: block; }
  .story-aside { position: static; margin-bottom: var(--space-3xl); }
  .story-content > p,
  .story-content > ul { font-size: 16px; }
  .story-diagram { grid-template-columns: repeat(2, 1fr); }
  .story-end-inner { display: block; }
  .story-end .btn { margin-top: var(--space-2xl); }
}


/* From: /approot/watch/components/Header/Header.css */
/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: var(--nav-height);
  transition: transform var(--duration-normal) var(--ease-standard),
              box-shadow var(--duration-normal) var(--ease-standard),
              background-color var(--duration-normal) var(--ease-standard);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header.header-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  height: 100%;
}

.header-logo img {
  height: 36px;
  width: auto;
  transition: transform var(--duration-fast) var(--ease-out);
}

.header-logo:hover img {
  transform: scale(1.05);
}

/* ── Nav List ──────────────────────────────────────────────────── */
.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* ── Login Button ──────────────────────────────────────────────── */
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 4px 0 16px;
  background: var(--color-surface);
  color: var(--color-on-surface-subtle);
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 500;
  transition: background-color var(--duration-fast) var(--ease-out);
  min-width: 44px;
}

.btn-login:hover {
  background: var(--color-surface-container);
  cursor: not-allowed;
}

.btn-login:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn-login-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-outline);
  color: var(--color-on-surface-variant);
}

.login-tooltip {
  position: fixed;
  z-index: 9999;
  padding: 6px 12px;
  background: var(--color-on-surface);
  color: var(--color-surface-bright);
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--radius-md);
  white-space: nowrap;
  pointer-events: none;
}

/* ── Nav Link ──────────────────────────────────────────────────── */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: var(--space-sm) var(--space-lg);
  font-size: 15px;
  font-weight: 500;
  color: #000; /* Black for non-hover state */
  border-radius: var(--radius-xl);
  transition: color var(--duration-fast) var(--ease-out),
              background-color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  min-height: 44px;
}

.nav-link a {
  color:#000!important;
}

.nav-link:hover {
  color: var(--color-primary); /* Blue on hover */
  background-color: rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
}

.nav-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ── Chevron ───────────────────────────────────────────────────── */
.nav-chevron {
  transition: transform var(--duration-fast) var(--ease-out);
}

.nav-chevron.is-rotated {
  transform: rotate(180deg);
}

/* ── Mega Dropdown (full-width) ────────────────────────────────── */
.nav-item-mega {
  position: static;
}

.mega-dropdown {
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-surface-bright);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3xl) 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-standard);
  transform: translateY(-8px);
}

.nav-item-mega:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-dropdown-inner {
  display: grid;
  grid-template-columns: 200px repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  align-items: start;
}

/* Products dropdown specific - 2x2 grid layout */
.nav-item-mega:nth-child(3) .mega-dropdown-inner {
  grid-template-columns: 200px repeat(2, minmax(200px, 1fr));
  grid-auto-rows: 1fr;
  gap: var(--space-md);
}

.nav-item-mega:nth-child(3) .mega-dropdown-inner .mega-col {
  grid-row: span 2;
  align-self: stretch;
}

.nav-item-mega:nth-child(3) .mega-card {
  height: 100%;
  min-height: 120px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: var(--space-lg);
  gap: var(--space-sm);
}

.nav-item-mega:nth-child(3) .mega-card-icon-svg {
  width: 28px;
  height: 28px;
  margin-top: 0;
  margin-bottom: var(--space-sm);
}

.nav-item-mega:nth-child(3) .mega-card-text {
  flex: 1;
  width: 100%;
}

.nav-item-mega:nth-child(3) .mega-card-desc {
  font-size: 12px;
  line-height: 1.4;
}

/* ── Mega Column (intro text) ──────────────────────────────────── */
.mega-col {
  padding-right: var(--space-xl);
  border-right: 1px solid var(--color-outline);
}

.mega-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-on-surface-variant);
  margin-bottom: var(--space-sm);
}

.mega-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-on-surface-variant);
  max-width: none;
}

/* ── Mega Card ─────────────────────────────────────────────────── */
.mega-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  transition: all var(--duration-fast) var(--ease-standard);
  border: 1px solid var(--color-outline);
  background: var(--color-surface-bright);
}

.mega-card:hover {
  background: var(--color-surface-bright); /* Keep original background, no grey */
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-primary-light); /* Light blue border */
}

.mega-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: var(--space-xs);
}

.mega-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  object-fit: contain;
  flex-shrink: 0;
}

.mega-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mega-card-icon-svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}

.mega-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-on-surface);
}

.mega-card-desc {
  font-size: 13px;
  color: var(--color-on-surface-variant);
  line-height: 1.4;
}

.mega-card-arrow {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--color-on-surface-variant);
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.mega-card:hover .mega-card-arrow {
  opacity: 1;
}

/* ── Mobile Toggle ─────────────────────────────────────────────── */
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-on-surface-subtle);
}

.mobile-toggle:hover {
  background-color: var(--color-surface);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-on-surface);
  border-radius: 1px;
  transition: transform var(--duration-normal) var(--ease-standard),
              opacity var(--duration-fast) var(--ease-out);
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-2xl);
    transform: translateX(100%);
    transition: transform var(--duration-normal) var(--ease-standard);
    z-index: 99;
    overflow-y: auto;
    height: calc(100vh - var(--nav-height));
  }

  .header-nav.is-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
  }

  .nav-list li a {
    color:#000!important;
  }

  .nav-link {
    font-size: 18px;
    padding: var(--space-lg) var(--space-xl);
    margin: 0;
  }

  .mega-dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    padding: var(--space-md) 0;
  }

  .mega-dropdown-inner {
    grid-template-columns: 1fr;
  }

  .mega-col {
    border-right: none;
    border-bottom: 1px solid var(--color-outline);
    padding-right: 0;
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-sm);
  }

  .nav-item-mega {
    position: relative;
  }

  /* Mobile dropdown improvements */
  .nav-dropdown-trigger {
    width: 100%;
    text-align: left;
    justify-content: space-between;
  }

  /* Alpine.js will handle the show/hide with x-show */
  /* Just ensure dropdowns are visible when open on mobile */

  /* Improve mobile card layout */
  .mega-card {
    flex-direction: row;
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
  }

  .mega-card:last-child {
    margin-bottom: 0;
  }

  .mega-card-icon,
  .mega-card-icon-svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .mega-card-text {
    flex: 1;
  }
}

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

/* ── Aviajo development status ──────────────────────────────── */
.mega-card--disabled {
  cursor: default;
}

.mega-card--disabled:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--color-outline);
}

.mega-card--disabled .development-label {
  align-self: flex-start;
}

.development-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  padding: 1px 7px;
  border: 1px solid #f1df9a;
  border-radius: var(--radius-full);
  background: #fff8e1;
  color: #6b5a1a;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.15px;
  white-space: nowrap;
}

.development-label::before {
  content: '';
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: #d69e00;
}


.mega-card-title-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}


/* ── Google × Apple visual refinement ────────────────────────── */
.site-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: var(--color-divider);
}

.site-header.header-scrolled {
  background: var(--color-surface-bright);
  box-shadow: var(--shadow-xs);
}

.nav-link {
  padding: var(--space-sm) var(--space-md);
  color: var(--color-on-surface-variant);
  border-radius: var(--radius-md);
  transition: color var(--duration-fast) var(--ease-standard),
              background-color var(--duration-fast) var(--ease-standard);
}

.nav-link:hover {
  color: var(--color-on-surface);
  background-color: var(--color-surface-container);
  transform: none;
}

.mega-dropdown {
  box-shadow: var(--shadow-md);
  padding: var(--space-2xl) 0;
}

.mega-card {
  border-radius: var(--radius-lg);
  transition: background-color var(--duration-fast) var(--ease-standard),
              border-color var(--duration-fast) var(--ease-standard),
              box-shadow var(--duration-fast) var(--ease-standard);
}

.mega-card:hover {
  background: var(--color-surface-container-low);
  border-color: var(--color-outline);
  box-shadow: var(--shadow-xs);
  transform: none;
}

.mega-card-arrow {
  opacity: 0.45;
}

.mega-card:hover .mega-card-arrow {
  opacity: 1;
}


/* ── Reliable mobile navigation ──────────────────────────────── */
@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    z-index: 1000;
  }

  .header-actions,
  .mobile-toggle {
    position: relative;
    z-index: 1002;
  }

  .mobile-toggle {
    color: var(--color-on-surface);
    touch-action: manipulation;
  }

  .header-nav {
    z-index: 1001;
    display: block;
    height: calc(100dvh - var(--nav-height));
    min-height: calc(100vh - var(--nav-height));
    padding: var(--space-xl) var(--space-xl) calc(var(--space-3xl) + env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--color-surface-bright);
    opacity: 1;
    visibility: visible;
    transform: translateX(100%);
    -webkit-overflow-scrolling: touch;
  }

  .header-nav.is-open {
    transform: translateX(0);
  }

  .mega-dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    background: transparent;
  }

  .mega-dropdown-inner {
    width: 100%;
  }

  .nav-item-mega {
    border-bottom: 1px solid var(--color-divider);
  }

  .nav-item-mega .nav-dropdown-trigger {
    min-height: 52px;
  }

  .nav-list > li > .nav-link,
  .nav-list > li > .nav-dropdown-trigger {
    min-height: 52px;
  }
}


/* ── Products mobile dropdown matches Companies ─────────────── */
@media (max-width: 768px) {
  .nav-item-mega:nth-child(3) .mega-dropdown-inner {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: var(--space-lg);
  }

  .nav-item-mega:nth-child(3) .mega-dropdown-inner .mega-col {
    grid-row: auto;
    align-self: stretch;
    padding-right: 0;
    padding-bottom: var(--space-md);
    border-right: none;
    border-bottom: 1px solid var(--color-outline);
    margin-bottom: var(--space-sm);
  }

  .nav-item-mega:nth-child(3) .mega-card {
    height: auto;
    min-height: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: var(--space-md);
    gap: var(--space-md);
  }

  .nav-item-mega:nth-child(3) .mega-card-icon-svg {
    width: 32px;
    height: 32px;
    margin: 0;
  }

  .nav-item-mega:nth-child(3) .mega-card-text {
    width: auto;
    flex: 1;
  }

  .nav-item-mega:nth-child(3) .mega-card-desc {
    font-size: 13px;
    line-height: 1.4;
  }
}

/* ── Dropdown triggers match the main navigation links ──────── */
.header-nav .nav-dropdown-trigger {
  appearance: none;
  -webkit-appearance: none;
  color: #000;
}

.header-nav .nav-dropdown-trigger:hover,
.header-nav .nav-dropdown-trigger:focus-visible {
  color: var(--color-primary);
}


/* From: /approot/watch/components/Companies/Companies.css */
/* ── Card Section (3-up vertical cards) ────────────────────── */
.card-section {
  padding: 64px 0 80px;
}

.card-list-3up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

/* ── Vertical Card ─────────────────────────────────────────── */
.vcard {
  display: flex;
  flex-direction: column;
  background: var(--color-surface-bright);
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-out);
}

.vcard:hover {
  box-shadow: 0 4px 16px rgba(60, 64, 67, 0.12);
}

.vcard:hover .vcard-asset-fill {
  transform: scale(1.03);
}

.vcard:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.vcard-asset {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.vcard-asset-fill {
  width: 100%;
  height: 100%;
  transition: transform var(--duration-slow) var(--ease-out);
}

.vcard-asset--de {
  background: linear-gradient(135deg, #e8f0fe, #d2e3fc);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vcard-logo {
  width: 160px;
  height: auto;
}

.vcard-asset--ph {
  background: linear-gradient(135deg, #fff9e6, #fff3cc);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vcard-asset--av {
  background: linear-gradient(135deg, #f0f7ff, #e6f2ff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vcard-content {
  padding: var(--space-xl);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  flex: 1;
}

.vcard-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-on-surface);
  max-width: none;
}

.vcard-arrow {
  flex-shrink: 0;
  color: var(--color-on-surface-variant);
  margin-top: 2px;
}

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

@media (max-width: 600px) {
  .card-list-3up {
    grid-template-columns: 1fr;
  }
}

/* ── Aviajo development status ──────────────────────────────── */
.vcard--disabled {
  cursor: default;
}

.vcard--disabled:hover {
  box-shadow: none;
}

.vcard--disabled:hover .vcard-asset-fill {
  transform: none;
}

.vcard-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
}

.development-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  padding: 1px 7px;
  border: 1px solid #f1df9a;
  border-radius: var(--radius-full);
  background: #fff8e1;
  color: #6b5a1a;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.15px;
  white-space: nowrap;
}

.development-label::before {
  content: '';
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: #d69e00;
}


.vcard-asset--av {
  position: relative;
}

.development-label--asset {
  position: absolute;
  left: var(--space-md);
  bottom: var(--space-md);
}


/* ── Google × Apple visual refinement ────────────────────────── */
.vcard {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: border-color var(--duration-fast) var(--ease-standard),
              box-shadow var(--duration-fast) var(--ease-standard);
}

.vcard:hover {
  border-color: var(--color-outline);
  box-shadow: var(--shadow-card-hover);
}

.vcard:hover .vcard-asset-fill {
  transform: none;
}

.vcard-asset--de {
  background: #eaf2fb;
}

.vcard-asset--ph {
  background: #fff9e8;
}

.vcard-asset--av {
  background: #edf7fc;
}

.vcard-content {
  padding: var(--space-xl);
}


/* ── Company card row alignment ──────────────────────────────── */
.card-list-3up > li {
  display: flex;
}

.card-list-3up > li > .vcard {
  width: 100%;
  height: 100%;
}


/* From: /approot/watch/components/Base/Base.css */
/* ═══════════════════════════════════════════════════════════════
   Base.css - Senicity Design System (Google-inspired)
   Clean, subtle, professional UI following Material Design principles
   ═══════════════════════════════════════════════════════════════ */

/* ── Primitive Tokens ──────────────────────────────────────────── */
:root {
  /* Google-inspired color palette - subtle, professional */
  --google-blue-600: #1a73e8;    /* Primary Google blue */
  --google-blue-700: #0d62d9;    /* Hover state */
  --google-blue-400: #60a5fa;    /* Light blue for accents */
  --senicity-blue-light: #23aae2;
  --google-grey-50: #f8f9fa;     /* Light background */
  --google-grey-100: #f1f3f4;    /* Subtle surface */
  --google-grey-200: #e8eaed;    /* Borders, dividers */
  --google-grey-300: #dadce0;    /* Outline */
  --google-grey-400: #9aa0a6;    /* Secondary text */
  --google-grey-500: #80868b;    /* Tertiary text */
  --google-grey-600: #5f6368;    /* Subtle text */
  --google-grey-700: #3c4043;    /* Body text */
  --google-grey-800: #202124;    /* Primary text */
  --google-green-600: #34a853;   /* Success/analytics */
  --google-yellow-500: #fbbc04;  /* Warning/attention */
  --google-red-600: #ea4335;     /* Error */
  --white: #ffffff;
}

/* ── Semantic Tokens ───────────────────────────────────────────── */
:root {
  /* Color system */
  --color-primary: var(--google-blue-600);
  --color-primary-hover: var(--google-blue-700);
  --color-primary-light: var(--google-blue-400);  /* Light blue accent */
  --color-on-primary: var(--white);

  --color-secondary: #5f6368;      /* Neutral secondary */
  --color-secondary-hover: #3c4043;
  --color-on-secondary: var(--white);

  --color-surface: var(--white);
  --color-surface-bright: var(--white);
  --color-surface-container: var(--google-grey-50);
  --color-surface-container-low: var(--google-grey-100);

  --color-on-surface: var(--google-grey-800);       /* Primary text */
  --color-on-surface-variant: var(--google-grey-600);  /* Secondary text */
  --color-on-surface-subtle: var(--google-grey-400);   /* Tertiary text */

  --color-outline: var(--google-grey-200);          /* Borders, dividers */
  --color-divider: var(--google-grey-200);          /* Divider lines */

  --color-success: var(--google-green-600);
  --color-warning: var(--google-yellow-500);
  --color-error: var(--google-red-600);

  --color-icon: var(--google-grey-700);
  --color-icon-muted: var(--google-grey-500);

  /* Spacing (8px grid) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 48px;
  --space-4xl: 64px;
  --space-5xl: 96px;

  /* Spacing utilities (for margin/padding) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Typography */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 28px;
  --text-4xl: 32px;
  --text-5xl: 44px;  /* For h1 */
  --text-6xl: 52px;
  --text-7xl: 60px;
  --text-8xl: 72px;

  /* Line heights */
  --leading-none: 1;
  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.6;
  --leading-loose: 2;

  /* Radius scale (subtle) */
  --radius-none: 0;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-full: 9999px;

  /* Elevation (Google Material Design) */
  --shadow-xs: 0 1px 2px rgba(60, 64, 67, 0.06), 0 1px 3px rgba(60, 64, 67, 0.1);
  --shadow-sm: 0 1px 3px rgba(60, 64, 67, 0.12), 0 1px 2px rgba(60, 64, 67, 0.24);
  --shadow-md: 0 3px 6px rgba(60, 64, 67, 0.15), 0 2px 4px rgba(60, 64, 67, 0.12);
  --shadow-lg: 0 10px 20px rgba(60, 64, 67, 0.15), 0 3px 6px rgba(60, 64, 67, 0.1);
  --shadow-xl: 0 20px 40px rgba(60, 64, 67, 0.15), 0 6px 12px rgba(60, 64, 67, 0.1);

  /* Card-specific shadows */
  --shadow-card: 0 1px 2px rgba(60, 64, 67, 0.1), 0 1px 3px rgba(60, 64, 67, 0.06);
  --shadow-card-hover: 0 2px 6px rgba(60, 64, 67, 0.15), 0 1px 3px rgba(60, 64, 67, 0.1);

  /* Motion (Material Design easing) */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;
  --ease-standard: cubic-bezier(0.4, 0.0, 0.2, 1);
  --ease-decelerate: cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-accelerate: cubic-bezier(0.4, 0.0, 1, 1);

  /* Typography (Clean Google-inspired pairing) */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-mono: 'SF Mono', 'Roboto Mono', 'Courier New', monospace;
  --font-display: "Outfit", var(--font-sans);
  --font-body: var(--font-sans);

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --nav-height: 64px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-on-surface);
  background-color: var(--color-surface-bright);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--nav-height);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
}

/* ── Typography ────────────────────────────────────────────────── */
/* Clean, readable Google-inspired typography scale */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500; /* Google uses medium weight for headings */
  line-height: var(--leading-tight);
  color: var(--color-on-surface);
  margin-top: 0;
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--text-5xl);
  font-weight: 400; /* Google often uses regular weight for large headlines */
  letter-spacing: -0.25px;
  line-height: var(--leading-tight);
  max-width: 28ch;
}

h2 {
  font-size: var(--text-3xl);
  font-weight: 400;
  letter-spacing: -0.1px;
  line-height: var(--leading-snug);
  max-width: 36ch;
}

h3 {
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: 0;
  line-height: var(--leading-normal);
}

h4 {
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: 0.15px;
}

h5 {
  font-size: var(--text-base);
  font-weight: 500;
  letter-spacing: 0.1px;
  text-transform: uppercase;
  color: var(--color-on-surface-subtle);
}

p {
  max-width: 65ch;
  color: var(--color-on-surface);
  line-height: var(--leading-relaxed);
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
}

p:last-child {
  margin-bottom: 0;
}

/* Text utilities */
.text-lg {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-on-surface);
}

.text-base {
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

.text-sm {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--color-on-surface-variant);
}

.text-xs {
  font-size: var(--text-xs);
  line-height: var(--leading-tight);
  letter-spacing: 0.3px;
  color: var(--color-on-surface-subtle);
  text-transform: uppercase;
}

/* Link styles */
a:not(.btn) {
  color: #000;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
  position: relative;
}

a:not(.btn):hover {
  color: var(--color-primary-hover);
}

a:not(.btn):focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: var(--space-1);
  border-radius: var(--radius-xs);
}

/* ── Buttons ───────────────────────────────────────────────────── */
/* Google Material Design button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: 36px;
  padding: 0 var(--space-6);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.25px;
  border-radius: var(--radius-lg);
  transition: all var(--duration-fast) var(--ease-standard);
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  min-width: 64px; /* Material Design minimum touch target */
}

/* Button sizes */
.btn-lg {
  height: 48px;
  padding: 0 var(--space-8);
  font-size: var(--text-base);
}

.btn-sm {
  height: 32px;
  padding: 0 var(--space-4);
  font-size: var(--text-xs);
}

/* Button variants */
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  box-shadow: var(--shadow-xs);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-xs);
}

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

.btn-secondary:hover {
  background-color: var(--color-surface-container);
  border-color: var(--color-primary);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-primary);
}

.btn-ghost:hover {
  background-color: var(--color-surface-container);
}

/* Focus states (Material Design) */
.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: var(--space-1);
}

/* Disabled state */
.btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}

/* Button groups */
.btn-group {
  display: inline-flex;
  gap: var(--space-1);
}

.btn-group .btn {
  border-radius: 0;
}

.btn-group .btn:first-child {
  border-top-left-radius: var(--radius-lg);
  border-bottom-left-radius: var(--radius-lg);
}

.btn-group .btn:last-child {
  border-top-right-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

/* ── Layout Utilities ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-5xl) 0;
}

.section-lg {
  padding: 120px 0;
}

/* ── Focus & Accessibility ─────────────────────────────────────── */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sr-only:focus,
.sr-only:focus-visible {
  position: absolute !important;
  width: auto !important;
  height: auto !important;
  padding: var(--space-sm) var(--space-md) !important;
  margin: var(--space-sm) !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  background-color: var(--color-surface-bright) !important;
  color: var(--color-primary) !important;
  font-weight: 500 !important;
  z-index: 9999 !important;
  border: 2px solid var(--color-primary) !important;
  border-radius: var(--radius-sm) !important;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ── Motion ────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}


/* ── Google × Apple visual refinement ────────────────────────── */
:root {
  --color-primary: #1576bb;
  --color-primary-hover: #0e5f9a;
  --color-primary-light: #d8f2fc;
  --color-surface: #f8f9fa;
  --color-surface-bright: #ffffff;
  --color-surface-container: #f2f5fa;
  --color-surface-container-low: #f8f9fa;
  --color-on-surface: #202124;
  --color-on-surface-variant: #5f6368;
  --color-on-surface-subtle: #80868b;
  --color-outline: #dadce0;
  --color-divider: #e8eaed;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --radius-2xl: 18px;
  --shadow-xs: 0 1px 2px rgba(60, 64, 67, 0.08);
  --shadow-sm: 0 2px 6px rgba(60, 64, 67, 0.10);
  --shadow-md: 0 6px 18px rgba(60, 64, 67, 0.10);
  --shadow-lg: 0 12px 28px rgba(60, 64, 67, 0.12);
  --shadow-card: 0 1px 2px rgba(60, 64, 67, 0.08);
  --shadow-card-hover: 0 6px 18px rgba(60, 64, 67, 0.10);
}

body {
  background-color: var(--color-surface);
}

.btn {
  height: 44px;
  border-radius: var(--radius-full);
  box-shadow: none;
  transition: background-color var(--duration-fast) var(--ease-standard),
              color var(--duration-fast) var(--ease-standard),
              border-color var(--duration-fast) var(--ease-standard),
              box-shadow var(--duration-fast) var(--ease-standard);
}

.btn:hover {
  transform: none;
}

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

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-xs);
}

.btn-sm {
  height: 36px;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}


/* From: /approot/watch/components/AnalyticsPage/AnalyticsPage.css */
.product-page--analytics .product-dashboard,
.product-page--analytics .analytics-report-card {
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-2xl);
  background: var(--color-surface-bright);
  box-shadow: var(--shadow-lg);
}

.product-dashboard {
  overflow: hidden;
}

.dashboard-header,
.report-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 var(--space-xl);
  border-bottom: 1px solid var(--color-divider);
  color: var(--color-on-surface-variant);
  font-size: 12px;
}

.dashboard-header > span:first-child,
.report-card-header > span:first-child {
  color: var(--color-on-surface);
  font-size: 14px;
  font-weight: 600;
}

.dashboard-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dashboard-live i,
.chat-status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
}

.dashboard-chart {
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
}

.dashboard-chart-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.dashboard-chart-label strong { font-size: 18px; font-weight: 600; }
.dashboard-chart-label span { color: var(--color-on-surface-variant); font-size: 12px; }

.dashboard-bars {
  display: flex;
  height: 180px;
  align-items: end;
  gap: 8px;
  padding: 0 4px;
  border-bottom: 1px solid var(--color-divider);
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 44px, var(--color-divider) 45px);
}

.dashboard-bars i {
  flex: 1;
  min-width: 8px;
  border-radius: 4px 4px 0 0;
  background: var(--color-primary);
  opacity: 0.82;
}

.dashboard-bars i:nth-child(3n) { opacity: 0.52; }
.dashboard-axis { display: flex; justify-content: space-between; padding-top: 8px; color: var(--color-on-surface-subtle); font-family: var(--font-mono); font-size: 10px; }

.dashboard-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-divider);
}

.dashboard-summary div { display: flex; flex-direction: column; gap: 4px; padding: var(--space-lg) var(--space-xl); border-right: 1px solid var(--color-divider); }
.dashboard-summary div:last-child { border-right: 0; }
.dashboard-summary span { color: var(--color-on-surface-variant); font-size: 11px; }
.dashboard-summary strong { font-size: 20px; font-weight: 600; letter-spacing: -0.03em; }

.analytics-report-card { overflow: hidden; }
.report-card-header span:last-child { font-size: 11px; }
.report-row { display: grid; grid-template-columns: 1.5fr 0.6fr 0.7fr; gap: var(--space-md); align-items: center; padding: var(--space-lg) var(--space-xl); border-bottom: 1px solid var(--color-divider); font-size: 13px; }
.report-row:last-child { border-bottom: 0; }
.report-row strong { font-weight: 500; }
.report-row > span { color: var(--color-on-surface-variant); }
.report-row em { color: var(--color-on-surface-variant); font-size: 12px; font-style: normal; text-align: right; }
.report-row .report-positive { color: var(--color-success); }
.report-row .report-neutral { color: var(--color-primary); }
.report-row--heading { padding-top: var(--space-md); padding-bottom: var(--space-md); color: var(--color-on-surface-subtle); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; }
.report-row--heading > span:last-child { text-align: right; }

@media (max-width: 600px) {
  .dashboard-summary div { padding: var(--space-md); }
  .report-row { grid-template-columns: 1.2fr 0.6fr 0.7fr; padding-left: var(--space-md); padding-right: var(--space-md); }
}


/* From: /approot/watch/components/InstanceioPage/InstanceioPage.css */
/* ── Product pages: shared system ───────────────────────────── */
.product-page {
  background: var(--color-surface);
  color: var(--color-on-surface);
}

.product-hero {
  padding: 88px 0 80px;
  background: var(--color-surface-bright);
  border-bottom: 1px solid var(--color-divider);
}

.product-hero-grid,
.product-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(40px, 7vw, 104px);
}

.product-hero-copy {
  max-width: 680px;
}

.product-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-lg);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.product-kicker::before {
  content: '';
  width: 20px;
  height: 2px;
  background: currentColor;
}

.product-hero h1 {
  max-width: 11ch;
  margin-bottom: var(--space-xl);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -1.8px;
  line-height: 1.02;
}

.product-lead {
  max-width: 58ch;
  margin-bottom: var(--space-2xl);
  color: var(--color-on-surface-variant);
  font-size: 19px;
  line-height: 1.6;
}

.product-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.product-actions .btn-secondary {
  border: 1px solid var(--color-outline);
  background: transparent;
  color: var(--color-on-surface);
}

.product-actions .btn-secondary:hover {
  border-color: var(--color-on-surface-variant);
  background: var(--color-surface-container);
}

.product-code-window,
.product-terminal,
.code-card {
  overflow: hidden;
  border: 1px solid #3c4043;
  border-radius: var(--radius-2xl);
  background: #202124;
  box-shadow: var(--shadow-lg);
  color: #f8f9fa;
}

.code-window-header,
.code-card-header,
.terminal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 var(--space-lg);
  border-bottom: 1px solid #3c4043;
  color: #9aa0a6;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.terminal-bar {
  justify-content: flex-start;
  gap: 6px;
}

.terminal-bar strong {
  margin-left: 8px;
  color: #dadce0;
  font-weight: 500;
}

.terminal-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5f6368;
}

.terminal-bar span:first-child { background: #ea4335; }
.terminal-bar span:nth-child(2) { background: #fbbc04; }
.terminal-bar span:nth-child(3) { background: #34a853; }

.product-code-window pre,
.code-card pre {
  margin: 0;
  padding: var(--space-xl);
  overflow-x: auto;
  color: #e8eaed;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.75;
  tab-size: 2;
}

.terminal-body {
  min-height: 290px;
  padding: var(--space-xl);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
}

.terminal-body p {
  margin: 0;
  color: #e8eaed;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.terminal-muted { color: #9aa0a6 !important; }
.terminal-prompt { color: #8ab4f8; }
.terminal-success { color: #81c995 !important; }

.product-metrics {
  background: var(--color-surface-bright);
  border-bottom: 1px solid var(--color-divider);
}

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

.product-metrics-grid > div {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: var(--space-lg) var(--space-xl);
  border-right: 1px solid var(--color-divider);
}

.product-metrics-grid > div:first-child { border-left: 1px solid var(--color-divider); }
.product-metrics-grid strong { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.product-metrics-grid span { color: var(--color-on-surface-variant); font-size: 12px; }

.product-section-heading {
  max-width: 650px;
  margin-bottom: var(--space-3xl);
}

.product-section-heading h2,
.product-split-copy h2,
.product-cta h2 {
  max-width: 18ch;
  margin-bottom: var(--space-lg);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.08;
}

.product-section-heading p,
.product-split-copy > p,
.product-cta p {
  max-width: 58ch;
  color: var(--color-on-surface-variant);
  font-size: 17px;
  line-height: 1.65;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.product-feature-card {
  min-height: 220px;
  padding: var(--space-xl);
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-xl);
  background: var(--color-surface-bright);
  transition: border-color var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard);
}

.product-feature-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-xs);
}

.feature-index {
  display: block;
  margin-bottom: var(--space-2xl);
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: 12px;
}

.product-feature-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 18px;
  font-weight: 600;
}

.product-feature-card p {
  color: var(--color-on-surface-variant);
  font-size: 14px;
  line-height: 1.6;
}

.product-section--tinted {
  background: var(--color-surface-container);
}

.product-split-copy {
  max-width: 540px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-xl);
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 600;
}

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

.product-split--reverse .product-split-copy { order: 2; }
.product-split--reverse .product-architecture { order: 1; }

.product-architecture {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--color-outline);
}

.architecture-step {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--color-divider);
}

.architecture-step::before {
  position: absolute;
  top: 23px;
  left: -5px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  background: var(--color-surface-bright);
  content: '';
}

.architecture-step span {
  grid-row: span 2;
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: 12px;
}

.architecture-step strong { font-size: 16px; font-weight: 600; }
.architecture-step small { color: var(--color-on-surface-variant); font-size: 13px; }

.protocol-note {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  border-left: 2px solid var(--color-primary);
  background: var(--color-surface-container);
}

.protocol-note strong { font-size: 14px; font-weight: 600; }
.protocol-note span { color: var(--color-on-surface-variant); font-size: 13px; }

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: calc(var(--space-lg) * -1) 0 var(--space-2xl);
}

.product-tags span {
  padding: 6px 10px;
  border: 1px solid var(--color-outline);
  border-radius: var(--radius-sm);
  background: var(--color-surface-container);
  color: var(--color-on-surface-variant);
  font-family: var(--font-mono);
  font-size: 11px;
}

.product-cta {
  background: #202124;
  color: #ffffff;
}

.product-cta-inner { max-width: 760px; }
.product-cta .product-kicker { color: #8ab4f8; }
.product-cta h2 { color: #ffffff; }
.product-cta p { color: #bdc1c6; }
.product-cta .btn-secondary { border-color: #5f6368; color: #ffffff; }
.product-cta .btn-secondary:hover { background: #3c4043; border-color: #9aa0a6; }

@media (max-width: 900px) {
  .product-hero-grid,
  .product-split { grid-template-columns: 1fr; gap: var(--space-3xl); }
  .product-split--reverse .product-split-copy,
  .product-split--reverse .product-architecture { order: initial; }
  .product-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .product-hero { padding: var(--space-3xl) 0 var(--space-2xl); }
  .product-hero h1 { letter-spacing: -1px; }
  .product-lead { font-size: 17px; }
  .product-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .product-metrics-grid > div:nth-child(2) { border-right: 0; }
  .product-metrics-grid > div:nth-child(3) { border-left: 1px solid var(--color-divider); }
  .product-feature-grid { grid-template-columns: 1fr; }
  .product-feature-card { min-height: 0; }
}


