:root {
  --night: #2d2a3d;
  --steel: #575271;
  --yellow: #ffc107;
  --mist: #f4f2f8;
  --white: #ffffff;
  --ink: #242231;
  --line: rgba(45, 42, 61, .14);
  --soft-line: rgba(244, 242, 248, .16);
  --shadow: 0 20px 55px rgba(45, 42, 61, .12);
  --heading: 'Barlow Condensed', Impact, sans-serif;
  --body: 'Source Sans 3', Arial, sans-serif;
  --radius: 5px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--mist); font-family: var(--body); font-size: 18px; line-height: 1.45; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section-dark { color: var(--mist); background: var(--night); }
.section-light { background: var(--white); }
.section-pale { background: var(--mist); }
.section-yellow { background: var(--yellow); }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(45, 42, 61, .96); color: var(--mist); border-bottom: 1px solid var(--soft-line); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.brand { display: flex; align-items: center; gap: 9px; min-width: max-content; }
.brand-mark { width: 32px; height: 32px; object-fit: contain; }
.brand-word { font-family: var(--heading); font-size: 27px; font-weight: 700; letter-spacing: .08em; line-height: 1; }
.brand-subtitle { color: var(--yellow); font-family: var(--heading); font-size: 11px; letter-spacing: .16em; align-self: flex-end; margin: 0 0 2px -3px; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 16px; }
.main-nav > a:not(.button) { color: rgba(244,242,248,.76); transition: color .2s; }
.main-nav > a:not(.button):hover { color: var(--yellow); }
.menu-toggle { display: none; background: transparent; border: 1px solid var(--soft-line); color: var(--mist); padding: 8px 13px; text-transform: uppercase; font-family: var(--heading); letter-spacing: .08em; font-size: 14px; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; border: 0; border-radius: var(--radius); padding: 15px 22px; font-family: var(--heading); font-size: 18px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,.16); }
.button-small { padding: 11px 16px; font-size: 15px; background: var(--yellow); color: var(--night); }
.button-login { color: var(--mist); background: transparent; border: 1px solid rgba(244,242,248,.5); }
.button-login:hover { color: var(--night); background: var(--mist); }
.button-primary { background: var(--yellow); color: var(--night); }
.button-dark { background: var(--night); color: var(--mist); }
.button-full { width: 100%; }

.hero { position: relative; min-height: 700px; overflow: hidden; border-bottom: 1px solid var(--soft-line); }
.hero:before { content: ''; position: absolute; width: 48vw; height: 48vw; right: -18vw; top: -15vw; border: 1px solid rgba(255,193,7,.24); border-radius: 50%; box-shadow: 0 0 0 36px rgba(255,193,7,.035), 0 0 0 72px rgba(255,193,7,.025); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 28px 72px; padding-top: 90px; padding-bottom: 88px; }
.hero-copy { grid-column: 1; align-self: center; padding-bottom: 25px; }
.eyebrow { display: flex; align-items: center; gap: 11px; color: var(--yellow); font-family: var(--heading); font-size: 14px; letter-spacing: .13em; font-weight: 600; }
.eyebrow-line { display: inline-block; width: 28px; height: 2px; background: currentColor; }
.eyebrow-dark { color: var(--steel); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--heading); text-transform: uppercase; line-height: .98; letter-spacing: .01em; }
h1 { max-width: 680px; margin: 20px 0 24px; font-size: clamp(3.6rem, 7vw, 6.5rem); font-weight: 700; }
h2 { margin-bottom: 20px; font-size: clamp(2.7rem, 5vw, 4.6rem); }
h3 { font-size: 28px; }
.hero-lead { max-width: 580px; margin-bottom: 30px; color: rgba(244,242,248,.78); font-size: 21px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 24px; color: var(--mist); font-size: 15px; }
.hero-points i { display: inline-grid; place-items: center; width: 18px; height: 18px; margin-right: 5px; border-radius: 50%; color: var(--night); background: var(--yellow); font-style: normal; font-weight: 700; font-size: 12px; }
.hero-visual { min-height: 390px; position: relative; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(244,242,248,.16); background: linear-gradient(145deg, rgba(87,82,113,.66), rgba(45,42,61,.2) 62%); }
.visual-grid { position: absolute; inset: 0; opacity: .3; background-image: linear-gradient(rgba(244,242,248,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(244,242,248,.12) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(to bottom, black, transparent); }
.hero-logo { width: 230px; position: relative; filter: drop-shadow(0 20px 24px rgba(0,0,0,.35)); animation: drift 6s ease-in-out infinite; }
.visual-label { position: absolute; top: 20px; left: 22px; font-family: var(--heading); color: rgba(244,242,248,.76); font-size: 14px; letter-spacing: .12em; }
.status-dot { display: inline-block; width: 8px; height: 8px; margin-right: 8px; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 0 4px rgba(255,193,7,.14); }
.visual-caption { position: absolute; left: 25px; bottom: 24px; display: grid; gap: 2px; font-family: var(--heading); letter-spacing: .04em; }
.visual-caption strong { color: var(--yellow); font-size: 20px; text-transform: uppercase; }
.visual-caption span { color: rgba(244,242,248,.64); font-size: 15px; }
.lead-form-card { grid-column: 2; grid-row: 2; margin-top: -110px; position: relative; z-index: 2; padding: 30px; color: var(--ink); background: var(--white); box-shadow: var(--shadow); border-top: 4px solid var(--yellow); }
.form-heading { display: flex; align-items: flex-start; gap: 13px; }
.form-heading h2 { margin: 0; font-size: 34px; }
.form-step { display: grid; place-items: center; flex: 0 0 38px; height: 38px; background: var(--night); color: var(--yellow); font-family: var(--heading); font-size: 20px; }
.form-kicker { display: block; margin-bottom: 3px; color: var(--steel); font-family: var(--heading); font-size: 13px; letter-spacing: .13em; }
.lead-form-card > p { color: #5d5a68; margin: 14px 0 21px; font-size: 16px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 6px; color: var(--steel); font-family: var(--heading); font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 2px; padding: 11px 12px; color: var(--ink); background: var(--mist); outline: none; font-family: var(--body); font-size: 16px; font-weight: 400; text-transform: none; transition: border-color .2s, box-shadow .2s, background .2s; }
textarea { resize: vertical; min-height: 78px; }
input:focus, select:focus, textarea:focus { border-color: var(--steel); box-shadow: 0 0 0 3px rgba(87,82,113,.15); background: var(--white); }
input.invalid, select.invalid, textarea.invalid { border-color: #ba3948; }
.lead-form .button { margin-top: 20px; }
.form-note { margin: 12px 0 0; text-align: center; color: #7b7783; font-size: 13px; }
.form-feedback { min-height: 20px; margin-top: 10px; color: #277a55; font-size: 14px; font-weight: 600; }
.form-feedback.error { color: #ba3948; }
.scroll-cue { position: absolute; left: max(20px, calc((100% - 1160px) / 2)); bottom: 22px; display: flex; align-items: center; gap: 12px; color: rgba(244,242,248,.54); font-family: var(--heading); font-size: 12px; letter-spacing: .14em; }
.scroll-arrow { color: var(--yellow); font-size: 22px; }

.reality, .solution, .proof, .closing { padding: 115px 0; }
.narrow-intro { max-width: 710px; margin-bottom: 54px; margin-left: max(20px, calc((100% - 1160px) / 2)); }
.narrow-intro h2 { margin-top: 18px; max-width: 650px; }
.narrow-intro p { max-width: 600px; color: #62606d; font-size: 20px; }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.pain-card { position: relative; min-height: 256px; padding: 25px 20px 20px; border-right: 1px solid var(--line); }
.pain-card:last-child { border-right: 0; }
.pain-number, .pillar-index { color: var(--steel); font-family: var(--heading); font-size: 15px; letter-spacing: .09em; }
.pain-icon { margin: 25px 0 13px; color: var(--yellow); font-family: var(--heading); font-size: 35px; font-weight: 700; }
.pain-card h3 { margin-bottom: 9px; font-size: 25px; }
.pain-card p { color: #686572; font-size: 16px; }
.section-heading { display: grid; grid-template-columns: 1.05fr .75fr; align-items: end; gap: 60px; margin-bottom: 58px; }
.section-heading h2 { margin: 18px 0 0; max-width: 600px; }
.section-heading > p { margin: 0; color: #666270; font-size: 18px; }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pillar { min-height: 330px; padding: 25px; background: var(--white); border: 1px solid var(--line); transition: transform .25s, background .25s, color .25s; }
.pillar:hover, .pillar-featured { color: var(--mist); background: var(--night); transform: translateY(-6px); border-color: var(--night); }
.pillar:hover .pillar-index, .pillar-featured .pillar-index, .pillar:hover p, .pillar-featured p { color: rgba(244,242,248,.68); }
.pillar:hover .pillar-symbol, .pillar-featured .pillar-symbol { color: var(--yellow); }
.pillar-symbol { margin: 42px 0 17px; color: var(--steel); font-family: var(--heading); font-size: 42px; }
.pillar h3 { margin-bottom: 13px; font-size: 27px; }
.pillar p { min-height: 72px; margin-bottom: 22px; color: #6a6774; font-size: 16px; }
.pillar a { color: var(--yellow); font-family: var(--heading); font-size: 16px; letter-spacing: .04em; text-transform: uppercase; }

.proof { padding-bottom: 130px; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 75px 80px; align-items: start; }
.proof-copy h2 { margin: 20px 0 22px; max-width: 510px; }
.proof-copy p { max-width: 510px; color: rgba(244,242,248,.69); font-size: 19px; }
.text-link { display: inline-flex; gap: 15px; margin-top: 15px; color: var(--yellow); font-family: var(--heading); font-size: 18px; letter-spacing: .07em; text-transform: uppercase; }
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-self: stretch; }
.metric { display: grid; align-content: center; min-height: 160px; padding: 18px; border-left: 1px solid var(--soft-line); }
.metric strong { color: var(--yellow); font-family: var(--heading); font-size: 55px; line-height: 1; }
.metric span { margin-top: 10px; color: rgba(244,242,248,.68); font-size: 15px; line-height: 1.25; }
.presence-panel { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 2fr; padding: 29px; border: 1px solid var(--soft-line); background: rgba(87,82,113,.23); }
.presence-heading { color: var(--yellow); font-family: var(--heading); font-size: 15px; letter-spacing: .12em; }
.presence-panel ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; list-style: none; padding: 0; margin: 0; }
.presence-panel li { display: grid; grid-template-columns: 33px 1fr; gap: 1px 10px; }
.presence-panel li > span { grid-row: 1 / span 2; color: var(--yellow); font-family: var(--heading); }
.presence-panel strong { font-family: var(--heading); font-size: 20px; text-transform: uppercase; }
.presence-panel small { color: rgba(244,242,248,.6); font-size: 14px; line-height: 1.3; }
.mid-cta { padding: 44px 0; }
.mid-cta-wrap { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.mid-cta h2 { max-width: 690px; margin: 13px 0 0; font-size: clamp(2.3rem, 4vw, 4rem); }

.closing { padding-top: 120px; padding-bottom: 130px; position: relative; overflow: hidden; }
.closing:after { content: ''; position: absolute; width: 480px; height: 480px; right: -250px; bottom: -280px; border: 1px solid rgba(255,193,7,.4); border-radius: 50%; box-shadow: 0 0 0 30px rgba(255,193,7,.05), 0 0 0 60px rgba(255,193,7,.035); }
.closing-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr minmax(390px, .75fr); gap: 90px; align-items: start; }
.closing-copy h2 { max-width: 670px; margin: 20px 0; }
.closing-copy > p { max-width: 490px; color: rgba(244,242,248,.7); font-size: 19px; }
.closing-reassurance { display: flex; gap: 13px; align-items: flex-start; margin-top: 35px; color: rgba(244,242,248,.7); font-size: 15px; }
.closing-reassurance > span { display: grid; place-items: center; width: 24px; height: 24px; color: var(--night); background: var(--yellow); border-radius: 50%; font-weight: 700; }
.closing-reassurance p { margin: 0; }
.closing-reassurance strong { color: var(--mist); font-family: var(--heading); font-size: 18px; text-transform: uppercase; }
.final-form-card { padding: 32px; color: var(--ink); background: var(--white); border-top: 5px solid var(--yellow); box-shadow: var(--shadow); }
.final-form-card h2 { font-size: 33px; }
.final-form { display: grid; gap: 14px; margin-top: 25px; }
.final-form .button { margin-top: 5px; }

.floating-contact { position: fixed; z-index: 15; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 10px; padding: 10px 14px 10px 10px; color: var(--night); background: var(--yellow); border: 2px solid var(--night); box-shadow: 0 9px 24px rgba(45,42,61,.2); transition: transform .2s; }
.floating-contact:hover { transform: translateY(-3px); }
.contact-icon { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 50%; background: var(--night); color: var(--yellow); font-size: 21px; }
.floating-label { font-size: 13px; line-height: 1.1; }
.floating-label strong { font-family: var(--heading); font-size: 16px; text-transform: uppercase; }
.floating-arrow { font-size: 20px; }
.site-footer { color: rgba(244,242,248,.68); background: #211f2d; padding: 55px 0 22px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr .7fr; gap: 40px; padding-bottom: 50px; }
.footer-brand { align-self: start; color: var(--mist); }
.footer-title { margin: 0 0 8px; color: var(--yellow); font-family: var(--heading); font-size: 17px; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid p { margin-bottom: 0; }
.footer-grid a:hover, .footer-bottom a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid var(--soft-line); font-size: 13px; }
.footer-bottom span:last-child { display: flex; gap: 20px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .18s; }
.reveal-delay-3 { transition-delay: .26s; }
@keyframes drift { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-10px) rotate(2deg); } }

@media (max-width: 950px) {
  .main-nav { gap: 15px; }
  .hero-grid { gap: 28px; }
  .hero-visual { min-height: 320px; }
  .lead-form-card { margin-top: -70px; }
  .pain-grid, .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-card:nth-child(2) { border-right: 0; }
  .pain-card:nth-child(3), .pain-card:nth-child(4) { border-top: 1px solid var(--line); }
  .section-heading, .proof-grid, .closing-grid { gap: 40px; }
}

@media (max-width: 720px) {
  body { font-size: 17px; }
  .container { width: min(100% - 32px, 560px); }
  .nav-wrap { min-height: 68px; }
  .brand-subtitle { display: none; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; left: 0; right: 0; top: 68px; display: none; padding: 18px 16px 22px; flex-direction: column; align-items: stretch; gap: 17px; background: var(--night); border-top: 1px solid var(--soft-line); }
  .main-nav.open { display: flex; }
  .main-nav .button { width: 100%; }
  .hero { min-height: 0; }
  .hero:before { width: 90vw; height: 90vw; right: -45vw; top: 35vw; }
  .hero-grid { display: flex; flex-direction: column; padding-top: 64px; padding-bottom: 70px; }
  h1 { font-size: clamp(3.35rem, 16vw, 5rem); }
  .hero-lead { font-size: 19px; }
  .hero-visual { min-height: 285px; order: 2; }
  .hero-logo { width: 165px; }
  .lead-form-card { order: 3; margin: 0; padding: 24px 20px; }
  .field-grid, .pain-grid, .pillars-grid, .section-heading, .proof-grid, .closing-grid, .presence-panel, .footer-grid { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
  .reality, .solution, .proof, .closing { padding: 78px 0; }
  .narrow-intro { margin-left: auto; margin-bottom: 38px; }
  .narrow-intro h2, .section-heading h2 { font-size: 3.25rem; }
  .pain-grid { border-top: 0; }
  .pain-card { border-right: 0; border-top: 1px solid var(--line); padding-left: 0; padding-right: 0; }
  .pain-card:first-child { border-top: 1px solid var(--line); }
  .pain-card:nth-child(2) { border-right: 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading > p { margin-top: -16px; }
  .pillar { min-height: 280px; }
  .pillar-symbol { margin-top: 30px; }
  .proof-grid { gap: 46px; }
  .metrics-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .metric { min-height: 130px; padding: 8px; }
  .metric strong { font-size: 40px; }
  .metric span { font-size: 13px; }
  .presence-panel { gap: 25px; }
  .presence-panel ul { grid-template-columns: 1fr; gap: 18px; }
  .mid-cta-wrap { align-items: flex-start; flex-direction: column; gap: 25px; }
  .closing-grid { gap: 44px; }
  .final-form-card { padding: 24px 20px; }
  .floating-contact { right: 13px; bottom: 13px; }
  .footer-grid { gap: 28px; padding-bottom: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; } }
