/* ============================================================
   airatoinjp.css — Airato Site CSS (inlined component CSS)
   Brand: Airato | Accent: #2563eb | Font: Manrope + JetBrains Mono
   ============================================================ */

/* === CSS Variables === */
:root {
  --accent: #2563eb;
  --accent-rgb: 37, 99, 235;
  --accent-on-dark: #60a5fa;
  --secondary: #0891b2;
  --bg-dark: #0f172a;
  --bg-card: #1e293b;
  --text-primary: #0f172a;
  --text-body: #1e293b;
  --text-muted: #64748b;
  --text-muted-on-card: #475569;
  --font-sans: 'Manrope', system-ui, sans-serif;
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* === Base reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: #ffffff;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  line-height: 1.2;
}
a { color: var(--accent); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Nav component (A-simple) === */
.c-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.c-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}

.c-nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  color: inherit;
}
.c-nav__logo-img { height: 28px; width: auto; display: none; }

.c-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-nav__links a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s;
}
.c-nav__cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 6px;
  font-weight: 600;
}
.c-nav__cta:hover { opacity: 0.9; color: #fff !important; }

.c-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.c-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  transition: 0.3s;
  background: #0f172a;
}

/* Nav theme: light */
.c-nav--sticky[data-nav-theme="light"],
.c-nav[data-nav-theme="light"] {
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.c-nav[data-nav-theme="light"] .c-nav__logo { color: #0f172a; }
.c-nav[data-nav-theme="light"] .c-nav__logo-img--light { display: inline; }
.c-nav[data-nav-theme="light"] .c-nav__logo-img--dark  { display: none; }
.c-nav[data-nav-theme="light"] .c-nav__links a { color: #334155; }
.c-nav[data-nav-theme="light"] .c-nav__links a:hover,
.c-nav[data-nav-theme="light"] .c-nav__links a.active { color: #0f172a; }
.c-nav[data-nav-theme="light"] .c-nav__toggle span { background: #0f172a; }

/* Nav theme: dark */
.c-nav[data-nav-theme="dark"] { background: transparent; }
.c-nav[data-nav-theme="dark"].scrolled {
  background: rgba(15,23,42,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.c-nav[data-nav-theme="dark"] .c-nav__logo { color: #f1f5f9; }
.c-nav[data-nav-theme="dark"] .c-nav__logo-img--light { display: none; }
.c-nav[data-nav-theme="dark"] .c-nav__logo-img--dark  { display: inline; }
.c-nav[data-nav-theme="dark"] .c-nav__links a { color: #94a3b8; }
.c-nav[data-nav-theme="dark"] .c-nav__links a:hover,
.c-nav[data-nav-theme="dark"] .c-nav__links a.active { color: #f1f5f9; }
.c-nav[data-nav-theme="dark"] .c-nav__toggle span { background: #f1f5f9; }

/* Responsive nav */
@media (max-width: 768px) {
  .c-nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 16px;
    border-top: 1px solid rgba(15,23,42,0.08);
  }
  .c-nav[data-nav-theme="dark"] .c-nav__links { background: #0f172a; }
  .c-nav__links.open { display: flex; }
  .c-nav__toggle { display: block; }
}

/* === Hero component (C-split) === */
.c-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f172a;
  color: #f1f5f9;
}
.c-hero--split {
  min-height: 80vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
}
.c-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  width: 100%;
}
.c-hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-on-dark);
  margin-bottom: 20px;
}
.c-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 720px;
}
.c-hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 36px;
  max-width: 600px;
}
.c-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.c-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--font-sans);
}
.c-btn--primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}
.c-btn--primary:hover { opacity: 0.9; color: #ffffff; }
.c-btn--outline {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(226,232,240,0.4);
}
.c-btn--outline:hover { border-color: #e2e8f0; color: #ffffff; }
.c-btn--sm { padding: 8px 16px; font-size: 14px; }

/* Compact page hero for inner pages */
.c-page-hero {
  background: #f8fafc;
  padding: 80px 0 48px;
  border-bottom: 1px solid #e2e8f0;
}
.c-page-hero .c-page-hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.c-page-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.c-page-hero__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}
.c-page-hero__lede {
  font-size: 18px;
  color: #475569;
  max-width: 640px;
}

/* === Stats component (B-cards) === */
.c-stats { padding: 48px 0; }
.c-stats--cards { background: #0f172a; padding: 64px 0; }
.c-stats__wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.c-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.c-stats__card {
  background: #1e293b;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
}
.c-stats__number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-on-dark);
  line-height: 1.2;
}
.c-stats__label {
  display: block;
  font-size: 14px;
  color: #94a3b8;
  margin-top: 8px;
  line-height: 1.4;
  font-weight: 600;
}
.c-stats__desc {
  font-size: 13px;
  color: #64748b;
  margin-top: 8px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .c-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .c-stats__number { font-size: 28px; }
}

/* === Features component (C-alternating) === */
.c-features { padding: 80px 0; }
.c-features--alternating { background: #ffffff; }
.c-section-header { text-align: center; margin-bottom: 56px; }
.c-section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.c-section-title {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}
.c-section-desc {
  font-size: 17px;
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.c-features__rows { display: flex; flex-direction: column; gap: 64px; margin-top: 16px; }
.c-features__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.c-features__row--reversed .c-features__text-col { order: 2; }
.c-features__row--reversed .c-features__img-col  { order: 1; }
.c-features__img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  background: #f1f5f9;
  min-height: 240px;
  object-fit: cover;
}
.c-features__name { font-size: 22px; font-weight: 700; margin-bottom: 16px; color: #0f172a; }
.c-features__text { font-size: 16px; line-height: 1.7; color: #475569; margin-bottom: 14px; }
.c-features__icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(37,99,235,0.1);
  border-radius: 8px;
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 16px;
}

/* Grid orphan safeguard */
.c-features__row:has(> *:only-child) {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .c-features__row { grid-template-columns: 1fr; gap: 24px; }
  .c-features__row--reversed .c-features__text-col,
  .c-features__row--reversed .c-features__img-col { order: unset; }
  .c-section-title { font-size: 28px; }
}

/* === Process component (A-numbered) === */
.c-process { padding: 80px 0; background: #f8fafc; }
.c-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.c-process__step {
  position: relative;
  padding: 32px 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.c-process__num {
  display: inline-block;
  font-size: 42px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.c-process__name { font-size: 18px; font-weight: 700; color: #0f172a; margin-bottom: 12px; }
.c-process__text { font-size: 15px; color: #475569; line-height: 1.7; }
@media (max-width: 992px) {
  .c-process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .c-process__steps { grid-template-columns: 1fr; }
}

/* === Team component (A-grid) === */
.c-team { padding: 80px 0; background: #ffffff; }
.c-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.c-team__card { text-align: center; }
.c-team__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 16px;
  border: 3px solid #e2e8f0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: #f1f5f9;
}
.c-team__name { font-size: 17px; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.c-team__role { font-size: 14px; color: #64748b; margin-bottom: 8px; }
.c-team__bio { font-size: 14px; color: #475569; line-height: 1.6; max-width: 280px; margin: 0 auto; }

/* === Testimonials (B-stats) — used as inline trust signal === */
.c-testimonials { padding: 64px 0; background: #f8fafc; }
.c-testimonials__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.c-testimonials__stat-value { font-size: 40px; font-weight: 800; color: var(--accent); }
.c-testimonials__stat-label { font-size: 15px; color: #475569; margin-top: 8px; }

/* === CTA component (A-banner) === */
.c-cta { background: var(--accent); padding: 64px 0; text-align: center; }
.c-cta__title { font-size: 32px; font-weight: 800; color: #ffffff; margin-bottom: 16px; }
.c-cta__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.c-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.c-cta .c-btn--primary { background: #ffffff; color: var(--accent); border-color: #ffffff; }
.c-cta .c-btn--primary:hover { opacity: 0.9; color: var(--accent); }
.c-cta .c-btn--outline { border-color: rgba(255,255,255,0.5); color: #ffffff; }
.c-cta .c-btn--outline:hover { border-color: #ffffff; }

/* === Contact component (A-split) === */
.c-contact { padding: 80px 0; background: #0f172a; }
.c-contact__wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.c-contact__grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) {
  .c-contact__grid { grid-template-columns: 7fr 4fr; gap: 72px; }
}
.c-contact__title { font-size: 28px; font-weight: 800; color: #f1f5f9; margin-bottom: 32px; }
.c-contact__form input,
.c-contact__form select,
.c-contact__form textarea {
  width: 100%;
  background: #1e293b;
  border: 1px solid #334155;
  color: #e2e8f0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
  font-family: inherit;
}
.c-contact__form input:focus,
.c-contact__form select:focus,
.c-contact__form textarea:focus {
  border-color: var(--accent);
  outline: none;
}
.c-contact__form select option { background: #1e293b; }
.c-contact__form button { cursor: pointer; }
.c-contact__row-2 { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 768px) {
  .c-contact__row-2 { grid-template-columns: 1fr 1fr; gap: 16px; }
}
.c-contact__info-title { font-size: 20px; font-weight: 700; color: #f1f5f9; margin-bottom: 24px; }
.c-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #94a3b8;
}
.c-contact__info-item i { color: var(--accent-on-dark); font-size: 16px; margin-top: 3px; min-width: 20px; }
.c-contact__info-item a { color: #94a3b8; text-decoration: none; }
.c-contact__info-item a:hover { color: var(--accent-on-dark); }
.c-contact__success {
  display: none;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 24px;
  color: #94a3b8;
  margin-top: 16px;
}
.c-contact__success.visible { display: block; }

/* === Blog grid component (A-cards) === */
.c-blog-grid { padding: clamp(56px, 8vw, 96px) 0; background: #ffffff; }
.c-blog-grid .c-section-header { margin-bottom: clamp(32px, 4vw, 48px); }
.c-blog-grid .c-section-title { font-size: clamp(26px, 3.5vw, 36px); line-height: 1.2; margin: 0; color: #0f172a; }
.c-blog-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-blog-grid__card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.c-blog-grid__card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.c-blog-grid__thumb { width: 100%; height: 200px; object-fit: cover; display: block; background: #f1f5f9; }
.c-blog-grid__body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.c-blog-grid__date {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.c-blog-grid__title { font-size: 17px; font-weight: 700; color: #1e293b; margin-bottom: 10px; line-height: 1.4; }
.c-blog-grid__excerpt { font-size: 14px; color: #64748b; line-height: 1.6; flex-grow: 1; margin: 0; }
@media (max-width: 768px) { .c-blog-grid__list { grid-template-columns: 1fr; } }

/* === Footer component (A-4col) === */
.c-footer {
  background: #0f172a;
  padding: 64px 0 0;
  border-top: 1px solid #1e293b;
  color: #94a3b8;
}
.c-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.c-footer__logo {
  font-size: 20px;
  font-weight: 800;
  color: #f1f5f9;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
}
.c-footer__tagline { font-size: 14px; color: #64748b; line-height: 1.6; }
.c-footer__col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.c-footer__col ul { list-style: none; padding: 0; margin: 0; }
.c-footer__col ul li { margin-bottom: 10px; }
.c-footer__col ul a { color: #94a3b8; font-size: 14px; text-decoration: none; transition: color 0.2s; }
.c-footer__col ul a:hover { color: var(--accent-on-dark); }
.c-footer__contact p { font-size: 14px; margin-bottom: 10px; line-height: 1.5; }
.c-footer__contact i { color: var(--accent-on-dark); width: 18px; font-size: 13px; margin-right: 8px; }
.c-footer__bottom {
  border-top: 1px solid #1e293b;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #475569;
}
.c-footer__legal { display: flex; gap: 20px; }
.c-footer__legal a { color: #64748b; text-decoration: none; font-size: 13px; }
.c-footer__legal a:hover { color: #94a3b8; }
@media (max-width: 768px) {
  .c-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .c-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* === Cookie banner (B-sensitive) === */
.c-cookie {
  position: fixed;
  inset: auto 16px 16px 16px;
  max-width: 720px;
  margin-left: auto;
  z-index: 1080;
  background: #ffffff;
  color: #1f2937;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 20px 50px rgba(15,23,42,0.18);
  border-radius: 12px;
  padding: 14px 18px;
}
.c-cookie[hidden] { display: none !important; }
.c-cookie__inner {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.c-cookie__copy { flex: 1 1 320px; }
.c-cookie__title { display: block; font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.c-cookie__text { flex: 1 1 320px; font-size: 14px; line-height: 1.55; margin: 0; color: #374151; }
.c-cookie__text a { color: var(--accent); }
.c-cookie__actions { display: flex; gap: 8px; margin-left: auto; }
@media (max-width: 576px) {
  .c-cookie { inset: auto 8px 8px 8px; }
  .c-cookie__actions { width: 100%; justify-content: flex-end; }
}

/* === Insights (blog preview section on homepage) === */
.air-insights-section { padding: 80px 0; background: #f8fafc; }
.air-insights-section .c-section-header { text-align: left; margin-bottom: 40px; }
.air-insights-section .c-section-header .c-section-title { color: #0f172a; }

/* === About page specific === */
.c-about-story { padding: 80px 0; background: #ffffff; }
.c-about-story__inner { max-width: 820px; margin: 0 auto; }
.c-about-story__heading { font-size: 30px; font-weight: 800; color: #0f172a; margin-bottom: 20px; }
.c-about-story__body { font-size: 17px; line-height: 1.8; color: #334155; margin-bottom: 20px; }
.c-about-mission { padding: 64px 0; background: #f8fafc; }
.c-about-mission__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.c-about-mission__headline { font-size: 26px; font-weight: 800; color: #0f172a; margin-bottom: 16px; }
.c-about-mission__text { font-size: 17px; color: #475569; line-height: 1.8; max-width: 640px; margin: 0 auto 32px; }
.c-about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; text-align: left; }
.c-about-values__item { background: #ffffff; border-radius: 10px; padding: 20px 24px; border: 1px solid #e2e8f0; }
.c-about-values__item i { color: var(--accent); margin-right: 8px; }
.c-about-values__item p { font-size: 14px; color: #475569; margin-top: 8px; }
.c-about-backed { padding: 48px 0; background: #ffffff; border-top: 1px solid #e2e8f0; }
.c-about-backed__inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.c-about-backed h2 { font-size: 22px; font-weight: 700; color: #0f172a; margin-bottom: 12px; }
.c-about-backed p { font-size: 16px; color: #475569; line-height: 1.7; max-width: 640px; }

/* === Product page specific === */
.c-product-intro { padding: 80px 0; background: #ffffff; }
.c-product-intro__inner { max-width: 900px; margin: 0 auto; }
.c-product-problem { padding: 64px 0; background: #f8fafc; }
.c-product-problem__inner { max-width: 900px; margin: 0 auto; }
.c-product-how { padding: 80px 0; background: #0f172a; }
.c-product-how__inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.c-product-how__title { font-size: 30px; font-weight: 800; color: #f1f5f9; margin-bottom: 48px; text-align: center; }
.c-product-how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.c-product-how__card { background: #1e293b; border-radius: 12px; padding: 32px 24px; }
.c-product-how__card-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-on-dark); margin-bottom: 12px; }
.c-product-how__card-title { font-size: 18px; font-weight: 700; color: #f1f5f9; margin-bottom: 12px; }
.c-product-how__card-text { font-size: 14px; color: #94a3b8; line-height: 1.7; }
.c-product-how__card-tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.c-product-how__card-tag { font-size: 12px; background: #0f172a; color: #60a5fa; padding: 4px 10px; border-radius: 4px; font-family: var(--font-mono); }
.c-product-integrations { padding: 48px 0; background: #f8fafc; }
.c-product-integrations__inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.c-product-integrations__grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.c-product-integrations__tag { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 8px 18px; font-size: 14px; color: #334155; font-weight: 500; }
@media (max-width: 768px) {
  .c-product-how__grid { grid-template-columns: 1fr; }
}

/* === Legal pages specific === */
.c-legal { padding: 80px 0; background: #ffffff; }
.c-legal__inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.c-legal h1 { font-size: 32px; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.c-legal .c-legal__meta { font-size: 14px; color: #94a3b8; margin-bottom: 40px; }
.c-legal h2 { font-size: 22px; font-weight: 700; color: #0f172a; margin: 40px 0 16px; }
.c-legal p { font-size: 16px; line-height: 1.8; color: #334155; margin-bottom: 16px; }
.c-legal ul { padding-left: 24px; margin-bottom: 16px; }
.c-legal ul li { font-size: 16px; line-height: 1.7; color: #334155; margin-bottom: 8px; }

/* === 404 page === */
.c-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; background: #f8fafc; text-align: center; padding: 80px 24px; }
.c-404__inner { max-width: 480px; }
.c-404__code { font-size: 96px; font-weight: 900; color: var(--accent); opacity: 0.2; line-height: 1; margin-bottom: 16px; font-family: var(--font-mono); }
.c-404__title { font-size: 28px; font-weight: 800; color: #0f172a; margin-bottom: 12px; }
.c-404__text { font-size: 16px; color: #475569; margin-bottom: 32px; line-height: 1.7; }

/* === Blog article reading width (standards/components/blog-article.md §0) === */
.air-article { padding: 60px 0 80px; }
.air-article__header { max-width: 760px; margin: 0 auto; padding: 0 20px 40px; }
.air-article__title { font-size: 36px; font-weight: 800; color: #0f172a; line-height: 1.25; margin-bottom: 16px; }
.air-article__meta { font-size: 14px; color: #94a3b8; }
.air-article__cover { width: 100%; max-height: 480px; object-fit: cover; border-radius: 12px; margin-bottom: 48px; display: block; background: #f1f5f9; }
.air-article__body { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.air-article__body h2 { font-size: 24px; font-weight: 700; color: #0f172a; margin: 40px 0 16px; }
.air-article__body h3 { font-size: 20px; font-weight: 700; color: #1e293b; margin: 28px 0 12px; }
.air-article__body p { font-size: 16px; line-height: 1.8; color: #334155; margin-bottom: 18px; }
.air-article__body ul, .air-article__body ol { padding-left: 24px; margin-bottom: 18px; }
.air-article__body li { font-size: 16px; line-height: 1.7; color: #334155; margin-bottom: 8px; }
.air-article__body img { width: 100%; border-radius: 10px; margin: 24px 0 32px; }
.air-article__cta { margin-top: 48px; padding: 32px; background: #f8fafc; border-radius: 12px; text-align: center; }
.air-article__cta p { color: #64748b; margin-bottom: 16px; }

/* Related articles */
.air-related { padding: 64px 0; border-top: 1px solid #e2e8f0; }
.air-related__inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.air-related__title { font-size: 24px; font-weight: 700; color: #0f172a; margin-bottom: 32px; }
.air-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.air-related__card { text-decoration: none; display: block; }
.air-related__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  max-height: 200px;
  border-radius: 8px;
  display: block;
  background: #f1f5f9;
  margin-bottom: 12px;
}
.air-related__body {}
.air-related__title-link { font-size: 16px; font-weight: 600; color: #1e293b; line-height: 1.4; }
.air-related__card:hover .air-related__title-link { color: var(--accent); }
@media (max-width: 768px) {
  .air-related__grid { grid-template-columns: 1fr; }
  .air-article__title { font-size: 26px; }
}

/* === Responsive global === */
@media (max-width: 768px) {
  .c-page-hero { padding: 64px 0 36px; }
  .c-cta { padding: 48px 24px; }
  .c-cta__title { font-size: 24px; }
  .c-team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .c-team__grid { grid-template-columns: 1fr; }
}

/* Cookie banner outline button contrast fix */
.c-cookie .c-btn--outline {
  color: #0f172a;
  border-color: rgba(15,23,42,0.25);
  background: #ffffff;
}
.c-cookie .c-btn--outline:hover {
  color: var(--air-accent, #2563eb);
  border-color: var(--air-accent, #2563eb);
  background: rgba(15,23,42,0.04);
}
