/* ── Reset & Custom Properties ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:        #bc4a2d;
  --brand-dark:   #8e3520;
  --brand-light:  #fce8e4;
  --accent:       #bc4a2d;
  --accent-hover: #8e3520;
  --nav-bg:       #111111;
  --success:      #16a34a;
  --warn:         #d97706;
  --text:         #111111;
  --text-muted:   #5a5a5a;
  --border:       #e5e7eb;
  --surface:      #f9f7f6;
  --white:        #ffffff;

  --radius:  8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 4px 12px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Georgia', 'Times New Roman', serif;

  --content-width: 1100px;
  --nav-height: 68px;
}

/* ── Base ───────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

h1, h2, h3, h4 {
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.125rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; font-weight: 600; }

p { max-width: 68ch; }
p + p { margin-top: .75rem; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

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

ul, ol { padding-left: 1.5rem; }
li + li { margin-top: .35rem; }

/* ── Layout helpers ─────────────────────────────────────── */
.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}
.section--alt {
  background: var(--surface);
}
.section--brand {
  background: #111111;
  color: var(--white);
}
.section--brand h2,
.section--brand h3,
.section--brand p { color: var(--white); }

.section__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .75rem;
}
.section--brand .section__label {
  color: #f4a28c;
}

.section__header {
  max-width: 700px;
  margin-bottom: 3rem;
}
.section__header p {
  margin-top: .75rem;
  color: var(--text-muted);
  font-size: 1.125rem;
}
.section--brand .section__header p {
  color: rgba(255,255,255,.7);
}

/* Grid */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }

/* ── Navigation ─────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--nav-bg);
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.site-nav__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-nav__logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-nav__logo img {
  height: 38px;
  width: auto;
}
.site-nav__logo-text {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .04em;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  padding: 0;
}
.site-nav__links li { margin-top: 0; }

.site-nav__links a {
  display: inline-block;
  padding: .5rem .875rem;
  border-radius: var(--radius);
  color: rgba(255,255,255,.85);
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.site-nav__links a:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
  text-decoration: none;
}
.site-nav__links a[aria-current="page"] {
  background: rgba(255,255,255,.18);
  color: var(--white);
}
.site-nav__links a.nav-cta {
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  margin-left: .5rem;
}
.site-nav__links a.nav-cta:hover {
  background: var(--brand-dark);
  color: var(--white);
}

/* Mobile nav toggle (simple) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--white);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .site-nav__links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: #000;
    flex-direction: column;
    align-items: stretch;
    padding: .75rem 1.5rem 1rem;
    gap: .25rem;
  }
  .site-nav__links.is-open { display: flex; }
  .site-nav__links a { padding: .625rem 1rem; }
  .site-nav__links a.nav-cta { margin-left: 0; margin-top: .25rem; text-align: center; }
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: none; }

.btn--primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn--primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }

.btn--secondary {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn--secondary:hover { background: var(--brand-light); }

.btn--white {
  background: var(--white);
  color: #111;
  border-color: var(--white);
}
.btn--white:hover { background: #fce8e4; color: var(--brand); }

.btn--white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--white-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(145deg, #111111 0%, #1f1f1f 55%, #2a1510 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero__eyebrow {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f4a28c;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  max-width: 720px;
  margin-bottom: 1.25rem;
}

.hero__subhead {
  font-size: 1.25rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 2.25rem;
}

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.card--elevated {
  box-shadow: var(--shadow);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.card h3 { margin-bottom: .5rem; }
.card p { color: var(--text-muted); font-size: .9375rem; }

/* ── Value columns ──────────────────────────────────────── */
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-top: 4px solid var(--brand);
  box-shadow: var(--shadow);
}
.value-card__audience {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.value-card h3 { margin-bottom: .75rem; }
.value-card ul { color: var(--text-muted); font-size: .9375rem; }

/* ── Screenshot frame ───────────────────────────────────── */
.screenshot-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.screenshot-frame img {
  width: 100%;
}

/* ── Feature section (text + image side-by-side) ─────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature-split--reverse { direction: rtl; }
.feature-split--reverse > * { direction: ltr; }

@media (max-width: 768px) {
  .feature-split { grid-template-columns: 1fr; gap: 2rem; }
  .feature-split--reverse { direction: ltr; }
}

.feature-split__text h2 { margin-bottom: 1rem; }
.feature-split__text p { color: var(--text-muted); margin-bottom: 1.5rem; }
.feature-split__text ul {
  color: var(--text-muted);
  font-size: .9375rem;
  margin-bottom: 1.5rem;
}

/* ── Three-layer moderation ─────────────────────────────── */
.layer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.layer-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.layer-item__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.layer-item h4 { margin-bottom: .25rem; }
.layer-item p { color: var(--text-muted); font-size: .9375rem; max-width: none; }

/* ── Stat cards ─────────────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.stat-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
}
.stat-card__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-card__label {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-group + .faq-group { margin-top: 3rem; }
.faq-group__title {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--brand-light);
}

details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}
details + details { margin-top: .5rem; }

summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .9375rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform .2s;
}
details[open] summary::after { content: '−'; }

details .answer {
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
  font-size: .9375rem;
  border-top: 1px solid var(--border);
  padding-top: .875rem;
}
details .answer p + p { margin-top: .5rem; }

/* ── Form ───────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .625rem .875rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(188,74,45,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── Pricing ────────────────────────────────────────────── */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.pricing-card--featured {
  border-color: var(--brand);
  position: relative;
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 999px;
}
.pricing-card__price {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin: 1rem 0 .25rem;
}
.pricing-card__period {
  color: var(--text-muted);
  font-size: .9375rem;
  margin-bottom: 1.5rem;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 2rem;
}
.pricing-card ul li {
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9375rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.pricing-card ul li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Social proof / pullquote ───────────────────────────── */
.pullquote {
  background: var(--brand-light);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--brand-dark);
}
.pullquote cite {
  display: block;
  font-style: normal;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: .75rem;
}

/* ── Team card ──────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.team-card__name {
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: .2rem;
}
.team-card__role {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.team-card p { color: var(--text-muted); font-size: .9375rem; }

/* ── Steps / process ────────────────────────────────────── */
.steps {
  counter-reset: step;
  display: grid;
  gap: 1.5rem;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.step__num {
  counter-increment: step;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--text-muted); font-size: .9375rem; max-width: none; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: #0a0f1f;
  color: rgba(255,255,255,.6);
  padding: 3rem 0 2rem;
  margin-top: 0;
}
.site-footer__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
}
.site-footer__brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .04em;
}
.site-footer__tagline {
  font-size: .875rem;
  margin-top: .35rem;
}
.site-footer__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
  align-items: center;
}
.site-footer__links li { margin-top: 0; }
.site-footer__links a {
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  text-decoration: none;
  transition: color .15s;
}
.site-footer__links a:hover { color: var(--white); text-decoration: none; }
.site-footer__bottom {
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
}

/* ── CTA banner ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0d0d0d 0%, #1c1c1c 50%, #2a1510 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.75); font-size: 1.125rem; max-width: none; margin: 0 auto 2rem; }

/* ── Inline notice ──────────────────────────────────────── */
.notice {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: .9375rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.notice--info { background: var(--brand-light); border: 1px solid #f4a28c; color: var(--brand-dark); }
.notice--warn { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }

/* ── Page hero (inner pages) ────────────────────────────── */
.page-hero {
  background: #111111;
  color: var(--white);
  padding: 4rem 0 3.5rem;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.125rem;
  max-width: 600px;
}

/* ── Utility ────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.gap-sm { gap: .75rem; }
