:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --text: #151515;
  --muted: #3f3f3f;
  --primary: #f7931a;
  --primary-deep: #f08a10;
  --accent: #f53f92;
  --soft-peach: #ffe1bc;
  --border: rgba(21, 21, 21, 0.08);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

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

.site-header,
.hero,
.info-grid,
.highlights,
.connect-strip,
.site-footer {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  position: sticky;
  top: 18px;
  z-index: 10;
  border: 0;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 0.98rem;
  color: var(--primary);
}

.brand-copy small {
  color: var(--text);
  opacity: 0.7;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  font-size: 0.95rem;
}

.nav-cta {
  padding: 12px 18px;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: center;
  padding: 72px 0 48px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.connect-strip h2,
.panel-intro h2 {
  margin: 0;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(3.6rem, 9vw, 6.7rem);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.hero h1 span {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-text {
  max-width: 38rem;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 22px rgba(245, 63, 146, 0.24);
}

.button-secondary {
  background: #fff;
  border: 1px solid var(--border);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.hero-stats article,
.panel,
.highlight-card,
.connect-strip {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-stats article {
  padding: 20px;
  border-radius: 22px;
}

.stat-number {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-stats span,
.panel p,
.highlight-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(100%, 550px);
  filter: none;
}

.hero-card {
  position: absolute;
  top: 28px;
  left: 0;
  z-index: 3;
  max-width: 250px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 252, 247, 0.9);
  box-shadow: var(--shadow);
}

.hero-card-label {
  margin: 0 0 10px;
  color: var(--primary-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 0;
  font-size: 1.5rem;
}

.hero-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(247, 147, 26, 0.18);
}

.orbit-one {
  width: 440px;
  height: 440px;
  top: 80px;
  animation: drift 14s linear infinite;
}

.orbit-two {
  width: 560px;
  height: 560px;
  top: 20px;
  background: radial-gradient(circle, var(--soft-peach) 0%, rgba(255, 225, 188, 0.7) 45%, transparent 72%);
  animation: pulse 6s ease-in-out infinite;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 18px;
  padding: 22px 0 48px;
}

.panel,
.highlight-card,
.connect-strip {
  border-radius: var(--radius-lg);
}

.panel {
  padding: 28px;
}

.panel h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.panel-intro {
  background: #fffaf4;
}

.highlights {
  padding: 28px 0 48px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.section-heading h2,
.connect-strip h2,
.panel-intro h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

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

.highlight-card {
  padding: 28px;
}

.highlight-card h3 {
  margin: 14px 0 10px;
  font-size: 1.5rem;
}

.accent-card {
  background: #fff3f8;
}

.card-index {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.connect-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 32px;
  margin: 12px auto 40px;
  background: #fff7ef;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
  padding: 10px 0 24px;
}

.site-footer strong,
.site-footer a:hover,
.panel h3,
.highlight-card h3,
.section-heading h2,
.connect-strip h2,
.panel-intro h2 {
  color: var(--text);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.social-links a {
  font-weight: 500;
}

.footer-note {
  text-align: right;
}

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

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

@keyframes drift {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.98);
  }
  50% {
    transform: scale(1.02);
  }
}

@media (max-width: 1024px) {
  .hero,
  .info-grid,
  .highlight-cards,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 100px;
  }

  .hero-card {
    top: 0;
  }

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

  .section-heading,
  .connect-strip,
  .site-footer {
    align-items: start;
    justify-content: start;
  }

  .social-links,
  .footer-note {
    justify-content: start;
    text-align: left;
  }
}

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

  .site-header {
    align-items: center;
    border-radius: 28px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 250, 243, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 16vw, 4.6rem);
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-card {
    position: relative;
    max-width: none;
    margin-bottom: 20px;
  }

  .connect-strip {
    padding: 24px;
  }
}
