:root {
  --bg: #fff1e6;
  --navy: #344966;
  --coral: #ff6b6b;
  --white: #ffffff;
  --muted: #a69b97;
  --text: #243449;
  --shadow: 0 18px 48px rgba(52, 73, 102, 0.14);
  --shadow-soft: 0 10px 24px rgba(52, 73, 102, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 107, 107, 0.16), transparent 28%),
    linear-gradient(180deg, #fff7f1 0%, var(--bg) 28%, #fffaf6 100%);
  color: var(--text);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(52, 73, 102, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(30, 43, 61, 0.18);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff7ef;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  filter: invert(100%);
}

.eyebrow,
.section-kicker,
.note-label,
.record-label,
.footer-meta {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.note-label,
.record-label,
.footer-meta {
  font-size: 0.72rem;
  margin-block-end: 0.5em;
}

.brand-lockup h1,
.hero h2,
.section-heading h2,
.record-card h3 {
  margin: 0;
}

.brand-lockup h1 {
  font-size: 1.35rem;
}

.top-nav {
  display: flex;
  gap: 1rem;
}

.top-nav a {
  color: #fff7ef;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.92;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: #ffffff;
}

.section-shell {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  padding: 4rem 0 2rem;
}

.hero-copy,
.hero-note,
.record-card,
.screen-frame {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(52, 73, 102, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: 2rem;
}

.hero-note {
  align-self: start;
  padding: 1.5rem;
}

.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h2 {
  font-size: clamp(2.1rem, 3.5vw, 4rem);
  line-height: 1.05;
  color: var(--navy);
}

.lede,
.section-heading p,
.record-card p,
.hero-note li,
.site-footer p {
  font-size: 1.03rem;
  line-height: 1.75;
}

.lede {
  margin: 1.25rem 0 0;
  max-width: 62ch;
}

.hero-actions,
.record-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(52, 73, 102, 0.24);
}

.button-secondary {
  background: rgba(255, 107, 107, 0.08);
  color: var(--navy);
  border-color: rgba(255, 107, 107, 0.32);
}

.hero-note ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.hero-note li + li {
  margin-top: 0.75rem;
}

.showcase,
.record,
.purpose {
  padding: 1.5rem 0 2rem;
}

.section-heading {
  margin-bottom: 1.25rem;
}

.section-heading.narrow {
  max-width: 56rem;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  color: var(--navy);
}

.screen-frame {
  padding: 1rem;
  overflow: hidden;
}

.screen-frame img {
  width: 100%;
  border-radius: calc(var(--radius-md) - 4px);
  box-shadow: var(--shadow);
}

.screen-frame figcaption {
  padding: 1rem 0 0.25rem;
  color: rgba(36, 52, 73, 0.72);
  font-size: 0.95rem;
}

.record-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem;
}

.record-card h3 {
  margin-top: 0.2rem;
  font-size: 1.45rem;
  color: var(--navy);
}

.site-footer {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 2rem auto 3rem;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(52, 73, 102, 0.12);
  color: rgba(36, 52, 73, 0.76);
}

.footer-meta {
  color: rgba(166, 155, 151, 0.92);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header,
  .record-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 1rem;
  }

  .top-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-copy,
  .hero-note,
  .record-card,
  .screen-frame {
    border-radius: var(--radius-md);
  }

  .hero-copy,
  .hero-note,
  .record-card {
    padding: 1.2rem;
  }

  .screen-frame {
    padding: 0.75rem;
  }

  .button,
  .hero-actions,
  .record-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }
}
