/* ===========================
   RESET & BASE
   Early computer / terminal aesthetic.
   Font: Times New Roman (system), no web fonts.
   Lines: thin, straight, grid-aligned. Square corners only.
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #000000;
  --bg-alt: #080808;
  --fg: #ffffff;
  --fg-muted: #999999;
  --accent: #E8FF00;
  --accent-dim: rgba(232, 255, 0, 0.06);
  --border: rgba(255,255,255,0.10);
  --grid-line: rgba(255,255,255,0.04);
  --code-bg: #000000;
  --code-border: rgba(255,255,255,0.08);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
}

/* ===========================
   TYPOGRAPHY
   Times New Roman throughout — serif, structured, minimal.
   =========================== */
h1, h2, h3 {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-label {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--grid-line);
  padding-bottom: 0.75rem;
}

/* ===========================
   LAYOUT
   =========================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===========================
   NAV BAR
   Minimal: logo left, LinkedIn center, CTA right. Sticky on scroll.
   =========================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  background: #000;
  border-bottom: 1px solid var(--grid-line);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.nav-logo {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.125rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.nav-linkedin {
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 0 0.25rem;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.nav-linkedin:hover {
  color: var(--fg);
  border-bottom-color: var(--fg-muted);
}

.nav-cta {
  font-size: 0.8125rem;
  font-family: 'Times New Roman', Times, serif;
  color: var(--accent);
  background: transparent;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--accent);
  cursor: pointer;
  border-radius: 0;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--accent);
  color: #000;
}

@media (max-width: 480px) {
  .nav-linkedin {
    font-size: 0.75rem;
  }
}

/* ===========================
   GUARANTEE BANNER
   Plain text, all-caps. Terminal printout feel.
   =========================== */
.guarantee-banner {
  border-bottom: 1px solid var(--grid-line);
  padding: 1rem 0;
}

.guarantee-text {
  font-size: 0.9375rem;
  color: var(--fg);
  line-height: 1;
  letter-spacing: 0.04em;
}

/* ===========================
   HERO
   =========================== */
.hero {
  padding: 4rem 0 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--grid-line);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-label {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2rem;
  border: none;
  padding: 0;
}

.hero-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hero-price {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1;
  letter-spacing: 0;
}

.hero-price-sub {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

.hero-headline {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.hero-body {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 40ch;
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: 'Times New Roman', Times, serif;
  color: var(--accent);
  background: transparent;
  text-decoration: none;
  padding: 0.625rem 1.25rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--accent);
  cursor: pointer;
  border-radius: 0;
}
.hero-cta:hover {
  background: var(--accent);
  color: #000;
}

/* 4-step flow strip */
.hero-flow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.flow-step {
  font-size: 0.75rem;
  color: var(--fg-muted);
}
.flow-sep {
  font-size: 0.6875rem;
  color: var(--grid-line);
}
.flow-refund {
  color: var(--fg);
}
.flow-refund::before {
  content: '[';
  color: var(--fg-muted);
}
.flow-refund::after {
  content: ']';
  color: var(--fg-muted);
}

/* Code block — terminal style */
.hero-code-block {
  background: var(--code-bg);
  border: 1px solid var(--code-border);
  overflow: hidden;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8125rem;
  line-height: 1.55;
}

.code-header {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--code-border);
  background: rgba(255,255,255,0.02);
}

.code-dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.12);
}

.code-filename {
  font-size: 0.6875rem;
  color: var(--fg-muted);
  margin-left: 0.5rem;
  letter-spacing: 0.06em;
}

.code-body {
  padding: 1.5rem;
  overflow-x: auto;
  white-space: pre;
}

.code-comment { color: #555; }
.code-red { color: #ff6b6b; }
.code-yellow { color: #ffd93d; }
.code-green { color: #6bcb77; }
.code-blue { color: #74c0fc; }
.code-gray { color: #555; }
.code-keyword { color: #c792ea; }

.code-badge {
  text-align: center;
  padding: 0.5rem;
  font-size: 0.625rem;
  color: var(--accent);
  border-top: 1px solid var(--code-border);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===========================
   OFFER
   =========================== */
.offer {
  padding: 5rem 0;
  border-bottom: 1px solid var(--grid-line);
}

.offer-inner { width: 100%; }

.offer-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--grid-line);
}

.offer-title {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.15;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--grid-line);
  margin-bottom: 2.5rem;
}

.offer-card {
  background: var(--bg);
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--grid-line);
}
.offer-card:last-child { border-right: none; }

.offer-icon {
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}
.offer-icon svg {
  display: block;
}

.offer-card h3 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.0625rem;
  font-weight: 400;
  margin-bottom: 0.625rem;
}

.offer-card p {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Scope callout */
.offer-scope {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.75rem 2rem;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}

.scope-left {
  flex-shrink: 0;
  text-align: center;
  min-width: 80px;
}

.scope-price {
  display: block;
  font-family: 'Times New Roman', Times, serif;
  font-size: 2.5rem;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -0.02em;
}

.scope-price-note {
  font-size: 0.6875rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.25rem;
}

.scope-text {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.scope-refund {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.scope-refund a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,255,0,0.25);
  padding-bottom: 1px;
}

/* ===========================
   EXAMPLES
   "What We've Built" — terminal card grid.
   =========================== */
.examples {
  padding: 5rem 0;
  border-bottom: 1px solid var(--grid-line);
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.example-card {
  background: var(--bg);
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.example-card:last-child { border-right: none; }

.example-title {
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--grid-line);
  margin-bottom: 1.25rem;
}

.example-input,
.example-output {
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.example-input {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grid-line);
  margin-bottom: 1rem;
}

.example-output {
  flex: 1;
}

.example-footer {
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.6875rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 1.25rem;
  border-top: 1px solid var(--grid-line);
  margin-top: 1.25rem;
}

@media (max-width: 900px) {
  .examples-grid {
    grid-template-columns: 1fr;
  }
  .example-card { border-right: none; border-bottom: 1px solid var(--grid-line); }
  .example-card:last-child { border-bottom: none; }
  .examples { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .example-card { padding: 1.5rem 1.25rem; }
  .examples { padding: 3rem 0; }
}

/* ===========================
   TRUST
   =========================== */
.trust {
  padding: 5rem 0;
  border-bottom: 1px solid var(--grid-line);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: start;
}

.trust-statement h2 {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.875rem;
}

.trust-statement p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 34ch;
}

.trust-icon-wrap {
  margin-bottom: 1.25rem;
}

.trust-divider {
  width: 1px;
  background: var(--grid-line);
  align-self: stretch;
}

.trust-reasons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 0.5rem;
}

.trust-reason {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.trust-check {
  color: var(--fg-muted);
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
  font-family: 'Times New Roman', Times, serif;
}

.trust-reason p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===========================
   WHO
   =========================== */
.who {
  padding: 5rem 0;
  border-bottom: 1px solid var(--grid-line);
}

.who-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.who-text h2 {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  margin-bottom: 0.375rem;
}

.who-role {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.who-text p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.who-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-family: 'Times New Roman', Times, serif;
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--grid-line);
  padding-bottom: 1px;
  margin-top: 0.5rem;
}

.who-linkedin:hover {
  color: var(--fg);
}

.who-credentials {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--grid-line);
}

.credential-card {
  background: var(--bg);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  border-bottom: 1px solid var(--grid-line);
}
.credential-card:last-child { border-bottom: none; }

.credential-value {
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.9375rem;
  color: var(--fg);
}

.credential-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ===========================
   CLOSING
   =========================== */
.closing {
  padding: 6rem 0;
  border-bottom: 1px solid var(--grid-line);
}

.closing-inner {
  max-width: 560px;
}

.closing-statement {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--fg);
}

.closing-sub {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
}

.closing-cta {
  display: inline-block;
  font-size: 0.875rem;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  color: var(--accent);
  background: transparent;
  text-decoration: none;
  padding: 0.625rem 1.5rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--accent);
  border-radius: 0;
}
.closing-cta:hover {
  background: var(--accent);
  color: #000;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--grid-line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-name {
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.9375rem;
  color: var(--fg);
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 0.6875rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--fg);
}

.footer-sep {
  color: var(--fg-muted);
  font-size: 0.75rem;
}

/* ===========================
   HOW IT WORKS
   4-step process section — numbered cards with top rule.
   =========================== */
.how-it-works {
  padding: 5rem 0;
  border-bottom: 1px solid var(--grid-line);
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--grid-line);
}

.hiw-card {
  background: var(--bg);
  padding: 2rem 1.75rem 2.25rem;
  border-right: 1px solid var(--grid-line);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hiw-card:last-child { border-right: none; }

.hiw-num {
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 0.875rem;
  border-top: 1px solid var(--grid-line);
  padding-top: 1.25rem;
}

.hiw-label {
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.hiw-body {
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--fg-muted);
  line-height: 1.65;
}

.hiw-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,255,0,0.25);
  padding-bottom: 1px;
}

@media (max-width: 1023px) and (min-width: 768px) {
  .hiw-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hiw-card:nth-child(2) { border-right: none; }
  .hiw-card:nth-child(3) {
    border-top: 1px solid var(--grid-line);
    border-right: 1px solid var(--grid-line);
  }
  .hiw-card:nth-child(4) {
    border-top: 1px solid var(--grid-line);
    border-right: none;
  }
}

@media (max-width: 767px) {
  .hiw-grid {
    grid-template-columns: 1fr;
  }
  .hiw-card { border-right: none; border-bottom: 1px solid var(--grid-line); }
  .hiw-card:last-child { border-bottom: none; }
  .how-it-works { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .hiw-card { padding: 1.5rem 1.25rem; }
  .how-it-works { padding: 3rem 0; }
}

/* ===========================
   FAQ
   Native <details>/<summary> accordion, no JS.
   Square corners, thin gray rules, Times New Roman throughout.
   =========================== */
.faq {
  padding: 5rem 0;
  border-bottom: 1px solid var(--grid-line);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.10);
}

/* Override default marker */
.faq-item summary {
  list-style: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.45;
  user-select: none;
}

.faq-question:hover {
  color: var(--fg-muted);
}

/* + / − glyph on the right, muted gray */
.faq-glyph {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1rem;
  color: #666;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.05rem;
}

/* Collapsed state: show + via CSS (overrides span text) */
.faq-glyph::before {
  content: '+';
}

/* Open state: show − */
.faq-item[open] .faq-glyph::before {
  content: '\u2212';
}

@media (max-width: 767px) {
  .faq { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .faq { padding: 3rem 0; }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero { min-height: auto; padding: 3rem 0 3.5rem; background-image: none; }

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

  .offer-card { border-right: none; border-bottom: 1px solid var(--grid-line); }
  .offer-card:last-child { border-bottom: none; }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-divider { display: none; }

  .who-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .offer-scope {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

  .hero { padding: 2.5rem 0 3rem; }
  .offer, .trust, .who { padding: 3.5rem 0; }
  .closing { padding: 4rem 0; }
  .guarantee-banner { padding: 1rem 0; }

  .offer-card { padding: 1.5rem 1.25rem; }
  .offer-scope { padding: 1.25rem; }
  .credential-card { padding: 1.25rem; }

  .scope-price { font-size: 2rem; }
  .trust-statement h2 { font-size: 1.5rem; }
  .who-text h2 { font-size: 1.5rem; }
  .closing-statement { font-size: 1.375rem; }
}

/* ===========================
   MODAL OVERRIDES
   All modals use Times New Roman, border-only rectangle buttons.
   =========================== */
#checkoutModal > div,
#intakeSuccessModal > div {
  font-family: 'Times New Roman', Times, serif;
  background: #000;
  border: 1px solid var(--border);
  padding: 2rem;
}
#checkoutModal p,
#checkoutModal label,
#checkoutModal h2,
#checkoutModal input,
#checkoutModal textarea,
#checkoutModal button {
  font-family: 'Times New Roman', Times, serif;
}
#checkoutModal input,
#checkoutModal textarea {
  background: #000;
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 0.875rem;
  padding: 0.625rem 0.875rem;
  border-radius: 0;
}
#checkoutModal input:focus,
#checkoutModal textarea:focus {
  outline: 1px solid var(--fg-muted);
}
#checkoutModal button[type="submit"] {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  width: 100%;
  border-radius: 0;
}
#checkoutModal button[type="submit"]:hover {
  background: var(--accent);
  color: #000;
}
#intakeSuccessModal button {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  font-size: 0.875rem;
  padding: 0.625rem 1.5rem;
  cursor: pointer;
  border-radius: 0;
}
#intakeSuccessModal button:hover {
  background: var(--accent);
  color: #000;
}