:root {
  --bg: #0b0d10;
  --panel: #151a20;
  --panel-strong: #1e252c;
  --line: rgba(255,255,255,.13);
  --text: #f8f3ea;
  --muted: #b8b0a5;
  --blue: #73a8ff;
  --green: #80d99b;
  --amber: #f2b84b;
  --coral: #ff806f;
  --ink: #111315;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
.site-header {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: auto;
  padding: 22px 28px;
}
.site-header.compact {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: rgba(11,13,16,.92);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--ink);
  font-weight: 900;
}
.brand b,
.brand small { display: block; }
.brand small {
  color: var(--muted);
  font-size: 11px;
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 750;
}
nav a {
  color: rgba(248,243,234,.82);
  text-decoration: none;
}
nav a:hover { color: #fff; }
.nav-cta {
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,13,16,.96), rgba(11,13,16,.72) 42%, rgba(11,13,16,.18)), linear-gradient(0deg, var(--bg), transparent 28%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 150px 28px 86px;
}
.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p { overflow-wrap: anywhere; }
h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.04;
  letter-spacing: 0;
}
.hero-copy {
  max-width: 670px;
  margin: 22px 0 0;
  color: rgba(248,243,234,.8);
  font-size: clamp(17px, 2vw, 21px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}
.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--ink);
}
.button.secondary {
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.07);
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin: -24px auto 0;
  padding: 0 28px 34px;
  position: relative;
  z-index: 3;
}
.trust-strip div {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(21,26,32,.88);
}
.trust-strip b,
.trust-strip span { display: block; }
.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}
.section,
.page-main {
  max-width: 1180px;
  margin: auto;
  padding: 86px 28px;
}
.two-column,
.package-band,
.checklist-section,
.channel-section,
.process-section,
.tools-section,
.contact-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  align-items: start;
}
.section h2,
.page-title h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
}
.offer-list,
.process-list,
.sample-grid,
.pricing-grid,
.template-grid {
  display: grid;
  gap: 16px;
}
.offer-list {
  grid-template-columns: repeat(2, 1fr);
}
.process-list {
  grid-template-columns: repeat(2, 1fr);
}
article,
.price-card,
.checklist,
.channel-list,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.offer-list article,
.process-list article {
  min-height: 226px;
  padding: 22px;
}
.offer-list article span,
.process-list article span,
.plan-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
article h3,
article h2 {
  margin: 18px 0 8px;
}
article p,
.page-title p,
.package-band p,
.price-card p,
.checklist p {
  color: var(--muted);
}
.tools-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.station-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.station-grid article {
  min-height: 220px;
  padding: 20px;
}
.station-grid span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.station-grid h3 {
  margin: 18px 0 8px;
}
.station-grid p {
  color: var(--muted);
  font-size: 14px;
}
.station-grid a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}
.package-band {
  border-top: 1px solid var(--line);
}
.price-card {
  padding: 26px;
  background: linear-gradient(145deg, #202833, #151a20);
}
.price-card span { color: var(--muted); }
.price-card strong {
  display: block;
  margin: 8px 0;
  font-size: 42px;
}
.page-title {
  max-width: 850px;
  padding: 74px 0 40px;
}
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}
.pricing-grid article {
  padding: 24px;
}
.pricing-grid .featured {
  background: linear-gradient(145deg, rgba(115,168,255,.18), rgba(128,217,155,.1)), var(--panel);
  border-color: rgba(128,217,155,.42);
}
.pricing-grid strong {
  display: block;
  color: var(--green);
  font-size: 30px;
}
ul {
  margin: 22px 0 0;
  padding-left: 20px;
  color: rgba(248,243,234,.82);
}
.checklist,
.channel-list {
  padding: 22px;
}
.checklist p { margin: 0 0 14px; }
.checklist p:last-child { margin-bottom: 0; }
.sample-grid {
  grid-template-columns: repeat(2, 1fr);
}
.sample-grid article {
  padding: 20px;
}
.sample-grid a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}
.mock-browser {
  min-height: 210px;
  padding: 16px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(115,168,255,.28), rgba(255,255,255,.06));
}
.mock-browser.amber { background: linear-gradient(145deg, rgba(242,184,75,.3), rgba(255,255,255,.06)); }
.mock-browser.green { background: linear-gradient(145deg, rgba(128,217,155,.28), rgba(255,255,255,.06)); }
.mock-browser.coral { background: linear-gradient(145deg, rgba(255,128,111,.3), rgba(255,255,255,.06)); }
.mock-browser > span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}
.mock-panel {
  margin-top: 34px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(11,13,16,.72);
}
.mock-panel b,
.mock-panel em { display: block; }
.mock-panel em {
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
}
.mock-row {
  height: 14px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
}
.mock-row.short { width: 62%; }
.template-grid {
  grid-template-columns: repeat(2, 1fr);
}
.template-grid article {
  padding: 18px;
}
pre {
  white-space: pre-wrap;
  margin: 0;
  padding: 16px;
  border-radius: 8px;
  background: #0f1216;
  color: #e8e2d8;
  font-size: 13px;
  line-height: 1.55;
}
.channel-list {
  display: grid;
  gap: 10px;
}
.channel-list a {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  color: rgba(248,243,234,.86);
  text-decoration: none;
}
.channel-list a:hover { background: rgba(115,168,255,.18); }
.contact-section {
  align-items: stretch;
  border-top: 1px solid var(--line);
}
.contact-section > div > p {
  color: var(--muted);
}
.contact-email a {
  color: var(--green);
  font-weight: 850;
  text-decoration: none;
}
.contact-form {
  display: grid;
  gap: 10px;
  padding: 24px;
}
.contact-form label {
  color: rgba(248,243,234,.92);
  font-size: 13px;
  font-weight: 850;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: #0f1216;
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(128,217,155,.7);
  box-shadow: 0 0 0 3px rgba(128,217,155,.1);
}
.form-button {
  width: max-content;
  border: 0;
  cursor: pointer;
}
.form-status {
  min-height: 22px;
  color: var(--muted);
  font-size: 13px;
}
.form-status.error {
  color: var(--coral);
}
.form-status.success {
  color: var(--green);
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: auto;
  padding: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 860px) {
  .site-header,
  .site-header.compact {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    background: rgba(11,13,16,.94);
  }
  nav {
    flex-wrap: wrap;
  }
  .hero {
    min-height: 760px;
  }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(11,13,16,.96), rgba(11,13,16,.76)), linear-gradient(0deg, var(--bg), transparent 28%);
  }
  .trust-strip,
  .offer-list,
  .process-list,
  .station-grid,
  .pricing-grid,
  .sample-grid,
  .template-grid,
  .two-column,
  .package-band,
  .checklist-section,
  .channel-section,
  .process-section,
  .tools-section,
  .contact-section {
    grid-template-columns: 1fr;
  }
  .trust-strip {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-header.compact,
  .hero-content,
  .section,
  .page-main,
  footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-content {
    padding-top: 74px;
    padding-bottom: 58px;
  }
  h1 {
    font-size: 42px;
  }
  .hero-actions,
  footer {
    flex-direction: column;
  }
  .button,
  .nav-cta {
    width: 100%;
  }
  nav {
    width: 100%;
  }
  nav a:not(.nav-cta) {
    padding: 6px 0;
  }
}
