:root {
  --blue: #006ee6;
  --blue-dark: #07396e;
  --blue-deep: #052b55;
  --sky: #eaf6ff;
  --cyan: #e7fbff;
  --warm: #fff7df;
  --yellow: #ffd95a;
  --yellow-soft: #fff7d7;
  --orange-soft: #fff1e7;
  --peach: #fff6f0;
  --gray: #f6f8fb;
  --line: #d6e5f2;
  --text: #142033;
  --muted: #526275;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(7, 57, 110, 0.12);
  --shadow-soft: 0 10px 28px rgba(7, 57, 110, 0.08);
  --radius: 8px;
  --container: 1080px;
  --narrow: 820px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; color: var(--text); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.8; letter-spacing: 0; background: var(--white); overflow-x: hidden; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 12px 0 0; }
body { word-break: normal; line-break: strict; }
h1, h2, h3, p, li, summary, a, span, strong { overflow-wrap: break-word; word-break: normal; line-break: strict; }
h1, h2, h3 { word-break: auto-phrase; overflow-wrap: normal; }
.button, .global-nav a, .section-label, .hero-points strong, .quick-link-card strong, .faq-item summary { word-break: keep-all; overflow-wrap: normal; }
h1, h2, h3 { margin: 0; line-height: 1.35; letter-spacing: 0; text-wrap: balance; }
p, li, summary, .lead, .hero-lead { text-wrap: pretty; }
.keep { display: inline-block; max-width: 100%; white-space: nowrap; word-break: keep-all; overflow-wrap: normal; }
@supports (word-break: auto-phrase) { body { word-break: auto-phrase; } }
h1 { font-size: 2.55rem; font-weight: 900; color: var(--blue-deep); }
h2 { font-size: 1.9rem; font-weight: 900; color: var(--blue-dark); }
h3 { font-size: 1.14rem; font-weight: 850; color: var(--blue-dark); }
.sr-only, .skip-link:not(:focus) { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link:focus { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 10px 14px; color: var(--white); background: var(--blue-dark); border-radius: var(--radius); }
.site-glow { position: fixed; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(180deg, rgba(234,246,255,.62) 0%, rgba(255,255,255,0) 42%, rgba(247,251,255,.55) 100%); }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .06;
  background-image: radial-gradient(circle, rgba(255,122,26,.68) 0 1.4px, transparent 1.6px);
  background-size: 42px 42px;
  background-position: 100% 96px;
}
.container { width: min(100% - 32px, var(--container)); margin: 0 auto; }
.narrow { width: min(100% - 32px, var(--narrow)); }
.section { padding: 58px 0; position: relative; }
.soft { background: linear-gradient(180deg, #f7fbff 0%, #fffdf6 100%); }
.section-label { display: inline-flex; align-items: center; gap: 6px; margin: 0 0 10px; padding: 4px 10px; color: var(--blue); font-size: .86rem; font-weight: 850; line-height: 1.5; text-transform: uppercase; background: rgba(234,246,255,.86); border: 1px solid rgba(214,229,242,.9); border-radius: var(--radius); }
.lead, .hero-lead { color: var(--muted); font-size: 1.04rem; font-weight: 600; }
.note { color: var(--muted); font-size: .94rem; }
.notice { padding: 14px 16px; color: var(--blue-dark); font-weight: 750; background: linear-gradient(180deg, var(--warm), var(--orange-soft)); border: 1px solid #f0d98a; border-radius: var(--radius); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; } .delay-2 { transition-delay: .22s; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.95); border-bottom: 1px solid rgba(214,229,242,.9); backdrop-filter: blur(14px); }
main, .site-footer { position: relative; z-index: 1; }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; width: min(100% - 28px, var(--container)); margin: 0 auto; }
.brand { display: inline-flex; width: 128px; align-items: center; }
.menu-toggle { display: inline-flex; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; padding: 0; color: var(--blue-dark); background: transparent; border: 0; cursor: pointer; }
.menu-toggle span:not(.sr-only) { width: 28px; height: 3px; margin: 0 auto; background: currentColor; border-radius: 3px; transition: transform .22s ease, opacity .22s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.global-nav { position: absolute; top: 72px; right: 14px; left: 14px; display: none; max-height: calc(100vh - 92px); overflow: auto; padding: 12px; background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.global-nav.is-open { display: grid; gap: 8px; animation: menuDrop .22s ease both; }
.global-nav a { display: flex; align-items: center; min-height: 44px; padding: 12px 14px; color: var(--blue-dark); font-size: .96rem; font-weight: 850; line-height: 1.35; text-decoration: none; border: 1px solid transparent; border-radius: var(--radius); }
.global-nav a:hover, .global-nav a:focus-visible, .global-nav a[aria-current="page"] { background: var(--sky); border-color: var(--line); }
.global-nav a:nth-child(4), .global-nav a:nth-child(5) { color: var(--blue); }
.hero, .page-hero { padding: 52px 0 62px; overflow: hidden; background: linear-gradient(180deg, #f6fbff 0%, #ffffff 74%, #fffaf0 100%); }
.decorated-hero::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 8px; background: linear-gradient(90deg, rgba(0,110,230,.16), rgba(255,217,90,.24), rgba(0,182,230,.12)); }
.hero-home::after { content: none; }
.hero-grid { display: grid; gap: 22px; align-items: center; }
.hero-grid.compact { gap: 26px; }
.hero-copy h1 { color: var(--blue-deep); }
.hero-visual { position: relative; min-height: 390px; padding: 18px; }
.visual-orbit { display: none; }
.study-window { position: absolute; top: 24px; right: 8px; left: 44px; padding: 18px; background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.window-bar { display: flex; gap: 6px; margin-bottom: 14px; }
.window-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.study-room-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
.study-room-grid span { min-height: 58px; display: grid; place-items: center; color: var(--blue-dark); font-weight: 850; background: var(--sky); border-radius: var(--radius); }
.window-title { color: var(--muted); font-size: .88rem; text-align: center; }
.hero-illustration { position: absolute; width: 155px; left: 0; bottom: 8px; padding: 8px; background: var(--white); border-radius: 50%; box-shadow: var(--shadow); }
.floating-chip { position: absolute; padding: 8px 12px; color: var(--blue-dark); font-size: .86rem; font-weight: 850; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.chip-one { left: 10px; top: 80px; } .chip-two { right: 12px; bottom: 70px; } .chip-three { left: 74px; bottom: 0; }
.hero-points { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; padding: 0; margin: 18px 0 0; list-style: none; }
.hero-points li { min-height: 66px; padding: 10px; color: var(--blue-dark); text-align: center; background: rgba(255,255,255,.88); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.hero-points strong { display: block; color: var(--blue); font-size: 1.15rem; line-height: 1.2; }
.hero-points span { color: var(--muted); font-size: .85rem; font-weight: 700; }
.button-row { display: grid; gap: 10px; margin-top: 20px; }
.button-row.center { justify-content: center; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 14px 18px; font-weight: 850; line-height: 1.35; text-align: center; text-decoration: none; border-radius: var(--radius); transition: transform .16s ease, box-shadow .16s ease, background .16s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 14px 24px rgba(0,110,230,.24); }
.button-primary::after { content: none; display: none; }
.button-secondary { color: var(--blue-dark); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.button-secondary-blue { color: var(--blue-dark); background: var(--sky); border: 1px solid var(--line); }
.button-light { color: var(--blue-dark); background: var(--white); }
.button-outline-light { color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.72); }
.split-section { display: grid; gap: 22px; align-items: center; }
.image-panel { overflow: hidden; position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.image-panel img { width: 100%; height: 100%; object-fit: cover; }
.image-panel.framed { padding: 10px; background: #f8fcff; }
.image-panel.framed img { border-radius: var(--radius); }
.panel-note { display: grid; gap: 4px; padding: 16px; background: var(--white); }
.panel-note strong { color: var(--blue-dark); }
.problem-gallery { display: grid; gap: 16px; margin-top: 22px; }
.problem-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease; }
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(7,57,110,.15); }
.problem-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #fff; }
.problem-card .num, .problem-card h3, .problem-card p { margin-left: 18px; margin-right: 18px; }
.problem-card .num { margin-top: 18px; }
.problem-card p { margin-bottom: 20px; }
.num { display: inline-grid; width: 42px; height: 42px; margin-bottom: 12px; place-items: center; color: var(--white); font-weight: 900; background: var(--blue); border-radius: var(--radius); }
.center-message { margin-top: 26px; padding: 16px; color: var(--blue-dark); font-weight: 850; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.center-message strong { color: var(--blue); }
.solution-flow { display: grid; gap: 14px; align-items: center; margin-top: 22px; }
.flow-block, .flow-core { padding: 22px; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.flow-block span { color: var(--muted); font-weight: 800; }
.flow-block p, .flow-core p { margin-top: 6px; font-weight: 850; color: var(--blue-dark); }
.flow-block.good { background: var(--sky); }
.flow-core img { width: 72px; margin: 0 auto 8px; }
.flow-core strong { display: block; color: var(--blue); font-size: 1.25rem; }
.flow-arrow { width: 42px; height: 42px; margin: 0 auto; border-top: 4px solid var(--blue); border-right: 4px solid var(--blue); transform: rotate(135deg); opacity: .7; }
.tool-cards, .card-grid { display: grid; gap: 14px; margin-top: 22px; }
.tool-card, .card, .price-panel, .faq-list details, .application-card, .contact-card, .member-card, .story-card { padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.tool-card { position: relative; overflow: hidden; min-height: 250px; }
.tool-card::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 6px; background: linear-gradient(90deg, rgba(0,110,230,.18), rgba(0,182,230,.12), rgba(255,217,90,.24)); }
.tool-icon { display: grid; width: 62px; height: 62px; margin-bottom: 16px; place-items: center; color: var(--white); font-weight: 900; background: linear-gradient(135deg, #006ee6, #55b7ff); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.tool-icon svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 2.15; stroke-linecap: round; stroke-linejoin: round; }
.tool-icon.line { background: linear-gradient(135deg, #1bb95b, #65db91); }
.tool-icon.classroom { background: linear-gradient(135deg, #ffd95a, #2fb865); }
.tool-icon.analysis { background: linear-gradient(135deg, #006ee6, #6ec6ff); }
.tool-icon.price-icon { color: var(--blue-dark); background: linear-gradient(135deg, #ffd95a, #fff3b0); }
.tool-icon.support { background: linear-gradient(135deg, #169bd7, #7ed7ff); }
.feature-item .tool-icon { width: 48px; height: 48px; margin: 0; flex: 0 0 auto; }
.feature-item .tool-icon svg { width: 25px; height: 25px; }
.feature-list { display: grid; gap: 14px; margin-top: 22px; }
.feature-item { display: grid; grid-template-columns: auto 1fr; gap: 12px; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-item .num { margin: 0; }
.feature-lift .feature-item { transition: transform .18s ease, box-shadow .18s ease; }
.feature-lift .feature-item:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(7,57,110,.15); }
.center-action { display: grid; margin-top: 22px; }
.price-layout { display: grid; gap: 24px; align-items: center; }
.price-panel { text-align: center; background: linear-gradient(180deg, #ffffff 0%, #fff9e8 100%); }
.price-label { margin: 0; color: var(--blue-dark); font-size: 1.2rem; font-weight: 900; }
.price { margin-top: 4px; color: var(--blue); font-weight: 900; line-height: 1.1; }
.price strong { font-size: 4.8rem; }
.price span { color: var(--muted); font-size: .95rem; }
.story-card { background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%); }
.check-list { display: grid; gap: 10px; padding: 0; margin: 22px 0 0; list-style: none; }
.check-list li { padding: 12px 14px; background: linear-gradient(180deg, var(--sky), #fffdf6); border: 1px solid var(--line); border-radius: var(--radius); }
.compact-list li { background: var(--white); }
.steps { display: grid; gap: 12px; padding: 0; margin: 20px 0 0; list-style: none; counter-reset: step; }
.steps li { position: relative; padding: 20px 18px 18px 62px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.steps li::before { counter-increment: step; content: counter(step, decimal-leading-zero); position: absolute; top: 18px; left: 16px; display: grid; width: 34px; height: 34px; place-items: center; color: var(--white); font-size: .82rem; font-weight: 900; background: var(--blue); border-radius: var(--radius); }
.steps h3 { display: block; margin: 0; color: var(--blue-dark); font-size: 1.05rem; font-weight: 900; }
.steps span { display: block; margin-top: 4px; color: var(--muted); }
.faq-list { display: grid; gap: 10px; margin-top: 20px; }
.faq-list details { padding: 0; overflow: hidden; }
.faq-list summary { padding: 18px 20px; color: var(--blue-dark); font-weight: 850; cursor: pointer; }
.faq-list details p { padding: 0 20px 18px; margin: 0; color: var(--muted); }
.service-map { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.service-map span, .service-map strong { display: grid; min-height: 74px; place-items: center; text-align: center; font-weight: 900; border-radius: var(--radius); }
.service-map span { color: var(--blue-dark); background: var(--sky); }
.service-map strong { grid-column: 1 / -1; color: var(--white); background: linear-gradient(135deg, var(--blue), #0097ee); }
.mini-list { display: grid; gap: 12px; margin-top: 24px; }
.mini-list div { display: grid; gap: 2px; padding: 14px; background: var(--sky); border: 1px solid var(--line); border-radius: var(--radius); }
.mini-list strong { color: var(--blue-dark); }
.mini-list span { color: var(--muted); font-size: .94rem; }
.offset-grid { margin-top: 24px; }
.application-card, .contact-card, .member-card { text-align: center; background: linear-gradient(180deg, #ffffff 0%, #f2f9ff 100%); }
.application-badge { display: inline-flex; padding: 7px 14px; color: var(--blue-dark); font-weight: 900; background: var(--warm); border-radius: var(--radius); }
.application-card strong, .contact-card strong { display: block; margin-top: 12px; color: var(--blue); font-size: 4rem; line-height: 1; }
.member-card img { width: 108px; margin: 0 auto 12px; }
.member-card strong { display: block; color: var(--blue); font-size: 1.4rem; }
.cta-band { color: var(--white); background: linear-gradient(135deg, #064f9c 0%, #0075d4 100%); overflow: hidden; }
.cta-band::before { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 10px; background: linear-gradient(90deg, rgba(255,255,255,.28), rgba(255,217,90,.42), rgba(255,255,255,.18)); }
.cta-inner { display: grid; gap: 20px; position: relative; }
.cta-band h2, .cta-band .section-label { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.92); }
.site-footer { padding: 34px 0 24px; background: #f7fbff; border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 20px; }
.footer-brand img { width: min(100%, 320px); }
.footer-brand p { color: var(--muted); font-size: .94rem; }
.footer-links, .footer-social { display: grid; gap: 8px; }
.footer-links a, .footer-social a { color: var(--blue-dark); font-weight: 750; text-decoration: none; }
.footer-links a:hover, .footer-social a:hover { color: var(--blue); text-decoration: underline; }
.legal-disclosure { width: min(100% - 32px, var(--container)); margin: 24px auto 0; overflow: hidden; background: rgba(255,255,255,.78); border: 1px solid rgba(214,229,242,.9); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.legal-disclosure summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 48px; padding: 12px 16px; color: var(--blue-dark); font-weight: 850; cursor: pointer; list-style: none; }
.legal-disclosure summary::-webkit-details-marker { display: none; }
.legal-disclosure summary::after { content: "+"; display: grid; width: 24px; height: 24px; flex: 0 0 auto; place-items: center; color: #7f8da0; background: rgba(245,247,250,.9); border: 1px solid rgba(222,229,238,.9); border-radius: var(--radius); }
.legal-disclosure[open] summary::after { content: "-"; }
.legal-body { display: grid; gap: 18px; padding: 0 16px 18px; color: var(--muted); font-size: .92rem; line-height: 1.72; }
.legal-list { display: grid; gap: 0; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.legal-list div { display: grid; gap: 4px; padding: 12px 14px; background: var(--white); border-bottom: 1px solid var(--line); }
.legal-list div:nth-child(even) { background: #f9fcff; }
.legal-list div:last-child { border-bottom: 0; }
.legal-list dt { color: var(--blue-dark); font-weight: 900; }
.legal-list dd { margin: 0; }
.legal-list a, .legal-terms { color: var(--blue); font-weight: 850; }
.legal-list span, .legal-note li { color: var(--muted); }
.legal-note { padding: 14px; background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%); border: 1px solid rgba(240,217,138,.72); border-radius: var(--radius); }
.legal-note strong { color: var(--blue-dark); }
.legal-note ul { display: grid; gap: 6px; padding-left: 1.1em; margin: 10px 0 0; }
.legal-terms { display: inline-flex; margin-top: 12px; text-decoration: none; }
.legal-terms:hover, .legal-terms:focus-visible { text-decoration: underline; }
.copyright { margin: 18px 0 0; color: var(--muted); font-size: .86rem; text-align: center; }
.float-soft { animation: floatSoft 5.6s ease-in-out infinite; }
.float-slow { animation: floatSoft 7s ease-in-out infinite; }
@keyframes floatSoft { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes menuDrop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; } .reveal { opacity: 1; transform: none; } }
@media (min-width: 640px) { .legal-list div { grid-template-columns: minmax(160px, .38fr) 1fr; gap: 18px; } h1 { font-size: 3.05rem; } h2 { font-size: 2.25rem; } .button-row { display: flex; flex-wrap: wrap; } .button-row.center { justify-content: center; } .button { min-width: 210px; } .hero-points { grid-template-columns: repeat(4, minmax(0,1fr)); } .problem-gallery, .tool-cards, .card-grid.three { grid-template-columns: repeat(2, minmax(0,1fr)); } .footer-grid { grid-template-columns: 1.4fr 1fr .7fr; align-items: start; } }
@media (min-width: 940px) { body { font-size: 17px; } h1 { font-size: 3.65rem; } h2 { font-size: 2.48rem; } h3 { font-size: 1.2rem; } .section { padding: 76px 0; } .hero, .page-hero { padding: 76px 0 86px; } .header-inner { min-height: 82px; } .brand { width: 152px; } .menu-toggle { display: none; } .global-nav { position: static; display: flex; align-items: center; gap: 2px; max-height: none; overflow: visible; padding: 0; background: transparent; border: 0; box-shadow: none; } .global-nav a { padding: 10px 8px; font-size: .88rem; } .hero-grid { grid-template-columns: minmax(0,1.06fr) minmax(360px,.94fr); gap: 58px; } .hero-grid.compact { grid-template-columns: minmax(0,1fr) minmax(340px,.78fr); } .hero-visual { min-height: 460px; } .hero-illustration { width: 190px; } .split-section, .price-layout { grid-template-columns: minmax(0,1fr) minmax(360px,.85fr); gap: 48px; } .problem-gallery, .tool-cards, .card-grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); } .card-grid.five { grid-template-columns: repeat(5, minmax(0,1fr)); } .feature-list { grid-template-columns: repeat(3, minmax(0,1fr)); } .feature-item { grid-template-columns: 1fr; } .solution-flow { grid-template-columns: 1fr 64px 1.2fr 64px 1fr; gap: 18px; } .flow-arrow { transform: rotate(45deg); } .steps.horizontal { grid-template-columns: repeat(var(--step-count, 4), minmax(0,1fr)); position: relative; } .steps.horizontal li { padding: 68px 18px 20px; } .steps.horizontal li::before { top: 18px; left: 18px; } .steps.horizontal li:not(:last-child)::after { content: ""; position: absolute; top: 34px; right: -20px; width: 26px; height: 2px; background: var(--blue); opacity: .55; } .cta-inner { grid-template-columns: 1fr auto; align-items: center; } .price strong { font-size: 6rem; } }
@media (min-width: 1180px) { .global-nav a { padding: 10px 11px; font-size: .92rem; } }

.hero-home { background: linear-gradient(180deg, #f6fbff 0%, #edf8ff 54%, #fffaf0 100%); }
.hero-home .hero-copy, .hero-home .hero-visual { position: relative; z-index: 1; }
.hero-visual::before { content: ""; position: absolute; inset: 54px 16px 32px; background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(234,246,255,.94)); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.study-window, .hero-illustration, .floating-chip { z-index: 2; }
.hero-logo-visual { display: grid; align-content: center; min-height: 430px; padding: 12px 0; }
.hero-logo-visual::before { content: none; }
.orbit-scene { --orbit-radius: 134px; position: relative; z-index: 2; display: grid; width: min(100%, 390px); aspect-ratio: 1; margin: 0 auto; place-items: center; }
.orbit-scene::before { content: ""; position: absolute; inset: 21%; background: radial-gradient(circle, rgba(255,217,90,.22), rgba(255,255,255,0) 68%); border-radius: 50%; }
.orbit-ring { position: absolute; border-radius: 50%; pointer-events: none; }
.orbit-ring-main { inset: 24px; border: 1px dashed rgba(0,110,230,.26); animation: orbitSpin 34s linear infinite; }
.orbit-ring-soft { inset: 76px; background: rgba(255,255,255,.46); border: 1px solid rgba(255,217,90,.42); animation: orbitPulse 5.4s ease-in-out infinite; }
.orbit-core { position: relative; z-index: 4; display: grid; width: 178px; height: 178px; padding: 12px; place-items: center; background: rgba(255,255,255,.92); border: 1px solid rgba(214,229,242,.78); border-radius: 50%; box-shadow: 0 18px 42px rgba(7,57,110,.14); }
.orbit-core img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.orbit-items { position: absolute; inset: 0; z-index: 3; animation: orbitSpin 30s linear infinite; }
.orbit-item { --orbit-angle: 0deg; --label-angle: 0deg; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(calc(var(--orbit-radius) * -1)); }
.orbit-item > span { display: inline-flex; min-width: 104px; min-height: 38px; align-items: center; justify-content: center; padding: 7px 12px; color: var(--blue-dark); font-size: .82rem; font-weight: 900; line-height: 1.25; white-space: nowrap; background: rgba(255,255,255,.94); border: 1px solid rgba(214,229,242,.95); border-radius: var(--radius); box-shadow: var(--shadow-soft); transform: rotate(var(--label-angle)); animation: orbitLabelSpin 30s linear infinite; }
.orbit-1 { --orbit-angle: 0deg; --label-angle: 0deg; }
.orbit-2 { --orbit-angle: 60deg; --label-angle: -60deg; }
.orbit-3 { --orbit-angle: 120deg; --label-angle: -120deg; }
.orbit-4 { --orbit-angle: 180deg; --label-angle: -180deg; }
.orbit-5 { --orbit-angle: 240deg; --label-angle: -240deg; }
.orbit-6 { --orbit-angle: 300deg; --label-angle: -300deg; }
.orbit-2 > span, .orbit-5 > span { background: rgba(255,249,232,.96); border-color: rgba(255,217,90,.52); }
.orbit-3 > span, .orbit-6 > span { background: rgba(240,251,255,.96); border-color: rgba(126,215,255,.48); }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes orbitLabelSpin { to { transform: rotate(calc(var(--label-angle) - 360deg)); } }
@keyframes orbitPulse { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.05); opacity: .58; } }

.study-preview { display: grid; gap: 14px; padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.preview-head { display: flex; align-items: center; gap: 7px; color: var(--blue-dark); }
.preview-head strong { margin-left: auto; font-size: .9rem; }
.preview-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.preview-screen { display: grid; gap: 14px; padding: 16px; background: #f6fbff; border: 1px solid var(--line); border-radius: var(--radius); }
.preview-time { display: grid; gap: 2px; padding: 14px; color: var(--white); background: linear-gradient(135deg, var(--blue), #0095e8); border-radius: var(--radius); }
.preview-time span { font-size: .9rem; font-weight: 800; opacity: .88; }
.preview-time strong { font-size: 1.08rem; }
.preview-row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 14px; color: var(--blue-dark); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.preview-row span { color: var(--muted); font-weight: 800; }
.preview-meter { height: 12px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.preview-meter span { display: block; height: 100%; background: linear-gradient(90deg, var(--blue), #55b7ff); }
.preview-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.preview-grid div { display: grid; gap: 2px; padding: 12px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.preview-grid strong { color: var(--blue-dark); }
.preview-grid span { color: var(--muted); font-size: .88rem; font-weight: 700; }
.supporter-teaser { background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%); }
.supporter-hero { background: linear-gradient(180deg, #f4fbff 0%, #ffffff 100%); }
.supporter-visual { overflow: hidden; padding: 10px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); animation: floatSoft 7s ease-in-out infinite; }
.supporter-visual img { width: 100%; border-radius: var(--radius); }
.supporter-icon { display: inline-grid; width: 46px; height: 46px; margin-bottom: 14px; place-items: center; color: var(--white); font-weight: 900; background: linear-gradient(135deg, var(--blue), #55b7ff); border-radius: var(--radius); }
.supporter-note { padding: 24px; background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.supporter-note h3 { margin-top: 12px; font-size: 1.45rem; }
.supporter-note .note { padding-top: 12px; border-top: 1px solid var(--line); }
@media (max-width: 639px) { #problems .lead { font-size: .96rem; } #problems .problem-gallery { gap: 12px; margin-top: 18px; } #problems .problem-card img { aspect-ratio: 21 / 9; } #problems .problem-card .num, #problems .problem-card h3, #problems .problem-card p { margin-left: 14px; margin-right: 14px; } #problems .problem-card .num { width: 34px; height: 34px; margin-top: 12px; margin-bottom: 8px; font-size: .78rem; } #problems .problem-card h3 { font-size: 1.02rem; line-height: 1.45; } #problems .problem-card p { margin-top: 6px; margin-bottom: 14px; font-size: .9rem; line-height: 1.62; } #problems .center-message { margin-top: 18px; padding: 13px 14px; font-size: .95rem; line-height: 1.65; } }
@media (max-width: 420px) { .preview-grid { grid-template-columns: 1fr; } .hero-visual { min-height: 420px; } .hero-logo-visual { min-height: 400px; padding-right: 0; padding-left: 0; } .orbit-scene { --orbit-radius: 112px; width: min(100%, 330px); } .orbit-core { width: 144px; height: 144px; } .orbit-item > span { min-width: 82px; min-height: 32px; padding: 5px 7px; font-size: .68rem; } }
@media (min-width: 940px) { .study-preview { padding: 24px; } .hero-logo-visual { min-height: 470px; } .orbit-scene { --orbit-radius: 154px; width: min(100%, 438px); } .orbit-core { width: 198px; height: 198px; } .orbit-item > span { min-width: 112px; min-height: 40px; font-size: .86rem; } .supporter-visual { align-self: center; } }

/* Natural reading rhythm and varied section patterns */
.tool-strips { gap: 14px; }
.tool-strips .tool-card { min-height: 0; display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; padding: 20px; background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%); }
.tool-strips .tool-card:nth-child(2) { background: linear-gradient(180deg, #ffffff 0%, #f5fff8 100%); }
.tool-strips .tool-card:nth-child(3) { background: linear-gradient(180deg, #ffffff 0%, #fff9e8 100%); }
.tool-strips .tool-card h3 { margin-top: 0; }
.tool-strips .tool-card p { margin-top: 6px; }
.feature-timeline { position: relative; gap: 18px; }
.feature-timeline::before { content: ""; position: absolute; top: 0; bottom: 0; left: 21px; width: 2px; background: linear-gradient(180deg, rgba(0,110,230,.18), rgba(255,217,90,.38)); }
.feature-timeline .feature-item { position: relative; grid-template-columns: auto 1fr; margin: 0; background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%); }
.feature-timeline .feature-item:nth-child(even) { background: linear-gradient(180deg, #ffffff 0%, #fff8ec 100%); }
.feature-timeline .num { position: relative; z-index: 1; box-shadow: 0 0 0 7px var(--white); }
.service-overview-list { display: grid; gap: 14px; margin-top: 28px; }
.service-overview-list .card { box-shadow: var(--shadow-soft); background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%); }
.service-overview-list .card:nth-child(2n) { background: linear-gradient(180deg, #ffffff 0%, #fff9eb 100%); }
.speech-list { display: grid; gap: 14px; margin-top: 24px; }
.speech-list .card { position: relative; max-width: 820px; box-shadow: var(--shadow-soft); background: #ffffff; }
.speech-list .card::before { content: ""; position: absolute; top: 22px; left: -9px; width: 18px; height: 18px; background: inherit; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); transform: rotate(45deg); }
.speech-list .card:nth-child(even) { margin-left: auto; background: #fffaf0; }
.speech-list .card:nth-child(even)::before { right: -9px; left: auto; border: 0; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.contact-topic-list { display: grid; gap: 12px; margin-top: 28px; }
.contact-topic-list .card { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; box-shadow: none; border-left: 6px solid rgba(0,110,230,.45); background: linear-gradient(90deg, #ffffff 0%, #f7fbff 100%); }
.contact-topic-list .card::before { content: ""; width: 16px; height: 16px; margin-top: 5px; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 0 6px var(--yellow-soft); }
.contact-topic-list .card h3, .contact-topic-list .card p { grid-column: 2; }
.contact-topic-list .card h3 { margin-top: 0; }
.supporter-points { display: grid; gap: 12px; margin-top: 28px; }
.supporter-points .card { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; box-shadow: var(--shadow-soft); background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%); }
.supporter-points .card:first-child { overflow: hidden; }
.supporter-points .card:nth-child(2) { background: linear-gradient(180deg, #ffffff 0%, #fff8ec 100%); }
.supporter-points .card .supporter-icon { grid-row: span 2; margin-bottom: 0; }
.supporter-points .card h3 { margin-top: 2px; }
.supporter-points .card p { grid-column: 2; margin-top: 0; }
.supporter-connection-illo { position: relative; grid-column: 1 / -1; min-height: 86px; margin-top: 6px; border-radius: var(--radius); background: linear-gradient(180deg, rgba(234,246,255,.66), rgba(255,255,255,.9)); }
.supporter-connection-illo::before { content: ""; position: absolute; top: 42px; right: 44px; left: 44px; height: 2px; background: linear-gradient(90deg, rgba(0,110,230,.24), rgba(255,122,26,.36), rgba(0,110,230,.24)); }
.supporter-connection-illo span { position: absolute; top: 23px; display: grid; width: 40px; height: 40px; place-items: center; background: #ffffff; border: 1px solid rgba(214,229,242,.9); border-radius: 50%; box-shadow: var(--shadow-soft); }
.supporter-connection-illo span::before { content: ""; width: 18px; height: 18px; background: var(--blue); border-radius: 50%; opacity: .82; }
.supporter-connection-illo span:first-child { left: 22px; }
.supporter-connection-illo span:nth-child(3) { right: 22px; }
.supporter-connection-illo i { position: absolute; top: 31px; left: 50%; width: 24px; height: 24px; border: 3px solid var(--accent-orange); border-radius: 50%; transform: translateX(-50%); }
.supporter-connection-illo b { position: absolute; right: 50%; bottom: 14px; width: 74px; height: 10px; background: radial-gradient(circle, rgba(255,122,26,.58) 0 2px, transparent 2.4px); background-size: 12px 10px; transform: translateX(50%); opacity: .7; }
.story-card { border-top: 6px solid rgba(255,217,90,.65); }
.faq-list details:nth-child(even) { background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%); }
@media (max-width: 420px) {
  h1 { font-size: 2.34rem; }
  .button-primary::after { display: none; }
  .tool-strips .tool-card, .supporter-points .card, .contact-topic-list .card { grid-template-columns: 1fr; }
  .supporter-points .card p, .contact-topic-list .card h3, .contact-topic-list .card p { grid-column: auto; }
  .contact-topic-list .card h3 { margin-top: 0; }
}
@media (min-width: 640px) {
  .tool-strips { grid-template-columns: 1fr; }
  .feature-timeline { grid-template-columns: 1fr; }
  .service-overview-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .service-overview-list .card:first-child { grid-row: span 2; background: linear-gradient(180deg, var(--blue), #0087ee); color: var(--white); }
  .service-overview-list .card:first-child h3 { color: var(--white); }
  .service-overview-list .card:first-child p { color: rgba(255,255,255,.9); }
}
@media (min-width: 940px) {
  .feature-timeline { grid-template-columns: 1fr; }
  .tool-strips { grid-template-columns: 1fr; width: min(100%, 920px); }
  .tool-strips .tool-card:nth-child(even) { transform: translateX(32px); }
  .feature-timeline { width: min(100%, 900px); margin-left: auto; margin-right: auto; }
  .feature-timeline::before { left: 50%; }
  .feature-timeline .feature-item { width: calc(50% - 32px); }
  .feature-timeline .feature-item:nth-child(even) { margin-left: calc(50% + 32px); }
  .feature-timeline .feature-item:nth-child(odd)::after, .feature-timeline .feature-item:nth-child(even)::after { content: ""; position: absolute; top: 32px; width: 26px; height: 2px; background: rgba(0,110,230,.3); }
  .feature-timeline .feature-item:nth-child(odd)::after { right: -32px; }
  .feature-timeline .feature-item:nth-child(even)::after { left: -32px; }
  .supporter-points { grid-template-columns: 1.1fr .9fr; align-items: stretch; }
  .supporter-points .card:first-child { grid-row: span 2; align-content: start; background: linear-gradient(180deg, #ffffff 0%, #eaf6ff 100%); }
}

/* Roots and stronger form calls */
.roots-section { background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%); }
.roots-card { position: relative; overflow: hidden; border-top: 0; text-align: center; background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%); }
.roots-card::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 6px; background: rgba(0,110,230,.28); }
.roots-preview { width: min(100%, 720px); margin: 20px auto 0; padding: 20px 20px 14px; background: rgba(255,255,255,.88); border: 1px solid var(--line); border-bottom: 0; border-radius: var(--radius) var(--radius) 0 0; }
.roots-preview p:first-child { margin-top: 0; }
.roots-question { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 7px 12px; color: var(--white); font-weight: 900; background: var(--blue); border-radius: var(--radius); }
.roots-hook { margin-top: 14px; }
.roots-hook p { margin-top: 6px; color: var(--blue-dark); font-weight: 800; }
.roots-details { width: min(100%, 720px); margin: 0 auto; text-align: center; background: rgba(255,255,255,.88); border: 1px solid var(--line); border-top: 0; border-radius: 0 0 var(--radius) var(--radius); }
.roots-details summary { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 8px 12px 14px; color: #98a3b3; font-size: .96rem; font-weight: 850; cursor: pointer; background: transparent; border: 0; border-radius: 0; box-shadow: none; list-style: none; }
.roots-details summary::-webkit-details-marker { display: none; }
.roots-details summary::after { content: "+"; display: inline-grid; width: 22px; height: 22px; margin-left: 8px; place-items: center; color: #98a3b3; background: rgba(245,247,250,.86); border: 1px solid rgba(222,229,238,.86); border-radius: var(--radius); }
.roots-details[open] summary::after { content: "-"; }
.roots-full { display: grid; gap: 2px; width: 100%; margin: 0 auto; padding: 4px 20px 22px; text-align: center; background: transparent; border: 0; border-top: 1px solid rgba(214,229,242,.62); border-radius: 0; }
.roots-full p { margin-top: 8px; }

.form-section { background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%); }
.form-cta { position: relative; overflow: hidden; padding: 34px 22px; background: linear-gradient(180deg, #ffffff 0%, #fff8e8 100%); border: 2px solid rgba(0,110,230,.18); }
.form-cta::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 8px; background: linear-gradient(90deg, var(--blue), #55b7ff, var(--yellow)); }
.form-cta h2 { font-size: clamp(1.9rem, 7vw, 3rem); }
.form-cta p { font-size: 1.05rem; }
.form-cta .button { width: 100%; min-height: 64px; margin-top: 18px; font-size: 1.08rem; }
@media (min-width: 640px) {
  .form-cta { padding: 42px 34px; }
  .form-cta .button { width: auto; min-width: 320px; }
}
@media (max-width: 380px) {
  h1 { font-size: 2.12rem; }
  .button, .global-nav a { word-break: normal; overflow-wrap: break-word; }
}

/* Top page section progress */
.page-progress { --progress-index: 0; --progress-offset: 20px; display: none; position: fixed; top: 50%; right: 12px; z-index: 35; width: 78px; height: min(82vh, 720px); min-height: 560px; transform: translateY(-50%); padding: 20px 8px; background: rgba(255,255,255,.86); border: 1px solid rgba(214,229,242,.9); border-radius: var(--radius); box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); }
.page-progress::before { content: ""; position: absolute; top: 30px; bottom: 30px; left: 17px; width: 2px; background: linear-gradient(180deg, rgba(0,110,230,.18), rgba(255,217,90,.34), rgba(255,150,90,.2)); transform: translateX(-50%); }
.page-progress a { position: relative; display: grid; width: 62px; min-height: 0; grid-template-columns: 18px 1fr; gap: 5px; align-items: center; justify-items: start; text-decoration: none; }
.page-progress a::before { content: ""; width: 9px; height: 9px; background: #b8d7ef; border: 2px solid rgba(255,255,255,.92); border-radius: 50%; box-shadow: 0 2px 7px rgba(7,57,110,.12); transition: transform .25s ease, background .25s ease; }
.page-progress a:nth-of-type(2n)::before { background: #ffd95a; }
.page-progress a:nth-of-type(3n)::before { background: #7ed7ff; }
.page-progress a:nth-of-type(4n)::before { background: #ffb985; }
.page-progress a.is-active::before { transform: scale(1.28); background: var(--blue); }
.page-progress span:not(.page-progress-marker) { position: static; padding: 0; color: #7f8da0; font-size: .68rem; font-weight: 850; line-height: 1.2; white-space: nowrap; background: transparent; border: 0; border-radius: 0; box-shadow: none; opacity: 1; transform: none; pointer-events: auto; transition: color .18s ease, transform .18s ease; }
.page-progress a:hover span, .page-progress a:focus-visible span, .page-progress a.is-active span { color: var(--blue-dark); transform: translateX(1px); }
.page-progress-marker { position: absolute; top: 0; left: 17px; width: 18px; height: 18px; background: rgba(255,217,90,.95); border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 7px 16px rgba(7,57,110,.2); transform: translate(-50%, var(--progress-offset)); transition: transform .5s cubic-bezier(.22,1,.36,1), background .25s ease; pointer-events: none; }
@media (min-width: 1120px) { body[data-page="index"] .page-progress { display: grid; grid-template-rows: repeat(8, minmax(0, 1fr)); gap: 0; } }
@media (min-width: 940px) { .global-nav { gap: 4px; } .global-nav a { min-height: 40px; padding: 10px 9px; border-color: transparent; } }
@media (min-width: 1180px) { .global-nav a { padding: 10px 10px; font-size: .9rem; } }

/* Subtle color rhythm */
#about { background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%); }
#solution { background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%); }
#features { background: linear-gradient(180deg, #ffffff 0%, #f9fdff 100%); }
#story { background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%); }
#supporter { background: linear-gradient(180deg, #ffffff 0%, #fff8ec 100%); }
.problem-card:nth-child(1) { border-top: 6px solid rgba(0,110,230,.32); }
.problem-card:nth-child(2) { border-top: 6px solid rgba(255,217,90,.72); }
.problem-card:nth-child(3) { border-top: 6px solid rgba(255,150,90,.38); }
.hero-points li:nth-child(2) { background: linear-gradient(180deg, #ffffff 0%, #fff9e8 100%); }
.hero-points li:nth-child(3) { background: linear-gradient(180deg, #ffffff 0%, #f0fbff 100%); }
.hero-points li:nth-child(4) { background: linear-gradient(180deg, #ffffff 0%, #fff5ee 100%); }
.price-panel, .application-card { border-top: 6px solid rgba(255,217,90,.62); }
.faq-list details:nth-child(3n) { background: linear-gradient(180deg, #ffffff 0%, #f2fbff 100%); }
.cta-band { background: linear-gradient(135deg, #064f9c 0%, #0075d4 68%, #169bd7 100%); }


/* About text-only layout */
.about-section { overflow: hidden; background: linear-gradient(180deg, #ffffff 0%, #f7fbff 58%, #fffdf6 100%); }
.about-section::before { content: ""; position: absolute; top: 18px; right: max(16px, calc((100vw - var(--container)) / 2)); width: min(34vw, 260px); height: min(34vw, 260px); background: radial-gradient(circle, rgba(126,215,255,.28), rgba(255,255,255,0) 68%); border-radius: 50%; pointer-events: none; }
.about-section::after { content: ""; position: absolute; bottom: 10px; left: max(16px, calc((100vw - var(--container)) / 2)); width: min(42vw, 340px); height: 1px; background: linear-gradient(90deg, rgba(0,110,230,.26), rgba(255,217,90,.52), rgba(0,110,230,0)); }
.about-text-layout { position: relative; z-index: 1; }
.about-copy-panel { width: min(100%, 920px); margin: 0 auto; padding: 28px 22px; background: rgba(255,255,255,.74); border: 1px solid rgba(214,229,242,.52); border-radius: var(--radius); box-shadow: 0 12px 30px rgba(7,57,110,.055); backdrop-filter: blur(8px); }
.about-copy-panel h2 { text-align: center; }
.about-copy-panel .lead { width: min(100%, 720px); margin-right: auto; margin-left: auto; text-align: center; }
.about-copy-flow { display: grid; gap: 4px; width: min(100%, 760px); margin: 18px auto 0; }
.about-copy-flow p { margin-top: 8px; }
.about-text-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 22px; }
.about-text-points span { padding: 7px 11px; color: var(--blue-dark); font-size: .88rem; font-weight: 850; background: linear-gradient(180deg, var(--sky), #fffdf6); border: 1px solid var(--line); border-radius: var(--radius); }
@media (max-width: 639px) {
  .about-section { padding-top: 48px; padding-bottom: 48px; }
  .about-copy-panel { padding: 22px 16px; }
  .about-copy-panel h2, .about-copy-panel .lead { text-align: left; }
  .about-copy-flow { margin-top: 12px; }
  .about-text-points { justify-content: flex-start; margin-top: 18px; }
}


/* Bookmark style tabs */
.tool-tabs-card { position: relative; margin-top: 24px; padding: 0; }
.tool-bookmark-tabs { display: flex; gap: 8px; align-items: flex-end; overflow-x: auto; padding: 0 4px 0; scrollbar-width: thin; }
.tool-tab { position: relative; display: inline-grid; grid-template-columns: auto 1fr; gap: 8px; align-items: center; min-width: max-content; min-height: 58px; padding: 10px 14px 16px; color: var(--blue-dark); font: inherit; font-size: .92rem; font-weight: 900; line-height: 1.25; text-align: left; background: linear-gradient(180deg, #f2f9ff 0%, #ffffff 100%); border: 1px solid var(--line); border-bottom: 0; border-radius: var(--radius) var(--radius) 0 0; box-shadow: var(--shadow-soft); cursor: pointer; transform: translateY(8px); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.tool-tab::after { content: ""; position: absolute; right: 12px; bottom: -10px; width: 16px; height: 16px; background: inherit; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transform: rotate(45deg); }
.tool-tab .tool-icon { width: 36px; height: 36px; margin: 0; border-radius: 50%; }
.tool-tab .tool-icon svg { width: 20px; height: 20px; }
.tool-tab.is-active { z-index: 2; color: var(--blue-deep); background: linear-gradient(180deg, #ffffff 0%, #fff9e8 100%); box-shadow: 0 16px 34px rgba(7,57,110,.14); transform: translateY(0); }
.tool-tab.is-active::after { background: #fff9e8; }
.tool-tab:focus-visible { outline: 3px solid rgba(0,110,230,.24); outline-offset: 2px; }
.tool-tab-body { position: relative; z-index: 1; overflow: hidden; padding: 22px; background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%); border: 1px solid var(--line); border-radius: 0 var(--radius) var(--radius) var(--radius); box-shadow: var(--shadow); }
.tool-tab-body::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(214,229,242,.32) 1px, transparent 1px); background-size: 100% 32px; opacity: .55; pointer-events: none; }
.tool-tab-panel { position: relative; z-index: 1; }
.tool-tab-panel.is-active { animation: tabFade .24s ease both; }
.tool-panel-heading { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; }
.tool-panel-heading .tool-icon { margin: 0; }
.tool-panel-heading h3 { margin: 0; font-size: 1.34rem; }
.tool-panel-heading p { margin-top: 4px; color: var(--muted); font-weight: 650; }
.tool-detail-list { display: grid; gap: 10px; padding: 0; margin: 20px 0 0; list-style: none; }
.tool-detail-list li { position: relative; padding: 12px 14px 12px 38px; color: var(--blue-dark); font-weight: 800; background: rgba(255,255,255,.9); border: 1px solid rgba(214,229,242,.86); border-radius: var(--radius); }
.tool-detail-list li::before { content: ""; position: absolute; top: 17px; left: 15px; width: 10px; height: 10px; background: linear-gradient(135deg, var(--blue), #7ed7ff); border-radius: 50%; box-shadow: 0 0 0 4px rgba(234,246,255,.9); }
@keyframes tabFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 639px) {
  .tool-tabs-card { margin-top: 20px; }
  .tool-bookmark-tabs { gap: 7px; padding-bottom: 2px; }
  .tool-tab { min-height: 54px; padding: 9px 12px 15px; font-size: .84rem; }
  .tool-tab .tool-icon { width: 32px; height: 32px; }
  .tool-tab-body { padding: 18px 14px 16px; border-radius: var(--radius); }
  .tool-panel-heading { grid-template-columns: 1fr; gap: 10px; }
  .tool-panel-heading .tool-icon { width: 48px; height: 48px; }
  .tool-panel-heading h3 { font-size: 1.18rem; }
  .tool-detail-list { gap: 8px; margin-top: 16px; }
  .tool-detail-list li { padding: 10px 12px 10px 34px; font-size: .94rem; line-height: 1.55; }
  .tool-detail-list li::before { top: 16px; left: 13px; }
}


/* Compact strengths */
.features-compact-section { background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%); }
.feature-compact { gap: 10px; margin-top: 20px; }
.feature-compact .feature-item { grid-template-columns: auto 1fr; gap: 12px; align-items: center; padding: 14px; background: rgba(255,255,255,.86); border-color: rgba(214,229,242,.78); box-shadow: var(--shadow-soft); }
.feature-compact .feature-item:nth-child(2) { background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%); }
.feature-compact .feature-item:nth-child(3) { background: linear-gradient(180deg, #ffffff 0%, #f0fbff 100%); }
.feature-compact .feature-round-icon { width: 46px; height: 46px; margin: 0; border-radius: 50%; }
.feature-compact .feature-round-icon svg { width: 24px; height: 24px; }
.feature-compact h3 { margin: 0; font-size: 1.04rem; }
.feature-compact p { margin-top: 3px; color: var(--muted); font-size: .92rem; line-height: 1.58; }
@media (min-width: 760px) {
  .feature-compact { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .feature-compact .feature-item { grid-template-columns: 1fr; justify-items: start; align-content: start; min-height: 154px; }
}
@media (max-width: 639px) {
  .features-compact-section { padding-top: 48px; padding-bottom: 48px; }
  .feature-compact { gap: 8px; margin-top: 16px; }
  .feature-compact .feature-item { padding: 12px; }
  .feature-compact .feature-round-icon { width: 42px; height: 42px; }
  .feature-compact h3 { font-size: .98rem; }
  .feature-compact p { font-size: .86rem; line-height: 1.52; }
}


/* Blended price section */
.price-section { overflow: hidden; background: linear-gradient(180deg, #f2f9ff 0%, #ffffff 58%, #fffaf0 100%); }
.price-section::before { content: ""; position: absolute; top: -90px; right: -80px; width: 270px; height: 270px; background: radial-gradient(circle, rgba(126,215,255,.38), rgba(255,255,255,0) 70%); border-radius: 50%; pointer-events: none; }
.price-section::after { content: ""; position: absolute; bottom: -110px; left: -80px; width: 310px; height: 310px; background: radial-gradient(circle, rgba(255,217,90,.22), rgba(255,255,255,0) 70%); border-radius: 50%; pointer-events: none; }
.price-blend-layout { position: relative; z-index: 1; display: grid; gap: 22px; align-items: center; }
.price-copy { padding: 0 2px; }
.price-use-cases { display: grid; gap: 9px; margin-top: 20px; }
.price-use-cases div { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; padding: 11px 12px; background: rgba(255,255,255,.72); border: 1px solid rgba(214,229,242,.78); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.price-use-cases div > span { display: grid; width: 30px; height: 30px; place-items: center; color: var(--white); font-size: .75rem; font-weight: 900; background: linear-gradient(135deg, var(--blue), #7ed7ff); border-radius: 50%; }
.price-use-cases p { margin: 0; color: var(--blue-dark); font-size: .94rem; font-weight: 750; line-height: 1.62; }
.price-showcase { position: relative; overflow: hidden; padding: 18px; background: rgba(255,255,255,.66); border: 1px solid rgba(214,229,242,.78); border-radius: var(--radius); box-shadow: 0 18px 45px rgba(7,57,110,.10); backdrop-filter: blur(8px); }
.price-showcase::before { content: ""; position: absolute; inset: 10px; background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(234,246,255,.52)); border: 1px solid rgba(255,255,255,.64); border-radius: var(--radius); pointer-events: none; }
.price-showcase > * { position: relative; z-index: 1; }
.price-main-card { display: grid; gap: 14px; align-items: center; padding: 18px; background: rgba(255,255,255,.92); border: 1px solid rgba(214,229,242,.92); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.price-main-left { text-align: center; }
.price-main-right { padding-top: 12px; border-top: 2px dotted rgba(0,110,230,.22); }
.price-main-right strong { color: var(--blue); font-size: 1.08rem; }
.price-main-right p { margin-top: 5px; color: var(--text); font-weight: 700; line-height: 1.7; }
.price-info-row { display: grid; gap: 10px; margin-top: 12px; }
.price-info-row div { display: grid; grid-template-columns: auto 1fr; column-gap: 10px; align-items: center; padding: 12px; background: rgba(255,255,255,.78); border: 1px solid rgba(214,229,242,.82); border-radius: var(--radius); }
.price-info-row strong { color: var(--blue-dark); }
.price-info-row p { grid-column: 2; margin: 2px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.price-info-icon { display: grid; grid-row: span 2; width: 38px; height: 38px; place-items: center; color: var(--blue); font-size: .82rem; font-weight: 900; background: var(--sky); border: 1px solid var(--line); border-radius: var(--radius); }
.price-info-icon.calendar { color: var(--blue-dark); background: var(--yellow-soft); }
.price-soft-note { margin: 12px 0 0; padding: 10px 12px; color: var(--blue-dark); font-size: .9rem; font-weight: 750; background: rgba(234,246,255,.72); border: 1px solid rgba(214,229,242,.78); border-radius: var(--radius); }
.price-showcase .button-row { margin-top: 14px; }
@media (min-width: 860px) {
  .price-blend-layout { grid-template-columns: minmax(0, .92fr) minmax(430px, 1fr); gap: 34px; }
  .price-main-card { grid-template-columns: .95fr 1fr; gap: 18px; }
  .price-main-right { padding-top: 0; padding-left: 20px; border-top: 0; border-left: 2px dotted rgba(0,110,230,.22); }
}
@media (max-width: 639px) {
  .price-section { padding-top: 50px; padding-bottom: 52px; }
  .price-use-cases { gap: 8px; margin-top: 16px; }
  .price-use-cases div { padding: 10px; }
  .price-use-cases p { font-size: .88rem; }
  .price-showcase { padding: 12px; }
  .price-main-card { padding: 15px 12px; }
  .price-main-right strong { font-size: 1rem; }
  .price-info-row div { padding: 10px; }
  .price-info-row p { font-size: .84rem; }
}


/* Comparison strengths */
.compare-section { background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%); }
.compare-heading { display: grid; gap: 8px; }
.compare-heading .lead { max-width: 760px; }
.compare-table-wrap { margin-top: 22px; overflow-x: auto; padding: 8px; background: rgba(255,255,255,.7); border: 1px solid rgba(214,229,242,.78); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.compare-table { width: 100%; min-width: 720px; border-collapse: separate; border-spacing: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.compare-table thead th { color: var(--blue-dark); font-size: .92rem; font-weight: 900; background: linear-gradient(180deg, #eaf6ff 0%, #ffffff 100%); }
.compare-table thead th:nth-child(2) { color: var(--blue); background: linear-gradient(180deg, #fff9e8 0%, #ffffff 100%); }
.compare-table tbody th { width: 22%; color: var(--blue-dark); font-weight: 900; background: #f8fcff; }
.compare-table tbody td { color: var(--muted); font-size: .93rem; line-height: 1.65; }
.compare-table tbody td:nth-child(2) { color: var(--text); background: linear-gradient(180deg, rgba(255,249,232,.62), rgba(255,255,255,.9)); }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table strong { display: block; color: var(--blue); margin-bottom: 3px; }
.compare-table span { display: block; }
@media (max-width: 639px) {
  .compare-section { padding-top: 48px; padding-bottom: 48px; }
  .compare-table-wrap { margin-top: 16px; padding: 6px; }
  .compare-table { min-width: 650px; }
  .compare-table th, .compare-table td { padding: 12px; }
  .compare-table tbody td { font-size: .86rem; }
}


/* Free trial example in price section */
.trial-example-card { margin-top: 12px; padding: 14px; background: rgba(255,255,255,.82); border: 1px solid rgba(214,229,242,.86); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.trial-example-head { display: flex; align-items: center; gap: 10px; color: var(--blue-dark); font-weight: 900; }
.trial-example-head span { display: grid; width: 34px; height: 34px; place-items: center; color: var(--white); background: var(--blue); border-radius: var(--radius); }
.trial-flow { display: grid; gap: 8px; margin-top: 12px; }
.trial-phase { display: grid; gap: 4px; padding: 12px; background: #f8fcff; border: 1px solid var(--line); border-radius: var(--radius); }
.trial-phase strong { color: var(--white); width: fit-content; padding: 3px 12px; background: linear-gradient(135deg, var(--blue), #55b7ff); border-radius: var(--radius); }
.trial-phase span { color: var(--blue-dark); font-weight: 900; line-height: 1.45; }
.trial-phase p { margin: 0; color: var(--muted); font-size: .84rem; font-weight: 700; line-height: 1.55; }
.trial-free { background: linear-gradient(180deg, #ffffff 0%, #eaf6ff 100%); }
.trial-pay { background: linear-gradient(180deg, #ffffff 0%, #fff9e8 100%); }
.trial-start { background: linear-gradient(180deg, #ffffff 0%, #effff8 100%); }
.trial-connector { position: relative; display: grid; min-height: 28px; place-items: center; color: var(--blue); font-size: .76rem; font-weight: 900; }
.trial-connector::before { content: ""; position: absolute; top: 50%; left: 8px; right: 8px; height: 2px; background: linear-gradient(90deg, var(--blue), #55b7ff); transform: translateY(-50%); }
.trial-connector::after { content: ""; position: absolute; top: 50%; right: 7px; width: 9px; height: 9px; border-top: 2px solid #55b7ff; border-right: 2px solid #55b7ff; transform: translateY(-50%) rotate(45deg); }
.trial-connector b { position: relative; z-index: 1; padding: 2px 8px; background: rgba(255,255,255,.94); border: 1px solid var(--line); border-radius: var(--radius); }
.trial-connector.green { color: #15835a; }
.trial-connector.green::before { background: linear-gradient(90deg, #55b7ff, #2fb865); }
.trial-connector.green::after { border-color: #2fb865; }
.trial-example-card > p { margin: 10px 0 0; color: var(--blue-dark); font-size: .88rem; font-weight: 800; }
@media (min-width: 760px) {
  .trial-flow { grid-template-columns: minmax(125px, 1fr) 58px minmax(150px, 1.1fr) 58px minmax(125px, 1fr); align-items: stretch; }
  .trial-connector { min-height: auto; }
}


/* Price layout balance patch */
@media (min-width: 1040px) {
  .trial-example-head { gap: 8px; }
  .trial-example-head span { width: 30px; height: 30px; }
  .trial-phase { padding: 10px; }
  .trial-phase span { font-size: .95rem; }
  .trial-phase p { font-size: .8rem; }
}
@media (max-width: 759px) {
  .trial-connector { min-height: 26px; }
  .trial-connector::before { top: 0; bottom: 0; left: 50%; width: 2px; height: auto; transform: translateX(-50%); background: linear-gradient(180deg, var(--blue), #55b7ff); }
  .trial-connector::after { top: auto; right: calc(50% - 5px); bottom: -1px; transform: rotate(135deg); }
}


/* Price board redesign */
.price-board { position: relative; z-index: 1; display: grid; gap: 16px; }
.price-board-head { display: grid; gap: 16px; align-items: stretch; }
.price-summary-card { display: grid; gap: 14px; padding: 18px; background: rgba(255,255,255,.86); border: 1px solid rgba(214,229,242,.88); border-radius: var(--radius); box-shadow: var(--shadow); }
.price-summary-amount { display: grid; align-content: center; min-height: 120px; text-align: center; background: linear-gradient(180deg, #ffffff 0%, #fff9e8 100%); border: 1px solid rgba(255,217,90,.5); border-radius: var(--radius); }
.price-summary-info { display: grid; gap: 10px; }
.price-summary-info div { padding: 12px 14px; background: rgba(234,246,255,.75); border: 1px solid var(--line); border-radius: var(--radius); }
.price-summary-info strong { color: var(--blue-dark); }
.price-summary-info p { margin: 2px 0 0; color: var(--muted); font-size: .92rem; font-weight: 750; }
.price-board-body { display: grid; gap: 14px; padding: 16px; background: rgba(255,255,255,.68); border: 1px solid rgba(214,229,242,.82); border-radius: var(--radius); box-shadow: var(--shadow-soft); backdrop-filter: blur(8px); }
.price-board-body .trial-example-card { margin-top: 0; background: rgba(255,255,255,.9); }
.price-board-body .price-use-cases { margin-top: 0; }
.price-board-foot { display: grid; gap: 14px; align-items: center; }
.price-board-foot .price-soft-note { margin: 0; }
.price-board-foot .button-row { margin-top: 0; }
@media (min-width: 900px) {
  .price-board-head { grid-template-columns: minmax(320px, .82fr) minmax(500px, 1.18fr); gap: 28px; }
  .price-summary-card { grid-template-columns: minmax(210px, .72fr) minmax(260px, 1fr); align-items: stretch; }
  .price-summary-info { align-content: center; }
  .price-board-body { grid-template-columns: 1fr; gap: 16px; }
  .price-board-foot { grid-template-columns: 1fr auto; }
}
@media (min-width: 1180px) {
  .price-board-head { grid-template-columns: minmax(360px, .78fr) minmax(650px, 1.22fr); }
  .price-summary-card { padding: 16px; }
  .price-summary-amount { min-height: 132px; }
  .price-board-body { grid-template-columns: 1fr; }
}
@media (max-width: 639px) {
  .price-board { gap: 12px; }
  .price-board-head, .price-board-body, .price-board-foot { gap: 12px; }
  .price-summary-card { padding: 12px; }
  .price-summary-amount { min-height: 108px; }
  .price-summary-info { gap: 8px; }
  .price-summary-info div { padding: 10px 12px; }
  .price-board-body { padding: 12px; }
  .price-board-body .price-use-cases { order: 2; }
  .price-board-body .trial-example-card { order: 1; }
}


/* Mobile trial card layout */
@media (max-width: 759px) {
  .trial-flow { gap: 10px; }
  .trial-phase { position: relative; padding-left: 44px; }
  .trial-phase::before { content: ""; position: absolute; top: 16px; left: 16px; width: 13px; height: 13px; background: var(--blue); border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 3px rgba(234,246,255,.92); }
  .trial-phase:not(:last-of-type)::after { content: ""; position: absolute; top: 34px; bottom: -18px; left: 24px; width: 2px; background: linear-gradient(180deg, rgba(0,110,230,.42), rgba(47,184,101,.35)); }
  .trial-pay::before { background: var(--yellow); }
  .trial-start::before { background: #2fb865; }
  .trial-connector { display: none; }
}


/* Trial chart visual */
.trial-chart { margin-top: 12px; overflow: hidden; background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%); border: 1px solid var(--line); border-radius: var(--radius); }
.trial-chart-months { display: grid; grid-template-columns: 2fr 1.55fr; gap: 8px; padding: 8px 10px 0; }
.trial-chart-months span { display: grid; min-height: 38px; place-items: center; color: var(--white); font-size: 1.08rem; font-weight: 900; background: linear-gradient(135deg, #55b7ff, var(--blue)); border-radius: var(--radius) var(--radius) 0 0; }
.trial-chart-grid { position: relative; display: grid; grid-template-columns: 1.05fr .92fr .18fr .95fr 1fr; grid-template-rows: auto auto 48px; gap: 8px; padding: 14px 18px 12px; }
.trial-chart-grid::before { content: ""; position: absolute; top: 8px; bottom: 10px; left: calc(59% - 6px); border-left: 2px dotted rgba(0,110,230,.38); }
.trial-gift { grid-column: 1; grid-row: 1 / 3; display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; padding: 14px; background: rgba(234,246,255,.72); border-radius: var(--radius); }
.trial-gift span { display: grid; width: 54px; height: 54px; place-items: center; color: var(--blue); font-size: 1.8rem; background: rgba(255,255,255,.85); border-radius: 50%; }
.trial-gift p, .trial-check p { margin: 0; color: var(--text); font-size: .9rem; font-weight: 750; line-height: 1.58; }
.trial-free-band { grid-column: 1 / 3; grid-row: 1; align-self: start; min-height: 44px; display: grid; place-items: center; padding: 8px 14px; color: var(--blue-dark); font-weight: 900; background: linear-gradient(90deg, rgba(214,235,255,.96), rgba(234,246,255,.72)); border-radius: var(--radius); transform: translateY(-2px); clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%); }
.trial-pay-window { grid-column: 2; grid-row: 2; align-self: end; display: grid; gap: 5px; place-items: center; padding: 14px 12px; color: var(--blue-dark); text-align: center; background: linear-gradient(180deg, #fff9e8 0%, #fff3c4 100%); border: 1px solid rgba(255,217,90,.72); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.trial-pay-window small { color: #9a6b00; font-weight: 900; }
.trial-check { grid-column: 4; grid-row: 1; display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: center; padding: 12px; background: rgba(239,255,248,.86); border-radius: var(--radius); }
.trial-check span { display: grid; width: 48px; height: 48px; place-items: center; color: #138a60; font-size: 2rem; font-weight: 900; background: rgba(47,184,101,.14); border-radius: 50%; }
.trial-use-window { grid-column: 4 / 6; grid-row: 2; display: grid; place-items: center; min-height: 82px; padding: 14px; color: #0f6f50; text-align: center; background: linear-gradient(180deg, #effff8 0%, #ddf8ec 100%); border: 1px solid rgba(47,184,101,.24); border-radius: var(--radius); }
.trial-axis { grid-column: 1 / 6; grid-row: 3; position: relative; align-self: center; height: 36px; }
.trial-axis span { position: absolute; top: 17px; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue) 0 58%, #f2b400 58% 68%, #2fb865 68% 100%); border-radius: 999px; }
.trial-axis span::after { content: ""; position: absolute; top: 50%; right: -1px; width: 12px; height: 12px; border-top: 4px solid #2fb865; border-right: 4px solid #2fb865; transform: translateY(-50%) rotate(45deg); }
.trial-axis b { position: absolute; top: 22px; color: var(--blue-dark); font-size: .82rem; font-weight: 900; }
.trial-axis .axis-start { left: 0; width: 10px; height: 10px; top: 14px; background: var(--blue); border-radius: 50%; }
.trial-axis .axis-25 { left: 43%; transform: translateX(-50%); }
.trial-axis .axis-end { left: 58%; transform: translateX(-50%); }
.trial-axis i { position: absolute; top: 14px; left: 58%; width: 10px; height: 10px; background: var(--blue); border-radius: 50%; transform: translateX(-50%); }
.trial-mobile-steps { display: none; }
@media (max-width: 759px) {
  .trial-chart { display: none; }
  .trial-mobile-steps { display: grid; gap: 10px; margin-top: 12px; }
  .trial-mobile-steps div { position: relative; display: grid; gap: 4px; padding: 12px 12px 12px 44px; background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: var(--radius); }
  .trial-mobile-steps div::before { content: ""; position: absolute; top: 16px; left: 16px; width: 13px; height: 13px; background: var(--blue); border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 3px rgba(234,246,255,.92); }
  .trial-mobile-steps div:not(:last-child)::after { content: ""; position: absolute; top: 34px; bottom: -18px; left: 24px; width: 2px; background: linear-gradient(180deg, rgba(0,110,230,.42), rgba(47,184,101,.35)); }
  .trial-mobile-steps div:nth-child(2)::before { background: var(--yellow); }
  .trial-mobile-steps div:nth-child(3)::before { background: #2fb865; }
  .trial-mobile-steps strong { color: var(--blue); }
  .trial-mobile-steps span { color: var(--blue-dark); font-weight: 900; }
  .trial-mobile-steps p { margin: 0; color: var(--muted); font-size: .88rem; font-weight: 700; line-height: 1.55; }
}
@media (max-width: 1040px) and (min-width: 760px) {
  .trial-chart-grid { grid-template-columns: .95fr .9fr .14fr .95fr .95fr; padding: 12px; }
  .trial-gift p, .trial-check p { font-size: .82rem; }
  .trial-gift span, .trial-check span { width: 42px; height: 42px; }
}


/* Hide old trial flow when chart is active */
.trial-example-card > .trial-flow { display: none; }


/* Price final compact tuning */
.price-copy h2 { max-width: 620px; line-height: 1.24; text-wrap: balance; }
.price-copy .lead { max-width: 620px; }
.price-copy h2 .keep { white-space: nowrap; }
.price-board-body { justify-self: center; width: min(100%, 1180px); }
.price-board-body .trial-example-card { justify-self: center; width: min(100%, 1040px); padding: 12px; }
.trial-gift span { width: 46px; height: 46px; color: var(--white); font-size: .78rem; font-weight: 900; background: linear-gradient(135deg, var(--blue), #55b7ff); }
@media (min-width: 900px) {
  .price-board-head { grid-template-columns: minmax(420px, .98fr) minmax(480px, 1.02fr); align-items: center; gap: 32px; }
  .price-summary-card { justify-self: end; width: min(100%, 620px); }
  .price-copy h2 { font-size: clamp(2.25rem, 3.65vw, 3.15rem); }
  .price-board-body { padding: 12px; }
  .trial-chart-months { grid-template-columns: 1.85fr 1.38fr; padding: 7px 9px 0; }
  .trial-chart-months span { min-height: 34px; }
  .trial-chart-grid { grid-template-columns: .9fr .78fr .12fr .78fr .92fr; grid-template-rows: auto auto 38px; gap: 7px; padding: 12px 14px 8px; }
  .trial-gift { gap: 10px; padding: 12px; }
  .trial-gift p, .trial-check p { font-size: .84rem; line-height: 1.52; }
  .trial-free-band { min-height: 40px; padding: 7px 12px; }
  .trial-pay-window { padding: 12px 10px; }
  .trial-check { gap: 9px; padding: 10px; }
  .trial-check span { width: 42px; height: 42px; font-size: 1.75rem; }
  .trial-use-window { min-height: 70px; padding: 12px; }
  .trial-axis { height: 30px; }
  .trial-axis span { top: 14px; }
  .trial-axis b { top: 18px; }
  .trial-axis .axis-start, .trial-axis i { top: 11px; }
}
@media (min-width: 1180px) {
  .price-board-head { grid-template-columns: minmax(470px, .95fr) minmax(560px, 1.05fr); }
  .price-summary-card { width: min(100%, 640px); }
  .price-board-body { width: min(100%, 1120px); }
  .price-board-body .trial-example-card { width: min(100%, 1000px); }
}
@media (max-width: 759px) {
  .price-copy h2 { max-width: 100%; line-height: 1.28; }
  .price-board-body .trial-example-card { width: 100%; padding: 11px; }
}
@media (max-width: 380px) {
  .price-copy h2 { font-size: clamp(1.86rem, 8.4vw, 2.15rem); }
}


/* Price chart polish and mobile progress */
.trial-chart-grid::before { content: none; border-left: 0; }
.trial-free-band { color: #053b76; background: linear-gradient(90deg, #b9dcff 0%, #d8efff 72%, #eff8ff 100%); }
.trial-axis span { background: linear-gradient(90deg, #006ee6 0 58%, #dca400 58% 68%, #1f9f60 68% 100%); }
.trial-axis span::after { border-top-color: #1f9f60; border-right-color: #1f9f60; }
.trial-check p { white-space: nowrap; color: #1d3550; font-size: .78rem; line-height: 1.35; }
@media (min-width: 900px) {
  .price-board-body { width: min(100%, 1040px); padding: 10px; }
  .price-board-body .trial-example-card { width: min(100%, 940px); padding: 11px; }
  .trial-chart { margin-top: 10px; }
  .trial-chart-months { grid-template-columns: 1.72fr 1.28fr; gap: 8px; padding: 7px 10px 0; }
  .trial-chart-months span { min-height: 32px; font-size: 1rem; }
  .trial-chart-grid { grid-template-columns: .88fr .76fr .08fr .98fr .68fr; grid-template-rows: auto auto 28px; gap: 7px; padding: 10px 12px 6px; }
  .trial-gift { grid-template-columns: 42px 1fr; gap: 9px; padding: 10px; }
  .trial-gift span { width: 42px; height: 42px; font-size: .72rem; }
  .trial-gift p { font-size: .82rem; line-height: 1.48; }
  .trial-free-band { min-height: 36px; padding: 6px 12px; font-size: .95rem; }
  .trial-pay-window { padding: 10px 9px; }
  .trial-pay-window strong { line-height: 1.45; }
  .trial-check { grid-column: 4 / 6; grid-row: 1; justify-self: start; width: max-content; max-width: 100%; grid-template-columns: auto auto; gap: 8px; padding: 8px 12px; }
  .trial-check span { width: 32px; height: 32px; font-size: 1.35rem; }
  .trial-use-window { grid-column: 4 / 6; min-height: 62px; padding: 10px 12px; }
  .trial-axis { height: 26px; }
  .trial-axis span { top: 12px; height: 4px; }
  .trial-axis b { top: 16px; font-size: .78rem; }
  .trial-axis .axis-start, .trial-axis i { top: 9px; }
}
@media (min-width: 1180px) {
  .price-board-body { width: min(100%, 1020px); }
  .price-board-body .trial-example-card { width: min(100%, 920px); }
}
@media (max-width: 1119px) {
  body[data-page="index"] { scroll-padding-top: 132px; }
  body[data-page="index"] .hero-home { padding-top: 102px; }
  body[data-page="index"] .page-progress { display: flex; align-items: center; gap: 4px; position: fixed; top: 72px; right: 8px; left: 8px; z-index: 45; width: auto; height: 46px; min-height: 0; padding: 6px 10px; overflow: hidden; transform: none; background: rgba(255,255,255,.92); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(7,57,110,.1); }
  body[data-page="index"] .page-progress::before { top: 15px; right: 18px; bottom: auto; left: 18px; width: auto; height: 2px; background: linear-gradient(90deg, rgba(0,110,230,.18), rgba(255,217,90,.34), rgba(255,150,90,.2)); transform: none; }
  body[data-page="index"] .page-progress a { flex: 1 1 0; width: auto; min-width: 0; min-height: 34px; grid-template-columns: 1fr; grid-template-rows: 12px 1fr; gap: 1px; justify-items: center; padding: 0; }
  body[data-page="index"] .page-progress a::before { width: 8px; height: 8px; }
  body[data-page="index"] .page-progress span:not(.page-progress-marker) { max-width: 100%; color: #6f7f92; font-size: .58rem; line-height: 1; transform: none; }
  body[data-page="index"] .page-progress a.is-active span { color: var(--blue-dark); }
  body[data-page="index"] .page-progress-marker { top: 15px; left: 0; width: 16px; height: 16px; transform: translate(var(--progress-offset), -50%); }
}
@media (min-width: 940px) and (max-width: 1119px) {
  body[data-page="index"] .page-progress { top: 82px; }
  body[data-page="index"] .hero-home { padding-top: 108px; }
}
@media (max-width: 380px) {
  body[data-page="index"] .page-progress { right: 6px; left: 6px; padding-right: 8px; padding-left: 8px; }
  body[data-page="index"] .page-progress span:not(.page-progress-marker) { font-size: .54rem; }
}


/* Site structure refresh and warm accent tuning */
:root {
  --accent-orange: #ff7a1a;
  --accent-coral: #ff5f57;
  --accent-red: #e5484d;
  --accent-warm-glow: rgba(255, 122, 26, .16);
}
.site-glow { background: radial-gradient(circle at 84% 14%, rgba(255,122,26,.18), rgba(255,122,26,0) 28%), linear-gradient(180deg, rgba(234,246,255,.62) 0%, rgba(255,255,255,0) 42%, rgba(255,250,240,.62) 100%); }
.section-label { color: var(--blue-dark); background: linear-gradient(180deg, #ffffff, #fff4e8); border-color: rgba(255,122,26,.22); }
.button-primary { background: var(--blue); box-shadow: 0 15px 28px rgba(0,110,230,.24); }
.button-primary::after { background: var(--accent-orange); box-shadow: 0 0 0 5px rgba(255,122,26,.12); }
.button-secondary, .button-secondary-blue { border-color: rgba(255,122,26,.18); }
.global-nav a:hover, .global-nav a:focus-visible, .global-nav a[aria-current="page"] { background: linear-gradient(180deg, var(--sky), #fff5ec); border-color: rgba(255,122,26,.18); }
.global-nav a:nth-child(4), .global-nav a:nth-child(5), .global-nav a:nth-child(6) { color: var(--blue); }
.hero-home { background: radial-gradient(circle at 88% 18%, rgba(255,122,26,.14), rgba(255,122,26,0) 28%), linear-gradient(180deg, #f6fbff 0%, #ffffff 74%, #fffaf0 100%); }
.hero-points li:nth-child(2), .hero-points li:nth-child(4) { border-color: rgba(255,122,26,.22); }
.problem-card:nth-child(2) { border-top-color: rgba(255,122,26,.58); }
.problem-card:nth-child(3) { border-top-color: rgba(229,72,77,.38); }
.tool-tab.is-active { border-color: rgba(255,122,26,.32); box-shadow: 0 12px 24px rgba(7,57,110,.08), inset 0 4px 0 rgba(255,122,26,.55); }
.tool-icon { background: linear-gradient(180deg, #ffffff, #fff5ec); border-color: rgba(255,122,26,.2); }
.cta-band { background: linear-gradient(135deg, #064f9c 0%, #006ee6 62%, #19a7e8 100%); }
.cta-band::before { background: linear-gradient(90deg, rgba(255,255,255,.28), rgba(126,215,255,.34), rgba(255,255,255,.18)); }
.price-section { background: radial-gradient(circle at 16% 12%, rgba(255,122,26,.12), rgba(255,122,26,0) 26%), linear-gradient(180deg, #f2f9ff 0%, #ffffff 58%, #fff7e8 100%); }
.price-summary-amount { background: linear-gradient(180deg, #ffffff 0%, #fff4df 100%); border-color: rgba(255,122,26,.35); }
.price-soft-note { background: linear-gradient(180deg, rgba(234,246,255,.72), rgba(255,246,232,.78)); border-color: rgba(255,122,26,.18); }
.price-soft-note a { color: var(--blue); font-weight: 900; text-underline-offset: 3px; }
.compare-table thead th:nth-child(2), .compare-table tbody td:nth-child(2) { background: linear-gradient(180deg, rgba(255,246,232,.84), rgba(255,255,255,.94)); }

.quick-links-section { padding-top: 36px; padding-bottom: 40px; background: linear-gradient(180deg, #ffffff 0%, #fff8ed 100%); }
.quick-links-panel { display: grid; gap: 16px; align-items: center; padding: 20px; background: rgba(255,255,255,.9); border: 1px solid rgba(214,229,242,.9); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.quick-links-panel h2 { font-size: clamp(1.55rem, 5vw, 2.15rem); }
.quick-link-actions { display: grid; gap: 10px; }
.quick-link-card { display: grid; gap: 3px; min-height: 86px; align-content: center; padding: 14px 16px; color: var(--blue-dark); text-decoration: none; background: linear-gradient(180deg, #ffffff, #eaf6ff); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease; }
.quick-link-card:hover, .quick-link-card:focus-visible { transform: translateY(-2px); border-color: rgba(255,122,26,.34); box-shadow: 0 16px 34px rgba(7,57,110,.1); }
.quick-link-card.warm { background: linear-gradient(180deg, #ffffff, #fff2e5); border-color: rgba(255,122,26,.22); }
.quick-link-card strong { color: var(--blue-dark); font-size: 1.02rem; }
.quick-link-card span:last-child { color: var(--muted); font-size: .9rem; font-weight: 750; }

.about-page-hero { background: radial-gradient(circle at 84% 12%, rgba(255,122,26,.18), rgba(255,122,26,0) 30%), linear-gradient(180deg, #f6fbff 0%, #ffffff 76%, #fffaf0 100%); }
.about-page-note { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; padding: 22px; background: rgba(255,255,255,.86); border: 1px solid rgba(214,229,242,.88); border-radius: var(--radius); box-shadow: var(--shadow); }
.about-page-note span, .about-page-note strong { display: grid; min-height: 72px; place-items: center; padding: 12px; color: var(--blue-dark); font-weight: 900; text-align: center; background: linear-gradient(180deg, #ffffff, #eaf6ff); border: 1px solid var(--line); border-radius: var(--radius); }
.about-page-note span:nth-child(2) { background: linear-gradient(180deg, #ffffff, #fff3e4); border-color: rgba(255,122,26,.22); }
.about-page-note span:nth-child(3) { background: linear-gradient(180deg, #ffffff, #fff7d7); }
.about-page-note strong { grid-column: 1 / -1; color: var(--white); background: linear-gradient(135deg, var(--blue), var(--accent-orange)); border: 0; }

.about-question-card { position: relative; display: grid; min-height: 340px; place-items: center; overflow: hidden; padding: 24px; background: rgba(246,251,255,.92); border: 1px solid rgba(214,229,242,.86); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.about-question-card::before { content: ""; position: absolute; inset: 18px; border: 1px dashed rgba(0,110,230,.18); border-radius: var(--radius); }
.question-core { position: relative; z-index: 2; display: grid; gap: 10px; width: min(100%, 230px); min-height: 178px; place-items: center; padding: 22px 18px; text-align: center; background: rgba(255,255,255,.92); border: 1px solid rgba(214,229,242,.88); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.question-core img { width: 74px; border-radius: 50%; }
.question-core strong { color: var(--blue-dark); font-weight: 950; line-height: 1.5; }
.question-mark { position: absolute; z-index: 1; display: grid; width: 38px; height: 38px; place-items: center; color: var(--accent-orange); font-size: 1.35rem; font-weight: 950; line-height: 1; background: rgba(255,255,255,.86); border: 1px solid rgba(255,122,26,.2); border-radius: 50%; box-shadow: var(--shadow-soft); opacity: .82; animation: questionFloat 8s ease-in-out infinite; animation-delay: var(--q-delay, 0s); }
.question-mark.q1 { top: 26px; left: 15%; }
.question-mark.q2 { top: 82px; right: 12%; color: var(--blue); border-color: rgba(0,110,230,.2); }
.question-mark.q3 { right: 22%; bottom: 34px; }
.question-mark.q4 { bottom: 78px; left: 10%; color: var(--blue); border-color: rgba(0,110,230,.2); }
.question-mark.q5 { top: 45%; left: 5%; }
@keyframes questionFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(.96); opacity: .4; }
  24% { opacity: .88; }
  50% { transform: translate3d(var(--q-drift, 16px), -18px, 0) scale(1.05); opacity: .78; }
  76% { transform: translate3d(calc(var(--q-drift, 16px) * -.6), 12px, 0) scale(1); opacity: .86; }
}

.faq-list details p + p { margin-top: 8px; }

.page-progress { --progress-line-x: 17px; }
.page-progress::before { left: var(--progress-line-x); }
.page-progress a::before { justify-self: center; box-sizing: border-box; }
.page-progress-marker { left: var(--progress-line-x); }
@media (min-width: 1120px) { body[data-page="index"] .page-progress { grid-template-rows: repeat(var(--progress-count, 7), minmax(0, 1fr)); } }

@media (min-width: 940px) {
  .global-nav { gap: 1px; }
  .global-nav a { min-height: 38px; padding: 9px 6px; font-size: .78rem; }
}
@media (min-width: 1180px) {
  .global-nav { gap: 2px; }
  .global-nav a { padding: 10px 8px; font-size: .84rem; }
  .quick-links-panel { grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr); padding: 22px 24px; }
  .quick-link-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 760px) and (max-width: 1179px) {
  .quick-link-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1119px) {
  body[data-page="index"] { scroll-padding-top: 124px; }
  body[data-page="index"] .page-progress { top: 0; right: 0; left: 0; z-index: 70; height: 48px; padding: 7px 12px 6px; border-top: 0; border-right: 0; border-left: 0; border-radius: 0 0 var(--radius) var(--radius); background: rgba(255,255,255,.96); box-shadow: 0 8px 22px rgba(7,57,110,.12); }
  body[data-page="index"] .page-progress::before { top: 16px; right: 22px; left: 22px; }
  body[data-page="index"] .page-progress-marker { top: 16px; }
  body[data-page="index"] .site-header { top: 48px; margin-top: 48px; z-index: 60; }
  body[data-page="index"] .hero-home { padding-top: 52px; }
}
@media (min-width: 940px) and (max-width: 1119px) {
  body[data-page="index"] .hero-home { padding-top: 76px; }
}
@media (max-width: 639px) {
  body::before {
    opacity: .04;
    background-size: 58px 58px;
  }
  .quick-links-section { padding-top: 28px; padding-bottom: 32px; }
  .quick-links-panel { padding: 16px; }
  .quick-link-card { min-height: 78px; }
  .about-page-note { padding: 16px; }
  .about-page-note span, .about-page-note strong { min-height: 62px; }
  .about-question-card { min-height: 260px; padding: 18px; }
  .question-core { width: min(100%, 210px); min-height: 150px; padding: 18px 14px; }
  .question-core img { width: 62px; }
  .question-mark { width: 32px; height: 32px; font-size: 1.12rem; }
}


/* June 30 HP final direction updates */
.hero-slogan { display: grid; gap: 2px; color: var(--blue-deep); font-size: clamp(3rem, 13vw, 5.8rem); line-height: .98; font-weight: 950; letter-spacing: 0; }
.hero-slogan .slogan-line { display: block; white-space: nowrap; }
.hero-slogan .slogan-key { color: var(--blue); font-size: 1.18em; }
.hero-copy .hero-lead { max-width: 640px; }

.hero-logo-visual { min-height: 640px; align-content: start; gap: 0; }
.orbit-scene { --orbit-radius: 156px; width: min(100%, 440px); }
.orbit-item > span { min-width: 132px; min-height: 40px; padding: 7px 12px; font-size: .8rem; color: var(--blue-dark); }
.orbit-1 > span, .orbit-4 > span { background: rgba(255,244,232,.96); border-color: rgba(255,122,26,.28); }
.orbit-2 > span, .orbit-5 > span { background: rgba(234,246,255,.96); border-color: rgba(0,110,230,.22); }
.orbit-3 > span, .orbit-6 > span { background: rgba(255,247,215,.96); border-color: rgba(255,217,90,.54); }
.button, .trial-button { background-image: none !important; }
.button-primary { color: var(--white); background: var(--blue) !important; box-shadow: 0 14px 24px rgba(0,110,230,.22); }
.button-primary::after { content: none !important; display: none !important; }
.button-primary:hover, .button-primary:focus-visible { background: #005ec4 !important; box-shadow: 0 16px 28px rgba(0,110,230,.28); }
.button-secondary { color: var(--blue-dark); background: var(--white) !important; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.button-secondary:hover, .button-secondary:focus-visible { background: #f7fbff !important; }
.button-secondary-blue { color: var(--blue-dark); background: var(--sky) !important; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.button-secondary-blue:hover, .button-secondary-blue:focus-visible { background: #dff1ff !important; }
.button-light { color: var(--blue-dark); background: var(--white) !important; border: 1px solid rgba(255,255,255,.88); }
.button-light:hover, .button-light:focus-visible { background: #f2f8ff !important; }
.button-outline-light { color: var(--white); background: transparent !important; border: 1px solid rgba(255,255,255,.78); }
.button-outline-light:hover, .button-outline-light:focus-visible { background: rgba(255,255,255,.14) !important; }

.supporter-mini-banner { padding: 20px 0 0; background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%); }
.supporter-mini-inner { display: grid; gap: 12px; align-items: center; padding: 15px 16px; background: rgba(255,255,255,.94); border: 1px solid rgba(214,229,242,.9); border-left: 6px solid var(--accent-orange); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.supporter-mini-inner h2 { font-size: clamp(1.22rem, 5vw, 1.72rem); }
.supporter-mini-inner p { margin-top: 2px; color: var(--muted); font-weight: 750; }
.supporter-mini-inner .button { min-height: 48px; }

.page-progress-marker { display: none !important; }
.page-progress a::before { transition: background .24s ease, box-shadow .3s ease, border-color .24s ease; transform: none !important; }
.page-progress a.is-active::before { background: var(--blue); border-color: var(--white); box-shadow: 0 0 0 6px rgba(0,110,230,.12), 0 0 18px rgba(0,110,230,.42); }
.page-progress a.is-active span { color: var(--blue-dark); font-weight: 950; }
@media (min-width: 1120px) { body[data-page="index"] .page-progress { grid-template-rows: repeat(var(--progress-count, 7), minmax(0, 1fr)); } }

@media (min-width: 760px) { .supporter-mini-inner { grid-template-columns: 1fr auto; padding: 16px 20px; } }
@media (min-width: 940px) {
  .hero-grid { grid-template-columns: minmax(0, .98fr) minmax(430px, 1.02fr); gap: 44px; }
  .hero-slogan { font-size: clamp(4.2rem, 6.4vw, 6.4rem); }
  .hero-logo-visual { min-height: 650px; }
}
@media (max-width: 639px) {
  .hero-slogan { gap: 4px; font-size: clamp(3rem, 16vw, 4.45rem); }
  .hero-logo-visual { min-height: 600px; padding-top: 0; }
  .orbit-scene { --orbit-radius: 120px; width: min(100%, 342px); }
  .orbit-core { width: 138px; height: 138px; }
  .orbit-item > span { min-width: 108px; min-height: 32px; padding: 5px 8px; font-size: .66rem; }
}


/* Exam key top section revision */
.hero-logo-visual { min-height: 460px; align-content: center; }
@media (min-width: 940px) { .hero-logo-visual { min-height: 500px; } }
@media (max-width: 639px) { .hero-logo-visual { min-height: 430px; } }

.exam-key-section { overflow: hidden; padding: 34px 0 44px; background: radial-gradient(circle at 8% 10%, rgba(0,110,230,.12), rgba(0,110,230,0) 24%), radial-gradient(circle at 92% 20%, rgba(255,122,26,.15), rgba(255,122,26,0) 24%), linear-gradient(180deg, #ffffff 0%, #f4fbff 52%, #ffffff 100%); }
.exam-key-section::before, .exam-key-section::after { content: ""; position: absolute; z-index: 0; pointer-events: none; opacity: .46; }
.exam-key-section::before { top: 16px; left: 0; width: 220px; height: 160px; background-image: radial-gradient(circle, rgba(0,110,230,.22) 2px, transparent 3px); background-size: 18px 18px; mask-image: linear-gradient(90deg, #000, transparent); }
.exam-key-section::after { right: 0; bottom: 12px; width: 260px; height: 150px; background-image: radial-gradient(circle, rgba(126,215,255,.36) 2px, transparent 3px); background-size: 18px 18px; mask-image: linear-gradient(270deg, #000, transparent); }
.exam-key-section .container { position: relative; z-index: 1; }
.exam-key-heading { display: grid; gap: 6px; margin-bottom: 16px; text-align: center; }
.exam-key-heading .section-label { margin: 0 auto; }
.exam-key-heading h2 { display: grid; gap: 2px; color: var(--blue-deep); font-size: clamp(1.9rem, 7vw, 3.65rem); line-height: 1.08; }
.exam-key-heading h2 > span { color: var(--blue-deep); font-size: .72em; }
.exam-key-heading strong { display: flex; flex-wrap: wrap; gap: 6px 12px; align-items: baseline; justify-content: center; font-style: normal; }
.exam-key-heading em { color: var(--blue-deep); font-size: .56em; font-style: normal; }
.key-orange { color: var(--accent-orange); }
.key-blue { color: var(--blue); }
.exam-key-grid { position: relative; display: grid; gap: 12px; }
.exam-key-card { position: relative; z-index: 2; overflow: hidden; background: rgba(255,255,255,.95); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.exam-key-card.reveal { transition: opacity 1.35s ease, transform 1.35s cubic-bezier(.16,1,.3,1); }
.exam-key-card.reveal.is-visible { transform: translate(0, 0); }
.exam-key-card.motivation { border-color: rgba(255,122,26,.42); }
.exam-key-card.information { border-color: rgba(0,110,230,.32); }
.exam-key-card.motivation.reveal { transform: translateY(-46px); }
.exam-key-card.information.reveal { transform: translateY(46px); }
.exam-key-card.motivation.reveal.is-visible, .exam-key-card.information.reveal.is-visible { transform: translate(0, 0); }
.exam-key-card-head { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; min-height: 60px; padding: 0 12px 0 0; border-bottom: 1px solid rgba(214,229,242,.86); background: linear-gradient(90deg, #fff7e8, #ffffff); }
.exam-key-card.information .exam-key-card-head { background: linear-gradient(90deg, #eaf6ff, #ffffff); }
.key-number { display: grid; width: 64px; height: 60px; place-items: center; color: var(--white); font-size: 1.65rem; font-weight: 950; line-height: 1; background: var(--accent-orange); border-radius: 0 0 var(--radius) 0; }
.exam-key-card.information .key-number { background: var(--blue); }
.exam-key-card h3 { color: var(--accent-orange); font-size: clamp(1.32rem, 5vw, 2rem); }
.exam-key-card.information h3 { color: var(--blue); }
.key-line-icon { position: relative; width: 50px; height: 40px; }
.key-line-icon.school::before { content: ""; position: absolute; left: 8px; right: 8px; bottom: 5px; height: 28px; border: 3px solid var(--accent-orange); border-bottom-width: 4px; border-radius: 3px 3px 0 0; }
.key-line-icon.school::after { content: ""; position: absolute; left: 23px; bottom: 5px; width: 12px; height: 14px; border: 3px solid var(--accent-orange); border-bottom: 0; border-radius: 6px 6px 0 0; }
.key-line-icon.book::before { content: ""; position: absolute; inset: 9px 8px 8px; border: 3px solid var(--blue); border-radius: 6px; box-shadow: inset 21px 0 0 rgba(0,110,230,.08); }
.key-line-icon.book::after { content: ""; position: absolute; top: 9px; bottom: 8px; left: 50%; width: 3px; background: var(--blue); transform: translateX(-50%); }
.exam-key-body { display: grid; gap: 4px; padding: 13px 16px 6px; }
.exam-key-body p { margin: 0; color: var(--text); font-size: .95rem; font-weight: 750; line-height: 1.58; }
.exam-key-body strong { color: var(--blue); }
.senior-voice-list, .study-example-list { display: grid; gap: 8px; padding: 7px 16px 14px; }
.senior-voice, .study-example { display: grid; grid-template-columns: 52px 1fr; gap: 9px; align-items: start; }
.voice-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, #d9ecff, #ffffff); border: 1px solid rgba(214,229,242,.9); box-shadow: var(--shadow-soft); }
.voice-avatar.campus-a { background: radial-gradient(circle at 55% 36%, #ffffff 0 12%, transparent 13%), linear-gradient(135deg, #bde0ff, #eaf6ff 58%, #ffffff); }
.voice-avatar.campus-b { background: linear-gradient(135deg, #0f5c86, #ff8a1a); }
.voice-avatar.info-a { background: radial-gradient(circle at 46% 45%, #ffe66d 0 18%, #fff7c8 19% 32%, transparent 33%), linear-gradient(135deg, #d8d8d8, #ffffff); }
.voice-avatar.info-b { background: radial-gradient(circle, #ffdf7f 0 5%, #ff7a1a 6% 14%, transparent 15%), radial-gradient(circle at 60% 40%, #ffb347, transparent 32%), #1d2633; }
.voice-bubble, .example-bubble { padding: 9px 10px; background: #ffffff; border: 1px dashed rgba(255,122,26,.46); border-radius: var(--radius); }
.example-bubble { border-color: rgba(0,110,230,.42); }
.voice-bubble span, .example-bubble span { display: inline-flex; margin-bottom: 4px; padding: 1px 9px; color: var(--white); font-size: .75rem; font-weight: 900; line-height: 1.45; background: var(--accent-orange); border-radius: 999px; }
.example-bubble span { color: var(--blue-dark); background: #dceeff; }
.voice-bubble strong, .example-bubble strong { display: block; color: var(--blue-dark); font-size: .84rem; line-height: 1.35; }
.voice-bubble p, .example-bubble p { margin-top: 4px; color: var(--text); font-size: .84rem; font-weight: 700; line-height: 1.45; }
.exam-key-logo { position: relative; z-index: 1; display: grid; min-height: 88px; place-items: center; pointer-events: none; }
.exam-key-logo::before, .exam-key-logo::after { content: ""; position: absolute; border-radius: 999px; pointer-events: none; }
.exam-key-logo::before { inset: 12px; background: radial-gradient(circle, rgba(255,255,255,.95) 0 42%, rgba(234,246,255,.78) 43% 64%, rgba(255,122,26,.12) 65% 100%); border: 1px solid rgba(214,229,242,.85); box-shadow: 0 18px 34px rgba(7,57,110,.12); }
.exam-key-logo::after { width: 130px; height: 130px; border: 2px dashed rgba(0,110,230,.28); animation: examLogoSpin 18s linear infinite; }
.exam-key-logo-core { position: relative; z-index: 1; display: grid; width: 86px; height: 86px; place-items: center; background: rgba(255,255,255,.96); border: 1px solid rgba(214,229,242,.9); border-radius: 50%; box-shadow: 0 14px 28px rgba(7,57,110,.14); }
.exam-key-logo-core img { width: 72px; height: 72px; object-fit: contain; border-radius: 50%; }
.exam-key-logo.reveal { transform: scale(.86); transition: none; }
.exam-key-logo.reveal.is-visible { animation: examLogoHide 3.4s ease forwards; }
@keyframes examLogoSpin { to { transform: rotate(360deg); } }
@keyframes examLogoHide {
  0% { opacity: 1; transform: scale(.88); }
  62% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(.9); }
}

@media (min-width: 980px) {
  .exam-key-section { padding: 40px 0 48px; }
  .exam-key-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; align-items: stretch; }
  .exam-key-card { display: flex; flex-direction: column; }
  .exam-key-card.motivation { grid-column: 1; }
  .exam-key-card.information { grid-column: 2; }
  .exam-key-card.motivation.reveal { transform: translateX(-112px); }
  .exam-key-card.information.reveal { transform: translateX(112px); }
  .exam-key-card.motivation.reveal.is-visible, .exam-key-card.information.reveal.is-visible { transform: translateX(0); }
  .exam-key-logo { position: absolute; top: 50%; left: 50%; min-height: 0; translate: -50% -50%; }
  .exam-key-logo::before { inset: auto; width: 128px; height: 128px; }
  .exam-key-logo::after { width: 156px; height: 156px; }
  .exam-key-logo-core { width: 92px; height: 92px; }
  .exam-key-logo-core img { width: 78px; height: 78px; }
  .senior-voice-list, .study-example-list { margin-top: auto; }
}
@media (max-width: 639px) {
  .exam-key-section { padding: 28px 0 34px; }
  .exam-key-heading { margin-bottom: 12px; }
  .exam-key-heading strong { display: grid; gap: 0; }
  .exam-key-heading em { margin: 0 auto; }
  .exam-key-grid { gap: 9px; }
  .exam-key-card-head { grid-template-columns: auto 1fr; min-height: 56px; padding-right: 10px; }
  .key-number { width: 54px; height: 56px; font-size: 1.38rem; }
  .key-line-icon { display: none; }
  .exam-key-body { padding: 11px 12px 5px; }
  .exam-key-body p { font-size: .9rem; line-height: 1.55; }
  .senior-voice-list, .study-example-list { gap: 7px; padding: 6px 12px 12px; }
  .senior-voice, .study-example { grid-template-columns: 34px 1fr; gap: 8px; align-items: start; }
  .voice-avatar { width: 34px; height: 34px; }
  .voice-bubble, .example-bubble { padding: 8px; }
  .voice-bubble span, .example-bubble span { font-size: .7rem; }
  .voice-bubble strong, .example-bubble strong { font-size: .78rem; }
  .voice-bubble p, .example-bubble p { font-size: .8rem; line-height: 1.45; }
  .exam-key-logo { min-height: 76px; }
  .exam-key-logo::before { inset: 4px auto; width: 82px; height: 82px; }
  .exam-key-logo::after { width: 98px; height: 98px; }
  .exam-key-logo-core { width: 62px; height: 62px; }
  .exam-key-logo-core img { width: 52px; height: 52px; }
}

/* Keep mobile progress below the tappable header menu */
@media (max-width: 1119px) {
  body[data-page="index"] { scroll-padding-top: 132px; }
  body[data-page="index"] .site-header {
    top: 0;
    z-index: 90;
    margin-top: 0;
  }
  body[data-page="index"] .menu-toggle {
    position: relative;
    z-index: 96;
    pointer-events: auto;
  }
  body[data-page="index"] .page-progress {
    top: 72px;
    z-index: 70;
  }
  body[data-page="index"] .global-nav {
    top: 124px;
    z-index: 95;
    max-height: calc(100vh - 138px);
  }
  body[data-page="index"] .hero-home { padding-top: 52px; }
}
@media (min-width: 940px) and (max-width: 1119px) {
  body[data-page="index"] { scroll-padding-top: 142px; }
  body[data-page="index"] .page-progress { top: 82px; }
  body[data-page="index"] .global-nav { top: 134px; }
  body[data-page="index"] .hero-home { padding-top: 58px; }
}

/* Progress should stay above the header and menu layer. */
body[data-page="index"] .page-progress {
  z-index: 140 !important;
}

@media (max-width: 1119px) {
  body[data-page="index"] { scroll-padding-top: 124px; }
  body[data-page="index"] .page-progress {
    top: 0;
  }
  body[data-page="index"] .site-header {
    top: 48px;
    margin-top: 48px;
  }
  body[data-page="index"] .global-nav {
    top: 124px;
  }
  body[data-page="index"] .hero-home {
    padding-top: 52px;
  }
}

@media (min-width: 940px) and (max-width: 1119px) {
  body[data-page="index"] { scroll-padding-top: 132px; }
  body[data-page="index"] .page-progress {
    top: 0;
  }
  body[data-page="index"] .global-nav {
    top: 132px;
  }
}

/* Tool tabs visibility refinements */
.tool-bookmark-tabs {
  align-items: flex-start;
  overflow-x: auto;
  padding: 4px 4px 14px;
}
.tool-tab,
.tool-tab.is-active {
  transform: none;
}
.tool-tab {
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tool-tab::after {
  bottom: -8px;
}
.tool-icon.icon-video {
  color: #ffffff;
  background: linear-gradient(135deg, #006ee6 0%, #138dff 54%, #55b7ff 100%);
  border: 1px solid rgba(0,110,230,.24);
  box-shadow: 0 10px 22px rgba(0,110,230,.2);
}
.tool-icon.icon-video svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.75;
}
.tool-tab .tool-icon.icon-video {
  width: 38px;
  height: 38px;
}
.tool-tab .tool-icon.icon-video svg {
  width: 23px;
  height: 23px;
}
@media (max-width: 639px) {
  .tool-bookmark-tabs {
    padding-bottom: 14px;
  }
  .tool-tab .tool-icon.icon-video {
    width: 34px;
    height: 34px;
  }
  .tool-tab .tool-icon.icon-video svg {
    width: 21px;
    height: 21px;
  }
}

/* Member password page */
.member-lock-hero {
  background:
    radial-gradient(circle at 82% 14%, rgba(255,122,26,.16), rgba(255,122,26,0) 34%),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 72%, #fffaf0 100%);
}

body[data-page="member"] .member-lock-hero::after {
  content: none;
  display: none;
}

.member-password-form {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 16px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(214,229,242,.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.member-password-form label {
  color: var(--blue-dark);
  font-weight: 900;
}

.member-password-row {
  display: grid;
  gap: 10px;
}

.member-password-row input {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--blue-dark);
  font: inherit;
  font-weight: 750;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(7,57,110,.04);
}

.member-password-row input:focus {
  border-color: rgba(0,110,230,.54);
  box-shadow: 0 0 0 4px rgba(0,110,230,.1);
}

.member-password-message {
  min-height: 1.5em;
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.55;
}

.member-password-message.is-success {
  color: #0f7a54;
}

.member-password-message.is-error {
  color: #c43b32;
}

.member-lock-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 750;
  line-height: 1.65;
}

.member-lock-card {
  position: relative;
  overflow: hidden;
  background: #f6fbff;
  border-color: rgba(214,229,242,.92);
  box-shadow: var(--shadow-soft);
}

.member-lock-card::after {
  content: none;
  display: none;
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,217,90,.32), rgba(255,217,90,0) 70%);
  pointer-events: none;
}

.member-protected-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.member-protected-section[hidden] {
  display: none;
}

.member-unlocked-heading {
  display: grid;
  gap: 8px;
}

.member-service-grid .card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.member-service-grid .card p {
  margin: 0;
}

.member-service-grid .button {
  margin-top: 4px;
}

.member-notice {
  margin-top: 18px;
  padding: 16px;
  background: rgba(255,250,240,.9);
  border: 1px solid rgba(255,217,90,.58);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.member-notice strong {
  color: var(--blue-dark);
}

.member-notice p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 750;
  line-height: 1.7;
}

.member-lock-hero.is-unlocked .member-password-form {
  border-color: rgba(47,184,101,.35);
  background: linear-gradient(180deg, #ffffff 0%, #effff8 100%);
}

@media (min-width: 760px) {
  .member-password-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .member-password-row .button {
    width: auto;
    min-width: 190px;
  }
}

@media (max-width: 639px) {
  .member-password-form {
    padding: 14px;
  }

  .member-password-row input {
    min-height: 52px;
  }
}

/* Mobile viewport fit fixes */
@media (max-width: 639px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
  }

  .container,
  .narrow,
  .legal-disclosure {
    width: min(100% - 24px, var(--container));
  }

  .hero-grid,
  .split-section,
  .price-layout,
  .exam-key-grid,
  .quick-links-panel,
  .cta-inner,
  .form-cta,
  .supporter-mini-inner,
  .price-board,
  .price-board-head,
  .price-board-body,
  .price-board-foot,
  .price-summary-card,
  .trial-example-card,
  .tool-tabs-card,
  .tool-tab-body,
  .faq-list,
  .footer-grid {
    min-width: 0;
    max-width: 100%;
  }

  .button-row,
  .button-row.center,
  .center-action,
  .quick-link-actions {
    width: 100%;
    max-width: 100%;
    justify-content: stretch;
    justify-items: stretch;
  }

  .button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-right: 14px;
    padding-left: 14px;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .button .keep {
    max-width: 100%;
    white-space: nowrap;
  }

  .global-nav {
    right: 10px;
    left: 10px;
    width: auto;
    max-width: calc(100vw - 20px);
  }

  .global-nav a {
    width: 100%;
    min-width: 0;
  }

  .hero-home {
    overflow: hidden;
  }

  .hero-logo-visual {
    overflow: hidden;
    min-height: 400px;
  }

  .orbit-scene {
    --orbit-radius: 104px;
    width: min(100%, 304px);
    max-width: calc(100vw - 32px);
  }

  .orbit-core {
    width: 126px;
    height: 126px;
  }

  .orbit-item > span {
    min-width: 70px;
    max-width: 88px;
    min-height: 30px;
    padding: 5px 6px;
    font-size: .6rem;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
  }

  .tool-bookmark-tabs {
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
    overscroll-behavior-x: contain;
  }

  .tool-tab {
    flex: 0 0 min(78vw, 220px);
    min-width: 0;
    max-width: min(78vw, 220px);
  }

  .tool-tab > span:last-child,
  .tool-panel-heading > div,
  .quick-link-card,
  .price-summary-info div,
  .trial-mobile-steps div,
  .price-soft-note,
  .cta-inner > div {
    min-width: 0;
  }

  .price strong {
    font-size: clamp(4rem, 24vw, 4.8rem);
  }

  .price-summary-card,
  .price-board-body,
  .trial-example-card {
    overflow: hidden;
  }

  .trial-mobile-steps {
    width: 100%;
  }

  .trial-mobile-steps p,
  .price-summary-info p,
  .price-soft-note {
    overflow-wrap: break-word;
  }

  body[data-page="index"] .page-progress {
    right: 0;
    left: 0;
    width: auto;
    max-width: 100vw;
  }
}

@media (max-width: 380px) {
  .container,
  .narrow,
  .legal-disclosure {
    width: min(100% - 20px, var(--container));
  }

  .button {
    min-height: 50px;
    padding: 12px;
    font-size: .94rem;
  }

  .orbit-scene {
    --orbit-radius: 96px;
    width: min(100%, 286px);
  }

  .orbit-core {
    width: 116px;
    height: 116px;
  }

  .orbit-item > span {
    max-width: 80px;
    font-size: .56rem;
  }

  body[data-page="index"] .page-progress span:not(.page-progress-marker) {
    font-size: .5rem;
  }
}

/* July 3 service/detail page refresh */
.cta-band .section-label {
  display: none;
}

.about-question-burst {
  position: relative;
  min-height: 340px;
  pointer-events: none;
}

.about-question-burst::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 11%;
  width: 128px;
  height: 128px;
  background: radial-gradient(circle, rgba(0,110,230,.12), rgba(255,255,255,0) 70%);
  border-radius: 50%;
  transform: translateY(-50%);
}

.about-question-burst .question-mark {
  width: auto;
  height: auto;
  color: #15191f;
  font-size: clamp(1.65rem, 4vw, 3.2rem);
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 0;
  animation: questionBurst 8.8s ease-in-out infinite;
  animation-delay: var(--q-delay, 0s);
}

.about-question-burst .q1 { top: 20%; right: 15%; }
.about-question-burst .q2 { top: 36%; right: 32%; font-size: clamp(1.2rem, 3vw, 2rem); }
.about-question-burst .q3 { top: 58%; right: 8%; }
.about-question-burst .q4 { top: 12%; right: 42%; font-size: clamp(1rem, 2.5vw, 1.6rem); }
.about-question-burst .q5 { bottom: 13%; right: 42%; }
.about-question-burst .q6 { top: 46%; right: 52%; font-size: clamp(1.3rem, 3vw, 2.2rem); }
.about-question-burst .q7 { top: 70%; right: 24%; font-size: clamp(1rem, 2.5vw, 1.55rem); }
.about-question-burst .q8 { top: 27%; right: 2%; font-size: clamp(1rem, 2.5vw, 1.75rem); }
.about-question-burst .q9 { bottom: 6%; right: 2%; font-size: clamp(1.25rem, 3vw, 2.05rem); }

@keyframes questionBurst {
  0%, 100% {
    opacity: 0;
    transform: translate3d(56px, 28px, 0) scale(.72) rotate(-6deg);
  }
  18% {
    opacity: .72;
  }
  48% {
    opacity: .9;
    transform: translate3d(var(--q-drift, 14px), -12px, 0) scale(1) rotate(3deg);
  }
  74% {
    opacity: .72;
    transform: translate3d(calc(var(--q-drift, 14px) * -.45), 8px, 0) scale(.96) rotate(-2deg);
  }
}

.service-slogan {
  display: grid;
  gap: 4px;
  color: var(--blue-deep);
  font-size: clamp(2.25rem, 7vw, 4.35rem);
  line-height: 1.04;
}

.service-slogan span {
  display: block;
}

.service-slogan em {
  font-style: normal;
  font-size: 1.08em;
  font-weight: 950;
}

.service-slogan .blue {
  color: var(--blue);
}

.service-slogan .orange {
  color: var(--accent-orange);
}

.service-hero-visual {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 320px;
  place-items: center;
}

.service-hero-visual img {
  width: min(100%, 520px);
  border-radius: 18px;
  filter: drop-shadow(0 18px 28px rgba(7,57,110,.12));
  animation: floatSoft 7.4s ease-in-out infinite;
}

.support-ring {
  position: relative;
  width: min(100%, 780px);
  min-height: 520px;
  margin: 30px auto 0;
}

.support-ring-core,
.support-ring-item {
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.support-ring-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 210px;
  min-height: 118px;
  place-items: center;
  padding: 18px;
  color: var(--white);
  text-align: center;
  background: var(--blue);
  transform: translate(-50%, -50%);
}

.support-ring-core span {
  color: rgba(255,255,255,.86);
  font-size: .84rem;
  font-weight: 800;
}

.support-ring::before {
  content: "";
  position: absolute;
  inset: 58px 88px;
  border: 2px dashed rgba(0,110,230,.22);
  border-radius: 50%;
}

.support-ring-item {
  position: absolute;
  width: 178px;
  min-height: 104px;
  padding: 17px 16px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(214,229,242,.9);
  text-align: center;
}

.support-ring-item h3 {
  margin: 0;
  font-size: 1rem;
}

.support-ring-item p {
  margin-top: 5px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 750;
  line-height: 1.45;
}

.ring-zoom { top: 0; left: 50%; transform: translateX(-50%); }
.ring-line { top: 38%; right: 0; }
.ring-classroom { right: 12%; bottom: 0; }
.ring-record { bottom: 0; left: 12%; border-color: rgba(255,122,26,.24); background: rgba(255,247,238,.92); }
.ring-student { top: 38%; left: 0; }

.habit-cycle {
  counter-reset: habit;
  display: grid;
  gap: 16px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.habit-cycle li {
  position: relative;
  min-width: 0;
  padding: 20px 18px 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(214,229,242,.75);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.habit-cycle h3 {
  margin-top: 8px;
}

.habit-cycle p {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 750;
}

.cycle-num {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  font-weight: 950;
  background: var(--blue);
  border-radius: 50%;
}

.habit-cycle li:nth-child(2) .cycle-num {
  background: var(--accent-orange);
}

.weekly-feedback {
  width: fit-content;
  margin: 18px auto 0;
  padding: 10px 15px;
  color: var(--blue-dark);
  font-weight: 900;
  background: linear-gradient(180deg, #ffffff, #fff4e8);
  border: 1px solid rgba(255,122,26,.24);
  border-radius: 999px;
}

.zoom-pop-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.zoom-time {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 24px;
  isolation: isolate;
  padding: 18px 16px 16px;
  background: rgba(255,255,255,.7);
  border-radius: 999px;
}

.zoom-time::before {
  content: "";
  position: absolute;
  inset: -8px -10px 28px;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,122,26,.11), transparent 28%),
    radial-gradient(circle at 83% 45%, rgba(0,110,230,.12), transparent 30%),
    linear-gradient(180deg, rgba(234,246,255,.68), rgba(255,255,255,.82));
  border-radius: 999px;
  filter: blur(.1px);
}

.zoom-time strong {
  display: inline-block;
  color: #e60012;
  font-size: clamp(2.45rem, 5vw, 3.45rem);
  font-weight: 950;
  line-height: .95;
  white-space: nowrap;
  letter-spacing: 0;
  text-shadow: 0 10px 24px rgba(230,0,18,.14);
}

.zoom-open-label {
  display: inline-block;
  color: #e60012;
  font-size: clamp(1.45rem, 4vw, 2.2rem);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.zoom-time p {
  flex: 0 0 100%;
  margin-top: 12px;
  color: var(--blue-dark);
  font-weight: 850;
}

.sun,
.moon {
  position: absolute;
  top: 4px;
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  animation: floatSoft 6s ease-in-out infinite;
}

.sun {
  right: 76px;
  background: radial-gradient(circle, #ffd95a 0 42%, rgba(255,217,90,.2) 43% 100%);
  box-shadow: 0 0 0 10px rgba(255,217,90,.14);
}

.moon {
  right: 18px;
  background: #dbeeff;
  box-shadow: inset -10px 0 0 #ffffff, 0 0 0 9px rgba(0,110,230,.08);
  animation-delay: -2s;
}

@keyframes timeStripFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.zoom-pop-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.zoom-pop-flow li,
.zoom-light-notes p {
  position: relative;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 850;
}

.zoom-pop-flow li {
  padding: 7px 12px 7px 24px;
}

.zoom-pop-flow li::before,
.zoom-light-notes p::before,
.notes-list li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-orange);
  border-radius: 50%;
}

.zoom-pop-flow li::before {
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}

.zoom-study-visual {
  position: relative;
  margin: 0;
}

.zoom-study-visual::before {
  content: "";
  position: absolute;
  inset: 12% -4% -7% 8%;
  z-index: -1;
  background: radial-gradient(circle at 45% 55%, rgba(68,183,255,.18), transparent 62%);
  border-radius: 32px;
}

.zoom-study-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(7,57,110,.14);
}

.zoom-study-visual figcaption {
  margin-top: 7px;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
  text-align: right;
}

.zoom-light-notes {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.zoom-light-notes p {
  display: grid;
  grid-template-columns: minmax(8.5em, auto) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px 14px 12px 26px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(214,229,242,.72);
  border-radius: 14px;
}

.zoom-light-notes p::before {
  top: 1.15em;
  left: 12px;
}

.zoom-light-notes strong {
  color: var(--blue-dark);
  line-height: 1.55;
}

.zoom-light-notes span {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.55;
}

.motivation-garden {
  display: grid;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}

.motivation-tree {
  position: relative;
  min-height: 230px;
  width: min(100%, 280px);
  margin: 0 auto;
}

.tree-trunk {
  position: absolute;
  bottom: 25px;
  left: 50%;
  width: 14px;
  height: 116px;
  background: linear-gradient(180deg, #0c6bbb, #064f9c);
  border-radius: 999px;
  transform: translateX(-50%);
  transform-origin: bottom;
  animation: treeGrow 1.1s ease both;
}

.tree-branch {
  position: absolute;
  bottom: 116px;
  left: 50%;
  width: 78px;
  height: 12px;
  background: #0c6bbb;
  border-radius: 999px;
  transform-origin: left center;
  animation: branchGrow 1.25s ease .18s both;
}

.branch-left {
  transform: rotate(-34deg) scaleX(0);
}

.branch-right {
  transform: rotate(34deg) scaleX(0);
}

@keyframes treeGrow {
  from { transform: translateX(-50%) scaleY(.2); opacity: .45; }
  to { transform: translateX(-50%) scaleY(1); opacity: 1; }
}

@keyframes branchGrow {
  from { transform: rotate(var(--branch-rotate, 34deg)) scaleX(0); }
  to { transform: rotate(var(--branch-rotate, 34deg)) scaleX(1); }
}

.branch-left { --branch-rotate: -34deg; }
.branch-right { --branch-rotate: 34deg; }

.notes-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.notes-list li {
  position: relative;
  padding: 0 0 9px 20px;
  color: var(--muted);
  font-weight: 750;
  border-bottom: 1px dashed rgba(214,229,242,.9);
}

.notes-list li::before {
  top: .72em;
  left: 0;
  background: var(--blue);
}

.zoom-pop-flow li,
.zoom-light-notes p {
  animation: softPopIn .72s ease both;
}

.zoom-pop-flow li:nth-child(2),
.zoom-light-notes p:nth-child(2) {
  animation-delay: .14s;
}

.zoom-pop-flow li:nth-child(3),
.zoom-light-notes p:nth-child(3) {
  animation-delay: .28s;
}

@keyframes softPopIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 760px) {
  .habit-cycle {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .habit-cycle li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -13px;
    width: 24px;
    height: 24px;
    border-top: 3px solid rgba(0,110,230,.5);
    border-right: 3px solid rgba(0,110,230,.5);
    transform: translateY(-50%) rotate(45deg);
  }

  .zoom-pop-layout {
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
    gap: 44px;
  }

  .motivation-garden {
    grid-template-columns: minmax(220px, .45fr) minmax(0, 1fr);
  }
}

@media (max-width: 939px) {
  .about-question-burst {
    min-height: 220px;
  }

  .support-ring {
    display: grid;
    gap: 10px;
    min-height: 0;
  }

  .support-ring::before {
    display: none;
  }

  .support-ring-core,
  .support-ring-item {
    position: static;
    width: auto;
    min-height: 0;
    transform: none;
  }

  .support-ring-core {
    order: -1;
    border-radius: var(--radius);
  }

  .support-ring-item {
    border-radius: var(--radius);
    text-align: left;
  }

}

@media (max-width: 639px) {
  .service-slogan {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .service-hero-visual {
    min-height: 260px;
  }

  .zoom-time {
    margin-top: 20px;
    padding: 14px 12px 14px;
    border-radius: 20px;
    text-align: center;
  }

  .zoom-time strong {
    font-size: clamp(2.35rem, 11vw, 3.45rem);
  }

  .zoom-open-label {
    margin-top: 6px;
    font-size: clamp(1.2rem, 6vw, 1.6rem);
  }

  .zoom-pop-flow {
    display: grid;
  }

  .habit-cycle li {
    padding: 16px;
  }

  .habit-cycle li:not(:last-child)::after {
    content: "";
    display: block;
    width: 2px;
    height: 18px;
    margin: 12px auto -10px;
    background: rgba(0,110,230,.34);
  }

  .weekly-feedback {
    width: auto;
    text-align: center;
  }

  .motivation-tree {
    min-height: 200px;
  }
}

/* July 3 follow-up refinements */
.about-question-orbit {
  position: relative;
  display: grid;
  min-height: 340px;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
}

.about-question-orbit::before {
  content: "";
  position: absolute;
  width: min(70vw, 300px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0,110,230,.12), rgba(255,255,255,0) 68%);
  border-radius: 50%;
}

.about-question-orbit span {
  position: relative;
  z-index: 1;
  color: #111820;
  font-size: clamp(8rem, 23vw, 16rem);
  font-weight: 950;
  line-height: .8;
  opacity: .9;
  filter: drop-shadow(0 18px 24px rgba(7,57,110,.12));
  animation: questionSlowSpin 18s linear infinite;
}

@keyframes questionSlowSpin {
  from { transform: rotate(-8deg) scale(.98); }
  50% { transform: rotate(172deg) scale(1.03); }
  to { transform: rotate(352deg) scale(.98); }
}

.service-slogan .slogan-final {
  white-space: nowrap;
}

.service-hero-visual {
  min-height: 390px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.service-hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 0 4%;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 22%, rgba(255,122,26,.13), transparent 26%),
    radial-gradient(circle at 76% 36%, rgba(0,110,230,.11), transparent 29%),
    linear-gradient(180deg, rgba(255,255,255,.5), rgba(234,246,255,.3));
  border-radius: 34px;
}

.service-hero-visual img {
  width: min(100%, 560px);
  border-radius: 0;
  filter: drop-shadow(0 18px 26px rgba(7,57,110,.1));
  mix-blend-mode: multiply;
}

.service-motion-dot {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  background: var(--accent-orange);
  border: 4px solid rgba(255,255,255,.92);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(7,57,110,.16);
  animation: servicePartFloat 5.8s ease-in-out infinite;
}

.dot-zoom { top: 24%; left: 17%; background: var(--blue); }
.dot-record { top: 12%; left: 50%; animation-delay: -1.1s; }
.dot-chat { top: 25%; right: 16%; background: var(--blue); animation-delay: -2.2s; }
.dot-support { right: 20%; bottom: 26%; animation-delay: -3.2s; }

@keyframes servicePartFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -12px, 0) scale(1.08); }
}

@media (min-width: 940px) {
  .service-slogan {
    font-size: clamp(2.45rem, 4.6vw, 4.2rem);
  }

  .service-slogan .slogan-final {
    font-size: .94em;
  }

  .support-ring {
    width: min(100%, 960px);
    min-height: 470px;
  }

  .support-ring::before {
    inset: 58px 44px;
    border-width: 4px;
    border-color: rgba(0,110,230,.34);
    box-shadow: inset 0 0 0 1px rgba(255,122,26,.14);
  }

  .support-ring-core {
    width: 230px;
    min-height: 120px;
    box-shadow: 0 18px 34px rgba(0,110,230,.2);
  }

  .support-ring-item {
    width: 190px;
    min-height: 104px;
    border-width: 2px;
    border-color: rgba(0,110,230,.28);
  }

  .support-ring-item h3 {
    color: var(--blue-dark);
    font-size: 1.08rem;
    font-weight: 950;
  }

  .support-ring-item p {
    color: #516174;
    font-size: .9rem;
    font-weight: 850;
  }

  .ring-zoom { top: 0; left: 50%; transform: translateX(-50%); }
  .ring-line { top: 40%; right: 2%; }
  .ring-classroom { right: 18%; bottom: 0; }
  .ring-record { bottom: 0; left: 18%; }
  .ring-student { top: 40%; left: 2%; }
}

.compare-table tbody tr:last-child td:nth-child(2) strong {
  color: var(--accent-orange);
}

@media (min-width: 760px) {
  .habit-cycle li:last-child::after {
    content: none;
  }
}

.zoom-pop-copy h2,
.zoom-pop-copy .lead,
.zoom-time p,
.zoom-light-notes p {
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media (min-width: 760px) {
  .motivation-garden {
    grid-template-columns: minmax(220px, .45fr) minmax(0, 1fr);
  }
}

@media (max-width: 939px) {
  .support-ring {
    width: min(100%, 390px);
    min-height: 390px;
    display: block;
  }

  .support-ring::before {
    display: block;
    inset: 20px;
    border-width: 4px;
    border-color: rgba(0,110,230,.34);
  }

  .support-ring-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    min-height: 92px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
  }

  .support-ring-item {
    position: absolute;
    width: 132px;
    min-height: 82px;
    padding: 12px 10px;
    border-radius: 18px;
    text-align: center;
  }

  .support-ring-item h3 {
    font-size: .86rem;
    font-weight: 950;
  }

  .support-ring-item p {
    font-size: .7rem;
    font-weight: 850;
  }

  .ring-zoom { top: 0; left: 50%; transform: translateX(-50%); }
  .ring-line { top: 38%; right: 0; }
  .ring-classroom { right: 13%; bottom: 0; }
  .ring-record { bottom: 0; left: 13%; }
  .ring-student { top: 38%; left: 0; }
}

@media (max-width: 639px) {
  .about-question-orbit {
    min-height: 210px;
  }

  .service-slogan .slogan-final {
    white-space: normal;
  }

  .service-hero-visual {
    min-height: 270px;
  }

  .service-motion-dot {
    width: 14px;
    height: 14px;
    border-width: 3px;
  }

  .support-ring {
    width: min(100%, 340px);
    min-height: 350px;
  }

  .support-ring-core {
    width: 136px;
  }

  .support-ring-item {
    width: 118px;
  }

  .motivation-garden::before {
    display: none;
  }
}

/* Organizations page */
.global-nav a[href="organizations.html"],
.global-nav a[href="/groups/"] {
  color: var(--accent-orange);
}

.org-hero {
  background:
    radial-gradient(circle at 84% 14%, rgba(255,122,26,.13), transparent 30%),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 72%, #fffaf0 100%);
}

.org-hero-panel {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  overflow: hidden;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(214,229,242,.9);
  border-radius: 24px;
  box-shadow: 0 22px 52px rgba(7,57,110,.12);
}

.org-hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -50px -80px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,122,26,.2) 0 5px, transparent 6px) 0 0 / 26px 26px;
  opacity: .48;
  transform: rotate(-10deg);
  pointer-events: none;
}

.org-hero-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 310px);
  margin: 0 auto 4px;
  mix-blend-mode: multiply;
}

.org-title-line {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.org-hero-title .org-hero-key {
  color: var(--blue);
  font-size: 1.18em;
}

.org-device-note {
  width: fit-content;
  margin: 14px 0 0;
  padding: 7px 11px;
  color: var(--blue-dark);
  font-size: .86rem;
  font-weight: 850;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(214,229,242,.9);
  border-radius: 999px;
}

.org-hero-panel-simple {
  align-content: center;
  text-align: center;
}

.org-hero-note {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-weight: 800;
}

.org-hero-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.org-dashboard-grid,
.org-card-grid,
.org-icon-grid,
.org-price-grid,
.org-step-grid,
.org-report-grid {
  display: grid;
  gap: 14px;
}

.org-dashboard-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.org-dashboard-card,
.org-mini-card,
.org-icon-card,
.org-support-card,
.org-list-card,
.org-price-card {
  position: relative;
  min-width: 0;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(214,229,242,.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.org-dashboard-card {
  padding: 14px;
}

.org-dashboard-card.main {
  border-color: rgba(0,110,230,.2);
  background: linear-gradient(180deg, #ffffff, #eaf6ff);
}

.org-dashboard-card.warm {
  border-color: rgba(255,122,26,.22);
  background: linear-gradient(180deg, #ffffff, #fff4e8);
}

.org-dashboard-card span,
.org-price-card span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 850;
}

.org-dashboard-card strong {
  display: block;
  margin-top: 5px;
  color: var(--blue-dark);
  font-size: 1.05rem;
  font-weight: 950;
}

.org-dashboard-card p {
  margin-top: 4px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
}

.org-card-grid {
  margin-top: 24px;
}

.org-card-grid.five,
.org-card-grid.four,
.org-icon-grid,
.org-price-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.org-mini-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
}

.org-mini-card span,
.org-support-card span,
.org-step-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  font-weight: 950;
  background: var(--blue);
  border-radius: 50%;
}

.org-mini-card p,
.org-support-card p,
.org-icon-card p,
.org-list-card p {
  color: var(--muted);
  font-weight: 750;
}

.org-issue-card {
  grid-template-columns: 1fr;
  gap: 10px;
  align-content: start;
  text-align: left;
}

.org-issue-illustration {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.org-emphasis {
  width: fit-content;
  margin: 24px auto 0;
  padding: 11px 16px;
  color: var(--blue-dark);
  font-weight: 900;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #fff4e8);
  border: 1px solid rgba(255,122,26,.25);
  border-radius: 999px;
}

.org-icon-card,
.org-support-card,
.org-list-card,
.org-price-card {
  padding: 18px;
}

.org-icon-card i {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 12px;
  color: var(--blue);
  font-style: normal;
  font-size: 1.25rem;
  font-weight: 950;
  background: var(--sky);
  border-radius: 50%;
}

.org-about-wrap {
  display: grid;
  gap: 24px;
}

.org-about-intro {
  display: grid;
  gap: 20px;
  align-items: start;
}

.org-compact-grid,
.org-support-inline {
  display: grid;
  gap: 12px;
}

.org-compact-grid .org-icon-card,
.org-support-inline .org-support-card {
  padding: 13px;
  box-shadow: 0 12px 28px rgba(7,57,110,.08);
}

.org-compact-grid .org-icon-card h3,
.org-support-inline .org-support-card h3 {
  font-size: .96rem;
}

.org-compact-grid .org-icon-card i {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  font-size: 1rem;
}

.org-compact-grid .org-icon-card p {
  font-size: .84rem;
  line-height: 1.55;
}

.org-support-card span {
  margin-bottom: 12px;
  background: var(--accent-orange);
}

.org-note-stack {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.org-note-card {
  margin: 0;
  padding: 15px 16px;
  color: var(--blue-dark);
  font-weight: 760;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(214,229,242,.9);
  border-radius: var(--radius);
}

.org-report-details {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(214,229,242,.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.org-report-details summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 950;
}

.org-report-visual,
.org-flow-visual {
  margin: 24px 0 0;
  padding: clamp(10px, 2vw, 18px);
  background:
    radial-gradient(circle at 10% 12%, rgba(255,122,26,.12), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(239,248,255,.86));
  border: 1px solid rgba(214,229,242,.9);
  border-radius: 22px;
  box-shadow: 0 20px 44px rgba(7,57,110,.11);
}

.org-report-visual img,
.org-flow-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.org-integrated-use {
  margin-top: 20px;
  padding: 18px;
  color: var(--blue-dark);
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(214,229,242,.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.org-integrated-use p {
  color: var(--muted);
  font-weight: 750;
}

.org-integrated-use ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 1.1em;
  color: var(--muted);
  font-weight: 750;
}

.org-table-wrap {
  width: 100%;
  margin-top: 22px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  -webkit-overflow-scrolling: touch;
}

.org-table-wrap h3 {
  margin-bottom: 10px;
}

.org-table {
  width: 100%;
  min-width: 680px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(214,229,242,.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.org-table.compact {
  min-width: 520px;
}

.org-table.wide {
  min-width: 880px;
}

.org-table th,
.org-table td {
  padding: 13px 14px;
  color: var(--blue-dark);
  font-weight: 750;
  text-align: left;
  border-bottom: 1px solid rgba(214,229,242,.86);
  vertical-align: top;
}

.org-table th {
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.org-table tr:last-child td {
  border-bottom: 0;
}

.org-table td:first-child {
  font-weight: 900;
}

.org-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.org-tag-list span {
  padding: 8px 11px;
  color: var(--blue-dark);
  font-weight: 850;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(214,229,242,.9);
  border-radius: 999px;
}

.org-flow,
.org-step-grid,
.org-check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.org-flow {
  display: grid;
  gap: 12px;
}

.org-flow li,
.org-step-grid li,
.org-check-list li {
  position: relative;
  color: var(--blue-dark);
  font-weight: 850;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(214,229,242,.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.org-flow li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 13px;
}

.org-flow span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  font-size: .9rem;
  font-weight: 950;
  background: var(--blue);
  border-radius: 50%;
}

.org-two-col {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.org-list-card ul,
.org-check-list {
  display: grid;
  gap: 9px;
}

.org-list-card ul {
  margin: 12px 0 0;
  padding-left: 1.1em;
}

.org-list-card li {
  color: var(--muted);
  font-weight: 750;
}

.org-price-card {
  text-align: center;
}

.org-price-card strong {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
}

.org-price-card em {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  color: var(--accent-orange);
  font-style: normal;
  font-weight: 900;
  background: rgba(255,122,26,.1);
  border-radius: 999px;
}

.org-price-card.featured {
  border-color: rgba(255,122,26,.36);
  background: linear-gradient(180deg, #ffffff, #fff4e8);
  transform: translateY(-2px);
}

.org-price-card.add strong {
  color: var(--accent-orange);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
}

.org-price-detail {
  margin-top: 20px;
}

.org-step-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.org-step-grid li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: center;
  padding: 14px;
}

.org-check-list {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.org-check-list li {
  padding: 14px 14px 14px 42px;
}

.org-check-list li::before {
  content: "✓";
  position: absolute;
  top: 13px;
  left: 15px;
  color: var(--accent-orange);
  font-weight: 950;
}

.org-report-grid {
  margin-top: 22px;
}

body[data-page="organizations"] .cta-band {
  background: linear-gradient(135deg, #064f9c 0%, #006ee6 100%);
}

@media (min-width: 640px) {
  .org-card-grid.five,
  .org-card-grid.four,
  .org-icon-grid,
  .org-price-grid,
  .org-step-grid,
  .org-check-list,
  .org-report-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .org-two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .org-compact-grid,
  .org-support-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .org-note-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 940px) {
  .org-card-grid.five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .org-card-grid.four,
  .org-icon-grid,
  .org-price-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .org-flow {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .org-flow li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -13px;
    width: 24px;
    height: 2px;
    background: rgba(0,110,230,.5);
  }

  .org-step-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .org-about-intro {
    grid-template-columns: minmax(0, .92fr) minmax(360px, 1fr);
  }

  .org-support-inline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .org-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .org-hero-title {
    font-size: clamp(2.05rem, 9.6vw, 2.85rem);
  }

  .org-device-note {
    width: auto;
    border-radius: var(--radius);
  }

  .org-compact-grid {
    gap: 9px;
  }

  .org-compact-grid .org-icon-card {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 10px;
    align-items: center;
    padding: 11px 12px;
  }

  .org-compact-grid .org-icon-card i {
    grid-row: span 2;
    margin: 0;
  }

  .org-compact-grid .org-icon-card p {
    font-size: .8rem;
    line-height: 1.45;
  }

  .org-hero-actions {
    gap: 8px;
  }

  .org-issue-card {
    grid-template-columns: 82px 42px 1fr;
    align-items: center;
    padding: 12px;
  }

  .org-issue-illustration {
    max-height: 82px;
  }

  .org-issue-card p {
    font-size: .9rem;
  }

  .org-report-visual,
  .org-flow-visual {
    margin-inline: -4px;
    padding: 8px;
    border-radius: 16px;
  }

  .org-integrated-use,
  .org-note-card {
    padding: 14px;
  }

  .org-emphasis {
    width: auto;
    border-radius: var(--radius);
  }
}

/* Header collapse animation */
.site-header {
  will-change: opacity, filter;
  transition: opacity .18s ease, filter .22s ease;
}

.header-collapse-button {
  position: fixed;
  top: max(10px, env(safe-area-inset-top));
  right: max(10px, env(safe-area-inset-right));
  z-index: 160;
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
  color: var(--blue-dark);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(214,229,242,.95);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(7,57,110,.18);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0,-6px,0) scale(.86);
  pointer-events: none;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: opacity .2s ease, visibility .2s ease, transform .32s cubic-bezier(.16,1,.3,1), background .16s ease, box-shadow .16s ease;
}

.header-collapse-button:hover,
.header-collapse-button:focus-visible {
  background: #fff;
  box-shadow: 0 18px 38px rgba(7,57,110,.22);
  transform: translate3d(0,0,0) scale(1.02);
}

.header-collapse-button:focus-visible {
  outline: 3px solid rgba(0,110,230,.22);
  outline-offset: 3px;
}

.header-collapse-button span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 3px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.floating-nav-panel {
  position: fixed;
  top: calc(max(10px, env(safe-area-inset-top)) + 58px);
  right: max(10px, env(safe-area-inset-right));
  z-index: 158;
  display: grid;
  width: min(320px, calc(100vw - 20px));
  max-height: min(72vh, calc(100vh - 86px));
  gap: 8px;
  overflow: auto;
  padding: 12px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(214,229,242,.95);
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(7,57,110,.18);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0,-8px,0) scale(.96);
  transform-origin: top right;
  pointer-events: none;
  backdrop-filter: blur(14px);
  transition: opacity .2s ease, visibility .2s ease, transform .28s cubic-bezier(.16,1,.3,1);
}

.floating-nav-panel[hidden] {
  display: none;
}

.floating-nav-panel a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 13px;
  color: var(--blue-dark);
  font-size: .94rem;
  font-weight: 850;
  line-height: 1.35;
  text-decoration: none;
  background: rgba(255,255,255,.8);
  border: 1px solid transparent;
  border-radius: 12px;
}

.floating-nav-panel a:hover,
.floating-nav-panel a:focus-visible,
.floating-nav-panel a[aria-current="page"] {
  color: var(--blue-dark);
  background: var(--sky);
  border-color: rgba(214,229,242,.95);
}

.floating-nav-panel a[href="apply.html"],
.floating-nav-panel a[href="free-trial.html"],
.floating-nav-panel a[href="organizations.html"] {
  color: var(--blue);
}

body.floating-menu-open .floating-nav-panel {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
  pointer-events: auto;
}

body.floating-menu-open .header-collapse-button span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

body.floating-menu-open .header-collapse-button span:nth-child(2) {
  opacity: 0;
}

body.floating-menu-open .header-collapse-button span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

body.header-is-collapsed .site-header:not(.header-morph-ghost) {
  visibility: hidden;
  opacity: 0;
  filter: blur(3px);
  pointer-events: none;
}

body.header-is-collapsed .header-collapse-button {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
  pointer-events: auto;
}

body.header-collapse-animating .site-header:not(.header-morph-ghost),
body.header-collapse-animating .header-collapse-button {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: none !important;
}

body.header-collapse-settling .site-header:not(.header-morph-ghost),
body.header-collapse-settling .header-collapse-button {
  transition: none !important;
}

.header-morph-ghost {
  position: fixed !important;
  z-index: 220;
  display: block;
  overflow: hidden;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 0 !important;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(214,229,242,.95);
  box-shadow: 0 18px 46px rgba(7,57,110,.16);
  backdrop-filter: blur(14px);
  pointer-events: none !important;
  contain: layout paint style;
  backface-visibility: hidden;
  transform-origin: 0 0;
  will-change: transform, opacity, filter, border-radius;
}

.header-morph-ghost * {
  pointer-events: none !important;
}

.header-morph-ghost .brand,
.header-morph-ghost .global-nav,
.header-morph-ghost .menu-toggle {
  will-change: opacity, transform;
}

@media (max-width: 639px) {
  .header-collapse-button {
    top: max(8px, env(safe-area-inset-top));
    right: max(8px, env(safe-area-inset-right));
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .floating-nav-panel {
    top: calc(max(8px, env(safe-area-inset-top)) + 54px);
    right: max(8px, env(safe-area-inset-right));
    left: max(8px, env(safe-area-inset-left));
    width: auto;
    max-height: min(74vh, calc(100vh - 74px));
    padding: 10px;
    border-radius: 16px;
  }
}

/* July 4 menu order and section refinements */
.global-nav a,
.floating-nav-panel a,
.footer-links a {
  color: var(--blue-dark);
}

.global-nav a[href="organizations.html"],
.global-nav a[href="/groups/"],
.floating-nav-panel a[href="organizations.html"],
.floating-nav-panel a[href="/groups/"],
.footer-links a[href="organizations.html"] {
  color: var(--accent-orange);
}

.global-nav a[href="free-trial.html"],
.global-nav a[href="apply.html"],
.global-nav a[href="/trial/"],
.global-nav a[href="/apply/"],
.floating-nav-panel a[href="free-trial.html"],
.floating-nav-panel a[href="apply.html"],
.floating-nav-panel a[href="/trial/"],
.floating-nav-panel a[href="/apply/"],
.footer-links a[href="free-trial.html"],
.footer-links a[href="apply.html"] {
  color: var(--blue);
}

#motivation .container {
  text-align: center;
}

#motivation .section-label {
  margin-right: auto;
  margin-left: auto;
}

#motivation .motivation-garden {
  display: block;
  width: min(100%, 860px);
  margin: 24px auto 0;
}

#motivation .motivation-tree {
  display: none;
}

#motivation .motivation-timeline {
  width: min(100%, 820px);
  margin: 24px auto 0;
  text-align: left;
}

#motivation .motivation-timeline::before {
  left: 21px;
}

#motivation .motivation-timeline .feature-item {
  width: 100%;
  margin-left: 0;
}

#motivation .motivation-timeline .feature-item::after {
  content: none;
}

.support-message-heading {
  display: grid;
  gap: 2px;
}

.support-message-heading span {
  display: block;
}

.support-message-heading strong {
  color: var(--accent-orange);
  font-weight: 950;
}

@media (max-width: 639px) {
  #motivation .motivation-garden {
    margin-top: 18px;
  }

  #motivation .motivation-timeline {
    margin-top: 18px;
  }

  .support-message-heading {
    font-size: clamp(1.62rem, 8vw, 2.12rem);
  }
}

/* Mobile readability and decorative hero placement */
@media (max-width: 639px) {
  .button,
  .global-nav a,
  .floating-nav-panel a,
  .quick-link-card strong,
  .page-progress span:not(.page-progress-marker) {
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .hero-home,
  .about-page-hero {
    overflow: hidden;
  }

  .hero-home .hero-grid,
  .about-page-hero .hero-grid {
    position: relative;
  }

  .hero-home .hero-copy,
  .about-page-hero .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-home .hero-logo-visual {
    position: absolute;
    top: -30px;
    right: -20px;
    z-index: 0;
    width: min(54vw, 218px);
    min-height: 210px;
    padding: 0;
    opacity: .86;
    pointer-events: none;
    overflow: visible;
  }

  .hero-home .hero-logo-visual::before {
    inset: 8px;
    background: radial-gradient(circle, rgba(255,122,26,.16), rgba(255,255,255,0) 70%);
    border: 0;
    box-shadow: none;
  }

  .hero-home .orbit-scene {
    --orbit-radius: 76px;
    width: 214px;
    max-width: 100%;
  }

  .hero-home .orbit-core {
    z-index: 2;
    width: 88px;
    height: 88px;
    background: rgba(255,255,255,.94);
    border-color: rgba(0,110,230,.22);
    box-shadow: 0 12px 24px rgba(7,57,110,.2);
    opacity: .78;
  }

  .hero-home .orbit-items {
    z-index: 8;
  }

  .hero-home .orbit-item > span {
    min-width: 68px;
    max-width: 86px;
    min-height: 28px;
    padding: 4px 6px;
    font-size: .55rem;
    line-height: 1.18;
    color: var(--blue-dark);
    background: rgba(255,255,255,.98);
    border-color: rgba(0,110,230,.28);
    box-shadow: 0 10px 20px rgba(7,57,110,.22);
    opacity: .94;
  }

  .hero-home .orbit-1 > span,
  .hero-home .orbit-4 > span {
    background: rgba(255,244,232,.98);
    border-color: rgba(255,122,26,.34);
  }

  .hero-home .orbit-2 > span,
  .hero-home .orbit-5 > span {
    background: rgba(234,246,255,.98);
    border-color: rgba(0,110,230,.28);
  }

  .hero-home .orbit-3 > span,
  .hero-home .orbit-6 > span {
    background: rgba(255,248,222,.98);
    border-color: rgba(255,217,90,.54);
  }

  .about-page-hero .about-question-orbit {
    position: absolute;
    top: 82px;
    right: 0;
    z-index: 0;
    width: min(50vw, 200px);
    min-height: 150px;
    opacity: .16;
    pointer-events: none;
  }

  .about-page-hero .about-question-orbit::before {
    width: min(48vw, 180px);
    opacity: .7;
  }

  .about-page-hero .about-question-orbit span {
    font-size: clamp(5rem, 26vw, 7rem);
  }

  body[data-page="index"] .header-collapse-button {
    top: calc(max(10px, env(safe-area-inset-top)) + 52px);
    right: max(10px, env(safe-area-inset-right));
  }

  body[data-page="index"] .floating-nav-panel {
    top: calc(max(10px, env(safe-area-inset-top)) + 108px);
    max-height: calc(100vh - 124px);
  }
}

/* Mobile overflow guard */
@media (max-width: 639px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .container,
  .narrow,
  main,
  section,
  article,
  .hero-copy,
  .lead,
  .hero-lead,
  .button-row,
  .card,
  .quick-link-card,
  .cta-inner,
  .footer-grid,
  .faq-item,
  .org-list-card,
  .org-support-card,
  .org-price-card {
    min-width: 0;
    max-width: 100%;
  }

  p,
  li,
  summary,
  .lead,
  .hero-lead,
  .card p,
  .quick-link-card span,
  .faq-item p {
    overflow-wrap: break-word;
    word-break: normal;
  }

  .button,
  .global-nav a,
  .floating-nav-panel a,
  .quick-link-card strong {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }
}
