
:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-soft: #f3f6fb;
  --text: #0f172a;
  --muted: #475569;
  --soft: #64748b;
  --line: #dbe4f0;
  --line-strong: #c4d1e2;
  --blue: #2563eb;
  --blue-2: #3b82f6;
  --purple: #6d28d9;
  --shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 22px 64px rgba(15, 23, 42, 0.10);
  --radius: 22px;
  --container: 1180px;
  --section-gap: 108px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.06), transparent 24%),
    radial-gradient(circle at top right, rgba(109, 40, 217, 0.05), transparent 22%),
    var(--bg);
  line-height: 1.55;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(247, 249, 252, 0.92);
  border-bottom: 1px solid rgba(219, 228, 240, 0.92);
}
.nav { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; min-width: 0; flex: 1 1 auto; }
.brand-mark { display: flex; align-items: center; min-width: 0; max-width: 520px; width: 100%; }
.brand-mark img { width: auto; height: 58px; max-width: min(100%, 520px); object-fit: contain; }
.nav-right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav-link { font-size: 15px; font-weight: 600; color: var(--muted); }
.nav-email {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px;
  border-radius: 12px; border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86); color: var(--blue);
  font-size: 14px; font-weight: 700; box-shadow: var(--shadow);
}
.hero { padding: 72px 0 var(--section-gap); }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; min-height: 32px; padding: 0 12px; border-radius: 999px;
  background: rgba(37, 99, 235, 0.08); color: var(--blue);
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px;
}
h1 { margin: 0 0 20px; font-size: clamp(42px, 6vw, 66px); line-height: 0.97; letter-spacing: -0.045em; max-width: 760px; }
.hero-copy { margin: 0 0 20px; max-width: 680px; color: var(--muted); font-size: 21px; }
.hero-note { margin: 0 0 30px; max-width: 660px; color: var(--soft); font-size: 16px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 20px; border-radius: 12px; font-size: 16px; font-weight: 700; transition: transform 0.15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--blue), var(--purple)); box-shadow: 0 16px 36px rgba(37,99,235,0.20); }
.btn-secondary { color: var(--text); background: rgba(255,255,255,0.82); border: 1px solid var(--line-strong); }
.hero-points { display: flex; flex-wrap: wrap; gap: 20px; color: var(--soft); font-size: 14px; font-weight: 600; }
.hero-points span::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 10px; border-radius: 999px; background: linear-gradient(135deg, var(--blue), var(--purple)); vertical-align: middle; }
.visual-card { background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.86)); border: 1px solid rgba(219,228,240,0.95); border-radius: 28px; box-shadow: var(--shadow-lg); overflow: hidden; }
.hero-visual { padding: 22px; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; padding: 0 22px 22px; }
.metric { background: rgba(255,255,255,0.92); border: 1px solid var(--line); border-radius: 16px; padding: 16px; box-shadow: var(--shadow); }
.metric-label { margin-bottom: 6px; color: var(--soft); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.metric-value { margin-bottom: 6px; font-size: 22px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.metric-copy { color: var(--muted); font-size: 13px; }
section { padding-bottom: var(--section-gap); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-kicker { margin-bottom: 12px; color: var(--soft); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
h2 { margin: 0 0 14px; font-size: clamp(30px, 4vw, 42px); line-height: 1.05; letter-spacing: -0.035em; }
.section-desc { margin: 0; color: var(--muted); font-size: 18px; max-width: 720px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card { background: rgba(255,255,255,0.88); border: 1px solid rgba(219,228,240,0.95); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; }
.card h3 { margin: 0 0 10px; font-size: 20px; letter-spacing: -0.02em; }
.card p { margin: 0; color: var(--muted); font-size: 16px; }
.two-col { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 28px; align-items: stretch; }
.process-panel, .graphic-panel, .cta-shell { background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.87)); border: 1px solid rgba(219,228,240,0.95); border-radius: 24px; box-shadow: var(--shadow-lg); }
.process-panel { padding: 30px; }
.step-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 26px; }
.step { border: 1px solid var(--line); border-radius: 18px; background: #ffffff; padding: 22px; }
.step-num { margin-bottom: 10px; color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.step h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -0.02em; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }
.graphic-panel { padding: 22px; display: flex; align-items: center; justify-content: center; min-height: 100%; }
.deliverable-list { display: grid; gap: 14px; margin-top: 24px; }
.deliverable-item { background: rgba(255,255,255,0.88); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; font-size: 17px; font-weight: 600; box-shadow: var(--shadow); }
.spotlight { display: grid; gap: 18px; padding: 26px; background: linear-gradient(160deg, rgba(255,255,255,0.95), rgba(244,248,255,0.94)); border: 1px solid rgba(219,228,240,0.95); border-radius: 24px; box-shadow: var(--shadow-lg); }
.spotlight h3 { margin: 0; font-size: 24px; letter-spacing: -0.02em; }
.spotlight p { margin: 0; color: var(--muted); font-size: 16px; }
.outcomes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.outcome { background: rgba(255,255,255,0.9); border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: var(--shadow); }
.outcome h3 { margin: 0 0 10px; font-size: 20px; }
.outcome p { margin: 0; color: var(--muted); font-size: 16px; }
.cta-shell { overflow: hidden; background: linear-gradient(135deg, #ffffff, #f8fbff); }
.cta-grid { display: grid; grid-template-columns: 0.94fr 1.06fr; align-items: stretch; }
.cta-graphic { padding: 28px; background: linear-gradient(180deg, rgba(37,99,235,0.06), rgba(109,40,217,0.08)), #f8fbff; display: flex; align-items: center; justify-content: center; }
.cta-content { padding: 42px 40px; display: flex; flex-direction: column; justify-content: center; }
.cta-email { display: inline-flex; align-self: flex-start; min-height: 40px; padding: 0 14px; align-items: center; border-radius: 12px; background: rgba(37,99,235,0.08); color: var(--blue); font-size: 14px; font-weight: 700; margin-bottom: 22px; }
.cta-content h2 { margin-bottom: 14px; }
.cta-content > p { margin: 0 0 24px; color: var(--muted); font-size: 18px; max-width: 620px; }
.cta-benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-bottom: 28px; }
.cta-benefit { background: rgba(255,255,255,0.88); border: 1px solid var(--line); border-radius: 16px; padding: 18px; }
.cta-benefit h3 { margin: 0 0 8px; font-size: 18px; }
.cta-benefit p { margin: 0; color: var(--muted); font-size: 15px; }
footer { border-top: 1px solid rgba(219,228,240,0.95); padding: 26px 0 36px; color: var(--soft); font-size: 14px; }
.footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-left { display: flex; align-items: center; gap: 14px; min-width: 0; }
.footer-logo img { height: 32px; width: auto; max-width: 260px; object-fit: contain; opacity: 0.95; }
.footer-right { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
@media (max-width: 1120px) { .hero-grid, .two-col, .cta-grid { grid-template-columns: 1fr; } .hero { padding-top: 56px; } }
@media (max-width: 920px) { .grid-3, .outcomes, .cta-benefits, .step-grid, .hero-metrics { grid-template-columns: 1fr; } .nav-link { display: none; } .cta-content { padding: 32px 24px; } }
@media (max-width: 680px) { :root { --section-gap: 80px; } .container { width: min(var(--container), calc(100% - 32px)); } .nav { min-height: 82px; } .brand-mark img { height: 46px; max-width: 240px; } h1 { font-size: 42px; } .hero-copy { font-size: 19px; } .cta-row { flex-direction: column; align-items: stretch; } .btn { width: 100%; } .footer { flex-direction: column; align-items: flex-start; } }
