:root {
  --bg: #f5f7fb;
  --surface: rgba(255,255,255,0.78);
  --surface-solid: #ffffff;
  --surface-2: rgba(240,245,252,0.82);
  --ink: #132033;
  --muted: #5f6d80;
  --line: rgba(158, 174, 194, 0.32);
  --line-strong: rgba(120, 142, 170, 0.44);
  --accent: #295fcb;
  --accent-2: #d58a36;
  --accent-soft: rgba(41,95,203,0.10);
  --warm-soft: rgba(213,138,54,0.10);
  --warning-soft: #fff3e7;
  --shadow: 0 14px 40px rgba(25, 41, 69, 0.10);
  --radius: 20px;
}

* { box-sizing: border-box; }
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(41,95,203,0.08), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(213,138,54,0.08), transparent 20%),
    linear-gradient(180deg, #f6f8fc 0%, #eef3f8 100%);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; position: relative; z-index: 2; }
.narrow { width: min(760px, calc(100% - 2rem)); margin: 0 auto; }
.center { text-align: center; }
.section { padding: 4.5rem 0; }
.section-top { margin-top: 2rem; }
.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.soft-band {
  background: linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0.22));
}

.bg-orb {
  position: fixed;
  width: 30rem;
  height: 30rem;
  border-radius: 999px;
  filter: blur(55px);
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}
.orb-a { top: -8rem; right: -8rem; background: rgba(41,95,203,0.15); }
.orb-b { bottom: -10rem; left: -8rem; background: rgba(213,138,54,0.12); }

.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(245,247,251,0.72);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 68px; gap: 1rem;
}
.nav nav { display: flex; gap: 1.1rem; flex-wrap: wrap; align-items: center; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: .46rem;
  color: var(--muted);
  flex-shrink: 0;
}
.brand-mark {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: block;
  flex: 0 0 auto;
  opacity: 1;
}
.brand-text {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}
.nav a { color: var(--muted); font-weight: 500; }
.nav a:hover, .nav a.active, .brand:hover { color: var(--ink); }

.hero {
  padding: 5.1rem 0 4.2rem;
  border-bottom: 1px solid var(--line);
}
.hero-hybrid {
  background:
    linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,0)),
    radial-gradient(circle at top right, rgba(41,95,203,.08), transparent 28%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.16fr .92fr; gap: 2rem; align-items: start;
}
.hero-copy, .hero-stack { will-change: transform; }
.eyebrow {
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: .8rem;
}
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 1rem;
  line-height: 1.04;
  letter-spacing: -.04em;
  color: #122033;
}
h3 {
  margin: 0 0 .8rem;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: #122033;
  font-size: 1.02rem;
}
h1 {
  font-size: clamp(2.65rem, 5vw, 4.8rem);
  max-width: 11ch;
}
main.section .narrow h1 {
  font-size: clamp(2.15rem, 4.2vw, 3.15rem);
  max-width: 16ch;
}
h2 { font-size: clamp(1.55rem, 3vw, 2.35rem); }
.lead {
  font-size: 1.18rem;
  color: var(--ink);
  max-width: 58ch;
  margin-bottom: .8rem;
}
.sublead, p, li { color: var(--muted); }
.actions { display: flex; gap: .75rem; margin-top: 1.6rem; flex-wrap: wrap; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: .9rem 1.18rem; font-weight: 700;
  border: 1px solid var(--line-strong);
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.button.primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.button.secondary {
  background: rgba(255,255,255,0.7);
  color: var(--ink);
}

.hero-stack, .stack, .steps, .form { display: grid; gap: 1rem; }
.mini-card, .card, .info-card, .note-card, .service-highlight, .trust-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.mini-card, .card, .info-card, .note-card, .trust-item { padding: 1.3rem; }
.artifact-card { overflow: hidden; }
.service-highlight {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(244,248,255,.88));
  border-color: rgba(123,153,210,.34);
}
.accent-card {
  background: linear-gradient(180deg, rgba(41,95,203,0.12), rgba(255,255,255,0.78));
}
.mini-card.soft { background: rgba(244,247,251,0.82); }
.mini-label, .service-label, .artifact-kicker {
  display: inline-block;
  margin-bottom: .65rem;
  font-size: .75rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.grid { display: grid; gap: 1rem; }
.two-up { grid-template-columns: repeat(2, minmax(0,1fr)); }
.three-up { grid-template-columns: repeat(3, minmax(0,1fr)); }
.split { display: grid; grid-template-columns: 1.1fr .95fr; gap: 2rem; align-items: start; }
.editorial-split { align-items: center; }
.uneven-grid { grid-template-columns: 1.15fr .85fr; }
.larger-card { min-height: 100%; }
.lift { transition: transform .14s ease, box-shadow .14s ease; }
.lift:hover { transform: translateY(-3px); }
.note-card.warning { background: var(--warning-soft); }
.authored-note {
  border-left: 4px solid var(--accent);
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(232,240,255,0.74));
}
.package.featured {
  border-color: rgba(123,153,210,.34);
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(244,248,255,.88));
}
.badge {
  display: inline-block;
  margin-bottom: .75rem;
  padding: .24rem .58rem;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  background: var(--accent-soft);
  color: var(--accent);
}
.package-price {
  margin: .15rem 0 .5rem;
  color: var(--ink);
  font-weight: 600;
}
.package-price strong {
  color: var(--accent);
}
.package-sub { min-height: 52px; }
.sample-link-group {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: .9rem;
}
.sample-link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .24rem .58rem;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  background: var(--accent-soft);
  color: var(--accent);
  line-height: 1;
  border: none;
  box-shadow: none;
}
.sample-link-chip:hover {
  background: var(--accent-soft);
  color: var(--accent);
}
.policy-card {
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(244,248,255,.84));
}
.policy-card {
  margin-bottom: 1rem;
}
.policy-card ul {
  margin: .35rem 0 0;
  padding-left: 1.1rem;
}
.policy-card li {
  margin-bottom: .62rem;
}

.trust-strip { padding-top: 1.25rem; padding-bottom: 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .9rem;
}
.trust-item {
  font-weight: 500;
  color: var(--ink);
  background: rgba(255,255,255,0.62);
}

.artifact-window {
  border: 1px solid rgba(121, 145, 176, 0.28);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.72);
}
.artifact-topbar {
  height: 2rem;
  border-bottom: 1px solid rgba(121, 145, 176, 0.22);
  background: linear-gradient(90deg, rgba(41,95,203,0.10), rgba(213,138,54,0.10));
}
.artifact-body {
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 0;
}
.artifact-page, .artifact-checklist {
  padding: 1rem 1rem 1.1rem;
}
.artifact-page {
  border-right: 1px solid rgba(121, 145, 176, 0.18);
}
.artifact-page h3 {
  margin-top: .1rem;
}
.artifact-window ul {
  margin: .4rem 0 0;
  padding-left: 1.05rem;
}

.steps {
  width: min(900px, calc(100% - 2rem));
  margin: 2rem auto 0;
}
.step {
  position: relative;
  padding-left: 4.3rem;
}
.step span {
  position: absolute; left: 1.2rem; top: 1.05rem;
  width: 2rem; height: 2rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}
.soft-steps .card { background: rgba(255,255,255,0.78); }

label {
  display: grid;
  gap: .4rem;
  color: var(--ink);
  font-weight: 500;
}
input, textarea, select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fbfcfe;
  color: var(--ink);
  padding: .9rem 1rem;
  font: inherit;
}
.notice {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: #fff7eb;
  border: 1px solid #f0d8b2;
  color: #835a17;
}
.alt-notice {
  background: rgba(41,95,203,0.08);
  border-color: rgba(41,95,203,0.18);
  color: var(--ink);
}
.checkout-card, .confirmation-card {
  padding: 1.5rem;
}
.summary-box {
  display: grid;
  gap: .85rem;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.74);
  border: 1px solid var(--line);
}
.summary-box div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}
.summary-box strong {
  color: var(--ink);
}
.summary-total {
  padding-top: .7rem;
  border-top: 1px solid var(--line);
}
.summary-total strong {
  color: var(--accent);
}
.fine-print {
  font-size: .92rem;
  color: var(--muted);
  margin-top: 1rem;
}
.checkout-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: .4rem;
}
.next-steps {
  margin: .35rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}
.next-steps li {
  margin-bottom: .7rem;
}
.prose ul { padding-left: 1.1rem; }
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 3rem;
  padding: 1.5rem 0 2.5rem;
  background: rgba(255,255,255,.36);
}
.footer-grid {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-grid div:last-child { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) {
  .hero-copy, .hero-stack, .bg-orb, .lift, .button { transition: none !important; transform: none !important; }
}

@media (max-width: 860px) {
  .hero-grid, .two-up, .three-up, .split, .trust-grid, .uneven-grid, .artifact-body { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; padding: .8rem 0; }
  .nav, .footer-grid { flex-direction: column; }
  h1 { max-width: none; }
  .artifact-page { border-right: none; border-bottom: 1px solid rgba(121, 145, 176, 0.18); }
}