:root {
  --bg: #111312;
  --panel: #191d1a;
  --panel-2: #f4efe5;
  --text: #f7f4ed;
  --muted: #c9c1b3;
  --ink: #141412;
  --ink-muted: #5f605b;
  --lime: #b6ff5d;
  --red: #e4493f;
  --gold: #ffc857;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 28px;
  color: var(--text);
  background: rgba(17, 19, 18, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.signal-strip,
.workflow,
.metric-list {
  display: flex;
  align-items: center;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--lime);
  color: var(--lime);
  font-size: 13px;
}

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

.nav-links a:hover,
.nav-cta:hover {
  color: var(--lime);
}

.nav-cta {
  color: var(--text);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 120px 28px 72px;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/hero-obs.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 10, 9, 0.92) 0%, rgba(9, 10, 9, 0.72) 44%, rgba(9, 10, 9, 0.24) 100%),
    linear-gradient(0deg, rgba(17, 19, 18, 0.92) 0%, rgba(17, 19, 18, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.92;
  font-weight: 950;
}

h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  margin-bottom: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-copy {
  max-width: 720px;
  color: #f0e7d8;
  font-size: 21px;
  margin-bottom: 30px;
}

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

.button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--lime);
}

.button.primary {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
}

.signal-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #151715;
}

.signal-strip div {
  min-height: 104px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  font-size: 18px;
  color: var(--gold);
}

.signal-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section,
.feature-band,
.delivery-section,
.pricing-section,
.payment-section,
.offer-section,
.contact-section {
  padding: 86px 28px;
}

.section-heading,
.intro,
.proof-section,
.contact-section {
  max-width: 1180px;
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 19px;
  padding-top: 34px;
}

.feature-band {
  background: var(--panel-2);
  color: var(--ink);
}

.feature-grid,
.delivery-grid,
.pricing-grid,
.payment-grid,
.media-grid,
.faq-list {
  max-width: 1180px;
  margin: 0 auto;
}

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

.feature-card,
.price-card {
  border-radius: 8px;
}

.feature-card {
  min-height: 260px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #ded6c9;
  box-shadow: 0 12px 34px rgba(41, 35, 25, 0.08);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  background: var(--ink);
  color: var(--lime);
  font-weight: 950;
  font-size: 13px;
}

.feature-card p,
.step p,
.proof-copy p,
.faq-list p,
.contact-copy p {
  color: var(--ink-muted);
}

.visual-section {
  background: #0f1413;
}

.visual-section .section-heading,
.workflow-section .section-heading,
.faq-section .section-heading {
  margin-bottom: 36px;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.media-item {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #161a18;
  box-shadow: var(--shadow);
}

.media-item.large {
  grid-row: span 2;
}

.media-item img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-item.gift-shot img {
  object-fit: contain;
  background: #111312;
}

.media-item.control-shot {
  grid-column: 1 / -1;
}

.media-item.control-shot img {
  object-fit: contain;
  background: #090d13;
}

.media-item figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
}

.workflow {
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
  gap: 18px;
}

.step {
  flex: 1;
  min-height: 220px;
  padding: 26px;
  border-top: 4px solid var(--red);
  background: #f7f3eb;
  color: var(--ink);
}

.step span {
  display: block;
  color: var(--red);
  font-weight: 950;
  margin-bottom: 24px;
}

.delivery-section {
  background: #101211;
}

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

.delivery-card {
  min-height: 250px;
  padding: 26px;
  border-radius: 8px;
  background: #191d1a;
  border: 1px solid var(--line);
}

.delivery-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.delivery-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.requirements-panel {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 28px;
  border-radius: 8px;
  background: #f7f3eb;
  color: var(--ink);
}

.requirements-panel h3 {
  margin-bottom: 14px;
}

.requirements-panel ul {
  columns: 2;
  column-gap: 42px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink-muted);
}

.requirements-panel li {
  break-inside: avoid;
  margin-bottom: 9px;
}

.pricing-section {
  background: #151715;
}

.centered {
  text-align: center;
  margin-bottom: 38px;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 28px;
  background: #1b1f1c;
  border: 1px solid var(--line);
}

.price-card.featured {
  background: #23291d;
  border-color: rgba(182, 255, 93, 0.72);
  box-shadow: var(--shadow);
}

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

.price {
  color: var(--lime);
  font-size: 34px;
  font-weight: 950;
  margin-bottom: 22px;
}

.price-card ul {
  padding-left: 20px;
  color: var(--muted);
  margin-bottom: 28px;
}

.price-card li {
  margin-bottom: 10px;
}

.price-note {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 22px;
}

.price-card .button {
  margin-top: auto;
  width: 100%;
}

.payment-section {
  background: var(--panel-2);
  color: var(--ink);
}

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

.payment-card {
  min-height: 250px;
  padding: 26px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #ded6c9;
  box-shadow: 0 12px 34px rgba(41, 35, 25, 0.08);
}

.payment-card span {
  display: block;
  color: var(--red);
  font-weight: 950;
  margin-bottom: 22px;
}

.payment-card p {
  color: var(--ink-muted);
  margin-bottom: 0;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1180px;
  margin: 24px auto 0;
}

.payment-methods span {
  padding: 9px 13px;
  border: 1px solid #d2c8b9;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
  font-size: 13px;
}

.payment-note {
  max-width: 880px;
  margin: 18px auto 0;
  color: var(--ink-muted);
  text-align: center;
  font-size: 14px;
}

.operator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1180px;
  margin: 22px auto 0;
}

.operator-grid article {
  padding: 20px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #ded6c9;
}

.operator-grid h3 {
  font-size: 18px;
}

.operator-grid p {
  margin-bottom: 0;
  color: var(--ink-muted);
}

.offer-section {
  background: #101211;
}

.offer-preview {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.offer-copy,
.offer-mail {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #191d1a;
}

.offer-copy {
  padding: 28px;
}

.offer-copy p,
.offer-copy li {
  color: var(--muted);
}

.offer-copy ul {
  padding-left: 20px;
  margin-bottom: 24px;
}

.offer-kicker {
  color: var(--gold) !important;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-mail {
  min-height: 520px;
  margin: 0;
  padding: 24px;
  color: #f5efe5;
  white-space: pre-wrap;
  overflow: auto;
  font-family: Consolas, "SFMono-Regular", ui-monospace, monospace;
  font-size: 14px;
  line-height: 1.55;
}

.proof-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.proof-copy {
  color: var(--ink);
}

.proof-section {
  color: var(--ink);
}

.proof-section.section {
  background: var(--panel-2);
  max-width: none;
}

.proof-section > * {
  max-width: 560px;
}

.proof-copy {
  justify-self: end;
}

.metric-list {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.metric-list div {
  padding: 22px 24px;
  background: #ffffff;
  border-left: 5px solid var(--red);
}

.metric-list strong {
  display: block;
  color: var(--ink);
  font-size: 36px;
  line-height: 1;
}

.metric-list span {
  color: var(--ink-muted);
}

.faq-section {
  background: #101211;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: #191d1a;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: #f7f3eb;
  color: var(--ink);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9c0b1;
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(182, 255, 93, 0.42);
  border-color: var(--ink);
}

.form-note {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
}

.site-footer {
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.status-page,
.admin-page {
  min-height: 100vh;
  padding: 72px 28px;
  display: grid;
  place-items: center;
  background: #101211;
}

.status-card,
.admin-panel {
  width: min(100%, 1180px);
  padding: 34px;
  border-radius: 8px;
  background: #191d1a;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.status-card {
  max-width: 760px;
}

.status-card h1,
.admin-panel h1 {
  font-size: clamp(42px, 7vw, 76px);
}

.status-card p,
.admin-muted {
  color: var(--muted);
}

.admin-panel {
  display: grid;
  gap: 22px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}

.admin-list {
  min-height: 420px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #111312;
}

.admin-list pre {
  max-height: 560px;
  overflow: auto;
  white-space: pre-wrap;
  color: var(--muted);
  font-family: Consolas, "SFMono-Regular", ui-monospace, monospace;
  font-size: 13px;
}

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

  .hero {
    min-height: 84vh;
  }

  .signal-strip,
  .feature-grid,
  .delivery-grid,
  .pricing-grid,
  .payment-grid,
    .operator-grid,
  .intro,
  .proof-section,
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }

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

  .media-item.large {
    grid-row: auto;
  }

  .offer-preview {
    grid-template-columns: 1fr;
  }

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

  .workflow {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding: 98px 18px 52px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section,
  .feature-band,
  .delivery-section,
  .pricing-section,
  .payment-section,
  .offer-section,
  .contact-section {
    padding: 58px 18px;
  }

  .signal-strip,
  .feature-grid,
  .delivery-grid,
  .pricing-grid,
  .payment-grid,
    .operator-grid,
  .offer-preview,
  .intro,
  .proof-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .signal-strip div {
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .price-card {
    min-height: auto;
  }

  .requirements-panel ul {
    columns: 1;
  }

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