:root {
  --bg: #f6f5f2;
  --surface: #ffffff;
  --surface-muted: #ece8df;
  --text: #1f2a2d;
  --text-muted: #6b7478;
  --navy: #004a86;
  --navy-dark: #003765;
  --blue-grey: #98b1b9;
  --blue-grey-soft: #dde8ea;
  --sand: #ddd5ca;
  --gold: #cdb996;
  --orange: #f28a00;
  --border: rgba(31, 42, 45, 0.14);
  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: Inter, "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(20px, 4vw, 48px);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(90deg, rgba(246, 245, 242, 0.98) 0%, rgba(246, 245, 242, 0.88) 38%, rgba(246, 245, 242, 0.42) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(236, 232, 223, 0.72));
}

.hero::after {
  position: absolute;
  inset: clamp(72px, 10vw, 128px) clamp(20px, 4vw, 48px);
  z-index: -1;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(31, 42, 45, 0.1);
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image: url("assets/orchestr-ai-hero.png");
  background-position: center right;
  background-size: cover;
  filter: saturate(0.84) contrast(0.94) brightness(1.04);
}

.site-header,
.hero__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.brand__mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(0, 74, 134, 0.22);
  border-radius: 6px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(31, 42, 45, 0.12);
  border-radius: 6px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
}

.status__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 138, 0, 0.13);
}

.hero__content {
  align-self: center;
  width: min(780px, 100%);
  padding-block: clamp(88px, 16vh, 170px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 44px;
  height: 1px;
  content: "";
  background: var(--orange);
}

h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(72px, 13vw, 168px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  color: var(--text);
}

.lead {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--text-muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero__footer {
  align-self: end;
  color: rgba(31, 42, 45, 0.68);
  font-size: 13px;
}

.footer-line {
  flex: 1;
  min-width: 80px;
  height: 1px;
  background: rgba(31, 42, 45, 0.16);
}

@media (max-width: 820px) {
  .hero {
    min-height: 100svh;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(246, 245, 242, 0.96) 0%, rgba(246, 245, 242, 0.88) 54%, rgba(246, 245, 242, 0.62) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(236, 232, 223, 0.72));
  }

  .hero::after {
    inset: 76px 20px 72px;
  }

  .hero__image {
    background-position: 62% center;
  }

  .site-header {
    align-items: flex-start;
  }

  .brand {
    font-size: 13px;
  }

  .status {
    padding: 8px 10px;
    font-size: 11px;
  }

  .hero__content {
    padding-block: 80px 110px;
  }

  h1 {
    font-size: clamp(64px, 18vw, 104px);
  }

  .lead {
    max-width: 420px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 18px;
  }

  .site-header {
    gap: 14px;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .status {
    max-width: 128px;
  }

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

  .footer-line {
    width: 100%;
  }
}
