:root {
  --bg-top: #fff6dd;
  --bg-mid: #ffe3b8;
  --bg-bottom: #f5f7ff;
  --paper: rgba(255, 252, 245, 0.82);
  --panel: rgba(255, 255, 255, 0.74);
  --line: rgba(75, 58, 32, 0.12);
  --ink: #2c2430;
  --muted: #6a6063;
  --accent: #ff8a3d;
  --accent-deep: #d55c1d;
  --sky: #4f84ff;
  --mint: #3a7d74;
  --shadow: 0 24px 70px rgba(97, 69, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Avenir Next", "Gill Sans", sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 159, 67, 0.34), transparent 24%),
    radial-gradient(circle at 85% 8%, rgba(79, 132, 255, 0.18), transparent 26%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 34%, var(--bg-bottom) 100%);
}

.page-shell {
  min-height: 100vh;
  padding: 28px;
}

.hero,
.section {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 24px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero {
  padding: 26px 28px 30px;
}

.section {
  padding: 28px;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 35%),
    radial-gradient(circle at 75% 18%, rgba(255, 138, 61, 0.18), transparent 20%),
    radial-gradient(circle at 18% 72%, rgba(79, 132, 255, 0.1), transparent 18%);
  pointer-events: none;
}

.topbar,
.hero-grid,
.section,
.contact-panel {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.nav-links a,
.button,
.contact-link {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), #ffb54d);
  color: #fffdf7;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 30px rgba(213, 92, 29, 0.28);
}

.brand-text {
  display: grid;
  gap: 3px;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span,
.nav-links a,
.panel-label,
.eyebrow,
.feature-index,
.timeline-card span {
  color: var(--muted);
}

.brand-text span,
.nav-links a {
  font-size: 0.92rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.92fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 34px;
}

.hero-copy {
  padding: 18px 4px 12px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 8vw, 5.6rem);
  line-height: 0.93;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.lede,
.feature-card p,
.story-copy p,
.timeline-card p,
.statement-card p,
.contact-note {
  color: var(--muted);
  line-height: 1.8;
}

.lede {
  max-width: 58ch;
  margin-bottom: 22px;
  font-size: 1.04rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-tags span,
.button,
.panel,
.feature-card,
.timeline-card,
.statement-card,
.contact-panel {
  border-radius: 22px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid rgba(79, 132, 255, 0.12);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 50px;
  padding: 14px 20px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  box-shadow: 0 14px 28px rgba(213, 92, 29, 0.22);
}

.button.secondary {
  color: var(--ink);
  border: 1px solid rgba(58, 125, 116, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.hero-stack {
  display: grid;
  gap: 14px;
}

.panel,
.feature-card,
.timeline-card,
.statement-card,
.contact-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(8px);
}

.panel {
  padding: 20px;
}

.pulse-panel {
  min-height: 196px;
  background:
    radial-gradient(circle at top right, rgba(255, 181, 77, 0.24), transparent 32%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(255, 247, 231, 0.92));
}

.pulse-panel strong,
.stat-card strong,
.signal-card strong {
  display: block;
  margin: 6px 0 8px;
  font-size: 1.18rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.signal-card {
  background:
    radial-gradient(circle at 15% 20%, rgba(79, 132, 255, 0.1), transparent 18%),
    rgba(255, 255, 255, 0.82);
}

.panel-label,
.feature-index,
.timeline-card span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 22px;
}

.feature-card.sunrise {
  background: linear-gradient(180deg, rgba(255, 247, 229, 0.95), rgba(255, 255, 255, 0.76));
}

.feature-card.amber {
  background: linear-gradient(180deg, rgba(255, 236, 214, 0.96), rgba(255, 255, 255, 0.78));
}

.feature-card.sky {
  background: linear-gradient(180deg, rgba(236, 243, 255, 0.96), rgba(255, 255, 255, 0.78));
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-card {
  padding: 20px 22px;
}

.statement-card {
  padding: 26px;
  background:
    radial-gradient(circle at 90% 18%, rgba(79, 132, 255, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(255, 244, 222, 0.88), rgba(255, 255, 255, 0.9));
}

.section-heading.compact {
  margin-bottom: 16px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
}

.contact-title {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-link {
  color: var(--accent-deep);
  font-size: 1.18rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .split-band,
  .contact-panel,
  .stat-row {
    grid-template-columns: 1fr;
  }

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

  h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 14px;
  }

  .hero,
  .section {
    padding: 20px;
    border-radius: 24px;
  }

  .button {
    width: 100%;
  }
}
