/* Betty Momentum — dark executive / bento dashboard (unique) */
:root {
  --void: #070a0f;
  --surface: #0f1419;
  --elevated: #161d26;
  --border: rgba(148, 163, 184, 0.12);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --cyan: #22d3ee;
  --cyan-dim: rgba(34, 211, 238, 0.15);
  --max: 1200px;
  --font: "DM Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--void);
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: #fff;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 10000;
  padding: 0.6rem 1rem;
  background: var(--cyan);
  color: var(--void);
}

.skip-link:focus {
  left: 12px;
}

.wrap {
  width: min(100% - 1.75rem, var(--max));
  margin-inline: auto;
}

/* Top bar */
.exec-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 10, 15, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.exec-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.exec-logo {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
}

.exec-logo span {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.85em;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--elevated);
  color: var(--text);
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.nav {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-size: 0.88rem;
  color: var(--muted);
}

.nav-list a:hover {
  color: var(--cyan);
}

.nav-list .exec-cta {
  background: linear-gradient(135deg, var(--cyan-dim), transparent);
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: var(--cyan);
  padding: 0.45rem 1rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
}

.nav-list .exec-cta:hover {
  background: var(--cyan);
  color: var(--void);
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 64px 0 0;
    background: var(--void);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Hero bento */
.hero-bento {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 8vw, 5rem);
}

.hero-bento__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.25rem;
  align-items: stretch;
}

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

.hero-bento__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 0;
}

.hero-bento__tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.hero-bento h1 {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  font-weight: 700;
}

.hero-bento__lead {
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 42ch;
  font-size: 1.05rem;
}

.hero-bento__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 8px;
  background: var(--cyan);
  color: var(--void);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-solid:hover {
  filter: brightness(1.08);
  color: var(--void);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.hero-bento__visual {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 1rem;
}

.hero-bento__visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.bento-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (max-width: 600px) {
  .bento-row {
    grid-template-columns: 1fr;
  }
}

.bento-stat {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1rem 1.1rem;
  text-align: center;
}

.bento-stat strong {
  display: block;
  font-family: var(--mono);
  font-size: 1.35rem;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}

.bento-stat span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Programs mosaic */
.programs {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--border);
}

.programs__title {
  font-size: 0.72rem;
  font-family: var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.programs h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 2rem;
  letter-spacing: -0.02em;
}

.programs__mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .programs__mosaic {
    display: flex;
    flex-direction: column;
  }
}

.tile {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.tile--wide {
  grid-column: span 7;
}

.tile--tall {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
}

.tile img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.tile--tall img {
  flex: 1;
  min-height: 200px;
  aspect-ratio: auto;
}

.tile__body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.tile__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.tile__body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Proof wall */
.proof-wall {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--void) 100%);
  border-top: 1px solid var(--border);
}

.proof-wall h2 {
  text-align: center;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin: 0 0 2rem;
  color: var(--muted);
  font-weight: 500;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto 2rem;
}

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

.proof-grid > div {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.35rem 1rem;
  text-align: center;
}

.proof-grid strong {
  font-family: var(--mono);
  font-size: 1.75rem;
  color: #fff;
  display: block;
}

.proof-grid span {
  font-size: 0.75rem;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.pill-row span {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--elevated);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* Quotes strip */
.quotes-strip {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid var(--border);
}

.quotes-strip h2 {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 1.5rem;
}

.quote-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .quote-cards {
    grid-template-columns: 1fr;
  }
}

.quote-cards blockquote {
  margin: 0;
  padding: 1.35rem;
  background: var(--elevated);
  border-radius: 12px;
  border-left: 3px solid var(--cyan);
}

.quote-cards p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}

.quote-cards footer {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
}

/* NL panel */
.nl-panel {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.nl-panel__box {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: 16px;
  background: var(--elevated);
  border: 1px solid rgba(34, 211, 238, 0.25);
  box-shadow: 0 0 60px rgba(34, 211, 238, 0.06);
}

.nl-panel h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.nl-panel > .nl-panel__box > p {
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.nl-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nl-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--void);
  color: var(--text);
  font-family: var(--font);
}

.nl-form button {
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border: none;
  background: var(--cyan);
  color: var(--void);
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
}

.form-success {
  display: none;
  width: 100%;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--cyan);
  font-family: var(--mono);
}

.form-success.is-visible {
  display: block;
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* Contact */
.contact-exec {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid var(--border);
}

.contact-exec h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
}

.contact-exec > .wrap > p {
  color: var(--muted);
  margin: 0 0 1.75rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}

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

.contact-card-mini {
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.92rem;
}

.contact-card-mini p {
  margin: 0 0 0.65rem;
}

.contact-form-exec {
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--elevated);
}

.contact-form-exec label {
  display: block;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.contact-form-exec input,
.contact-form-exec textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--void);
  color: var(--text);
  font-family: var(--font);
}

.contact-form-exec textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form-exec button {
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  border: none;
  background: var(--cyan);
  color: var(--void);
  font-weight: 700;
  cursor: pointer;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

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

.site-footer h3 {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.site-footer a {
  color: var(--text);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--cyan);
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0.5rem 0 0;
  max-width: 34ch;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-family: var(--mono);
}

/* Cookie */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem;
  background: var(--elevated);
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 220px;
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-actions button {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}

.cookie-actions #cookie-accept {
  background: var(--cyan);
  color: var(--void);
  border-color: var(--cyan);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
}

[data-reveal].is-inview {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.legal {
  padding: clamp(3rem, 8vw, 5rem) 0;
  max-width: 680px;
  margin: 0 auto;
}

.legal h1 {
  font-size: clamp(1.6rem, 4vw, 2rem);
  margin-top: 0;
}

.legal h2 {
  font-size: 1rem;
  margin-top: 2rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  padding-left: 1.25rem;
}
