:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --muted-soft: #64748b;
  --border: #e2e8f0;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --dark: #020617;
  --primary: #f97316;
  --primary-deep: #ea580c;
  --secondary: #7c3aed;
  --shadow-sm: 0 10px 25px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 25px 60px rgba(15, 23, 42, 0.16);
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input {
  font: inherit;
}

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

.section {
  padding: 5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--primary);
}

.brand-tagline {
  margin-top: 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.btn-dark {
  background: var(--dark);
  color: #ffffff;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-deep);
}

.btn-light {
  background: #ffffff;
  color: var(--text);
  border: 1px solid #cbd5e1;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 45%, #f5f3ff 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  padding: 5rem 0 6rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pill {
  display: inline-flex;
  width: fit-content;
  border: 1px solid #fed7aa;
  background: #ffffff;
  color: var(--primary-deep);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.hero-copy h1 {
  margin: 1rem 0 0;
  max-width: 700px;
  font-size: clamp(2.7rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-copy p {
  max-width: 640px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  color: var(--muted-soft);
  font-size: 0.95rem;
}

.hero-stats span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text);
  font-size: 1.8rem;
  font-weight: 800;
}

.hero-card-wrap {
  position: relative;
}

.hero-card {
  max-width: 540px;
  margin: 0 auto;
  padding: 1rem;
  border-radius: var(--radius-2xl);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-lg);
}

.hero-card-inner {
  background: var(--dark);
  color: #ffffff;
  border-radius: 26px;
  padding: 1.4rem;
}

.hero-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-card-label,
.note-label,
.section-eyebrow,
.newsletter-eyebrow,
.muted-label,
.footer-title,
.note-label-light,
.light-eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.hero-card-label,
.section-eyebrow,
.brand-eyebrow,
.newsletter-eyebrow {
  color: var(--primary);
}

.hero-card-title {
  margin-top: 0.35rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.hero-card-badge {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
}

.video-placeholder {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary) 0%, #fb923c 45%, var(--secondary) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.play-circle {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 1.9rem;
}

.video-placeholder p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
}

.hero-card-meta {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.floating-note {
  position: absolute;
  border-radius: 18px;
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-sm);
}

.floating-note-left {
  top: 2rem;
  left: -0.75rem;
  background: #ffffff;
}

.floating-note-right {
  right: 0;
  bottom: -1rem;
}

.note-label {
  color: #94a3b8;
}

.note-text {
  margin-top: 0.35rem;
  font-weight: 700;
}

.accent-note {
  background: var(--primary);
  color: #ffffff;
}

.note-label-light {
  color: #ffedd5;
}

.note-text-light {
  margin-top: 0.35rem;
  font-weight: 700;
}

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

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading h2,
.about-dark-card h2,
.newsletter-card h2,
.site-footer h3 {
  margin: 0.6rem 0 0;
  font-size: clamp(2rem, 4vw, 2.3rem);
  line-height: 1.15;
}

.section-copy,
.about-light-card p,
.site-footer p,
.newsletter-card p,
.about-dark-card p {
  color: var(--muted);
  line-height: 1.9;
}

.center-text {
  text-align: center;
}

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

.content-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-2xl);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-thumbnail {
  min-height: 220px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #fff7ed 100%);
  margin-bottom: 1rem;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.content-card h3 {
  margin: 0.85rem 0 0;
  font-size: 1.3rem;
  line-height: 1.25;
}

.content-card p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-deep);
  font-weight: 700;
}

.category-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-soft);
  padding: 4rem 0;
}

.chip-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.chip {
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  font-weight: 700;
  color: #334155;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.about-dark-card,
.about-light-card,
.newsletter-card {
  border-radius: var(--radius-2xl);
  padding: 2rem;
}

.about-dark-card {
  background: var(--dark);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.about-dark-card p {
  color: rgba(255, 255, 255, 0.8);
}

.light-eyebrow {
  color: #fdba74;
}

.about-light-card {
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.muted-label,
.footer-title {
  color: #64748b;
}

.about-points {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.5rem;
}

.about-points h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.newsletter-section {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 4rem 0;
}

.newsletter-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.newsletter-card p {
  color: rgba(255, 255, 255, 0.86);
}

.newsletter-eyebrow {
  color: #ffedd5;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  min-width: 260px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.95rem 1.2rem;
  outline: none;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 3.5rem 0;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 2rem;
}

.footer-links {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .newsletter-card,
  .footer-grid,
  .split-heading,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: start;
  }

  .main-nav {
    display: none;
  }

  .floating-note {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    flex-wrap: wrap;
  }

  .hero-grid {
    padding: 4rem 0 5rem;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-card-inner,
  .about-dark-card,
  .about-light-card,
  .newsletter-card {
    padding: 1.4rem;
  }

  .newsletter-form input {
    min-width: 100%;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }
}