/* Book a Demo page.
   New-design styles scoped under .bkd so its generic class names (.section,
   .wrap, .eyebrow…) can't collide with main.css or other pages' scoped
   sheets. Token block, primitives, and section conventions match
   contact.css / educators.css (Inter + Source Serif 4, light/mist sections).
   The global site header/footer (main.css) supply the chrome. The scheduler
   itself is a HubSpot iframe injected into .meetings-iframe-container; only
   the shell around it is styled here. */

.bkd {
	--blue-50:  #EEF0FB; --blue-100: #D9DEF7; --blue-200: #B7BFF0; --blue-300: #8C97E6;
	--blue-400: #6470DB; --blue-500: #3543D0; --blue-600: #2C37B0; --blue-700: #232C8F;
	--blue-800: #1A216C; --blue-900: #111650;
	--teal: #43E8D8; --gold: #FDC801;
	--grey-50:  #F7F8FA; --grey-100: #EEF0F3; --grey-200: #DDE1E7; --grey-300: #C3C9D2;
	--grey-400: #9AA2AE; --grey-500: #6B7280; --grey-600: #4B5260; --grey-700: #353B47;
	--grey-800: #222730; --grey-900: #11141A;
	--r-sm: 4px; --r: 8px; --r-lg: 12px; --r-xl: 16px; --r-2xl: 24px;
	--shadow-sm: 0 1px 2px 0 rgb(17 20 26 / 0.05);
	--shadow: 0 4px 12px -2px rgb(17 20 26 / 0.08);
	--ease: cubic-bezier(0.2, 0.8, 0.2, 1);
	--sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--display: 'Source Serif 4', ui-serif, Georgia, serif;

	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.5;
	color: var(--grey-900);
	background: #fff;
}
.bkd a { color: var(--blue-500); text-decoration: underline; }
.bkd a:hover { color: var(--blue-600); }
.bkd img, .bkd svg { max-width: 100%; }

/* Reset the theme's global display-face headings back to the sans face; the
   serif display headings re-assert var(--display) below. */
.bkd h1, .bkd h2, .bkd h3 { font-family: var(--sans); line-height: 1.2; margin: 0; text-wrap: balance; }

.bkd .wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.bkd .section { padding: 64px 0 80px; }
@media (min-width: 768px) { .bkd .section { padding: 72px 0 96px; } }

.bkd .eyebrow {
	display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
	text-transform: uppercase; margin-bottom: 14px; color: var(--blue-500);
}

.bkd .light { background: #fff; }
.bkd .mist { background: var(--grey-50); }

/* ---------- Hero (light, centered) ---------- */
.bkd .page-hero { padding: 72px 0 48px; position: relative; overflow: hidden; text-align: center; }
@media (min-width: 1024px) { .bkd .page-hero { padding: 96px 0 56px; } }
.bkd .page-hero::before {
	content: ""; position: absolute; top: -300px; left: 50%; transform: translateX(-50%);
	width: 720px; height: 720px;
	background: radial-gradient(circle, rgba(67,232,216,0.18) 0%, rgba(67,232,216,0) 65%);
	pointer-events: none;
}
.bkd .page-hero .wrap { position: relative; }
.bkd .page-hero h1 {
	font-family: var(--display); font-optical-sizing: auto; font-variation-settings: "opsz" 60;
	font-weight: 600; font-size: clamp(36px, 4.6vw, 54px); letter-spacing: -0.02em; line-height: 1.06;
	color: var(--ink); margin: 0 auto 18px; max-width: 820px;
}
.bkd .hero-sub { font-size: 18px; line-height: 29px; color: var(--grey-600); max-width: 660px; margin: 0 auto; }

/* ---------- Scheduler ---------- */
.bkd .scheduler-section { padding-top: 40px; }
.bkd .scheduler-card {
	background: #fff; border: 1px solid var(--grey-200); border-radius: var(--r-xl);
	box-shadow: var(--shadow); padding: clamp(8px, 2vw, 24px);
	max-width: 960px; margin: 0 auto;
}
/* The HubSpot loader injects the calendar iframe here; reserve height so the
   page doesn't jump while it loads, and keep the iframe inside the card. */
.bkd .meetings-iframe-container { min-height: 700px; }
.bkd .meetings-iframe-container iframe { width: 100%; border: 0; }

.bkd .alt-contact {
	text-align: center; margin: 24px auto 0; font-size: 15px; color: var(--grey-500);
}
.bkd .alt-contact a { font-weight: 600; }

/* ---------- What happens in a demo ---------- */
.bkd .expect-section h2 {
	font-size: clamp(30px, 3.4vw, 44px); font-family: var(--display);
	font-optical-sizing: auto; font-variation-settings: "opsz" 60; font-weight: 600;
	letter-spacing: -0.02em; color: var(--ink); text-align: center; margin: 0 0 40px;
}
.bkd .expect-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 900px) { .bkd .expect-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.bkd .expect-card {
	background: var(--grey-50); border: 1px solid var(--grey-100); border-radius: var(--r-xl);
	padding: 26px 24px;
}
.bkd .expect-card h3 { font-size: 17px; font-weight: 700; color: var(--grey-900); margin: 0 0 8px; }
.bkd .expect-card p { font-size: 15px; line-height: 24px; color: var(--grey-600); margin: 0; }
