:root {
  --navy: #12357a;
  --navy-deep: #0a2458;
  --blue: #387ee8;
  --blue-soft: #eaf2ff;
  --sky: #cfe0fb;
  --ink: #12213f;
  --muted: #5d6b82;
  --line: #dce5f2;
  --paper: #ffffff;
  --canvas: #f5f8fc;
  --warm: #fff8e9;
  --shadow: 0 22px 70px rgba(18, 53, 122, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; }
a { color: var(--navy); }
.skip-link { position: absolute; left: 16px; top: -80px; z-index: 100; padding: 10px 15px; border-radius: 8px; background: var(--navy-deep); color: #fff; }
.skip-link:focus { top: 12px; }
.wrap { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(220, 229, 242, 0.92); background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(14px); }
.site-header .wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy-deep); text-decoration: none; font-weight: 850; letter-spacing: -0.025em; white-space: nowrap; }
.brand img { width: 44px; height: 44px; display: block; object-fit: contain; border-radius: 11px; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.site-nav a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 700; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--navy); }
.hero { position: relative; overflow: hidden; padding: 76px 0 48px; background: radial-gradient(circle at 12% 20%, rgba(56, 126, 232, 0.13), transparent 30%), radial-gradient(circle at 90% 5%, rgba(207, 224, 251, 0.8), transparent 32%), linear-gradient(180deg, #fff 0%, #f5f8fc 100%); }
.hero::after { content: ""; position: absolute; width: 540px; height: 540px; right: -310px; bottom: -330px; border: 1px solid rgba(56, 126, 232, 0.22); border-radius: 50%; box-shadow: 0 0 0 60px rgba(56, 126, 232, 0.035), 0 0 0 125px rgba(56, 126, 232, 0.025); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr); align-items: center; gap: 64px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; padding: 7px 13px; border: 1px solid #cddff8; border-radius: 999px; background: var(--blue-soft); color: var(--navy); font-size: 14px; font-weight: 800; }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(56, 126, 232, 0.14); }
h1, h2, h3 { color: var(--ink); }
h1 { max-width: 780px; margin: 0 0 23px; font-size: clamp(43px, 5.5vw, 72px); line-height: 1.02; letter-spacing: -0.052em; }
.accent-text { color: var(--navy); }
.lead { max-width: 720px; margin: 0 0 30px; color: var(--muted); font-size: 21px; line-height: 1.55; }
.actions { display: flex; flex-wrap: wrap; gap: 13px; }
.btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 12px 19px; border: 1px solid var(--navy); border-radius: 11px; text-decoration: none; font-weight: 800; transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.btn-secondary { background: #fff; color: var(--navy); }
.btn-secondary:hover { background: var(--blue-soft); }
.hero-card { position: relative; padding: 31px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255, 255, 255, 0.9); box-shadow: var(--shadow); }
.hero-card::before { content: ""; position: absolute; inset: 12px; z-index: -1; border-radius: 22px; background: var(--sky); transform: rotate(3deg); }
.profile { display: grid; grid-template-columns: 126px 1fr; align-items: center; gap: 22px; }
.profile img { width: 126px; height: 126px; object-fit: cover; border: 5px solid #fff; border-radius: 50%; box-shadow: 0 10px 30px rgba(10, 36, 88, 0.18); }
.profile h2 { margin: 0 0 5px; font-size: 22px; line-height: 1.2; letter-spacing: -0.025em; }
.profile p { margin: 0; color: var(--muted); font-size: 15px; }
.hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 25px; }
.proof-item { padding: 13px 14px; border-radius: 12px; background: var(--blue-soft); color: var(--navy-deep); font-size: 14px; font-weight: 800; }
.proof-item::before { content: "✓"; margin-right: 7px; color: var(--blue); }
.topic-strip { padding: 0 0 54px; }
.topic-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 16px 40px rgba(18, 53, 122, 0.07); overflow: hidden; }
.topic-strip span { padding: 18px 20px; color: var(--navy); font-weight: 800; text-align: center; }
.topic-strip span + span { border-left: 1px solid var(--line); }
.section { padding: 78px 0; }
.section-white { background: #fff; }
.section-head { max-width: 790px; margin-bottom: 37px; }
.kicker { margin: 0 0 9px; color: var(--blue); font-size: 13px; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
.section-title { margin: 0 0 14px; font-size: clamp(31px, 4vw, 47px); line-height: 1.12; letter-spacing: -0.04em; }
.section-intro { margin: 0; color: var(--muted); font-size: 19px; }
.issue-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.issue-card { position: relative; min-height: 218px; padding: 29px; border: 1px solid var(--line); border-radius: 19px; background: var(--paper); overflow: hidden; }
.issue-card::after { content: attr(data-number); position: absolute; right: 18px; bottom: -24px; color: rgba(56, 126, 232, 0.08); font-size: 100px; font-weight: 900; line-height: 1; }
.issue-card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.25; letter-spacing: -0.025em; }
.issue-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); }
.statement { display: grid; grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr); gap: 26px; align-items: stretch; }
.statement-main { padding: 42px; border-radius: 24px; background: linear-gradient(140deg, var(--navy-deep), var(--navy)); color: #fff; box-shadow: var(--shadow); }
.statement-main h2 { margin: 0 0 16px; color: #fff; font-size: clamp(31px, 4vw, 46px); line-height: 1.12; letter-spacing: -0.04em; }
.statement-main p { margin: 0; color: rgba(255, 255, 255, 0.83); font-size: 19px; }
.statement-side { display: flex; flex-direction: column; justify-content: center; padding: 35px; border: 1px solid #cddff8; border-radius: 24px; background: var(--blue-soft); }
.statement-side strong { margin-bottom: 8px; color: var(--navy-deep); font-size: 20px; }
.statement-side p { margin: 0; color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { padding: 29px; border-top: 4px solid var(--blue); border-radius: 4px 4px 17px 17px; background: #fff; box-shadow: 0 13px 35px rgba(18, 53, 122, 0.075); }
.step span { display: inline-block; margin-bottom: 16px; color: var(--blue); font-size: 14px; font-weight: 900; letter-spacing: 0.08em; }
.step h3 { margin: 0 0 8px; font-size: 21px; }
.step p { margin: 0; color: var(--muted); }
.banner-panel { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.banner-panel img { display: block; width: 100%; aspect-ratio: 3 / 1; object-fit: cover; object-position: center; }
.youtube-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; padding: 31px 35px; }
.youtube-row h2 { margin: 0 0 5px; font-size: 28px; line-height: 1.2; }
.youtube-row p { margin: 0; color: var(--muted); }
.service-box { display: grid; grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr); gap: 48px; align-items: center; padding: 44px; border: 1px solid var(--line); border-radius: 25px; background: #fff; box-shadow: var(--shadow); }
.service-logo { display: grid; place-items: center; min-height: 260px; border-radius: 20px; background: linear-gradient(145deg, var(--blue-soft), #fff); }
.service-logo img { width: min(250px, 80%); height: auto; border-radius: 15px; }
.service-copy h2 { margin: 0 0 13px; font-size: 36px; line-height: 1.15; letter-spacing: -0.035em; }
.service-copy > p { margin: 0 0 18px; color: var(--muted); }
.check-list { margin: 0 0 25px; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 9px 0; padding-left: 28px; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.scope-note { margin-top: 23px; padding: 15px 17px; border-left: 4px solid #d4a226; border-radius: 0 9px 9px 0; background: var(--warm); color: #655328; font-size: 14px; }
.contact-band { padding: 68px 0; background: var(--navy-deep); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 35px; }
.contact-band h2 { margin: 0 0 9px; color: #fff; font-size: 38px; line-height: 1.15; letter-spacing: -0.035em; }
.contact-band p { max-width: 720px; margin: 0; color: rgba(255, 255, 255, 0.76); }
.contact-band .btn { border-color: #fff; background: #fff; color: var(--navy-deep); white-space: nowrap; }
.site-footer { border-top: 1px solid var(--line); background: #fff; }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 25px; padding-top: 30px; padding-bottom: 34px; }
.site-footer p { margin: 0; color: var(--muted); font-size: 14px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-size: 14px; }
.legal-shell { width: min(820px, calc(100% - 32px)); max-width: none; margin: 36px auto 50px; padding: 48px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 15px 45px rgba(18, 53, 122, 0.07); }
.legal-shell h1 { margin-bottom: 8px; font-size: 38px; }
.legal-shell .sub { margin: 0 0 36px; color: var(--muted); }
.legal-shell h2 { margin: 34px 0 10px; padding-top: 23px; border-top: 1px solid var(--line); font-size: 21px; }
.legal-shell h2:first-of-type { margin-top: 26px; padding-top: 0; border-top: 0; }
.legal-shell h3 { font-size: 17px; }
.legal-shell p { margin: 0 0 13px; }
.legal-shell ul { padding-left: 23px; }
.legal-shell .small { color: var(--muted); font-size: 15px; }
.person-card { display: flex; align-items: center; gap: 23px; padding: 22px; border: 1px solid var(--line); border-radius: 15px; background: var(--canvas); }
.person-card img { width: 120px; height: 120px; object-fit: cover; border: 4px solid #fff; border-radius: 50%; }
.person-card strong { display: block; font-size: 19px; }
.person-card span { color: var(--muted); font-size: 15px; }
.note { padding: 15px 18px; border-left: 4px solid #d4a226; border-radius: 0 8px 8px 0; background: var(--warm); }
@media (max-width: 920px) {
  .site-header { position: static; }
  .site-header .wrap { padding: 13px 0; align-items: flex-start; }
  .site-nav { gap: 13px 17px; flex-wrap: wrap; }
  .hero { padding-top: 54px; }
  .hero-grid, .statement, .service-box { grid-template-columns: 1fr; }
  .hero-card { max-width: 560px; }
  .topic-strip .wrap { grid-template-columns: 1fr 1fr; }
  .topic-strip span:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .topic-strip span:nth-child(4) { border-top: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; }
  .service-logo { min-height: 230px; }
}
@media (max-width: 680px) {
  .wrap { width: min(100% - 32px, 1160px); }
  .site-header .wrap { min-height: auto; display: block; }
  .brand { margin-bottom: 11px; }
  .brand img { width: 38px; height: 38px; }
  .site-nav { justify-content: flex-start; }
  .site-nav a { font-size: 14px; }
  .hero { padding: 43px 0 37px; }
  h1 { font-size: clamp(40px, 13vw, 56px); }
  .lead { font-size: 18px; }
  .profile { grid-template-columns: 92px 1fr; gap: 16px; }
  .profile img { width: 92px; height: 92px; }
  .hero-card { padding: 22px; border-radius: 21px; }
  .hero-proof { grid-template-columns: 1fr; }
  .topic-strip .wrap, .issue-grid { grid-template-columns: 1fr; }
  .topic-strip span + span { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 58px 0; }
  .statement-main, .statement-side, .service-box { padding: 28px; }
  .banner-panel img { aspect-ratio: 16 / 9; }
  .youtube-row, .contact-grid { grid-template-columns: 1fr; }
  .youtube-row { padding: 24px; }
  .contact-band h2 { font-size: 31px; }
  .site-footer .wrap { display: block; }
  .site-footer p { margin-bottom: 12px; }
  .legal-shell { margin: 18px auto 35px; padding: 29px 21px; border-radius: 14px; }
  .legal-shell h1 { font-size: 31px; }
  .person-card { display: block; text-align: center; }
  .person-card img { margin-bottom: 12px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn { transition: none; } }
