:root {
  --navy: #1A2E5A;
  --navy-900: #102044;
  --royal: #2F80ED;
  --sky: #4FB3FF;
  --gold: #F2B233;
  --white: #FFFFFF;
  --light: #F7F9FC;
  --soft-blue: #EEF6FF;
  --ink: #17233F;
  --muted: #607089;
  --line: #DDE8F6;
  --shadow: 0 18px 48px rgba(26, 46, 90, .12);
  --shadow-soft: 0 12px 30px rgba(26, 46, 90, .08);
  --radius: 8px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

img,
svg {
  max-width: 100%;
}

a {
  color: var(--royal);
  text-decoration: none;
}

a:hover {
  color: #1666d0;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.55rem, 5vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3.35rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p {
  margin: 0 0 22px;
  color: var(--muted);
}

.container-xl,
.container-lg {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.container-lg {
  width: min(100% - 40px, 920px);
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -100px;
  z-index: 10000;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 46, 90, .96);
  backdrop-filter: blur(16px);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  background: rgba(16, 32, 68, .99);
  box-shadow: 0 12px 30px rgba(16, 32, 68, .18);
}

.nav-shell {
  width: min(100% - 40px, 1220px);
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
}

.brand:hover {
  color: var(--white);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--royal), var(--sky));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.45rem;
}

.brand-mark-vectora {
  position: relative;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.brand-mark-vectora span {
  position: absolute;
  display: block;
  width: 14px;
  height: 35px;
  border-radius: 2px;
  transform-origin: center bottom;
}

.brand-mark-vectora span:nth-child(1) {
  left: 5px;
  top: 4px;
  background: #1f7cff;
  transform: skewX(-26deg) rotate(-28deg);
}

.brand-mark-vectora span:nth-child(2) {
  left: 17px;
  top: 4px;
  background: #4fb3ff;
  transform: skewX(-26deg) rotate(-28deg);
}

.brand-mark-vectora span:nth-child(3) {
  right: 4px;
  top: 3px;
  background: var(--white);
  transform: skewX(26deg) rotate(28deg);
}

.brand-word {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: var(--white);
  font-size: .95rem;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-word span {
  color: #b9d8ff;
  font-weight: 700;
}

.brand-image {
  max-width: 180px;
  max-height: 50px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 34px;
}

.primary-nav a,
.mobile-nav a:not(.btn) {
  position: relative;
  color: rgba(255, 255, 255, .88);
  font-weight: 700;
  font-size: .95rem;
}

.primary-nav a::after,
.mobile-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--sky);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.primary-nav a:hover::after,
.primary-nav a.active::after,
.mobile-nav a:hover::after,
.mobile-nav a.active::after {
  transform: scaleX(1);
}

.primary-nav a.active,
.mobile-nav a.active {
  color: var(--white);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  border: 0;
  padding: 12px 22px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--royal);
  color: var(--white);
  box-shadow: 0 12px 22px rgba(47, 128, 237, .28);
}

.btn-primary:hover {
  background: #1f6fd6;
  color: var(--white);
}

.btn-outline-primary {
  border: 1px solid rgba(47, 128, 237, .35);
  background: var(--white);
  color: var(--royal);
  box-shadow: none;
}

.btn-outline-primary:hover {
  background: var(--royal);
  color: var(--white);
}

.btn-lg {
  min-height: 54px;
  padding: 15px 26px;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  padding: 12px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.mobile-nav {
  display: none;
  width: min(100% - 32px, 1220px);
  margin: 0 auto;
  padding: 0 0 20px;
}

.section-pad {
  padding: clamp(72px, 9vw, 122px) 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark p {
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--royal);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #a8d5ff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  font-size: 1.08rem;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  padding: clamp(76px, 8vw, 120px) 0;
  background:
    radial-gradient(circle at 78% 15%, rgba(79, 179, 255, .28), transparent 28%),
    linear-gradient(135deg, #102044 0%, #1A2E5A 48%, #183c78 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 90%);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 7%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(79, 179, 255, .28);
  transform: rotate(18deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(42px, 6vw, 80px);
}

.hero-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero-visual {
  min-width: 0;
}

.tutoring-mockup {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  background: #f8fbff;
  box-shadow: 0 32px 80px rgba(4, 16, 38, .38);
}

.mockup-topbar,
.mockup-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d7e2f0;
}

.window-dots span:first-child {
  background: #ff7b7b;
}

.window-dots span:nth-child(2) {
  background: var(--gold);
}

.window-dots span:nth-child(3) {
  background: #54d48b;
}

.session-chip,
.session-time,
.control-pill {
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--navy);
  padding: 7px 12px;
  font-size: .75rem;
  font-weight: 800;
}

.session-time {
  background: #fff4d8;
  color: #875d00;
}

.mockup-body {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) 56px;
  gap: 14px;
  padding: 16px;
}

.mockup-people,
.mockup-toolbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.person-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(26, 46, 90, .08);
}

.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--sky));
  color: var(--white);
  font-size: .78rem;
  font-weight: 900;
}

.student .avatar {
  background: linear-gradient(135deg, var(--gold), #ffd976);
  color: #2e2307;
}

.person-card strong,
.person-card small {
  display: block;
}

.person-card strong {
  color: var(--navy);
  font-size: .85rem;
}

.person-card small {
  color: var(--muted);
  font-size: .72rem;
}

.mini-tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.mini-tools span {
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #edf6ff, #fff);
  border: 1px solid var(--line);
}

.whiteboard {
  position: relative;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
}

.equation-card {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  padding: 10px 14px;
  border: 1px solid #d6e8ff;
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  color: var(--navy);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.graph-canvas {
  width: 100%;
  height: 100%;
  min-height: 330px;
}

.annotation-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 190px;
  padding: 12px 14px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #fff8e6;
  color: #5b4100;
  font-size: .82rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.mockup-toolbar button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--royal);
  box-shadow: 0 8px 18px rgba(26, 46, 90, .08);
}

.mockup-controls {
  justify-content: center;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.credibility-strip {
  position: relative;
  z-index: 2;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(26, 46, 90, .08);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.credibility-item {
  display: flex;
  gap: 16px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.credibility-item:last-child {
  border-right: 0;
}

.line-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--royal);
}

.credibility-item h2 {
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-size: .96rem;
  font-weight: 900;
  line-height: 1.3;
}

.credibility-item p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.45;
}

.partnership-overview {
  background: var(--white);
}

.partner-card-grid,
.detail-card-grid,
.value-grid,
.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.partner-card,
.detail-card,
.value-card,
.contact-card,
.founder-card,
.detail-info-grid article {
  border: 1px solid rgba(221, 232, 246, .9);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.partner-card,
.detail-card,
.value-card,
.detail-info-grid article {
  padding: clamp(26px, 3vw, 34px);
}

.partner-card:hover,
.partner-card.is-hovered,
.detail-card:hover,
.detail-card.is-hovered,
.value-card:hover,
.value-card.is-hovered {
  transform: translateY(-6px);
  border-color: rgba(47, 128, 237, .28);
  box-shadow: var(--shadow);
}

.icon-circle {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--soft-blue), #ffffff);
  color: var(--royal);
  box-shadow: inset 0 0 0 1px rgba(79, 179, 255, .22);
}

.icon-circle.large {
  width: 72px;
  height: 72px;
  margin-bottom: 0;
}

.partner-card p,
.detail-card p,
.value-card p {
  font-size: .96rem;
}

.partner-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 900;
}

.detailed-partners {
  background:
    linear-gradient(180deg, var(--light) 0%, #ffffff 100%);
}

.detail-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.detail-card h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 8px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.check-list .icon {
  color: var(--royal);
  margin-top: 3px;
}

.detail-card .btn {
  margin-top: auto;
}

.tabletop-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(79, 179, 255, .15), transparent 24%),
    var(--soft-blue);
}

.tabletop-grid,
.about-hero-grid,
.contact-grid,
.family-inquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 6vw, 76px);
}

.tabletop-copy p,
.about-copy p,
.family-copy p {
  font-size: 1.06rem;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid #dceafd;
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 28px rgba(26, 46, 90, .06);
}

.feature-item span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--royal);
}

.family-cta {
  padding: 54px 0;
  background: var(--soft-blue);
}

.family-cta-grid {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.family-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.6vw, 2.4rem);
}

.family-cta p {
  margin: 0;
}

.final-cta {
  padding: clamp(78px, 8vw, 112px) 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% -10%, rgba(79, 179, 255, .24), transparent 38%),
    var(--navy);
}

.final-cta h2 {
  max-width: 760px;
  margin: 0 auto 28px;
}

.about-hero {
  background:
    linear-gradient(135deg, #ffffff 0%, var(--soft-blue) 100%);
}

.about-art {
  min-height: 420px;
}

.map-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #dbe9fb;
  border-radius: 18px;
  background: linear-gradient(160deg, #ffffff, #eef7ff);
  box-shadow: var(--shadow);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(47, 128, 237, .18) 1px, transparent 1px);
  background-size: 20px 20px;
}

.connection-map {
  position: absolute;
  inset: 34px 26px auto;
  width: calc(100% - 52px);
}

.desk-card {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.laptop-card {
  left: 42px;
  bottom: 44px;
  width: 220px;
  height: 130px;
  padding: 24px;
}

.screen-line {
  display: block;
  height: 10px;
  width: 70%;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #d9eafe;
}

.screen-line.wide {
  width: 90%;
  background: var(--royal);
}

.screen-line.short {
  width: 45%;
  background: var(--gold);
}

.books-card {
  right: 52px;
  bottom: 62px;
  width: 118px;
  height: 96px;
  display: flex;
  align-items: end;
  gap: 8px;
  padding: 16px;
}

.books-card span {
  width: 24px;
  border-radius: 5px 5px 2px 2px;
  background: var(--royal);
}

.books-card span:nth-child(1) {
  height: 62px;
  background: var(--gold);
}

.books-card span:nth-child(2) {
  height: 78px;
}

.books-card span:nth-child(3) {
  height: 50px;
  background: var(--sky);
}

.plant-shape {
  position: absolute;
  right: 178px;
  bottom: 58px;
  width: 58px;
  height: 80px;
  border-radius: 34px 34px 8px 8px;
  background: linear-gradient(135deg, #78d3a2, #2fb36d);
  opacity: .86;
}

.values-section {
  background: var(--white);
}

.value-grid {
  grid-template-columns: repeat(4, 1fr);
}

.value-card {
  text-align: center;
}

.value-card .icon-circle {
  margin-inline: auto;
}

.process-section {
  background: var(--light);
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-flow::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 32px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--sky) 0 8px, transparent 8px 16px);
}

.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 7px solid var(--light);
  border-radius: 50%;
  background: var(--royal);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(47, 128, 237, .26);
}

.process-step .line-icon {
  margin: 0 auto 18px;
  background: var(--white);
}

.process-step h3 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1rem;
}

.process-step p {
  font-size: .92rem;
}

.founder-section {
  background: var(--white);
}

.founder-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
}

.founder-photo {
  min-height: 340px;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--soft-blue), #ffffff);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.founder-placeholder {
  width: 100%;
  min-height: 340px;
  display: grid;
  place-items: center;
  color: var(--royal);
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
}

.quote-mark {
  display: block;
  height: 46px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 5.5rem;
  line-height: .65;
}

.founder-copy p {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.founder-copy strong,
.founder-copy small {
  display: block;
}

.founder-copy strong {
  color: var(--navy);
  font-weight: 900;
}

.founder-copy small {
  margin-top: 4px;
  color: var(--muted);
}

.about-cta {
  padding: clamp(42px, 6vw, 70px);
  border-radius: 18px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(79, 179, 255, .12), transparent),
    var(--navy);
}

.about-cta p {
  max-width: 640px;
  margin-inline: auto;
  color: rgba(255, 255, 255, .82);
}

.contact-reference-top {
  position: relative;
  overflow: hidden;
  padding: 50px 0 58px;
  background:
    radial-gradient(circle at 16% 28%, rgba(79, 179, 255, .08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 74%, #fafdff 100%);
}

.contact-reference-top::before,
.contact-reference-top::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.contact-reference-top::before {
  right: -80px;
  top: -140px;
  width: 520px;
  height: 520px;
  background-image:
    linear-gradient(135deg, transparent 0 46%, rgba(47, 128, 237, .09) 46.4% 46.8%, transparent 47.2%),
    linear-gradient(135deg, transparent 0 58%, rgba(79, 179, 255, .08) 58.4% 58.8%, transparent 59.2%),
    radial-gradient(rgba(47, 128, 237, .12) 1.5px, transparent 1.5px);
  background-size: 90px 90px, 120px 120px, 28px 28px;
  opacity: .72;
}

.contact-reference-top::after {
  left: 50%;
  top: 188px;
  width: 1px;
  height: 760px;
  background: linear-gradient(180deg, transparent, rgba(47, 128, 237, .11), transparent);
  transform: rotate(41deg);
}

.contact-line-pattern {
  position: absolute;
  right: 0;
  top: 0;
  width: 48%;
  height: 100%;
  opacity: .5;
  background-image:
    linear-gradient(135deg, transparent 0 44%, rgba(47, 128, 237, .08) 44.4% 44.8%, transparent 45.2%),
    linear-gradient(135deg, transparent 0 64%, rgba(79, 179, 255, .08) 64.4% 64.8%, transparent 65.2%);
  background-size: 110px 110px, 150px 150px;
}

.contact-intro {
  position: relative;
  z-index: 1;
  padding: 0 0 34px;
  text-align: center;
  background: transparent;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: #006cff;
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.contact-eyebrow .icon {
  width: 22px;
  height: 22px;
  stroke-width: 2.1;
}

.contact-intro h1 {
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 14px;
  color: #071d4f;
  font-size: clamp(2.55rem, 5vw, 4rem);
}

.contact-intro p {
  max-width: 720px;
  margin-inline: auto;
  color: #3e4758;
  font-size: 1.1rem;
  line-height: 1.65;
}

.contact-booking {
  padding: 0 0 clamp(72px, 8vw, 112px);
  background: var(--white);
}

.contact-grid {
  position: relative;
  z-index: 1;
  width: min(100% - 96px, 1140px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 26px;
}

.contact-card {
  padding: clamp(24px, 3.2vw, 36px);
  border-color: #dce3ee;
  border-radius: 10px;
  box-shadow: 0 13px 34px rgba(9, 28, 73, .13);
}

.schedule-card {
  padding: 26px 38px 28px;
}

.schedule-card h2 {
  margin-bottom: 22px;
  color: #071d4f;
  text-align: center;
  font-size: 1.38rem;
}

.card-heading {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.card-heading .icon-circle {
  margin-bottom: 0;
  width: 54px;
  height: 54px;
  background: #eef6ff;
}

.card-heading h2 {
  margin-bottom: 4px;
  color: #071d4f;
  font-size: clamp(1.35rem, 2.3vw, 1.65rem);
}

.card-heading p {
  margin-bottom: 0;
  font-size: .94rem;
}

.embed-wrap iframe {
  width: 100%;
  min-height: 640px;
  border: 0;
}

.booking-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.booking-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7c8493;
  font-size: .86rem;
  font-weight: 800;
  white-space: nowrap;
}

.booking-step span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e8edf5;
  color: #657080;
  font-weight: 900;
}

.booking-step.active {
  color: #071d4f;
}

.booking-step.active span {
  background: #006cff;
  color: var(--white);
}

.booking-rule {
  height: 1px;
  background: #d7dee8;
}

.booking-instruction {
  margin-bottom: 18px;
  color: #3e4758;
  font-size: .95rem;
}

.calendar-widget {
  display: grid;
  gap: 18px;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.calendar-head button,
.calendar-grid button,
.time-slots button {
  border: 1px solid transparent;
  border-radius: 7px;
  background: var(--white);
  color: #1a2335;
  font-weight: 800;
}

.calendar-head button {
  width: 34px;
  height: 34px;
  color: #071d4f;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.calendar-head strong {
  color: #071d4f;
  font-size: 1.05rem;
  font-weight: 900;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px 12px;
}

.calendar-grid span {
  color: #6e7481;
  font-size: .66rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-grid button {
  aspect-ratio: 1 / 1;
  min-height: 34px;
  border-radius: 50%;
  color: #1e2a3b;
  background: transparent;
  font-size: .92rem;
  transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.calendar-grid button[data-calendar-day]:hover,
.calendar-grid button[data-calendar-day]:focus-visible {
  border-color: #8bbcff;
  color: #006cff;
  background: #eef6ff;
  outline: 0;
}

.calendar-grid button.muted {
  color: #b2bac7;
}

.calendar-grid button.available {
  color: #006cff;
  background: transparent;
}

.calendar-grid button.outlined {
  border-color: #8bbcff;
  color: #006cff;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 108, 255, .05);
}

.calendar-grid button.selected {
  border-color: #006cff;
  background: #006cff;
  color: var(--white);
  box-shadow: 0 9px 18px rgba(0, 108, 255, .26);
}

.timezone-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 2px;
  padding-bottom: 13px;
  border-bottom: 1px solid #dbe2ec;
  color: #202a3b;
  font-size: .92rem;
}

.timezone-row span {
  color: #687285;
  font-size: .95rem;
}

.time-slots {
  display: grid;
  gap: 12px;
}

.time-slots p {
  margin-bottom: 0;
  color: #071d4f;
  font-size: .92rem;
  font-weight: 800;
}

.time-slots p strong {
  font-weight: 900;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 13px;
}

.slot-grid button {
  width: 100%;
  min-height: 43px;
  border: 1px solid #9fc2ff;
  border-radius: 6px;
  color: #006cff;
  background: #ffffff;
  font-size: .92rem;
  box-shadow: none;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.slot-grid button:hover,
.slot-grid button:focus-visible {
  border-color: #006cff;
  background: #eef6ff;
  outline: 0;
}

.slot-grid button.selected {
  background: #006cff;
  color: #ffffff;
  box-shadow: 0 9px 18px rgba(0, 108, 255, .22);
}

.meeting-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #626b79;
  font-size: .88rem;
}

.meeting-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.meeting-meta .icon {
  width: 17px;
  height: 17px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 20px;
  margin-bottom: 20px;
}

.partner-form-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: #071d4f;
  font-size: .9rem;
  font-weight: 800;
}

.form-grid label span {
  color: #de2444;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd8e5;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 11px 14px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #7b8493;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 4px rgba(47, 128, 237, .12);
}

.was-validated input:invalid,
.was-validated select:invalid,
.was-validated textarea:invalid {
  border-color: #d33b3b;
}

.honeypot {
  position: absolute;
  left: -100vw;
  opacity: 0;
}

.form-alert {
  margin-bottom: 18px;
  padding: 13px 15px;
  border-radius: 8px;
  font-weight: 800;
}

.form-alert.success {
  background: #eaf8ef;
  color: #177142;
}

.form-alert.error {
  background: #fff0f0;
  color: #a22929;
}

.partner-inquiry-card {
  padding: 28px 32px 26px;
}

.partner-inquiry-card .card-heading {
  margin-bottom: 20px;
}

.partner-inquiry-card textarea {
  min-height: 98px;
}

.form-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 17px 0 0;
  color: #687285;
  font-size: .86rem;
}

.form-footnote .icon {
  width: 16px;
  height: 16px;
}

.family-inquiry {
  position: relative;
  overflow: hidden;
  padding: 44px 0 34px;
  background:
    linear-gradient(90deg, rgba(238, 246, 255, .98), rgba(238, 246, 255, .82)),
    var(--soft-blue);
}

.family-inquiry-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(280px, .65fr) minmax(0, 1.15fr);
  gap: clamp(42px, 7vw, 94px);
}

.family-dot-pattern {
  position: absolute;
  right: 32px;
  top: 28px;
  width: 240px;
  height: 260px;
  background-image: radial-gradient(rgba(47, 128, 237, .18) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: .75;
}

.family-copy {
  align-self: center;
}

.family-copy h2 {
  margin-bottom: 16px;
  color: #071d4f;
  font-size: clamp(2rem, 4vw, 3rem);
}

.family-copy p {
  max-width: 340px;
  color: #2d3748;
  font-size: 1.05rem;
}

.family-home-icon {
  width: 94px;
  height: 94px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, .78);
  color: #006cff;
  box-shadow: 0 14px 34px rgba(47, 128, 237, .08);
}

.family-home-icon .icon {
  width: 44px;
  height: 44px;
}

.family-line-art {
  width: min(100%, 330px);
  margin-top: 28px;
  color: #4d8cff;
}

.family-line-art path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .78;
}

.family-inquiry .contact-card {
  padding: 24px 28px 22px;
}

.family-inquiry textarea {
  min-height: 92px;
}

.contact-details {
  padding: 42px 0 46px;
  background: #ffffff;
}

.contact-details-heading {
  margin-bottom: 28px;
  text-align: center;
}

.contact-details-heading h2 {
  position: relative;
  margin-bottom: 0;
  color: #071d4f;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
}

.contact-details-heading h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 99px;
  background: #006cff;
}

.detail-info-grid article {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 32px;
  border: 0;
  border-right: 1px solid #cad8ea;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}

.detail-info-grid article:last-child {
  border-right: 0;
}

.detail-info-grid .icon-circle {
  width: 72px;
  height: 72px;
  margin: 0;
  background: #edf6ff;
  color: #006cff;
}

.detail-info-grid h3 {
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 900;
  color: #071d4f;
}

.detail-info-grid p {
  margin: 0;
  color: #071d4f;
  font-weight: 800;
  line-height: 1.35;
}

.detail-info-grid a {
  font-weight: 900;
}

.legal-page {
  background: linear-gradient(180deg, var(--soft-blue), var(--white));
}

.legal-page h1 {
  max-width: 720px;
}

.site-footer {
  background: var(--navy-900);
  color: var(--white);
}

.footer-shell {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr .8fr;
  gap: 42px;
  padding: 70px 0 48px;
}

.footer-brand p,
.footer-block p,
.footer-block a {
  color: rgba(255, 255, 255, .72);
}

.footer-brand p {
  max-width: 270px;
  margin-top: 18px;
}

.footer-block h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-block nav {
  display: grid;
  gap: 10px;
}

.footer-block p {
  margin-bottom: 8px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-weight: 900;
}

.footer-legal {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .66);
  font-size: .88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .primary-nav {
    gap: 22px;
  }

  .hero-grid,
  .tabletop-grid,
  .about-hero-grid,
  .contact-grid,
  .family-inquiry-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .value-grid,
  .process-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-flow::before {
    display: none;
  }

  .footer-shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    width: min(100% - 48px, 720px);
  }
}

@media (max-width: 900px) {
  .nav-shell {
    min-height: 74px;
  }

  .primary-nav,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 18px;
  }

  .mobile-nav a:not(.btn) {
    width: fit-content;
    padding: 7px 0;
  }

  .credibility-grid,
  .partner-card-grid,
  .detail-card-grid,
  .detail-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .credibility-item:nth-child(2n) {
    border-right: 0;
  }

  .family-cta-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .container-xl,
  .container-lg,
  .nav-shell,
  .mobile-nav,
  .footer-shell,
  .footer-legal {
    width: min(100% - 28px, 1180px);
  }

  .hero-section {
    padding: 58px 0 70px;
  }

  .mockup-body {
    grid-template-columns: 1fr;
  }

  .mockup-people {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .mini-tools,
  .mockup-toolbar {
    display: none;
  }

  .whiteboard {
    min-height: 260px;
  }

  .graph-canvas {
    min-height: 260px;
  }

  .mockup-controls {
    flex-wrap: wrap;
  }

  .credibility-grid,
  .partner-card-grid,
  .detail-card-grid,
  .value-grid,
  .process-flow,
  .detail-info-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .credibility-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .credibility-item:last-child {
    border-bottom: 0;
  }

  .form-grid label.full {
    grid-column: auto;
  }

  .calendar-grid {
    gap: 5px;
  }

  .contact-reference-top {
    padding-top: 38px;
  }

  .contact-intro h1 {
    font-size: clamp(2.25rem, 12vw, 3rem);
  }

  .contact-grid {
    width: min(100% - 28px, 1140px);
    gap: 18px;
  }

  .schedule-card,
  .partner-inquiry-card,
  .family-inquiry .contact-card {
    padding: 22px 16px;
  }

  .booking-progress {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .booking-rule {
    display: none;
  }

  .calendar-grid {
    gap: 7px 6px;
  }

  .calendar-grid button {
    min-height: 34px;
    font-size: .86rem;
  }

  .slot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .meeting-meta {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .detail-info-grid article {
    grid-template-columns: 64px 1fr;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid #dbe5f2;
  }

  .detail-info-grid article:last-child {
    border-bottom: 0;
  }

  .detail-info-grid .icon-circle {
    width: 62px;
    height: 62px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }
}
