:root {
  --bg: #0f1117;
  --panel: #161b24;
  --panel-soft: #1b2230;
  --panel-strong: #202938;
  --ink: #edf2f7;
  --muted: #a7b0be;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #d7b07d;
  --gold-soft: rgba(215, 176, 125, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(215, 176, 125, 0.12), transparent 28%),
    radial-gradient(circle at 100% 0%, rgba(103, 129, 255, 0.08), transparent 22%),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
p, li { color: var(--muted); }
h1, h2, h3, .brand-name {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

.page-frame {
  max-width: 1440px;
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
}

.rail {
  padding: 34px 26px 34px 30px;
  border-right: 1px solid var(--line);
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 100vh;
}

.brand-mark {
  display: block;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.brand-kicker,
.section-tag,
.small-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--gold);
}

.brand-name {
  display: block;
  margin-top: 12px;
  font-size: 2rem;
  line-height: 0.98;
}

.rail-nav {
  display: grid;
  gap: 14px;
  padding: 34px 0;
}

.rail-nav a,
.footer-links a,
.legal-top nav a,
.return-link {
  color: var(--ink);
  opacity: 0.88;
}

.rail-note {
  margin-top: 36px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.rail-note p { margin: 0 0 10px; }
.rail-note p:last-child { margin-bottom: 0; }

.content {
  padding: 34px;
  display: grid;
  gap: 26px;
}

.hero-panel,
.editorial-strip,
.feature-flow,
.process-board,
.faq-block,
.request-layout {
  background: rgba(22, 27, 36, 0.78);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 360px;
}

.hero-copy {
  padding: 48px 48px 54px;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.95;
  max-width: 12ch;
  margin-top: 14px;
}

.hero-text {
  max-width: 62ch;
  margin-top: 26px;
  font-size: 1.05rem;
}

.hero-stack {
  display: grid;
  border-left: 1px solid var(--line);
}

.stat-card {
  padding: 34px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.stat-card:last-child { border-bottom: 0; }
.stat-card h2 { font-size: 2rem; margin: 10px 0 12px; }
.highlight { background: linear-gradient(180deg, var(--gold-soft), transparent 70%); }

.editorial-strip {
  padding: 38px;
}

.strip-head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.strip-head h2,
.feature-flow h2,
.request-copy h2,
.legal-main h1,
.thankyou-shell h1 {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1.02;
  max-width: 14ch;
}

.guide-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.guide-card {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
}

.large-card {
  padding: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(215, 176, 125, 0.08));
}

.accent-card {
  background: linear-gradient(180deg, rgba(103, 129, 255, 0.12), rgba(255,255,255,0.03));
}

.price {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 18px;
}

.guide-card h3,
.faq-list h3,
.timeline-item h3,
.flow-grid h3,
.legal-grid h2 {
  font-size: 1.42rem;
  margin-bottom: 12px;
}

.guide-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.feature-flow {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
}

.intro-card {
  padding: 38px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
}

.flow-grid {
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.flow-grid article,
.timeline-item,
.faq-list article,
.legal-grid section {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}

.flow-grid span,
.thankyou-rail span {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: 2rem;
}

.process-board,
.faq-block { padding: 38px; }

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.timeline-item strong {
  display: inline-block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 10px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.request-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
}

.request-copy {
  padding: 42px;
  border-right: 1px solid var(--line);
}

.contact-block {
  margin-top: 24px;
  padding: 22px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.contact-block p { margin: 0 0 10px; }
.contact-block p:last-child { margin-bottom: 0; }

.request-form {
  display: grid;
  gap: 16px;
  padding: 42px;
}

.request-form label {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--ink);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
}

.request-form input::placeholder,
.request-form textarea::placeholder { color: #95a0af; }

.request-form button {
  border: 0;
  border-radius: 999px;
  padding: 16px 20px;
  font: inherit;
  font-weight: 700;
  background: var(--gold);
  color: #131313;
  cursor: pointer;
}

.form-note { font-size: 0.92rem; margin: 0; }

.disclaimer-band {
  padding: 18px 22px;
  background: rgba(215, 176, 125, 0.1);
  border: 1px solid rgba(215, 176, 125, 0.25);
  border-radius: 18px;
}

.disclaimer-band p { margin: 0; color: #f2e7d8; }

.site-footer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 34px 34px 354px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.brand-line {
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.legal-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px 48px;
}

.legal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px 0;
}

.legal-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.legal-top nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.legal-main {
  background: rgba(22, 27, 36, 0.78);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.legal-lead,
.thankyou-lead {
  max-width: 62ch;
  font-size: 1.03rem;
  margin: 18px 0 0;
}

.legal-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.thankyou-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.thankyou-shell {
  width: min(900px, 100%);
  background: rgba(22, 27, 36, 0.84);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.thankyou-rail {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.thankyou-rail div {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 20px;
}

.wide-contact { margin-top: 0; }
.compact-band { margin-top: 22px; }

.return-link {
  display: inline-block;
  margin-top: 26px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gold);
}

@media (max-width: 1180px) {
  .page-frame {
    grid-template-columns: 1fr;
  }

  .rail {
    position: relative;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-panel,
  .feature-flow,
  .request-layout,
  .guide-columns,
  .timeline,
  .site-footer,
  .legal-grid,
  .thankyou-rail {
    grid-template-columns: 1fr;
  }

  .hero-stack,
  .request-copy,
  .intro-card {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .site-footer {
    padding: 0 34px 34px;
  }
}

@media (max-width: 720px) {
  .content,
  .legal-page,
  .thankyou-page,
  .site-footer { padding-left: 18px; padding-right: 18px; }
  .rail,
  .hero-copy,
  .editorial-strip,
  .process-board,
  .faq-block,
  .request-copy,
  .request-form,
  .legal-main,
  .thankyou-shell,
  .intro-card,
  .flow-grid,
  .stat-card { padding: 24px; }

  .hero-copy h1,
  .strip-head h2,
  .feature-flow h2,
  .request-copy h2,
  .legal-main h1,
  .thankyou-shell h1 { max-width: none; }

  .faq-list,
  .flow-grid { grid-template-columns: 1fr; }
}
