/* ---------- Text helpers ---------- */

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--color-accent-text-on-light);
}

.on-dark .eyebrow {
  color: var(--color-accent-text-on-dark);
}

.eyebrow-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-text-on-light);
}

.on-dark .eyebrow-label {
  color: var(--color-accent-text-on-dark);
}

.on-tint .eyebrow-label {
  color: var(--color-accent-text-on-light);
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  color: var(--color-lead-on-light);
}

.on-dark .lead {
  color: var(--color-body-on-dark);
}

.muted {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-muted-on-light);
}

.on-dark .muted {
  color: var(--color-muted-on-dark);
}

.body-text {
  font-size: 1.03125rem;
  line-height: 1.55;
  color: var(--color-accent-text-on-light);
}

.on-dark .body-text {
  color: var(--color-card-body-on-dark);
}

/* ---------- Nav links ---------- */

.navlink {
  text-decoration: none;
  color: var(--color-accent-text-on-light);
  font-weight: 600;
  font-size: 15px;
  transition: color var(--duration-fast) var(--ease-standard);
  padding: 6px 2px;
}

.navlink:hover {
  color: var(--color-navy);
}

.navlink--cta {
  color: var(--color-navy);
  border: 1px solid var(--border-card);
  padding: 8px 16px;
  border-radius: 100px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 100px;
  border: none;
}

.btn--primary-on-dark {
  background: var(--color-white);
  color: var(--color-navy);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-accent-text-on-dark);
}

.chip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-steel);
  display: inline-block;
}

/* ---------- Stats ---------- */

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.03em;
  font-size: clamp(56px, 11vw, 132px);
}

.stat-number--alarm {
  color: var(--color-alarm-red);
}

.stat-number--on-dark {
  color: var(--color-white);
}

.stat-number--brand {
  color: var(--color-navy);
}

.stat-caption {
  font-size: clamp(19px, 2.3vw, 26px);
  line-height: 1.35;
  color: var(--color-lead-on-light);
  max-width: 26ch;
  font-weight: 500;
}

.on-dark .stat-caption {
  color: var(--color-body-on-dark);
}

/* ---------- Cards ---------- */

.card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 30px;
}

.card-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.underline-mark {
  width: 44px;
  height: 3px;
  background: var(--color-steel);
  margin-bottom: 18px;
}

/* ---------- Placeholder image treatment ---------- */
/* Real photography goes here later; this diagonal-hatch card with a
   caption is the deliberate "not shipped yet" marker, not a bug. */

.placeholder-media {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-card);
  background-color: #DCE3E7;
  background-image: repeating-linear-gradient(135deg, #D5DDE1 0 14px, #DFE6E9 14px 28px);
}

.placeholder-media--dark {
  background-color: var(--color-navy);
  background-image: repeating-linear-gradient(135deg, #123f56 0 16px, #0E4A65 16px 32px);
  border-color: #0b3b51;
}

.placeholder-media__caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-family: 'Source Code Pro', ui-monospace, Menlo, monospace;
  font-size: 11.5px;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-navy);
  padding: 7px 11px;
  border-radius: 6px;
  max-width: calc(100% - 28px);
}

.placeholder-media--dark .placeholder-media__caption {
  top: 14px;
  bottom: auto;
  background: rgba(255, 255, 255, 0.14);
  color: #DCE8ED;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.placeholder-media--gradient-fade::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 74, 101, 0) 45%, rgba(14, 74, 101, 0.42) 100%);
}

/* Real photos fill their box and crop instead of stretching to the
   (often mismatched) width/height attributes. */
.placeholder-media img,
.placeholder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.placeholder-media--square {
  aspect-ratio: 1 / 1;
}

/* Full-frame screenshots (e.g. product UI) should never crop —
   show the whole image, centered, letterboxed on the placeholder bg. */
.placeholder-media--contain img {
  object-fit: contain;
  object-position: center;
}

.placeholder-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  border: 1px dashed var(--border-card);
  color: var(--color-muted-on-light);
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--surface-card);
  font-family: 'Source Code Pro', ui-monospace, Menlo, monospace;
  font-size: 12px;
}

.placeholder-avatar {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border-card);
  background-color: #DCE3E7;
  background-image: repeating-linear-gradient(135deg, #D5DDE1 0 10px, #DFE6E9 10px 20px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.placeholder-avatar img {
  object-position: center top;
}

.placeholder-avatar__caption {
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-navy);
  padding: 4px 8px;
  border-radius: 5px;
  font-family: 'Source Code Pro', ui-monospace, Menlo, monospace;
  font-size: 11px;
}

/* ---------- Wave divider ---------- */

.wave-divider {
  position: absolute;
  left: 0;
  width: 100%;
  height: 64px;
  display: block;
}

.wave-divider--bottom {
  bottom: -1px;
}

.wave-divider--top {
  top: -1px;
  transform: rotate(180deg);
}

/* ---------- Benefit grid ---------- */

.benefit-item {
  background: var(--surface-card);
  padding: 26px 22px;
}

.benefit-item__icon {
  margin-bottom: 14px;
  color: var(--color-navy);
}

.benefit-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.benefit-item p {
  font-size: 14px;
  color: var(--color-accent-text-on-light);
  line-height: 1.5;
}

/* ---------- Traction list ---------- */

.traction-list {
  display: flex;
  flex-direction: column;
}

.traction-list__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.traction-list__label {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--color-navy);
}

.traction-list__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-accent-text-on-light);
  white-space: nowrap;
}

.interview-callout {
  margin-top: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}

.interview-callout__number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 40px;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

/* ---------- Roadmap / timeline ---------- */

.roadmap-card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.roadmap-card__status {
  align-self: flex-start;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-navy);
  background: var(--surface-tint);
  padding: 4px 12px;
  border-radius: 100px;
}

.roadmap-card__phase {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-accent-text-on-light);
}

/* ---------- Team ---------- */

.team-card h3 {
  font-size: 19px;
  margin: 16px 0 2px;
}

.team-card__role {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-accent-text-on-light);
  margin-bottom: 6px;
}

.team-card p:last-child {
  font-size: 14.5px;
  color: var(--color-accent-text-on-light);
  line-height: 1.5;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--surface-navy);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.site-footer__brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: var(--space-8);
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.site-footer__meta {
  margin-left: auto;
  font-size: 13.5px;
  color: var(--color-muted-on-dark);
}

/* ---------- Oyster watermark ---------- */

.oyster-watermark {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
}

/* ---------- Brand wordmark (nav + footer) ---------- */

.brand-wordmark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--color-navy);
  letter-spacing: -0.01em;
}

.on-dark .brand-wordmark {
  color: var(--color-white);
}

.brand-wordmark__accent {
  color: var(--color-accent-text-on-light);
}

.on-dark .brand-wordmark__accent {
  color: var(--color-accent-text-on-dark);
}

.site-footer .brand-wordmark {
  font-size: 16px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: 56px 88px;
}

@media (min-width: 760px) {
  .hero {
    padding-block: 88px 128px;
  }
}

.hero__title {
  font-size: clamp(38px, 6.2vw, 76px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 15ch;
  margin-top: 22px;
}

.on-dark .hero__title {
  color: var(--color-white);
}

.hero__lead {
  max-width: 58ch;
  margin-top: 26px;
  font-weight: 400;
}

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

.hero-image-band {
  padding-top: 8px;
}

.hero-image-band .placeholder-media {
  aspect-ratio: 21 / 8;
  min-height: 200px;
}

@media (min-width: 760px) {
  .hero-image-band .placeholder-media {
    min-height: 280px;
  }
}

.section-heading {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 26ch;
  text-wrap: balance;
}

.on-dark .section-heading {
  color: var(--color-white);
}

.section-heading--display {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  max-width: 20ch;
}
