:root {
  --ink: #102925;
  --ink-soft: #536862;
  --navy: #143c38;
  --navy-deep: #0c2d2a;
  --green: #65a36f;
  --green-bright: #a9ce9b;
  --sage: #dce9d9;
  --blue: #dbeae9;
  --paper: #f7f9f5;
  --white: #ffffff;
  --line: rgba(16, 41, 37, 0.13);
  --shadow: 0 24px 70px rgba(23, 57, 50, 0.1);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }

.skip-link {
  position: fixed; left: 20px; top: -80px; z-index: 1000;
  padding: 12px 18px; border-radius: 10px; background: var(--white); color: var(--navy-deep);
  font-weight: 700; transition: top 0.2s ease;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(247, 249, 245, 0.9); border-color: var(--line);
  box-shadow: 0 8px 30px rgba(20, 60, 56, 0.05); backdrop-filter: blur(14px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif; letter-spacing: -0.04em; font-size: 20px; }
.brand-domain { color: var(--green); }
.brand-mark { position: relative; display: grid; place-items: center; width: 35px; height: 35px; border: 1.5px solid var(--navy); border-radius: 50%; overflow: hidden; }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; border: 1px solid var(--navy); border-radius: 50%; }
.brand-mark::before { width: 13px; height: 40px; }
.brand-mark::after { width: 40px; height: 11px; }
.brand-orbit { position: absolute; width: 48px; height: 16px; border: 1px solid var(--green); border-radius: 50%; transform: rotate(-25deg); }
.main-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.main-nav a { position: relative; text-decoration: none; color: #3e5751; font-size: 14px; font-weight: 600; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px; background: var(--green); transform: scaleX(0); transform-origin: right; transition: transform 0.25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 28px; min-height: 54px; padding: 0 24px; border: 1px solid transparent; border-radius: 8px; text-decoration: none; font-size: 14px; font-weight: 700; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.button span { font-size: 20px; font-weight: 400; transition: transform 0.2s ease; }
.button:hover { transform: translateY(-2px); }
.button:hover span { transform: translate(2px, -2px); }
.button-small { min-height: 40px; padding: 0 17px; }
.button-outline { border-color: var(--line); background: rgba(255,255,255,.42); }
.button-outline:hover { border-color: var(--green); background: var(--white); }
.button-primary { background: var(--navy); color: var(--white); box-shadow: 0 12px 26px rgba(20,60,56,.2); }
.button-primary:hover { background: var(--navy-deep); box-shadow: 0 16px 32px rgba(20,60,56,.25); }

.hero { position: relative; min-height: 820px; padding: 150px 0 76px; overflow: hidden; background: radial-gradient(circle at 78% 37%, rgba(211, 231, 208, .8), transparent 31%), linear-gradient(180deg, #f9fbf7 0%, var(--paper) 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(20,60,56,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(20,60,56,.07) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to right, transparent 10%, #000 70%, transparent); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 40px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .kicker { margin: 0 0 22px; text-transform: uppercase; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.eyebrow { display: flex; align-items: center; gap: 11px; }
.eyebrow span { width: 27px; height: 1px; background: var(--green); }
h1, h2 { margin: 0; font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif; font-weight: 500; letter-spacing: -.055em; line-height: 1.07; }
h1 { max-width: 720px; font-size: clamp(46px, 5.25vw, 75px); }
h1 em, h2 em { color: var(--green); font-family: Georgia, serif; font-weight: 400; }
.hero-lead { max-width: 620px; margin: 28px 0 34px; color: var(--ink-soft); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.text-link { text-decoration: none; font-size: 14px; font-weight: 700; }
.text-link span { margin-left: 8px; color: var(--green); }
.hero-audience { display: flex; gap: 36px; margin-top: 62px; padding-top: 22px; border-top: 1px solid var(--line); max-width: 530px; }
.audience-item { color: var(--ink-soft); font-size: 13px; font-weight: 600; }
.audience-item span { margin-right: 9px; color: var(--green); font-family: Georgia, serif; font-style: italic; }

.hero-visual { position: relative; height: 540px; }
.visual-grid { position: absolute; inset: 4% 3% 7% 9%; border-radius: 50%; opacity: .45; background-image: linear-gradient(rgba(20,60,56,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(20,60,56,.12) 1px, transparent 1px); background-size: 46px 46px; mask-image: radial-gradient(circle, black 42%, transparent 71%); }
.globe { position: absolute; width: 390px; aspect-ratio: 1; top: 62px; left: 50%; transform: translateX(-50%); border: 1.5px solid rgba(20,60,56,.28); border-radius: 50%; background: rgba(245,249,242,.38); box-shadow: inset 0 0 60px rgba(105,159,110,.08), 0 40px 90px rgba(20,60,56,.11); overflow: hidden; }
.globe::before { content: ""; position: absolute; inset: 50% -5% auto; height: 1px; background: rgba(20,60,56,.22); }
.globe::after { content: ""; position: absolute; top: -5%; left: 50%; width: 1px; height: 110%; background: rgba(20,60,56,.22); }
.globe-meridian { position: absolute; top: -2%; left: 50%; height: 104%; border: 1px solid rgba(20,60,56,.19); border-radius: 50%; transform: translateX(-50%); }
.meridian-one { width: 40%; }.meridian-two { width: 76%; }
.globe-latitude { position: absolute; left: -2%; width: 104%; border: 1px solid rgba(20,60,56,.19); border-radius: 50%; }
.latitude-one { top: 17%; height: 26%; }.latitude-two { bottom: 17%; height: 26%; }
.continent { position: absolute; background: #88b788; opacity: .75; filter: drop-shadow(0 3px 5px rgba(20,60,56,.08)); }
.continent-one { width: 92px; height: 128px; left: 84px; top: 74px; clip-path: polygon(16% 0, 60% 8%, 93% 26%, 76% 43%, 87% 62%, 62% 68%, 46% 100%, 28% 73%, 4% 57%, 16% 36%, 0 16%); transform: rotate(-12deg); }
.continent-two { width: 127px; height: 94px; right: 43px; top: 91px; clip-path: polygon(0 17%, 31% 2%, 55% 16%, 100% 7%, 89% 39%, 63% 44%, 49% 69%, 17% 100%, 22% 57%, 3% 50%); }
.continent-three { width: 45px; height: 67px; right: 93px; bottom: 55px; clip-path: polygon(5% 10%, 47% 0, 100% 25%, 77% 50%, 60% 100%, 22% 79%, 0 43%); transform: rotate(18deg); }
.map-pin { position: absolute; z-index: 2; width: 11px; height: 11px; border: 3px solid var(--white); border-radius: 50%; background: var(--navy); box-shadow: 0 0 0 5px rgba(20,60,56,.16); }
.pin-one { left: 151px; top: 117px; }.pin-two { right: 112px; bottom: 92px; }
.visual-note { position: absolute; z-index: 3; padding: 14px 18px; border: 1px solid rgba(20,60,56,.13); border-radius: 10px; background: rgba(255,255,255,.78); box-shadow: 0 14px 35px rgba(20,60,56,.09); backdrop-filter: blur(9px); }
.visual-note small { display: block; color: #71847f; font-size: 8px; font-weight: 700; letter-spacing: .17em; }
.visual-note strong { display: block; line-height: 1.3; font-size: 14px; }
.visual-note-top { display: flex; align-items: center; gap: 12px; top: 31px; right: 3px; }
.note-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(101,163,111,.14); }
.visual-note-bottom { width: 165px; bottom: 41px; left: 3px; }
.scale-line { height: 3px; margin: 11px 0 4px; background: #d9e3dc; }.scale-line span { display: block; width: 71%; height: 100%; background: var(--navy); }
.scale-label { display: flex; justify-content: space-between; color: #71847f; font-size: 8px; }
.contour { position: absolute; border: 1px solid rgba(101,163,111,.3); border-radius: 48% 52% 62% 38% / 47% 39% 61% 53%; transform: rotate(19deg); }
.contour-one { width: 510px; height: 448px; inset: 34px auto auto 49%; transform: translateX(-50%) rotate(19deg); }
.contour-two { width: 545px; height: 485px; inset: 15px auto auto 49%; transform: translateX(-50%) rotate(23deg); opacity: .5; }
.visual-caption { position: absolute; right: 13px; bottom: 13px; color: rgba(20,60,56,.35); font-size: 10px; letter-spacing: .18em; line-height: 1.4; text-align: right; }
.visual-caption strong { font-size: 17px; color: rgba(20,60,56,.7); }
.hero-coordinate { position: absolute; color: rgba(20,60,56,.32); font-family: monospace; font-size: 9px; letter-spacing: .12em; writing-mode: vertical-rl; }
.hero-coordinate-one { left: 18px; top: 35%; }.hero-coordinate-two { right: 18px; bottom: 20%; }
.hero-scroll { position: absolute; left: max(24px, calc((100vw - var(--container))/2)); bottom: 26px; display: flex; align-items: center; gap: 10px; color: #7e8f8a; font-size: 8px; font-weight: 700; letter-spacing: .17em; }
.hero-scroll span { width: 30px; height: 1px; background: #9cacaa; }

.section { padding: 120px 0; }
.intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 50px; }
.section-marker { color: #7b8d87; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.section-marker span { margin-right: 12px; color: var(--green); font-family: Georgia, serif; font-size: 15px; font-style: italic; }
.intro-content h2, .section-heading h2, .materials-copy h2, .tutoring-copy h2 { font-size: clamp(38px, 4.2vw, 59px); }
.intro-text { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; max-width: 790px; margin-top: 44px; color: var(--ink-soft); font-size: 16px; }
.intro-text p { margin: 0; }

.audience-section { background: #eef4eb; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 55px; }
.section-summary { max-width: 390px; margin: 0 0 5px; color: var(--ink-soft); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.learning-card { position: relative; min-height: 405px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 25px 28px 24px; border: 1px solid rgba(20,60,56,.1); border-radius: var(--radius); background: rgba(255,255,255,.74); box-shadow: 0 7px 20px rgba(20,60,56,.025); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.learning-card:hover { transform: translateY(-7px); border-color: rgba(101,163,111,.45); box-shadow: var(--shadow); }
.learning-card-featured { background: var(--navy); color: var(--white); }
.card-number { color: #81938d; font-family: Georgia, serif; font-style: italic; font-size: 12px; }
.learning-card-featured .card-number { color: var(--green-bright); }
.card-icon { position: relative; width: 100px; height: 100px; align-self: center; color: var(--green); }
.icon-compass { border: 1px solid rgba(20,60,56,.23); border-radius: 50%; }
.icon-compass::before { content: ""; position: absolute; inset: 10px; border: 1px dashed rgba(20,60,56,.25); border-radius: 50%; }
.icon-compass::after { content: "N"; position: absolute; top: 5px; left: 50%; transform: translateX(-50%); font-size: 8px; font-weight: 700; }
.icon-compass span { position: absolute; left: 40px; top: 23px; width: 20px; height: 53px; background: var(--green); clip-path: polygon(50% 0, 100% 100%, 50% 75%, 0 100%); transform: rotate(27deg); }
.icon-mountain { width: 125px; background: linear-gradient(150deg, transparent 48%, rgba(169,206,155,.8) 49% 51%, transparent 52%) no-repeat center/100% 80%; }
.icon-mountain::before, .icon-mountain::after { content: ""; position: absolute; left: 10px; right: 10px; border: 1px solid rgba(169,206,155,.45); border-radius: 50%; }
.icon-mountain::before { height: 50px; bottom: 10px; }.icon-mountain::after { height: 30px; bottom: 20px; }
.icon-mountain span { position: absolute; left: 52px; top: 24px; width: 20px; height: 20px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 8px rgba(169,206,155,.12); }
.icon-layers span { position: absolute; left: 7px; width: 86px; height: 43px; border: 1px solid rgba(20,60,56,.34); border-radius: 50%; transform: rotate(-8deg); }
.icon-layers span:nth-child(1) { top: 13px; }.icon-layers span:nth-child(2) { top: 29px; width: 74px; left: 13px; }.icon-layers span:nth-child(3) { top: 46px; width: 60px; left: 20px; background: rgba(101,163,111,.13); }
.learning-card h3 { margin: 0 0 12px; font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif; font-size: 22px; letter-spacing: -.035em; }
.learning-card p { margin: 0; color: #64766f; font-size: 14px; line-height: 1.65; }
.learning-card-featured p { color: rgba(255,255,255,.68); }
.card-coordinate { position: absolute; right: 18px; top: 50%; color: rgba(20,60,56,.22); font-family: monospace; font-size: 7px; letter-spacing: .12em; writing-mode: vertical-rl; }
.learning-card-featured .card-coordinate { color: rgba(255,255,255,.25); }

.materials-section { background: var(--white); }
.materials-panel { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 520px; overflow: hidden; border-radius: 30px; background: #e7f0e2; }
.materials-art { position: relative; min-height: 480px; overflow: hidden; background: var(--navy); }
.materials-art::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 40px 40px; }
.topo-ring { position: absolute; border: 1px solid rgba(169,206,155,.45); border-radius: 57% 43% 38% 62% / 48% 34% 66% 52%; transform: rotate(18deg); }
.ring-one { width: 440px; height: 390px; left: -35px; top: 42px; }.ring-two { width: 350px; height: 305px; left: 14px; top: 84px; }.ring-three { width: 252px; height: 220px; left: 63px; top: 128px; }.ring-four { width: 135px; height: 115px; left: 120px; top: 181px; }
.topo-point { position: absolute; left: 184px; top: 226px; width: 11px; height: 11px; border: 2px solid var(--navy); border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 7px rgba(169,206,155,.14); }
.materials-art p { position: absolute; left: 36px; bottom: 28px; margin: 0; color: rgba(255,255,255,.55); font-size: 8px; letter-spacing: .2em; line-height: 1.6; }
.materials-art p strong { color: var(--white); font-size: 12px; }
.materials-copy { align-self: center; padding: 70px 70px 65px; }
.status-badge { width: fit-content; display: flex; align-items: center; gap: 8px; margin-bottom: 25px; padding: 6px 11px; border: 1px solid rgba(20,60,56,.13); border-radius: 99px; color: var(--navy); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.status-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(101,163,111,.14); }
.materials-copy > p { max-width: 530px; margin: 28px 0 34px; color: var(--ink-soft); }
.materials-progress { max-width: 460px; color: #657a73; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.materials-progress div { height: 3px; margin-top: 9px; background: rgba(20,60,56,.12); overflow: hidden; }
.materials-progress i { display: block; width: 63%; height: 100%; background: var(--green); }

.tutoring-section { position: relative; overflow: hidden; background: var(--navy-deep); color: var(--white); }
.tutoring-section::before { content: ""; position: absolute; width: 740px; height: 740px; right: -250px; top: -300px; border: 1px solid rgba(169,206,155,.13); border-radius: 47% 53% 65% 35% / 44% 39% 61% 56%; box-shadow: 0 0 0 70px rgba(169,206,155,.025), 0 0 0 140px rgba(169,206,155,.02); transform: rotate(19deg); }
.tutoring-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: center; }
.kicker-light { color: var(--green-bright); }
.tutoring-copy h2 em { color: var(--green-bright); }
.tutoring-copy > p { max-width: 610px; margin: 25px 0 0; color: rgba(255,255,255,.68); }
.tutoring-copy .button { margin-top: 37px; }
.button-light { background: var(--white); color: var(--navy-deep); }
.button-light:hover { background: var(--green-bright); }
.tutoring-details { position: relative; padding: 38px 35px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(255,255,255,.045); backdrop-filter: blur(7px); }
.detail-label { margin-bottom: 9px; color: var(--green-bright); font-size: 9px; font-weight: 700; letter-spacing: .17em; }
.tutoring-details > a { color: var(--white); font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif; font-size: clamp(19px, 2vw, 26px); font-weight: 600; text-decoration: none; }
.tutoring-details > a:hover { color: var(--green-bright); }
.divider { height: 1px; margin: 30px 0 17px; background: rgba(255,255,255,.13); }
.detail-row { display: flex; justify-content: space-between; gap: 25px; padding: 11px 0; font-size: 11px; }
.detail-row span { color: rgba(255,255,255,.48); }.detail-row strong { text-align: right; font-weight: 500; }
.contact-compass { position: absolute; right: -23px; bottom: -32px; width: 72px; height: 72px; border: 1px solid rgba(169,206,155,.28); border-radius: 50%; }
.contact-compass::before, .contact-compass::after { content: ""; position: absolute; background: rgba(169,206,155,.24); }.contact-compass::before { width: 1px; height: 100%; left: 50%; }.contact-compass::after { width: 100%; height: 1px; top: 50%; }
.contact-compass span { position: absolute; left: 50%; top: -17px; transform: translateX(-50%); color: var(--green-bright); font-size: 8px; }
.contact-compass i { position: absolute; left: 29px; top: 17px; z-index: 2; width: 14px; height: 38px; background: var(--green-bright); clip-path: polygon(50% 0, 100% 100%, 50% 78%, 0 100%); transform: rotate(23deg); }

.site-footer { padding: 35px 0; background: #f7f9f5; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.footer-brand { font-size: 17px; }.footer-brand .brand-mark { width: 29px; height: 29px; }
.footer-inner > a:not(.brand) { color: var(--ink-soft); font-size: 13px; text-decoration: none; }
.footer-inner > a:not(.brand):hover { color: var(--green); }
.footer-inner p { margin: 0; color: #7c8d88; font-size: 12px; text-align: right; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }.reveal-delay-long { transition-delay: .22s; }

:focus-visible { outline: 3px solid #7bb887; outline-offset: 4px; border-radius: 4px; }
::selection { background: var(--sage); color: var(--navy-deep); }

@media (max-width: 980px) {
  .hero { min-height: auto; padding-top: 132px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 750px; }
  .hero-visual { height: 475px; max-width: 590px; width: 100%; margin-inline: auto; }
  .globe { width: 350px; }
  .contour-one { width: 460px; height: 405px; }.contour-two { width: 495px; height: 440px; }
  .hero-scroll { display: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .learning-card:last-child { grid-column: 1 / -1; min-height: 330px; }
  .materials-panel { grid-template-columns: .8fr 1.2fr; }.materials-copy { padding: 55px 40px; }
  .tutoring-grid { gap: 55px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { min-height: 70px; gap: 15px; }
  .main-nav { display: none; }
  .brand { font-size: 18px; }.brand-mark { width: 31px; height: 31px; }
  .hero { padding: 115px 0 50px; }
  .hero::before, .hero-coordinate { display: none; }
  h1 { font-size: clamp(42px, 12.3vw, 60px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-audience { margin-top: 45px; gap: 18px; flex-direction: column; }
  .hero-visual { height: 390px; margin-top: 20px; }
  .globe { width: min(292px, 82vw); top: 45px; }
  .continent-one { transform: scale(.8) rotate(-12deg); transform-origin: left top; }.continent-two { transform: scale(.75); transform-origin: right top; }.continent-three { transform: scale(.8) rotate(18deg); transform-origin: right bottom; }
  .pin-one { left: 117px; top: 93px; }.pin-two { right: 85px; bottom: 68px; }
  .contour-one { width: 340px; height: 315px; top: 23px; }.contour-two { width: 370px; height: 340px; top: 11px; }
  .visual-note-top { right: 0; }.visual-note-bottom { bottom: 18px; }.visual-caption { display: none; }
  .section { padding: 80px 0; }
  .intro-text { grid-template-columns: 1fr; gap: 20px; margin-top: 33px; }
  .section-heading { display: block; }.section-summary { margin-top: 25px; }
  .cards-grid { grid-template-columns: 1fr; }
  .learning-card, .learning-card:last-child { grid-column: auto; min-height: 350px; }
  .materials-panel { grid-template-columns: 1fr; }
  .materials-art { min-height: 330px; }
  .ring-one { width: 360px; height: 320px; top: 12px; }.ring-two { width: 285px; height: 250px; top: 45px; }.ring-three { width: 205px; height: 180px; top: 80px; }.ring-four { width: 110px; height: 95px; top: 123px; left: 110px; }.topo-point { left: 163px; top: 163px; }
  .materials-copy { padding: 45px 27px; }
  .tutoring-grid { grid-template-columns: 1fr; }
  .tutoring-details { margin-bottom: 25px; padding: 28px 24px; }
  .detail-row { flex-direction: column; gap: 2px; }.detail-row strong { text-align: left; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; gap: 15px; }
  .footer-inner p { text-align: center; }
}

@media (max-width: 390px) {
  .header-inner .button { display: none; }
  .header-inner { justify-content: center; }
  .hero { padding-top: 105px; }
  .visual-note-top { padding: 10px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .hero-visual, .hero-actions, .hero-scroll { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  .section { padding: 40px 0; }
  .reveal { opacity: 1; transform: none; }
}
