/* Red Beard Rants — design tokens lifted from the original funnel build. */
:root {
  --purple:      #890DEA;   /* primary CTA */
  --purple-lite: #AF6AE8;   /* links, accents */
  --purple-hov:  #c775ff;   /* hover accent */
  --orange:      #E15D2F;   /* button hover, per the original */
  --ink:         #1C1D20;   /* header / dark panels */
  --black:       #000000;   /* page background */
  --white:       #FFFFFF;
  --muted:       #cacaca;
  --light:       #f5f5f5;
  --container:   1140px;
  --sans: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
}

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

a { color: var(--purple-lite); }
a:hover, a:focus { color: var(--purple-hov); }

h1, h2, h3, h4 { font-family: var(--sans); margin: 0 0 .5em; line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(28px, 5vw, 46px); text-transform: uppercase; letter-spacing: -0.01em; }
h2 { font-size: clamp(24px, 3.6vw, 36px); }
h3 { font-size: clamp(20px, 2.6vw, 26px); font-weight: 700; }

p { margin: 0 0 1.1em; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.container--narrow { max-width: 820px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.center { text-align: center; }
.accent { color: var(--purple-lite); }

/* ---------------------------------------------------------------- header */
.site-header {
  background: var(--ink);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 50;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.site-logo img { width: 324px; max-width: 62vw; }
.site-header a {
  color: var(--white);
  font-size: 17px;
  text-decoration: none;
  white-space: nowrap;
}
.site-header a:hover, .site-header a:focus { color: var(--purple-hov); }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-block;
  background-color: var(--purple);
  color: var(--white);
  font-weight: 700;
  font-size: clamp(15px, 2.2vw, 19px);
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
  padding: 16px 34px;
  border: 2px solid var(--purple);
  border-radius: 6px;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover, .btn:focus {
  background-color: var(--orange);
  border-color: var(--white);
  color: var(--white);
}
.btn--ghost {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn--ghost:hover, .btn--ghost:focus {
  background-color: var(--orange);
  border-color: var(--white);
}
.btn-row {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; align-items: center;
  margin: 28px 0;
}

/* ---------------------------------------------------------------- sections */
.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }
.section--ink { background: var(--ink); }

.lede {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 600;
  max-width: 760px;
  margin-inline: auto;
}

/* ---------------------------------------------------------------- hero */
.hero { padding: 72px 0 56px; text-align: center; }
.hero h1 { max-width: 980px; margin-inline: auto; }
.hero .lede { margin-top: 28px; color: var(--muted); }

/* ---------------------------------------------------------------- split (image + text) */
.split {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}
.split--reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 380px); }
.split img { border-radius: 10px; width: 100%; }
.split .eyebrow {
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.15;
  margin: 0 0 .6em;
}
.split .eyebrow span { display: block; color: var(--purple-lite); }

@media (max-width: 820px) {
  .split, .split--reverse { grid-template-columns: 1fr; gap: 28px; }
  .split--reverse .split-media { order: -1; }
  .split img { max-width: 340px; margin-inline: auto; }
}

/* ---------------------------------------------------------------- icon list */
.icon-list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 26px; }
.icon-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}
.icon-list img { width: 72px; height: auto; }
.icon-list p { margin: 0; }

@media (max-width: 560px) {
  .icon-list li { grid-template-columns: 52px minmax(0, 1fr); gap: 14px; }
  .icon-list img { width: 52px; }
}

/* ---------------------------------------------------------------- photo gallery */
/* 9 photos — three columns fills exactly three rows with no orphan. */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
}
@media (max-width: 780px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .gallery { grid-template-columns: 1fr; } }
.gallery img { border-radius: 10px; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }

/* ---------------------------------------------------------------- Q&A blocks */
.qa { max-width: 820px; margin-inline: auto; }
.qa h3 { margin-top: 2em; color: var(--white); }
.qa h3:first-child { margin-top: 0; }
.qa .answer { font-weight: 800; color: var(--purple-lite); font-size: 20px; margin-bottom: .4em; }
.qa ol { padding-left: 1.2em; }
.qa ol li { margin-bottom: .9em; }

/* ---------------------------------------------------------------- pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 820px;
  margin: 36px auto 0;
}
.price-card {
  background: var(--ink);
  border: 2px solid #33343a;
  border-radius: 12px;
  padding: 34px 28px;
  text-align: center;
  display: flex; flex-direction: column;
}
.price-card--feature { border-color: var(--purple); }
.price-card h3 { margin-bottom: .2em; text-transform: uppercase; letter-spacing: .04em; }
.price-card .price {
  font-size: 44px; font-weight: 800; line-height: 1.1;
  color: var(--purple-lite); margin: 10px 0 4px;
}
.price-card .price-note { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.price-card .btn { margin-top: auto; width: 100%; }
.price-card .tag {
  display: inline-block; align-self: center;
  background: var(--purple); color: var(--white);
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}

/* ---------------------------------------------------------------- legal pages */
.legal { max-width: 820px; margin-inline: auto; }
.legal h1 { text-transform: none; font-size: clamp(26px, 4vw, 38px); }
.legal h2 { font-size: clamp(19px, 2.4vw, 23px); margin-top: 1.8em; }
.legal .effective { color: var(--muted); font-style: italic; margin-bottom: 2em; }
.legal address { font-style: normal; line-height: 1.7; }
/* width:100% is required — a bare max-width here would beat the global
   img{max-width:100%} rule and overflow narrow screens. */
.legal-banner { width: 100%; max-width: 620px; margin: 48px auto 0; border-radius: 10px; }

/* ---------------------------------------------------------------- footer */
.site-footer {
  background: var(--ink);
  padding: 34px 0;
  text-align: center;
  font-size: 15px;
}
.footer-nav {
  display: flex; flex-wrap: wrap; gap: 6px 4px;
  justify-content: center; align-items: center;
  margin: 0 0 14px; padding: 0; list-style: none;
}
.footer-nav a { color: var(--white); text-decoration: none; padding: 0 8px; }
.footer-nav a:hover, .footer-nav a:focus { color: var(--purple-hov); }
.footer-nav .sep { color: var(--purple); }
.site-footer .copyright { color: var(--muted); margin: 0; }
