:root {
  --obsidian: #0b0b12;
  --ink: #141420;
  --carbon: #1f1f2e;
  --graphite: #2a2a3b;
  --slate-50: #f8f9fb;
  --slate-100: #eef0f5;
  --slate-600: #4c5163;
  --slate-900: #1a1c24;
  --ember: #ff4d3a;
  --ember-deep: #e23a28;
  --violet: #7c5cff;
  --gold: #f9c66a;
  --sunrise: linear-gradient(135deg, #ff4d3a 0%, #ff6b5b 45%, #7c5cff 100%);
  --shadow: 0 18px 48px rgba(10, 11, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--obsidian);
  color: #fff;
}

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

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

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 28px 40px 96px;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 18, 0.9) 0%, rgba(11, 11, 18, 0.5) 42%, rgba(11, 11, 18, 0.82) 100%),
    url('assets/landing-preview-1.jpg') center center / cover no-repeat;
  transform: scale(1.03);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 77, 58, 0.24), transparent 28%),
    radial-gradient(circle at 78% 22%, rgba(124, 92, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(11, 11, 18, 0.1) 0%, rgba(11, 11, 18, 0.86) 88%);
}

.nav,
.hero-copy,
.section,
.footer {
  position: relative;
  z-index: 1;
}

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

.brand img {
  height: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.hero-copy {
  max-width: 720px;
  padding-top: 17vh;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffb5a8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ember);
  box-shadow: 0 0 18px rgba(255, 77, 58, 0.55);
}

.eyebrow-light {
  color: var(--ember);
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(3.6rem, 8vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero h1 span {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  background: var(--sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
  line-height: 1.65;
}

.hero-actions,
.hero-meta,
.plans,
.steps,
.showcase-images,
.footer {
  display: flex;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--ember);
}

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

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-meta {
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta span::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
}

.section {
  padding: 88px 40px;
}

.section-dark {
  background: var(--obsidian);
  color: #fff;
}

.section-light {
  background: var(--slate-50);
  color: var(--slate-900);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.showcase-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.steps,
.plans {
  max-width: 1240px;
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap;
}

.step,
.plan {
  flex: 1 1 260px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: var(--carbon);
  padding: 28px;
  box-shadow: var(--shadow);
}

.step strong {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--sunrise);
  margin-bottom: 18px;
}

.step h3,
.plan h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.step p,
.plan p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.showcase {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.showcase-copy,
.showcase-images {
  min-width: 0;
}

.showcase-copy p {
  margin: 18px 0 0;
  color: var(--slate-600);
  line-height: 1.7;
  font-size: 1rem;
}

.showcase-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.showcase-images img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #dfe3ed;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.plan {
  border-color: rgba(255, 255, 255, 0.08);
}

.plan-featured {
  background:
    linear-gradient(180deg, rgba(255, 77, 58, 0.14) 0%, rgba(31, 31, 46, 1) 100%),
    var(--carbon);
  border-color: rgba(255, 77, 58, 0.28);
}

.price {
  margin: 0 0 12px;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}

.price span {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
}

.footer {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 40px 36px;
  background: #ffffff;
  border-top: 1px solid #eef0f5;
}

.footer img {
  height: 26px;
}

.footer-links {
  display: flex;
  gap: 20px;
  color: var(--slate-600);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .hero,
  .section,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

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

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

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

  .showcase-images {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
    padding-bottom: 72px;
  }

  .hero-copy {
    padding-top: 88px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .button {
    width: 100%;
  }

  .footer,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}
