@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --bg: #f6efe3;
  --bg-deep: #efe2cf;
  --surface: rgba(255, 250, 244, 0.72);
  --surface-strong: rgba(255, 251, 247, 0.92);
  --border: rgba(43, 53, 72, 0.12);
  --text-main: #14213d;
  --text-muted: #55627a;
  --accent: #ff6b35;
  --accent-deep: #d9480f;
  --accent-soft: #ffd7c7;
  --teal: #167c80;
  --shadow: 0 28px 80px rgba(20, 33, 61, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 107, 53, 0.22), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(22, 124, 128, 0.18), transparent 22%),
    linear-gradient(160deg, var(--bg), var(--bg-deep));
}

a {
  color: inherit;
}

a:hover {
  opacity: 0.92;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 28px;
}

.ambient {
  position: absolute;
  width: 36rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.7;
  pointer-events: none;
}

.ambient-left {
  top: -8rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0));
}

.ambient-right {
  right: -8rem;
  bottom: -10rem;
  background: radial-gradient(circle, rgba(22, 124, 128, 0.24), rgba(22, 124, 128, 0));
}

.hero-shell {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 36px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.35);
}

.brand-name,
.topbar-link,
.panel-kicker,
.panel-badge,
.eyebrow,
.signal-value,
.step-index,
.insight-index {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-name,
.topbar-link {
  font-size: 0.82rem;
  font-weight: 700;
}

.topbar-link {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.45);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.hero-copy {
  padding: 20px 8px 20px 0;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-deep);
}

h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.92;
  text-transform: uppercase;
}

h2 {
  margin: 10px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  line-height: 1.1;
}

.tagline {
  margin: 16px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 2.8vw, 1.6rem);
  font-weight: 500;
  color: var(--teal);
}

.subtitle {
  max-width: 34rem;
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 28px;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff9f5;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(217, 72, 15, 0.28);
}

.secondary-note {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.signal-card,
.showcase-panel,
.insight-card {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
}

.signal-card {
  padding: 18px;
}

.signal-card p {
  margin: 10px 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.signal-value {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent-deep);
}

.showcase {
  display: grid;
  gap: 18px;
}

.showcase-panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.orbit-panel {
  min-height: 300px;
  background:
    radial-gradient(circle at center, rgba(255, 214, 198, 0.5), transparent 32%),
    radial-gradient(circle at 35% 30%, rgba(22, 124, 128, 0.08), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 242, 0.78));
}

.orbit-center,
.orbit-ring,
.orbit-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.orbit-center {
  width: 114px;
  height: 114px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff9f68);
  box-shadow: 0 18px 44px rgba(255, 107, 53, 0.35);
  z-index: 3;
}

.orbit-core {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff9f5;
}

.orbit-ring {
  border-radius: 50%;
  border: 1px solid var(--border);
}

.orbit-ring-one {
  width: 220px;
  height: 220px;
}

.orbit-ring-two {
  width: 300px;
  height: 300px;
  border-style: dashed;
  opacity: 0.8;
}

.orbit-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(20, 33, 61, 0.12);
  z-index: 2;
}

.orbit-node-one {
  transform: translate(-50%, -50%) translate(0, -136px);
}

.orbit-node-two {
  transform: translate(-50%, -50%) translate(124px, 36px);
}

.orbit-node-three {
  transform: translate(-50%, -50%) translate(-126px, 60px);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-kicker,
.panel-badge,
.step-index,
.insight-index {
  font-size: 0.74rem;
  font-weight: 800;
}

.panel-kicker,
.step-index,
.insight-index {
  color: var(--text-muted);
}

.panel-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.flow-panel {
  display: grid;
  gap: 12px;
}

.flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(43, 53, 72, 0.08);
}

.flow-step strong {
  display: block;
  font-size: 1rem;
}

.flow-step p {
  margin: 6px 0 0;
  color: var(--text-muted);
  line-height: 1.55;
}

.flow-step.is-active {
  background: linear-gradient(135deg, rgba(255, 215, 199, 0.72), rgba(181, 216, 255, 0.62));
}

.insight-band {
  display: grid;
  gap: 20px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(43, 53, 72, 0.08);
}

.insight-copy {
  max-width: 42rem;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.insight-card {
  padding: 20px;
}

.insight-card p {
  margin: 10px 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 960px) {
  .hero-grid,
  .signal-row,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 16px;
  }

  .hero-shell {
    padding: 18px;
    border-radius: 28px;
  }

  .topbar {
    margin-bottom: 22px;
  }

  .topbar-link {
    display: none;
  }

  .showcase-panel,
  .insight-card,
  .signal-card {
    padding: 18px;
  }

  .orbit-panel {
    min-height: 260px;
  }

  .orbit-ring-one {
    width: 180px;
    height: 180px;
  }

  .orbit-ring-two {
    width: 236px;
    height: 236px;
  }

  .orbit-center {
    width: 94px;
    height: 94px;
  }

  .orbit-node {
    font-size: 0.78rem;
    padding: 8px 10px;
  }

  .orbit-node-one {
    transform: translate(-50%, -50%) translate(0, -104px);
  }

  .orbit-node-two {
    transform: translate(-50%, -50%) translate(94px, 28px);
  }

  .orbit-node-three {
    transform: translate(-50%, -50%) translate(-94px, 42px);
  }

  .hero-actions {
    align-items: flex-start;
  }

  .primary-action {
    width: 100%;
  }
}