:root {
  color-scheme: light;
  --ink: #0c1118;
  --slate: #192231;
  --cream: #f6f0e6;
  --sand: #efe5d6;
  --gold: #f1b547;
  --burnt: #d65f2b;
  --teal: #1aa095;
  --shadow: rgba(11, 16, 22, 0.28);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Avenir Next", "Trebuchet MS", sans-serif;
  background: radial-gradient(circle at top left, #fff6e6 0%, #f9efe1 35%, #ebdfd0 60%, #e0d3c2 100%);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(500px 500px at 80% 10%, rgba(26, 160, 149, 0.24), transparent 70%),
    radial-gradient(400px 400px at 10% 40%, rgba(214, 95, 43, 0.2), transparent 60%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.2));
  opacity: 0.7;
  z-index: -2;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(transparent 94%, rgba(12, 17, 24, 0.06) 95%), linear-gradient(90deg, transparent 94%, rgba(12, 17, 24, 0.06) 95%);
  background-size: 60px 60px;
  z-index: -1;
  opacity: 0.35;
  pointer-events: none;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

main {
  padding: 0 6vw 6rem;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 6vw 1rem;
  position: sticky;
  top: 0;
  background: rgba(246, 240, 230, 0.8);
  backdrop-filter: blur(12px);
  z-index: 5;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--gold);
  font-weight: 700;
  font-size: 1.3rem;
}

.logo-title {
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-subtitle {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #4e5664;
}

.top-nav {
  display: flex;
  gap: 1.6rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #4c4b46;
}

.top-nav a {
  position: relative;
  padding-bottom: 0.4rem;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.top-nav a:hover::after {
  transform: scaleX(1);
}

.cta {
  background: var(--ink);
  color: var(--cream);
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 20px 40px rgba(12, 17, 24, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(12, 17, 24, 0.3);
}

.cta.outline {
  background: transparent;
  border: 1px solid rgba(12, 17, 24, 0.3);
  color: var(--ink);
  box-shadow: none;
}

.cta.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(12, 17, 24, 0.2);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 3rem;
  padding: 4rem 0 5rem;
}

.hero-copy h1 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-copy h1 span {
  color: var(--burnt);
}

.hero-copy p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #2d2e2f;
  margin-bottom: 2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(26, 160, 149, 0.18);
  color: var(--slate);
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: #4b4d51;
}

.hero-meta strong {
  font-size: 1.4rem;
  color: var(--ink);
}

.hero-panel {
  background: var(--ink);
  color: var(--cream);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.panel-status {
  background: rgba(241, 181, 71, 0.2);
  color: var(--gold);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.panel-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.panel-card span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.panel-card strong {
  font-size: 1.6rem;
}

.panel-card em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.panel-foot {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.signal {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
}

.signal .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  box-shadow: 0 0 0 6px rgba(26, 160, 149, 0.2);
}

.signal.secondary .dot {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(241, 181, 71, 0.2);
}

.section-title {
  margin-bottom: 2rem;
}

.section-title h2 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.section-title p {
  color: #4e4f53;
  font-size: 1rem;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.brief-grid article {
  background: rgba(255, 255, 255, 0.65);
  padding: 1.6rem;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(12, 17, 24, 0.08);
}

.brief-grid h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.capability {
  margin-top: 5rem;
}

.matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.matrix-card {
  background: var(--sand);
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid rgba(12, 17, 24, 0.08);
  box-shadow: 0 18px 30px rgba(12, 17, 24, 0.08);
}

.matrix-card h4 {
  margin-bottom: 0.8rem;
}

.matrix-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: #3f3f3a;
}

.proof {
  margin-top: 5rem;
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.proof-card {
  background: var(--ink);
  color: var(--cream);
  padding: 1.8rem;
  border-radius: 24px;
  box-shadow: 0 24px 40px rgba(12, 17, 24, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.proof-card .badge {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--gold);
}

.leaders {
  margin-top: 5rem;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.quotes figure {
  background: rgba(255, 255, 255, 0.7);
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(12, 17, 24, 0.08);
}

.quotes blockquote {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.quotes figcaption {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: #4c4d4f;
}

.engagement {
  margin-top: 5rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.timeline-step {
  background: rgba(255, 255, 255, 0.75);
  padding: 1.6rem;
  border-radius: 20px;
  border-top: 4px solid var(--burnt);
  box-shadow: 0 12px 24px rgba(12, 17, 24, 0.08);
}

.timeline-step span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: #4c4f53;
}

.timeline-step h3 {
  margin: 0.8rem 0 0.6rem;
}

.cta-panel {
  margin-top: 6rem;
  background: linear-gradient(120deg, #0c1118, #1a1f26);
  color: var(--cream);
  padding: 3rem;
  border-radius: 28px;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 30px 60px rgba(12, 17, 24, 0.3);
}

.cta-panel p {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer {
  padding: 3rem 6vw 4rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(12, 17, 24, 0.08);
}

.footer p {
  margin-top: 0.6rem;
  color: #4b4d51;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
  color: #444741;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 900px) {
  .top-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    order: -1;
  }

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

@media (max-width: 640px) {
  .top-bar {
    flex-direction: column;
    gap: 1.2rem;
  }

  .hero-meta {
    gap: 1.2rem;
  }

  .panel-grid {
    grid-template-columns: 1fr;
  }
}
