* {
  box-sizing: border-box;
}

:root {
  --bg: #0d0e10;
  --panel: #151719;
  --panel-soft: #1b1e22;
  --text: #f7f3ea;
  --muted: #a9a49a;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #d7a84f;
  --gold-strong: #f0c766;
  --green: #45d483;
  --black: #070708;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(13, 14, 16, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: var(--black);
}

.nav-links {
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.header-actions {
  gap: 10px;
}

.solid-btn,
.ghost-btn,
.outline-btn,
.plan-btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 16px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
}

.solid-btn,
.plan-btn.primary {
  background: var(--gold);
  color: var(--black);
}

.ghost-btn {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.outline-btn,
.plan-btn {
  background: var(--panel-soft);
  color: var(--text);
  border-color: var(--line);
}

.large {
  min-height: 50px;
  padding: 0 22px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(38px, 6vw, 82px) clamp(18px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.hero-proof {
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
}

.hero-proof span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  display: block;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72));
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 5px;
  width: min(260px, calc(100% - 32px));
  padding: 16px;
  border-radius: 10px;
  background: rgba(15, 16, 18, 0.88);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.floating-card small,
.floating-card span {
  color: var(--muted);
}

.schedule-card {
  left: 18px;
  bottom: 18px;
}

.status-card {
  right: 18px;
  top: 18px;
}

.section {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section h2 {
  max-width: 820px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
}

.features-grid,
.pricing-grid,
.steps {
  display: grid;
  gap: 16px;
}

.features-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.price-card,
.steps article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--gold-strong);
  font-weight: 900;
}

.feature-card p,
.steps p,
.plan-description,
.price-card li {
  color: var(--muted);
  line-height: 1.55;
}

.workflow-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.steps strong {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: var(--black);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.price-card.featured {
  background: #202123;
  border-color: rgba(240, 199, 102, 0.45);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(240, 199, 102, 0.14);
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 800;
}

.plan-label {
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  display: block;
  margin: 18px 0 10px;
  font-size: 42px;
}

.price span {
  color: var(--muted);
  font-size: 15px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
}

.plan-btn {
  width: 100%;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(42px, 6vw, 72px);
  padding: clamp(28px, 5vw, 56px);
  border-radius: 14px;
  background: var(--text);
  color: var(--black);
}

.cta-section .eyebrow {
  color: #7b5a16;
}

.cta-section h2 {
  margin-bottom: 0;
  max-width: 780px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .workflow-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 480px;
  }

  .features-grid,
  .pricing-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-media,
  .hero-media img {
    min-height: 390px;
  }

  .features-grid,
  .pricing-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: calc(100% - 24px);
    margin: 12px;
  }

  .hero-media {
    display: flex;
    flex-direction: column;
  }

  .hero-media::after {
    display: none;
  }

  .site-footer {
    flex-direction: column;
  }
}