/* Cypher AI — cyp-main.css
   Palette: deep navy #0A1628 + instrument teal #00C8A0
   Typography: Inter (body) + JetBrains Mono (code)
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:         #0A1628;
  --navy-alt:     #0F1F38;
  --teal:         #00C8A0;
  --teal-aa:      #007A63;
  --bg-light:     #F4F7FA;
  --bg-white:     #FFFFFF;
  --bg-cream:     #F9FAFB;
  --fg-light-p:   #0A1628;
  --fg-light-s:   #4A5568;
  --fg-dark-p:    #EEF2F7;
  --fg-dark-s:    #8FA3BE;
  --border-light: #E2E8F0;
  --border-dark:  rgba(255,255,255,0.12);
  --radius-sm:    4px;
  --radius:       8px;
  --radius-lg:    16px;
  --shadow:       0 4px 24px rgba(10,22,40,0.08);
  --shadow-md:    0 8px 40px rgba(10,22,40,0.14);
  --container:    1200px;
  --font-mono:    'JetBrains Mono', 'Consolas', 'Courier New', monospace;
  --transition:   0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg-light-p);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

body.cyp-page--dark-top { background: var(--navy); }
body.cyp-page--light-top { background: var(--bg-white); }

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

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

button { cursor: pointer; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.cyp-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cyp-section--dark .cyp-eyebrow,
.cyp-hero--dark .cyp-eyebrow,
.cyp-footer .cyp-eyebrow { color: var(--teal); }

.cyp-section--light .cyp-eyebrow,
.cyp-section--white .cyp-eyebrow,
.cyp-section--cream .cyp-eyebrow,
.cyp-hero--light .cyp-eyebrow { color: var(--teal-aa); }

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.cyp-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAV
   ============================================================ */
.cyp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.cyp-nav--scrolled {
  background: var(--navy);
  box-shadow: 0 1px 0 var(--border-dark);
}

body.cyp-page--dark-top .cyp-nav {
  background: transparent;
}

body.cyp-page--light-top .cyp-nav {
  background: var(--navy);
  box-shadow: 0 1px 0 var(--border-dark);
}

.cyp-nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

.cyp-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 40px;
  text-decoration: none;
}

.cyp-nav__logo img {
  height: 32px;
  width: auto;
}

.cyp-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
}

.cyp-nav__links li { position: relative; }

.cyp-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-dark-p);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  background: none;
  border: none;
  font-family: inherit;
  line-height: 1;
  white-space: nowrap;
}

.cyp-nav__link:hover { color: var(--teal); background: rgba(255,255,255,0.06); }

.cyp-nav__dropdown { position: relative; }

.cyp-nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--navy-alt);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-md);
  z-index: 110;
}

.cyp-nav__dropdown:hover .cyp-nav__dropdown-menu,
.cyp-nav__dropdown--open .cyp-nav__dropdown-menu { display: block; }

.cyp-nav__dropdown-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 0.875rem;
  color: var(--fg-dark-s);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.cyp-nav__dropdown-menu a:hover { color: var(--fg-dark-p); background: rgba(255,255,255,0.08); }

.cyp-nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.cyp-nav__signin {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-dark-s);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}

.cyp-nav__signin:hover { color: var(--fg-dark-p); }

/* hamburger */
.cyp-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}

.cyp-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg-dark-p);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.cyp-nav__mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 1px solid var(--border-dark);
  padding: 16px 24px 24px;
  z-index: 99;
}

.cyp-nav__mobile-menu.is-open { display: block; }

.cyp-nav__mobile-menu a,
.cyp-nav__mobile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-dark-p);
  border: none;
  background: none;
  border-bottom: 1px solid var(--border-dark);
  font-family: inherit;
  text-decoration: none;
}

.cyp-nav__mobile-menu .cyp-nav__mobile-section { padding: 4px 0 4px 16px; }

.cyp-nav__mobile-menu .cyp-nav__mobile-section a {
  font-size: 0.9rem;
  color: var(--fg-dark-s);
  border-bottom: none;
  padding: 8px 0;
}

.cyp-nav__mobile-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.cyp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1.2;
}

.cyp-btn--primary {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}
.cyp-btn--primary:hover { background: #00e0b4; border-color: #00e0b4; }

.cyp-btn--outline-dark {
  background: transparent;
  color: var(--fg-dark-p);
  border-color: var(--border-dark);
}
.cyp-btn--outline-dark:hover { border-color: var(--teal); color: var(--teal); }

.cyp-btn--ghost-dark {
  background: transparent;
  color: var(--fg-dark-p);
  border: none;
  padding: 12px 0;
}
.cyp-btn--ghost-dark:hover { color: var(--teal); }

.cyp-btn--outline-light {
  background: transparent;
  color: var(--fg-light-p);
  border-color: var(--border-light);
}
.cyp-btn--outline-light:hover { border-color: var(--teal-aa); color: var(--teal-aa); }

.cyp-btn--sm { padding: 8px 16px; font-size: 0.875rem; }

/* ============================================================
   SECTIONS
   ============================================================ */
.cyp-section--dark {
  background: var(--navy);
  color: var(--fg-dark-p);
}

.cyp-section--dark-alt {
  background: var(--navy-alt);
  color: var(--fg-dark-p);
}

.cyp-section--light { background: var(--bg-light); color: var(--fg-light-p); }
.cyp-section--white { background: var(--bg-white); color: var(--fg-light-p); }
.cyp-section--cream { background: var(--bg-cream); color: var(--fg-light-p); }

.cyp-section { padding: 80px 0; }
.cyp-section--sm { padding: 48px 0; }
.cyp-section--lg { padding: 120px 0; }

.cyp-section__header { text-align: center; margin-bottom: 56px; }
.cyp-section__header--left { text-align: left; }

.cyp-section__headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 12px;
}

.cyp-section--dark .cyp-section__headline,
.cyp-section--dark-alt .cyp-section__headline { color: var(--fg-dark-p); }

.cyp-section--light .cyp-section__headline,
.cyp-section--white .cyp-section__headline { color: var(--fg-light-p); }

.cyp-section__sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 600px;
  margin: 16px auto 0;
}

.cyp-section--dark .cyp-section__sub,
.cyp-section--dark-alt .cyp-section__sub { color: var(--fg-dark-s); }

.cyp-section--light .cyp-section__sub,
.cyp-section--white .cyp-section__sub { color: var(--fg-light-s); }

.cyp-section__header--left .cyp-section__sub { margin-left: 0; }

/* ============================================================
   HERO
   ============================================================ */
.cyp-hero--dark {
  background: var(--navy);
  color: var(--fg-dark-p);
  padding-top: 128px;
  padding-bottom: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.cyp-hero--light {
  background: var(--bg-light);
  color: var(--fg-light-p);
  padding-top: 128px;
  padding-bottom: 80px;
}

.cyp-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.cyp-hero--split .cyp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cyp-hero--centered .cyp-hero__inner { text-align: center; }

.cyp-hero__headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-top: 16px;
}

.cyp-hero--dark .cyp-hero__headline { color: var(--fg-dark-p); }
.cyp-hero--light .cyp-hero__headline { color: var(--fg-light-p); }

.cyp-hero__sub {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-top: 20px;
  max-width: 560px;
}

.cyp-hero--dark .cyp-hero__sub { color: var(--fg-dark-s); }
.cyp-hero--light .cyp-hero__sub { color: var(--fg-light-s); }

.cyp-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* sub-hero (lighter weight for sub-pages) */
.cyp-subhero {
  padding-top: 108px;
  padding-bottom: 60px;
}

.cyp-subhero--dark {
  background: var(--navy);
  color: var(--fg-dark-p);
}

.cyp-subhero--light {
  background: var(--bg-light);
  color: var(--fg-light-p);
}

.cyp-subhero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cyp-subhero__headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.18;
  margin-top: 14px;
}

.cyp-subhero--dark .cyp-subhero__headline { color: var(--fg-dark-p); }
.cyp-subhero--light .cyp-subhero__headline { color: var(--fg-light-p); }

.cyp-subhero__sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-top: 16px;
  max-width: 600px;
}

.cyp-subhero--dark .cyp-subhero__sub { color: var(--fg-dark-s); }
.cyp-subhero--light .cyp-subhero__sub { color: var(--fg-light-s); }

.cyp-subhero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ============================================================
   CARDS
   ============================================================ */
.cyp-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
}

.cyp-card--dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.cyp-card--dark .cyp-card__title { color: var(--fg-dark-p); }
.cyp-card--dark .cyp-card__body { color: var(--fg-dark-s); }
.cyp-card--dark .cyp-card__icon { color: var(--teal); }

.cyp-card__icon { font-size: 1.5rem; margin-bottom: 16px; }
.cyp-card .cyp-card__icon { color: var(--teal-aa); }

.cyp-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg-light-p);
}

.cyp-card__body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--fg-light-s);
}

/* Value prop grid */
.cyp-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Feature grid 2x2 */
.cyp-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ============================================================
   REPLACES BAR
   ============================================================ */
.cyp-replaces-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
  flex-wrap: wrap;
}

.cyp-replaces-bar__label {
  font-size: 0.8125rem;
  color: var(--fg-dark-s);
  font-weight: 500;
  white-space: nowrap;
}

.cyp-replaces-bar__items {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cyp-replaces-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--fg-dark-s);
  opacity: 0.7;
}

.cyp-replaces-bar__item i { font-size: 1rem; color: var(--fg-dark-s); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */

/* Demo grid layout (index product demo) */
.cyp-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Hero content block */
.cyp-hero__content {
  display: flex;
  flex-direction: column;
}

/* Step container (how-it-works) */
.cyp-step { display: flex; flex-direction: column; }

.cyp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.cyp-step__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-aa);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.cyp-section--light .cyp-step__number { background: var(--teal-aa); }

.cyp-step__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg-light-p);
}

.cyp-step__body {
  font-size: 0.9375rem;
  color: var(--fg-light-s);
  line-height: 1.6;
}

/* ============================================================
   SOLUTIONS STRIP
   ============================================================ */
.cyp-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.cyp-footer {
  background: var(--navy);
  color: var(--fg-dark-p);
  padding: 64px 0 0;
}

.cyp-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.cyp-footer__col-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dark-s);
  margin-bottom: 20px;
}

.cyp-footer__links { list-style: none; }

.cyp-footer__links li + li { margin-top: 10px; }

.cyp-footer__links a {
  font-size: 0.9rem;
  color: var(--fg-dark-s);
  transition: color var(--transition);
}

.cyp-footer__links a:hover { color: var(--fg-dark-p); }

.cyp-footer__bottom {
  margin-top: 48px;
  border-top: 1px solid var(--border-dark);
  padding: 24px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.cyp-footer__copyright {
  font-size: 0.8125rem;
  color: var(--fg-dark-s);
}

.cyp-footer__contact-line {
  font-size: 0.8125rem;
  color: var(--fg-dark-s);
}

.cyp-footer__contact-line a { color: var(--fg-dark-s); transition: color var(--transition); }
.cyp-footer__contact-line a:hover { color: var(--teal); }

.cyp-footer__cookie-link {
  font-size: 0.8125rem;
  color: var(--fg-dark-s);
  transition: color var(--transition);
}

.cyp-footer__cookie-link:hover { color: var(--teal); }

/* Footer bottom container */
.cyp-footer__bottom-wrap {
  border-top: 1px solid var(--border-dark);
  margin-top: 48px;
}

.cyp-footer__bottom-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   PLATFORM ARCHITECTURE CARD
   ============================================================ */
.cyp-platform-diagram-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 48px;
  box-shadow: var(--shadow-md);
}

.cyp-platform-diagram-card img {
  width: 100%;
  height: auto;
}

/* Platform nav pills */
.cyp-platform-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cyp-platform-pill {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-dark-s);
  transition: all var(--transition);
  text-decoration: none;
}

.cyp-platform-pill:hover { border-color: var(--teal); color: var(--teal); }

/* ============================================================
   MODULE ROWS
   ============================================================ */
.cyp-module-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-light);
}

.cyp-module-row:last-child { border-bottom: none; }
.cyp-module-row--reverse { direction: rtl; }
.cyp-module-row--reverse > * { direction: ltr; }

/* ============================================================
   FEATURE LISTS
   ============================================================ */
.cyp-feature-list { list-style: none; }

.cyp-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}

.cyp-feature-list li:last-child { border-bottom: none; }

.cyp-feature-list__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,122,99,0.1);
  border-radius: var(--radius);
  color: var(--teal-aa);
  font-size: 1.125rem;
}

.cyp-feature-list__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--fg-light-p);
}

.cyp-feature-list__body {
  font-size: 0.9rem;
  color: var(--fg-light-s);
  line-height: 1.5;
}

/* ============================================================
   SOLUTIONS PAIN/RESOLUTION
   ============================================================ */
.cyp-pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.cyp-pain-list { list-style: none; }

.cyp-pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
}

.cyp-pain-list li:last-child { border-bottom: none; }

.cyp-pain-list__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

.cyp-pain-list__icon--problem {
  background: rgba(239,68,68,0.1);
  color: #DC2626;
}

.cyp-pain-list__icon--solution {
  background: rgba(0,122,99,0.1);
  color: var(--teal-aa);
}

.cyp-pain-col-head {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-light-s);
  margin-bottom: 16px;
}

/* ============================================================
   ABOUT / TEAM
   ============================================================ */
.cyp-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cyp-pull-quote {
  border-left: 3px solid var(--teal-aa);
  padding-left: 20px;
  margin: 24px 0;
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--teal-aa);
  line-height: 1.5;
}

.cyp-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cyp-principle {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cyp-principle i { color: var(--teal-aa); font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.cyp-principle__title { font-size: 1rem; font-weight: 600; color: var(--fg-light-p); margin-bottom: 6px; }
.cyp-principle__body { font-size: 0.9rem; color: var(--fg-light-s); line-height: 1.5; }

/* Team grid */
.cyp-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cyp-team-card { text-align: center; }

.cyp-team-card__portrait {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}

.cyp-team-card__name { font-size: 1.125rem; font-weight: 600; color: var(--fg-light-p); }
.cyp-team-card__title { font-size: 0.875rem; color: var(--teal-aa); margin: 4px 0 10px; }
.cyp-team-card__bio { font-size: 0.9rem; color: var(--fg-light-s); line-height: 1.55; }

/* ============================================================
   CONTACT STRIP
   ============================================================ */
.cyp-contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cyp-contact-strip__details { display: flex; flex-direction: column; gap: 8px; }
.cyp-contact-strip__details a { color: var(--fg-dark-s); transition: color var(--transition); font-size: 0.9375rem; }
.cyp-contact-strip__details a:hover { color: var(--teal); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.cyp-contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
}

.cyp-form-group { margin-bottom: 20px; }

.cyp-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-light-p);
  margin-bottom: 6px;
}

.cyp-form-group input,
.cyp-form-group textarea,
.cyp-form-group select {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.9375rem;
  font-family: inherit;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--bg-white);
  color: var(--fg-light-p);
  transition: border-color var(--transition);
  appearance: none;
  max-width: 500px;
}

.cyp-form-group input:focus,
.cyp-form-group textarea:focus,
.cyp-form-group select:focus {
  outline: none;
  border-color: var(--teal-aa);
}

.cyp-form-group textarea { height: 120px; resize: vertical; }

.cyp-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z' fill='%234A5568'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.cyp-contact-details h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fg-light-p);
  margin-bottom: 16px;
}

.cyp-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.cyp-contact-detail:last-child { border-bottom: none; }
.cyp-contact-detail i { color: var(--teal-aa); margin-top: 2px; flex-shrink: 0; }
.cyp-contact-detail a { color: var(--teal-aa); }
.cyp-contact-detail a:hover { text-decoration: underline; }

/* ============================================================
   BLOG
   ============================================================ */
.cyp-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.cyp-blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: box-shadow var(--transition), transform var(--transition);
}

.cyp-blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.cyp-blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  height: auto;
}

.cyp-blog-card__body { padding: 24px; }

.cyp-blog-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.cyp-blog-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-aa);
  background: rgba(0,122,99,0.08);
  padding: 3px 10px;
  border-radius: 100px;
}

.cyp-blog-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--fg-light-p);
  line-height: 1.35;
  margin-bottom: 10px;
}

.cyp-blog-card__title a { color: inherit; transition: color var(--transition); }
.cyp-blog-card__title a:hover { color: var(--teal-aa); }

.cyp-blog-card__excerpt { font-size: 0.9rem; color: var(--fg-light-s); line-height: 1.55; margin-bottom: 16px; }

.cyp-blog-card__meta { font-size: 0.8125rem; color: var(--fg-light-s); }

/* Blog article page */
.cyp-blog-article__cover {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}

.cyp-blog-article__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-size: 0.875rem;
  color: var(--fg-light-s);
}

.cyp-blog-article__author { font-weight: 500; color: var(--fg-light-p); }

body.cyp-page--light-top .cyp-article-body h2 { font-size: 1.5rem; font-weight: 700; margin: 40px 0 16px; color: var(--fg-light-p); }
body.cyp-page--light-top .cyp-article-body h3 { font-size: 1.25rem; font-weight: 600; margin: 32px 0 12px; color: var(--fg-light-p); }
body.cyp-page--light-top .cyp-article-body p { font-size: 1rem; line-height: 1.75; color: var(--fg-light-s); margin-bottom: 18px; }
body.cyp-page--light-top .cyp-article-body ul,
body.cyp-page--light-top .cyp-article-body ol { padding-left: 24px; margin-bottom: 18px; }
body.cyp-page--light-top .cyp-article-body li { font-size: 1rem; line-height: 1.75; color: var(--fg-light-s); }
body.cyp-page--light-top .cyp-article-body blockquote { border-left: 3px solid var(--teal-aa); padding-left: 20px; margin: 28px 0; font-style: italic; color: var(--fg-light-s); }
body.cyp-page--light-top .cyp-article-body a { color: var(--teal-aa); text-decoration: underline; }
body.cyp-page--light-top .cyp-article-body code { font-family: var(--font-mono); font-size: 0.875em; background: var(--bg-light); padding: 2px 6px; border-radius: var(--radius-sm); color: var(--fg-light-p); }

/* Blog breadcrumb */
.cyp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--fg-light-s);
  margin-bottom: 24px;
}

.cyp-breadcrumb a { color: var(--fg-light-s); transition: color var(--transition); }
.cyp-breadcrumb a:hover { color: var(--teal-aa); }

/* ============================================================
   DOCS
   ============================================================ */
.cyp-docs-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.cyp-docs-sidebar {
  position: sticky;
  top: 80px;
}

.cyp-docs-nav__heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-light-s);
  margin-bottom: 8px;
  margin-top: 24px;
}

.cyp-docs-nav__heading:first-child { margin-top: 0; }

.cyp-docs-nav__list { list-style: none; margin-bottom: 8px; }

.cyp-docs-nav__list li + li { margin-top: 2px; }

.cyp-docs-nav__list a {
  display: block;
  padding: 7px 12px;
  font-size: 0.9rem;
  color: var(--fg-light-s);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.cyp-docs-nav__list a:hover { color: var(--fg-light-p); background: var(--bg-light); }
.cyp-docs-nav__list a.is-active { color: var(--teal-aa); background: rgba(0,122,99,0.08); font-weight: 500; }

body.cyp-page--light-top .cyp-docs-content h1 { font-size: 1.75rem; font-weight: 700; color: var(--fg-light-p); margin-bottom: 16px; }
body.cyp-page--light-top .cyp-docs-content h2 { font-size: 1.375rem; font-weight: 600; color: var(--fg-light-p); margin: 36px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--border-light); }
body.cyp-page--light-top .cyp-docs-content h3 { font-size: 1.125rem; font-weight: 600; color: var(--fg-light-p); margin: 28px 0 10px; }
body.cyp-page--light-top .cyp-docs-content p { font-size: 0.9375rem; line-height: 1.7; color: var(--fg-light-s); margin-bottom: 16px; }
body.cyp-page--light-top .cyp-docs-content ul,
body.cyp-page--light-top .cyp-docs-content ol { padding-left: 20px; margin-bottom: 16px; }
body.cyp-page--light-top .cyp-docs-content li { font-size: 0.9375rem; line-height: 1.7; color: var(--fg-light-s); }
body.cyp-page--light-top .cyp-docs-content a { color: var(--teal-aa); text-decoration: underline; }
body.cyp-page--light-top .cyp-docs-content code { font-family: var(--font-mono); font-size: 0.875em; background: var(--bg-light); padding: 2px 6px; border-radius: var(--radius-sm); color: var(--fg-light-p); }

.cyp-docs-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.cyp-docs-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border-light);
  text-decoration: none;
  transition: box-shadow var(--transition);
}

.cyp-docs-card:hover { box-shadow: var(--shadow); }
.cyp-docs-card__title { font-size: 1rem; font-weight: 600; color: var(--fg-light-p); margin-bottom: 6px; }
.cyp-docs-card__desc { font-size: 0.875rem; color: var(--fg-light-s); }

/* ============================================================
   TERMINAL / CODE MOCKS
   ============================================================ */
.cyp-term {
  background: #0d1b2e;
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: var(--font-mono);
  box-shadow: var(--shadow-md);
}

.cyp-term__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #1a2b42;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cyp-term__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cyp-term__dot--red { background: #FF5F56; }
.cyp-term__dot--yellow { background: #FFBD2E; }
.cyp-term__dot--green { background: #27C93F; }

.cyp-term__title {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin-left: 8px;
  font-family: var(--font-mono);
}

.cyp-term__body {
  padding: 16px 20px;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #c5d3e8;
  white-space: normal;
  overflow-x: auto;
}

.cyp-term__body code {
  display: block;
  white-space: pre;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.5;
}

.cyp-tt-prompt { color: #8fa3be; }
.cyp-tt-cmd { color: #00C8A0; }
.cyp-tt-meta { color: #8fa3be; }
.cyp-tt-insert { color: #27C93F; }
.cyp-tt-delete { color: #FF5F56; }
.cyp-tt-output { color: #c5d3e8; }
.cyp-tt-comment { color: #5a7a9e; }

/* API Reference */
.cyp-api-block {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  margin-bottom: 32px;
  overflow: hidden;
}

.cyp-api-block__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}

.cyp-api-badge {
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: var(--font-mono);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.cyp-api-badge--post { background: rgba(0,122,99,0.12); color: var(--teal-aa); }
.cyp-api-badge--get { background: rgba(59,130,246,0.12); color: #2563EB; }

.cyp-api-block__path {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fg-light-p);
}

.cyp-api-block__desc {
  font-size: 0.875rem;
  color: var(--fg-light-s);
  margin-left: auto;
}

.cyp-api-block__body { padding: 20px; }

.cyp-api-block__body pre {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  overflow-x: auto;
}

.cyp-api-block__body code {
  font-family: var(--font-mono);
  color: var(--fg-light-p);
  white-space: pre;
}

/* ============================================================
   DASHBOARD MOCK
   ============================================================ */
.cyp-dashboard-mock {
  background: #0d1b2e;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 400px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-dark);
}

.cyp-dash__sidebar {
  background: #091424;
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.cyp-dash__sidebar-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
  padding: 0 8px;
}

.cyp-dash__exp-item {
  padding: 8px 10px;
  border-radius: 6px;
  margin-bottom: 4px;
  cursor: pointer;
}

.cyp-dash__exp-item--active { background: rgba(0,200,160,0.12); }
.cyp-dash__exp-item--active .cyp-dash__exp-name { color: #00C8A0; }

.cyp-dash__exp-name { font-size: 0.8125rem; color: rgba(255,255,255,0.55); font-weight: 500; }
.cyp-dash__exp-sub { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 2px; }

.cyp-dash__main { padding: 20px; overflow-y: auto; }

.cyp-dash__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cyp-dash__exp-title { font-size: 0.9375rem; font-weight: 600; color: #EEF2F7; }

.cyp-dash__model-badge {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  background: rgba(0,200,160,0.1);
  color: #00C8A0;
  border: 1px solid rgba(0,200,160,0.2);
  padding: 3px 10px;
  border-radius: 100px;
}

.cyp-dash__protocol { list-style: none; }

.cyp-dash__step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cyp-dash__step:last-child { border-bottom: none; }

.cyp-dash__step-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 1px;
}

.cyp-dash__step-icon--done { background: rgba(39,201,63,0.2); color: #27C93F; }
.cyp-dash__step-icon--active { background: rgba(0,200,160,0.2); color: #00C8A0; }
.cyp-dash__step-icon--pending { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.3); }

.cyp-dash__step-name { font-size: 0.875rem; font-weight: 500; color: #EEF2F7; }
.cyp-dash__step-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 2px; font-family: var(--font-mono); }

/* ============================================================
   AUTH PAGES
   ============================================================ */
.cyp-auth-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cyp-auth-side {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 8vw, 80px);
}

.cyp-auth-side__logo { margin-bottom: 48px; }
.cyp-auth-side__logo img { height: 36px; width: auto; }

.cyp-auth-side__headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--fg-dark-p);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cyp-auth-side__sub {
  font-size: 1rem;
  color: var(--fg-dark-s);
  line-height: 1.6;
}

.cyp-auth-side__features {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cyp-auth-side__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--fg-dark-s);
}

.cyp-auth-side__feature i { color: var(--teal); margin-top: 2px; flex-shrink: 0; }

.cyp-auth-panel {
  background: var(--bg-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 72px);
}

.cyp-auth-panel__inner { max-width: 400px; width: 100%; }

.cyp-auth-panel__title {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--fg-light-p);
  margin-bottom: 6px;
}

.cyp-auth-panel__sub {
  font-size: 0.9375rem;
  color: var(--fg-light-s);
  margin-bottom: 32px;
}

.cyp-auth-panel .cyp-form-group input { max-width: 100%; }
.cyp-auth-panel .cyp-form-group select { max-width: 100%; }

.cyp-auth-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
  font-size: 0.8125rem;
  color: var(--fg-light-s);
}

.cyp-auth-divider::before,
.cyp-auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 30px);
  height: 1px;
  background: var(--border-light);
}

.cyp-auth-divider::before { left: 0; }
.cyp-auth-divider::after { right: 0; }

.cyp-auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--fg-light-s);
}

.cyp-auth-switch a { color: var(--teal-aa); text-decoration: underline; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.cyp-legal-layout {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.cyp-legal-layout .legal-article { padding: 0; }
.cyp-legal-layout .legal-header { margin-bottom: 40px; padding-bottom: 24px; border-bottom: 2px solid var(--border-light); }
.cyp-legal-layout .legal-header h1 { font-size: 2rem; font-weight: 700; color: var(--fg-light-p); margin-bottom: 8px; }
.cyp-legal-layout .legal-meta { font-size: 0.875rem; color: var(--fg-light-s); margin-top: 4px; }

.cyp-legal-layout .legal-article section { margin-bottom: 36px; }
.cyp-legal-layout .legal-article h2 { font-size: 1.25rem; font-weight: 700; color: var(--fg-light-p); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid var(--border-light); }
.cyp-legal-layout .legal-article h3 { font-size: 1.0625rem; font-weight: 600; color: var(--fg-light-p); margin-bottom: 10px; margin-top: 20px; }
.cyp-legal-layout .legal-article p { font-size: 0.9375rem; line-height: 1.7; color: var(--fg-light-s); margin-bottom: 12px; }
.cyp-legal-layout .legal-article ul,
.cyp-legal-layout .legal-article ol { padding-left: 22px; margin-bottom: 14px; }
.cyp-legal-layout .legal-article li { font-size: 0.9375rem; line-height: 1.7; color: var(--fg-light-s); margin-bottom: 4px; }
.cyp-legal-layout .legal-article address { font-style: normal; font-size: 0.9375rem; line-height: 1.7; color: var(--fg-light-s); }
.cyp-legal-layout .legal-article a { color: var(--teal-aa); text-decoration: underline; }
.cyp-legal-layout .legal-table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 0.9rem; }
.cyp-legal-layout .legal-table th { background: var(--bg-light); padding: 10px 14px; text-align: left; font-weight: 600; color: var(--fg-light-p); border-bottom: 2px solid var(--border-light); }
.cyp-legal-layout .legal-table td { padding: 10px 14px; border-bottom: 1px solid var(--border-light); color: var(--fg-light-s); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  border-top: 1px solid var(--border-dark);
  padding: 16px 24px;
}

.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.9rem;
  color: var(--fg-dark-s);
  flex: 1;
}

.cookie-banner__text a { color: var(--teal); text-decoration: underline; }

.cookie-banner__actions { display: flex; gap: 10px; }

.cookie-banner__btn {
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.cookie-banner__btn--primary {
  background: var(--teal);
  color: var(--navy);
}

.cookie-banner__btn--primary:hover { background: #00e0b4; }

/* ============================================================
   INLINE SVG HERO VISUALS
   ============================================================ */
.cyp-hero-svg-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Data lattice animation */
@keyframes cyp-dash-travel {
  from { stroke-dashoffset: 200; }
  to { stroke-dashoffset: 0; }
}

@keyframes cyp-node-pulse {
  0%, 100% { opacity: 0.8; r: 5px; }
  50% { opacity: 1; r: 7px; }
}

@keyframes cyp-flow-pulse {
  0% { stroke-dashoffset: 200; opacity: 0.3; }
  50% { opacity: 0.8; }
  100% { stroke-dashoffset: 0; opacity: 0.3; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cyp-cta-band { text-align: center; padding: 80px 0; }
.cyp-cta-band__headline { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--fg-dark-p); line-height: 1.2; }
.cyp-cta-band__sub { font-size: 1.0625rem; color: var(--fg-dark-s); margin: 16px auto 32px; max-width: 500px; }
.cyp-cta-band__email { margin-top: 16px; font-size: 0.9rem; }
.cyp-cta-band__email a { color: var(--teal); }

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.cyp-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.cyp-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Failsafe: reveal after 1.2s */
@keyframes cyp-reveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cyp-fade-in {
  animation: cyp-reveal 0.5s ease 1.2s forwards;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cyp-hero--split .cyp-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .cyp-docs-layout { grid-template-columns: 200px 1fr; gap: 32px; }
  .cyp-auth-layout { grid-template-columns: 1fr; }
  .cyp-auth-side { display: none; }
  .cyp-auth-panel { padding: 60px 24px; }
}

@media (max-width: 900px) {
  .cyp-demo-grid { grid-template-columns: 1fr; gap: 40px; }
  .cyp-value-grid { grid-template-columns: repeat(2, 1fr); }
  .cyp-steps { grid-template-columns: 1fr; gap: 32px; }
  .cyp-team-grid { grid-template-columns: repeat(2, 1fr); }
  .cyp-mission-grid { grid-template-columns: 1fr; }
  .cyp-contact-layout { grid-template-columns: 1fr; }
  .cyp-pain-grid { grid-template-columns: 1fr; }
  .cyp-principles-grid { grid-template-columns: 1fr; }
  .cyp-module-row { grid-template-columns: 1fr; gap: 32px; }
  .cyp-module-row--reverse { direction: ltr; }
  .cyp-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .cyp-solutions-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .cyp-nav__links { display: none; }
  .cyp-nav__actions .cyp-btn { display: none; }
  .cyp-nav__signin { display: none; }
  .cyp-nav__hamburger { display: flex; }
  .cyp-docs-layout { grid-template-columns: 1fr; }
  .cyp-docs-sidebar { position: static; }
  .cyp-blog-grid { grid-template-columns: 1fr; }
  .cyp-feature-grid { grid-template-columns: 1fr; }
  .cyp-value-grid { grid-template-columns: 1fr; }
  .cyp-dashboard-mock { grid-template-columns: 1fr; }
  .cyp-dash__sidebar { display: none; }
  .cyp-team-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .cyp-footer__grid { grid-template-columns: 1fr; }
  .cyp-section { padding: 56px 0; }
  .cyp-hero--dark { padding-top: 100px; min-height: auto; }
  .cyp-docs-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cyp-hero__actions { flex-direction: column; align-items: flex-start; }
  .cyp-footer__bottom-inner { flex-direction: column; gap: 8px; }
}
