:root {
  --navy: #082944;
  --navy-2: #0d3657;
  --blue: #087db8;
  --blue-2: #1aa7dc;
  --section-blue: #168fc9;
  --section-blue-bright: #58bee6;
  --cyan: #54c3ec;
  --sky: #eaf7ff;
  --sky-2: #f5fbff;
  --white: #fff;
  --ink: #102d43;
  --muted: #637889;
  --line: rgba(8, 41, 68, .14);
  --warm: #f6b82c;
  --warm-dark: #d88b00;
  --shell: min(1240px, calc(100vw - 96px));
  --narrow: min(820px, calc(100vw - 48px));
  --radius: 28px;
  --shadow: 0 26px 70px rgba(8, 41, 68, .12);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: auto; overflow-x: clip; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "IBM Plex Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif; font-size: 16px; line-height: 1.85; letter-spacing: .045em; overflow-x: clip; }
body.drawer-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.34; letter-spacing: .025em; }
.shell { width: var(--shell); margin-inline: auto; }
.narrow { width: var(--narrow); margin-inline: auto; }
.section-space { padding-block: clamp(100px, 12vw, 190px); }
.page-section { padding-block: clamp(90px, 10vw, 150px); }
.page-section--intro { padding-top: clamp(80px, 8vw, 120px); padding-bottom: clamp(90px, 10vw, 150px); }
.page-section--tint { background: linear-gradient(140deg, var(--sky-2), var(--sky)); }
.page-section--navy { color: var(--white); background: linear-gradient(135deg, var(--section-blue) 0%, #40b4df 68%, var(--section-blue-bright) 118%); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 10000; top: 10px; left: 10px; padding: 10px 16px; color: var(--white); background: var(--navy); transform: translateY(-160%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--warm); outline-offset: 4px; }

.eyebrow { margin: 0 0 24px; color: var(--blue); font-family: Heebo, sans-serif; font-size: 15px; font-weight: 500; line-height: 1.45; letter-spacing: .18em; text-transform: uppercase; }
.text-gradient { color: var(--blue); background: linear-gradient(90deg, var(--blue), var(--cyan)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section-heading { max-width: 760px; }
.section-heading h1, .section-heading h2 { margin: 0; font-size: clamp(38px, 5vw, 72px); font-weight: 300; }
.heading-line { display: block; }
.heading-line--nowrap { white-space: nowrap; }
.heading-line--optical-comma, .heading-line--optical-end { width: fit-content; margin-inline: auto; }
.heading-line--optical-comma { transform: translateX(.22em); }
.heading-line--optical-end { transform: translateX(.12em); }
.common-cta__inner h2,
.common-cta__inner > p,
.policy-link-panel h2,
.policy-link-panel > p,
.thanks-panel h2,
.thanks-panel > p,
.not-found h1,
.not-found p { hanging-punctuation: allow-end; }
.section-lead { max-width: 620px; margin: 28px 0 0; color: var(--muted); }
.centered-action { margin-top: 54px; text-align: center; }

.button { display: inline-flex; min-height: 58px; align-items: center; justify-content: center; gap: 44px; padding: 13px 18px 13px 28px; border: 1px solid var(--navy); border-radius: 999px; background: transparent; font-size: 14px; font-weight: 500; line-height: 1.3; cursor: pointer; transition: color .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease); }
.button svg { width: 31px; height: 31px; padding: 7px; border-radius: 50%; background: var(--navy); color: var(--white); transition: transform .35s var(--ease), background .35s var(--ease); }
.button:hover { color: var(--white); background: var(--navy); transform: translateY(-2px); }
.button:hover svg { color: var(--navy); background: var(--white); transform: translateX(3px); }
.button--warm { border-color: var(--warm); background: var(--warm); color: var(--navy); box-shadow: 0 12px 30px rgba(246, 184, 44, .22); }
.button--warm svg { background: var(--navy); }
.button--warm:hover { border-color: var(--warm-dark); background: var(--warm-dark); }
.button--ghost { border-color: var(--line); background: var(--white); }
.button--light { border-color: rgba(255,255,255,.45); color: var(--white); }
.button--light svg { color: var(--navy); background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 13px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 500; }
.text-link svg { transition: transform .3s var(--ease); }
.text-link:hover svg { transform: translateX(5px); }

.loader { position: fixed; z-index: 9999; inset: 0; display: grid; place-items: center; background: radial-gradient(circle at 50% 42%, #f7fdff 0%, #e3f7ff 46%, #c8edfb 100%); transition: opacity .85s var(--ease), visibility .85s; }
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__mark { display: grid; place-items: center; }
.loader__mark img { width: 112px; height: 112px; object-fit: contain; opacity: 0; transform: translateY(8px); animation: loaderMark 1.05s .08s var(--ease) forwards; }
.loader__mark span { margin-top: 12px; color: var(--blue); font-family: Heebo, sans-serif; font-size: 11px; letter-spacing: .28em; opacity: 0; animation: loaderText .9s .32s forwards; }
.loader.is-transition-entry .loader__mark img, .loader.is-transition-entry .loader__mark span, .transition-entry-pending .loader__mark img, .transition-entry-pending .loader__mark span { opacity: 1; transform: none; animation: none; }
.loader__line { display: none; }
@keyframes loaderMark { to { opacity: 1; transform: none; } }
@keyframes loaderText { to { opacity: 1; } }
.page-curtain { position: fixed; z-index: 9998; inset: 0; display: grid; place-items: center; background: radial-gradient(circle at 50% 42%, #f7fdff 0%, #e3f7ff 46%, #c8edfb 100%); opacity: 0; visibility: hidden; pointer-events: none; }
.page-curtain__mark { display: grid; place-items: center; }
.page-curtain__mark img { width: 112px; height: 112px; object-fit: contain; }
.page-curtain__mark span { margin-top: 12px; color: var(--blue); font-family: Heebo, sans-serif; font-size: 11px; letter-spacing: .3em; opacity: .78; }
.entrance-pending .hero-animate { opacity: 0; transform: translateY(22px); }

.site-header { position: fixed; z-index: 1000; top: 18px; right: 24px; left: 24px; height: 76px; color: var(--navy); }
.admin-bar .site-header { top: 50px; }
.site-header__inner { display: flex; width: 100%; height: 100%; align-items: center; padding: 0; border: 1px solid transparent; border-radius: 999px; background: transparent; box-shadow: none; transition: padding .45s var(--ease), border-color .45s var(--ease), background-color .45s var(--ease), box-shadow .45s var(--ease); }
.site-header.is-scrolled .site-header__inner { padding: 7px 8px 7px 15px; border-color: rgba(255,255,255,.72); background: rgba(255,255,255,.78); box-shadow: 0 12px 44px rgba(8,41,68,.13); -webkit-backdrop-filter: blur(20px) saturate(140%); backdrop-filter: blur(20px) saturate(140%); }
.brand { display: flex; width: 98px; height: 72px; flex: 0 0 auto; align-items: center; justify-content: center; }
.brand img { width: 94px; height: 70px; object-fit: contain; }
.site-header__nav-shell { display: flex; height: 70px; align-items: center; margin-left: auto; padding: 6px 7px 6px 25px; border: 1px solid rgba(255,255,255,.72); border-radius: 999px; background: rgba(255,255,255,.76); box-shadow: 0 10px 38px rgba(8,41,68,.1); -webkit-backdrop-filter: blur(20px) saturate(140%); backdrop-filter: blur(20px) saturate(140%); transition: padding .45s var(--ease), border-color .45s var(--ease), background-color .45s var(--ease), box-shadow .45s var(--ease); }
.site-header.is-scrolled .site-header__nav-shell { padding-right: 0; border-color: transparent; background: transparent; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
.desktop-nav > ul { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 42px); margin: 0; padding: 0; list-style: none; }
.desktop-nav > ul > li { position: relative; display: flex; align-items: center; }
.desktop-nav > ul > li > a { padding-block: 16px; font-size: 13px; font-weight: 500; white-space: nowrap; }
.desktop-nav > ul > li > a::after { content: ""; position: absolute; right: 0; bottom: 9px; left: 0; height: 1px; background: var(--blue); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.desktop-nav > ul > li > a:hover::after { transform: scaleX(1); transform-origin: left; }
.submenu-toggle { width: 20px; height: 20px; margin-left: 3px; padding: 0; border: 0; border-radius: 50%; background: var(--sky); cursor: pointer; }
.submenu-toggle span::before, .submenu-toggle span::after { content: ""; position: absolute; width: 7px; height: 1px; background: var(--blue); transform: translate(-50%, -50%); }
.submenu-toggle span::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .25s; }
.has-submenu.is-open .submenu-toggle span::after { transform: translate(-50%, -50%) rotate(0); }
.service-menu { position: absolute; top: 60px; right: -360px; display: grid; width: 690px; grid-template-columns: .8fr 1.4fr; gap: 45px; padding: 38px; border-radius: 26px; color: var(--white); background: var(--navy); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s; }
.has-submenu:hover .service-menu, .has-submenu.is-open .service-menu { opacity: 1; visibility: visible; transform: none; }
.service-menu > p { margin: 0; padding-right: 24px; border-right: 1px solid rgba(255,255,255,.16); }
.service-menu > p small { display: block; margin-bottom: 30px; color: var(--cyan); font-family: Heebo, sans-serif; letter-spacing: .18em; text-transform: uppercase; }
.service-menu > p strong { font-size: 22px; font-weight: 300; }
.service-menu ul { margin: 0; padding: 0; list-style: none; }
.service-menu li + li { border-top: 1px solid rgba(255,255,255,.16); }
.service-menu li a { display: grid; grid-template-columns: 35px 1fr auto; align-items: center; padding: 12px 4px; font-size: 17px; }
.service-menu li span { color: var(--cyan); font-family: Heebo, sans-serif; font-size: 11px; }
.service-menu li svg { transition: transform .3s; }
.service-menu li a:hover svg { transform: translateX(5px); }
.header-contact { display: inline-flex; height: 58px; align-items: center; gap: 22px; margin-left: clamp(20px, 2.4vw, 38px); padding: 0 12px 0 24px; border-radius: 999px; color: var(--white); background: var(--navy); font-size: 13px; }
.header-contact svg { width: 34px; height: 34px; padding: 8px; border-radius: 50%; color: var(--navy); background: var(--warm); transition: transform .3s; }
.header-contact:hover svg { transform: rotate(-10deg) translateX(2px); }
.drawer-toggle { display: none; width: 52px; height: 52px; align-items: center; justify-content: center; flex-direction: column; gap: 7px; padding: 0; border: 0; border-radius: 50%; color: var(--white); background: var(--navy); }
.drawer-toggle > span:not(.screen-reader-text) { width: 20px; height: 1px; background: currentColor; transition: transform .3s, opacity .3s; }
.drawer-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4px) rotate(45deg); }
.drawer-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
.mobile-drawer { position: fixed; z-index: 900; inset: 0; visibility: hidden; pointer-events: none; }
.mobile-drawer.is-open { visibility: visible; pointer-events: auto; }
.mobile-drawer__backdrop { position: absolute; inset: 0; background: rgba(8,41,68,.4); opacity: 0; transition: opacity .4s; }
.mobile-drawer.is-open .mobile-drawer__backdrop { opacity: 1; }
.mobile-drawer__panel { position: absolute; top: 0; right: 0; width: min(480px, 100%); height: 100%; padding: 120px 34px 38px; color: var(--white); background: var(--navy); overflow: auto; transform: translateX(100%); transition: transform .5s var(--ease); }
.mobile-drawer.is-open .mobile-drawer__panel { transform: none; }
.mobile-drawer__label { color: var(--cyan); font-family: Heebo, sans-serif; font-size: 11px; letter-spacing: .25em; text-transform: uppercase; }
.mobile-drawer ul { margin: 0 0 34px; padding: 0; list-style: none; }
.mobile-drawer > nav > ul > li { border-bottom: 1px solid rgba(255,255,255,.13); }
.mobile-drawer > nav > ul > li > a { display: flex; align-items: center; gap: 20px; padding: 17px 0; font-size: 21px; }
.mobile-drawer li span { color: var(--cyan); font-family: Heebo, sans-serif; font-size: 10px; }
.mobile-drawer__children { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 12px 0 20px; }
.mobile-drawer__children a { font-size: 12px; }
.mobile-drawer .button { width: 100%; }
.mobile-drawer__phone { display: grid; margin-top: 26px; }
.mobile-drawer__phone a { font-family: Heebo, sans-serif; font-size: 28px; letter-spacing: .03em; }
.mobile-drawer__phone small { opacity: .65; }

.home-hero { position: relative; min-height: 100svh; padding: 155px max(48px, calc((100vw - 1400px) / 2)) 70px; background: linear-gradient(130deg, #f9fdff 12%, #e9f8ff 60%, #dff5ff); overflow: hidden; }
.home-hero__wash { position: absolute; top: -20%; left: 20%; width: 65vw; height: 65vw; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.9), rgba(66,183,232,.1) 50%, transparent 72%); }
.home-hero__copy { position: relative; z-index: 2; width: min(670px, 54vw); padding-top: 7vh; }
.home-hero h1 { margin: 0 0 34px; font-size: clamp(45px, 5.2vw, 78px); font-weight: 300; line-height: 1.18; letter-spacing: -.025em; }
.home-hero h1 > span { display: block; white-space: nowrap; }
.home-hero__lead { margin-bottom: 38px; font-size: clamp(15px, 1.35vw, 19px); line-height: 2; }
.home-hero__actions { display: flex; align-items: center; gap: 34px; }
.home-hero__visual { position: absolute; z-index: 1; top: 130px; right: max(25px, calc((100vw - 1500px) / 2)); width: min(42vw, 650px); height: calc(100svh - 190px); }
.home-hero__image { width: 100%; height: 100%; border-radius: 240px 28px 180px 28px; box-shadow: 0 40px 90px rgba(8,73,120,.19); overflow: hidden; transform: rotate(2deg); }
.home-hero__image::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(180deg, transparent 50%, rgba(7,93,168,.28)); }
.home-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.home-hero__scroll-orb { position: absolute; right: -8px; bottom: 8%; display: grid; width: 126px; height: 126px; place-items: center; border: 1px solid rgba(255,255,255,.74); border-radius: 50%; color: var(--white); background: rgba(31,164,216,.86); box-shadow: 0 18px 45px rgba(8,70,110,.18); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); animation: scrollOrbFloat 3.2s ease-in-out infinite; }
.home-hero__scroll-orb span { position: absolute; top: 27px; font-family: Heebo, sans-serif; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; }
.home-hero__scroll-orb i { display: grid; width: 44px; height: 44px; place-items: center; margin-top: 22px; color: var(--white); background: transparent; font-family: Heebo, sans-serif; font-size: 34px; font-style: normal; line-height: 1; text-shadow: 0 4px 14px rgba(8,41,68,.18); animation: scrollArrow 1.7s ease-in-out infinite; }
@keyframes scrollOrbFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes scrollArrow { 0%, 100% { transform: translateY(-3px); } 50% { transform: translateY(5px); } }
.scroll-cue { position: absolute; bottom: 28px; left: 28px; display: flex; align-items: center; gap: 14px; color: var(--blue); font-family: Heebo, sans-serif; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; transform: rotate(-90deg); transform-origin: left bottom; }
.scroll-cue i { width: 62px; height: 1px; background: var(--blue); transform-origin: left; animation: scrollCue 2s infinite; }
@keyframes scrollCue { 0%, 100% { transform: scaleX(.25); } 50% { transform: scaleX(1); } }

.statement-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 8vw; }
.statement-copy h2 { margin-bottom: 48px; font-size: clamp(38px, 5vw, 70px); font-weight: 300; }
.statement-copy__body { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; margin: 0 0 42px 16%; color: var(--muted); }
.statement-copy .button { margin-left: 16%; }
.home-services { position: relative; background: var(--sky-2); }
.home-services .section-heading h2 { max-width: 760px; }
.home-services::before { content: "SERVICES"; position: absolute; top: 2%; right: -2%; color: rgba(17,134,200,.055); font-family: Heebo, sans-serif; font-size: clamp(100px, 18vw, 280px); font-weight: 100; letter-spacing: -.04em; }
.service-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 80px; }
.service-feature { position: relative; min-width: 0; padding: 14px 14px 30px; border-radius: var(--radius); background: var(--white); box-shadow: 0 15px 50px rgba(8,41,68,.07); transition: transform .45s var(--ease), box-shadow .45s; }
.service-feature:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.service-feature--offset { transform: none; }
.service-feature--offset:hover { transform: translateY(-10px); }
.service-feature__media { height: 330px; border-radius: 20px 20px 150px 20px; overflow: hidden; }
.service-feature:nth-child(2) .service-feature__media { border-radius: 150px 20px 20px 20px; }
.service-feature:nth-child(3) .service-feature__media { border-radius: 20px 150px 20px 20px; }
.service-feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service-feature:hover img { transform: scale(1.05); }
.service-feature__number { position: absolute; top: 28px; left: 28px; display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--white); background: var(--navy); font-family: Heebo, sans-serif; font-size: 11px; }
.service-feature > div:nth-of-type(2) { padding: 28px 70px 0 13px; }
.service-feature p { margin: 0 0 6px; color: var(--blue); font-family: Heebo, sans-serif; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.service-feature h3 { margin: 0 0 12px; font-size: 27px; font-weight: 400; }
.service-feature div > span { color: var(--muted); font-size: 13px; line-height: 1.8; }
.service-feature > svg { position: absolute; right: 27px; bottom: 31px; width: 35px; height: 35px; padding: 9px; border-radius: 50%; color: var(--white); background: var(--blue); }

.home-reasons { background: var(--white); }
.reasons-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 7vw; align-items: start; }
.reasons-intro { position: sticky; top: 140px; min-width: 0; }
.reasons-intro .section-heading h2 { font-size: clamp(38px, 3.6vw, 52px); }
.reasons-intro > p { max-width: 420px; color: var(--muted); }
.reasons-intro .button { margin-top: 25px; }
.reason-stack { display: grid; gap: 38px; }
.reason-card { display: grid; min-height: 430px; grid-template-columns: 86px 1fr; align-items: center; padding: 48px 44px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, #fff, #f5fbff); }
.reason-card > span { color: var(--cyan); font-family: Heebo, sans-serif; font-size: clamp(32px, 3.2vw, 46px); font-weight: 200; line-height: 1; }
.reason-card > div > p:first-child { margin-bottom: 14px; color: var(--blue); font-family: Heebo, sans-serif; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.reason-card h3 { margin: 0 0 20px; font-size: clamp(29px, 3vw, 43px); font-weight: 300; }
.reason-card--after { grid-template-columns: 72px 1fr; padding-inline: 38px; }
.reason-card--after h3 { font-size: clamp(28px, 2.6vw, 37px); }
.reason-card__heading-line { display: block; white-space: nowrap; }
.reason-card > div > p:last-child { max-width: 560px; margin: 0; color: var(--muted); line-height: 2.05; }
.reason-copy-line { display: block; }

.home-flow { --flow-overlay: 0; position: relative; isolation: isolate; color: var(--ink); background: var(--white); overflow: hidden; transition: color .5s var(--ease); }
.home-flow::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(125deg, #168fc9 0%, #35afe0 54%, #78d1ef 112%); opacity: var(--flow-overlay); }
.home-flow::after { content: ""; position: absolute; z-index: -1; top: -30%; right: -10%; width: 58vw; height: 58vw; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.2), rgba(68,185,228,.08) 48%, transparent 68%); }
.home-flow .eyebrow { color: var(--blue); transition: color .45s var(--ease); }
.home-flow .section-lead { color: var(--muted); transition: color .45s var(--ease); }
.flow-rail { display: grid; grid-template-columns: repeat(4, 1fr); margin: 80px 0 0; padding: 0; list-style: none; counter-reset: flow; }
.flow-rail li { position: relative; min-height: 270px; padding: 30px 30px 20px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); transition: border-color .45s var(--ease); }
.flow-rail li::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--blue); transition: background-color .45s var(--ease); }
.flow-rail li > span { color: var(--blue); font-family: Heebo, sans-serif; font-size: 11px; transition: color .45s var(--ease); }
.flow-rail li > div { margin-top: 75px; }
.flow-rail h3 { margin-bottom: 15px; font-size: 21px; font-weight: 400; }
.flow-rail p { margin: 0; color: var(--muted); font-size: 13px; transition: color .45s var(--ease); }
.home-flow .button--ghost { color: var(--navy); }
.home-flow.is-color-active { color: var(--white); }
.home-flow.is-color-active .eyebrow, .home-flow.is-color-active .flow-rail li > span { color: #e5f9ff; }
.home-flow.is-color-active .section-lead, .home-flow.is-color-active .flow-rail p { color: rgba(255,255,255,.78); }
.home-flow.is-color-active .flow-rail li { border-color: rgba(255,255,255,.26); }
.home-flow.is-color-active .flow-rail li::before { background: #e5f9ff; }

.home-news { overflow: hidden; }
.home-news__head { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.news-slider { width: min(1440px, calc(100vw - 48px)); margin: 70px 0 0 max(24px, calc((100vw - 1240px) / 2)); }
.news-slider .splide__track { overflow: visible; }
.news-slider .splide__slide { width: min(400px, 78vw); }
.news-card { position: relative; display: block; min-width: 0; }
.news-card__media { height: 275px; margin-bottom: 22px; border-radius: 22px; background: var(--sky); overflow: hidden; }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.news-card:hover img { transform: scale(1.045); }
.news-card__meta { display: flex; align-items: center; gap: 16px; margin-bottom: 11px; font-family: Heebo, sans-serif; font-size: 11px; }
.news-card__meta span { padding: 3px 10px; border-radius: 99px; color: var(--blue); background: var(--sky); font-family: "IBM Plex Sans JP", sans-serif; }
.news-card h2, .news-card h3 { margin: 0; padding-right: 42px; font-size: 17px; font-weight: 400; line-height: 1.7; }
.news-card > svg { position: absolute; right: 2px; bottom: 0; width: 30px; height: 30px; padding: 7px; border-radius: 50%; color: var(--white); background: var(--blue); transition: transform .3s; }
.news-card:hover > svg { transform: translateX(4px); }
.splide__arrow { width: 47px; height: 47px; border: 1px solid var(--line); background: var(--white); opacity: 1; }
.splide__arrow--prev { left: auto; right: 66px; }
.splide__arrow--next { right: 8px; }
.splide__arrows { position: absolute; top: -76px; right: max(24px, calc((100vw - 1240px) / 2)); }
.splide__pagination { position: relative; bottom: auto; justify-content: flex-start; margin-top: 48px; padding: 0; }
.splide__pagination__page { width: 28px; height: 2px; margin: 0 4px; border-radius: 0; background: var(--line); }
.splide__pagination__page.is-active { background: var(--blue); transform: none; }
.news-slider .splide__arrows { display: none; }
.news-slider .splide__pagination { display: none; }

.home-carriers { background: var(--sky-2); }
.carrier-layout { display: grid; grid-template-columns: 1fr 1.45fr; gap: 10vw; }
.carrier-list { border-top: 1px solid var(--line); }
.carrier-list a { display: grid; min-height: 120px; grid-template-columns: minmax(178px, 1fr) 220px 30px; align-items: center; gap: 24px; border-bottom: 1px solid var(--line); font-size: 15px; transition: padding .3s, color .3s; }
.carrier-list a:hover { padding-left: 10px; color: var(--blue); }
.carrier-name { min-width: 0; text-align: left; }
.carrier-list a svg { justify-self: end; width: 30px; height: 30px; padding: 7px; border-radius: 50%; color: var(--white); background: var(--blue); }
.carrier-logo { display: flex; width: 220px; height: 68px; align-items: center; justify-content: center; }
.carrier-logo img { width: auto; max-width: 205px; height: auto; max-height: 58px; object-fit: contain; object-position: center; }
.carrier-logo--fallback { color: var(--muted); font-size: 17px; }
.carrier-list a:first-child .carrier-logo img { max-width: 190px; max-height: 66px; }
.home-carriers .section-heading h2, .carrier-layout--dark .section-heading h2 { font-size: clamp(38px, 4.6vw, 64px); }
.home-company { display: grid; min-height: 650px; grid-template-columns: 1.35fr 1fr; }
.home-company__media { overflow: hidden; }
.home-company__media img { width: 100%; height: 100%; object-fit: cover; }
.home-company__panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(55px, 6.5vw, 100px); color: var(--white); background: linear-gradient(135deg, #168fc9 0%, #4cbbe4 100%); }
.home-company__panel .eyebrow { color: var(--cyan); }
.home-company__panel h2 { margin: 0 0 30px; font-size: clamp(35px, 3.5vw, 50px); font-weight: 300; }
.home-company__panel > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.home-company__panel dl { margin: 18px 0 35px; border-top: 1px solid rgba(255,255,255,.18); }
.home-company__panel dl div { display: grid; grid-template-columns: 90px 1fr; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.home-company__panel dt { color: var(--cyan); font-size: 12px; }
.home-company__panel dd { margin: 0; }
.home-company__panel .button { align-self: flex-start; }

.common-cta { position: relative; padding-block: clamp(100px, 12vw, 180px); color: var(--white); background: linear-gradient(135deg, #168fc9 0%, #48b9e3 100%); overflow: hidden; }
.common-cta__marquee { position: absolute; right: 0; bottom: -4vw; left: 0; color: rgba(255,255,255,.065); overflow: hidden; white-space: nowrap; }
.common-cta__marquee > div { display: flex; width: max-content; animation: contactMarquee 42s linear infinite; }
.common-cta__marquee span { padding-right: .3em; font-family: Heebo, sans-serif; font-size: clamp(120px, 20vw, 300px); font-weight: 100; line-height: .85; letter-spacing: -.04em; }
@keyframes contactMarquee { to { transform: translateX(-50%); } }
.common-cta__orb { position: absolute; top: -45%; left: 55%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(66,183,232,.5), rgba(7,93,168,.08) 60%, transparent 61%); }
.common-cta__inner { position: relative; text-align: center; }
.common-cta .eyebrow { color: var(--cyan); }
.common-cta h2 { margin: 0 0 20px; font-size: clamp(36px, 5.3vw, 72px); font-weight: 300; }
.common-cta h2.common-cta__title--two-lines { font-size: clamp(24px, 4.5vw, 64px); }
.common-cta__inner > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.common-cta__actions { display: flex; align-items: stretch; justify-content: center; gap: 22px; margin-top: 42px; }
.phone-link { display: grid; min-width: 280px; align-content: center; justify-items: center; padding: 9px 25px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; text-align: center; }
.phone-link small, .phone-link span { color: rgba(255,255,255,.6); font-size: 10px; line-height: 1.4; }
.phone-link strong { font-family: Heebo, sans-serif; font-size: 24px; font-weight: 300; line-height: 1.25; letter-spacing: .02em; }

.page-hero { position: relative; display: grid; min-height: 660px; grid-template-columns: 1.05fr .95fr; padding: 155px max(48px, calc((100vw - 1320px) / 2)) 70px; background: linear-gradient(135deg, var(--sky-2), var(--sky)); overflow: hidden; }
.page-hero__copy { position: relative; z-index: 2; align-self: center; padding-right: 7vw; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 65px; color: var(--muted); font-family: Heebo, sans-serif; font-size: 10px; letter-spacing: .12em; }
.page-hero h1 { margin: 0 0 28px; font-size: clamp(48px, 6.2vw, 88px); font-weight: 300; letter-spacing: -.02em; }
.page-hero__lead { max-width: 650px; margin: 0; font-size: clamp(15px, 1.4vw, 18px); line-height: 2; }
.page-hero__privacy-title { font-size: .72em; white-space: nowrap; }
.page-hero__media { height: 435px; align-self: center; border-radius: 24px 180px 24px 100px; box-shadow: var(--shadow); overflow: hidden; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__number { position: absolute; right: -25px; bottom: -60px; color: rgba(7,93,168,.06); font-family: Heebo, sans-serif; font-size: clamp(80px, 14vw, 210px); font-weight: 100; line-height: 1; letter-spacing: -.04em; white-space: nowrap; }
.prose { color: var(--ink); }
.prose > *:first-child { margin-top: 0; }
.prose > *:last-child { margin-bottom: 0; }
.prose h2 { margin: 2.5em 0 .8em; font-size: clamp(27px, 3.3vw, 42px); font-weight: 400; }
.prose h3 { margin: 2.2em 0 .7em; padding-left: 16px; border-left: 3px solid var(--cyan); font-size: 23px; font-weight: 500; }
.prose h4 { margin: 2em 0 .7em; font-size: 19px; }
.prose p { margin: 0 0 1.7em; }
.prose ul, .prose ol { margin: 0 0 2em; padding-left: 1.4em; }
.prose li { margin: .6em 0; }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 4px; }
.prose table { width: 100%; margin: 35px 0; border-collapse: collapse; }
.prose th, .prose td { padding: 15px; border: 1px solid var(--line); text-align: left; }

.service-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 70px; }
.service-index-card { position: relative; min-height: 350px; padding: 42px; border-radius: var(--radius); background: var(--white); box-shadow: 0 18px 55px rgba(8,41,68,.07); transition: transform .4s var(--ease), box-shadow .4s; }
.service-index-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-index-card > span { color: var(--cyan); font-family: Heebo, sans-serif; font-size: 13px; }
.service-index-card h3 { margin: 60px 0 20px; font-size: 34px; font-weight: 300; }
.service-index-card p { color: var(--muted); font-size: 14px; }
.service-index-card > svg { position: absolute; right: 32px; bottom: 32px; width: 40px; height: 40px; padding: 10px; border-radius: 50%; color: var(--white); background: var(--blue); }
.split-feature { display: grid; grid-template-columns: 1.05fr .95fr; gap: 5vw; align-items: center; }
.split-feature__media { height: 590px; border-radius: 30px 190px 30px 30px; overflow: hidden; }
.split-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.split-feature__copy h2 { margin: 0 0 30px; font-size: clamp(37px, 3.35vw, 45px); font-weight: 300; }
.split-feature__copy h2.service-scope-heading { font-size: clamp(32px, 3vw, 40px); }
.split-feature__copy > p { color: var(--muted); }
.check-list { margin: 30px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.check-list li { position: relative; padding: 14px 0 14px 32px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 3px; color: var(--blue); }

.service-lede { display: grid; grid-template-columns: .75fr 1.4fr; gap: 8vw; }
.service-lede__body h2 { margin: 0 0 42px; font-size: clamp(37px, 4.8vw, 65px); font-weight: 300; }
.prose h2.service-editor-heading { font-size: clamp(32px, 3.1vw, 40px); }
.concern-list { margin: 0; padding: 0; list-style: none; }
.concern-list li { position: relative; padding: 24px 25px 24px 65px; border-top: 1px solid var(--line); font-size: 17px; }
.concern-list li:last-child { border-bottom: 1px solid var(--line); }
.concern-list li::before { content: "?"; position: absolute; left: 18px; top: 20px; display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue); font-family: Heebo, sans-serif; }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 70px; }
.support-grid--business { grid-template-columns: repeat(2, 1fr); }
.support-card { min-height: 310px; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.support-card > span { color: var(--cyan); font-family: Heebo, sans-serif; font-size: 38px; font-weight: 200; line-height: 1; }
.support-card h3 { margin: 40px 0 18px; font-size: 25px; font-weight: 400; }
.support-card p { margin: 0; color: var(--muted); font-size: 14px; }
.case-panel { display: grid; grid-template-columns: .65fr 1.35fr; gap: 8vw; }
.case-panel .eyebrow, .carrier-layout--dark .eyebrow { color: var(--cyan); }
.case-panel h2 { font-size: 48px; font-weight: 300; }
.case-panel ul { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.2); list-style: none; }
.case-panel li { display: grid; grid-template-columns: 100px 1fr; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.case-panel li span { color: var(--cyan); font-family: Heebo, sans-serif; font-size: 10px; letter-spacing: .15em; }
.mini-flow { display: grid; grid-template-columns: repeat(4, 1fr); margin: 70px 0 0; padding: 0; list-style: none; }
.mini-flow li { min-height: 245px; padding: 28px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.mini-flow li > span { color: var(--cyan); font-family: Heebo, sans-serif; font-size: 30px; font-weight: 200; line-height: 1; }
.mini-flow h3 { margin: 42px 0 12px; font-size: 20px; font-weight: 400; }
.mini-flow p { color: var(--muted); font-size: 13px; }
.faq-list { margin-top: 55px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 50px 1fr 28px; align-items: center; gap: 10px; padding: 27px 0; cursor: pointer; list-style: none; font-size: 16px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list summary span { color: var(--blue); font-family: Heebo, sans-serif; font-size: 21px; }
.faq-list details > div { padding: 0 50px 28px; color: var(--muted); }

.reason-detail-list { display: grid; gap: 120px; }
.reason-detail { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: 5vw; align-items: center; }
.reason-detail--reverse .reason-detail__copy { order: 2; }
.reason-detail--reverse .reason-detail__media { order: 1; border-radius: 150px 24px 24px 24px; }
.reason-detail__number { position: absolute; z-index: 0; top: -65px; left: -10px; color: rgba(17,134,200,.1); font-family: Heebo, sans-serif; font-size: 150px; font-weight: 100; line-height: 1; }
.reason-detail__copy { position: relative; z-index: 1; }
.reason-detail__copy h2 { margin: 0 0 25px; font-size: clamp(31px, 3.3vw, 46px); font-weight: 300; }
.reason-detail__copy > p:last-child { color: var(--muted); }
.reason-detail__media { height: 480px; border-radius: 24px 150px 24px 24px; overflow: hidden; }
.reason-detail__media img { width: 100%; height: 100%; object-fit: cover; }

.consultation-flow { position: relative; }
.consultation-flow::before { display: none; }
.consultation-step { position: relative; display: grid; grid-template-columns: 90px 1fr 250px; gap: 38px; align-items: center; min-height: 190px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.consultation-step > span { z-index: 1; display: grid; width: 68px; height: 68px; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue); font-family: Heebo, sans-serif; }
.consultation-step div > p:first-child { margin: 0 0 6px; color: var(--cyan); font-family: Heebo, sans-serif; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.consultation-step h2 { margin: 0 0 10px; font-size: 31px; font-weight: 400; }
.consultation-step div > p:last-child { margin: 0; color: var(--muted); }
.consultation-step > small { padding: 15px 20px; border-radius: 12px; color: var(--blue); background: var(--sky); text-align: center; }
.prepare-box { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; padding: 70px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.prepare-box h2 { margin: 0; font-size: 42px; font-weight: 300; }
.prepare-box ul { margin: 0; padding: 0; list-style: none; }
.prepare-box li { padding: 14px 0 14px 30px; border-bottom: 1px solid var(--line); }
.prepare-box li::before { content: "○"; margin-left: -28px; margin-right: 12px; color: var(--blue); }
.prepare-box > p { grid-column: 2; margin: 0; color: var(--muted); font-size: 13px; }
.service-disclaimer { margin-top: clamp(42px, 5vw, 68px); padding: clamp(22px, 2.5vw, 30px) clamp(22px, 3vw, 34px); border-left: 3px solid var(--cyan); color: var(--muted); background: rgba(255,255,255,.52); font-size: 13px; line-height: 2; }

.message-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 10vw; }
.message-title h2 { margin: 0; font-size: clamp(30px, 2.9vw, 40px); font-weight: 300; }
.message-sign { margin-top: 50px; }
.message-sign strong { margin-left: 12px; font-size: 22px; font-weight: 400; }
.company-profile .section-heading { margin-bottom: 65px; }
.profile-table { margin: 0; border-top: 1px solid var(--line); }
.profile-table > div { display: grid; grid-template-columns: 230px 1fr; padding: 25px 0; border-bottom: 1px solid var(--line); }
.profile-table dt { color: var(--blue); font-size: 13px; }
.profile-table dd { margin: 0; }
.office-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-top: 65px; }
.office-card { min-height: 300px; padding: 45px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, #fff, var(--sky-2)); }
.office-card > span { color: var(--cyan); font-family: Heebo, sans-serif; font-size: 11px; letter-spacing: .17em; text-transform: uppercase; }
.office-card h3 { margin: 55px 0 16px; font-size: 30px; font-weight: 400; }
.office-card p { color: var(--muted); }
.carrier-layout--dark .carrier-list { border-color: rgba(255,255,255,.18); }
.carrier-layout--dark .carrier-list a { border-color: rgba(255,255,255,.18); }
.carrier-layout--dark .carrier-list a:hover { color: var(--cyan); }
.policy-link-panel { padding: 65px; border: 1px solid var(--line); border-radius: var(--radius); text-align: center; }
.policy-link-panel h2 { margin: 0 0 20px; font-size: 45px; font-weight: 300; }
.policy-link-panel > p:not(.eyebrow) { color: var(--muted); }
.policy-link-panel .button { margin-top: 22px; }

.news-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 72px 30px; }
.news-archive-grid .news-card__media { height: 250px; }
.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 8vw; align-items: start; }
.contact-aside { position: sticky; top: 130px; }
.contact-aside h2 { margin: 0 0 25px; font-size: clamp(36px, 3.5vw, 47px); font-weight: 300; }
.contact-aside > p { color: var(--muted); }
.contact-aside__phone { display: grid; margin-top: 38px; padding: 26px; border-radius: 20px; color: var(--white); background: linear-gradient(135deg, var(--section-blue), var(--section-blue-bright)); }
.contact-aside__phone small, .contact-aside__phone span { opacity: .65; font-size: 11px; }
.contact-aside__phone a { font-family: Heebo, sans-serif; font-size: 31px; font-weight: 300; letter-spacing: .02em; }
.local-demo-note { margin-top: 18px; padding: 20px; border: 1px solid #e8bc4f; border-radius: 14px; color: #6c551b !important; background: #fff9e8; font-size: 12px; }
.local-demo-note strong { display: block; color: var(--warm-dark); font-family: Heebo, sans-serif; letter-spacing: .15em; }
.contact-form-panel { padding: clamp(28px, 5vw, 64px); border-radius: var(--radius); background: var(--sky-2); }
.form-assurance { margin: 0 0 28px; padding: 15px 18px; border-radius: 12px; color: var(--muted); background: var(--white); font-size: 13px; }
.form-progress { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 0 50px; padding: 0; border-bottom: 1px solid var(--line); list-style: none; }
.form-progress li { padding: 0 0 18px; color: var(--muted); font-size: 12px; text-align: center; }
.form-progress li span { margin-right: 7px; font-family: Heebo, sans-serif; font-size: 10px; }
.form-progress li.is-current { border-bottom: 2px solid var(--blue); color: var(--blue); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
.field { display: block; min-width: 0; }
.field--wide { grid-column: 1 / -1; }
.field > span:first-child { display: block; margin-bottom: 9px; font-size: 13px; font-weight: 500; }
.field b { margin-left: 7px; padding: 2px 6px; border-radius: 5px; color: var(--white); background: var(--blue); font-size: 9px; font-weight: 400; }
.wpcf7-form-control-wrap { display: block; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field select, .field textarea { width: 100%; min-height: 58px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: var(--white); transition: border-color .25s, box-shadow .25s; }
.field textarea { height: 190px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px rgba(17,134,200,.13); }
.privacy-check .wpcf7-list-item { margin: 0; }
.privacy-check label { display: flex; align-items: center; gap: 10px; }
.privacy-check input { width: 20px; height: 20px; accent-color: var(--blue); }
.privacy-check a { color: var(--blue); text-decoration: underline; text-underline-offset: 4px; }
.form-actions { margin-top: 10px; text-align: center; }
.form-actions p { margin: 0; }
.form-actions .wpcf7-submit { min-width: 280px; }
.wpcf7-spinner { display: block; margin: 12px auto 0; }
.wpcf7-not-valid-tip { margin-top: 5px; font-size: 11px; }
.wpcf7-response-output { padding: 15px !important; border-width: 1px !important; border-radius: 10px; font-size: 13px; }
.form-confirm h2 { margin: 0 0 35px; font-size: 29px; font-weight: 400; }
.form-confirm dl { margin: 0; border-top: 1px solid var(--line); }
.form-confirm dl > div { display: grid; grid-template-columns: 180px 1fr; padding: 20px 0; border-bottom: 1px solid var(--line); }
.form-confirm dt { color: var(--blue); font-size: 12px; }
.form-confirm dd { margin: 0; white-space: pre-wrap; }
.form-confirm__actions { display: flex; justify-content: center; gap: 16px; margin-top: 38px; }
.thanks-panel { padding: 80px; border: 1px solid var(--line); border-radius: var(--radius); text-align: center; background: var(--sky-2); }
.thanks-panel__icon { display: grid; width: 80px; height: 80px; place-items: center; margin: 0 auto 30px; border-radius: 50%; color: var(--white); background: var(--blue); font-size: 34px; }
.thanks-panel h2 { margin: 0 0 25px; font-size: 46px; font-weight: 300; }
.thanks-panel .button { margin-top: 28px; }

.legal-layout { display: grid; grid-template-columns: 250px 1fr; gap: 9vw; align-items: start; }
.legal-toc { position: sticky; top: 130px; display: grid; padding: 26px; border-radius: 18px; background: var(--sky-2); }
.legal-toc p { color: var(--blue); font-family: Heebo, sans-serif; font-size: 10px; letter-spacing: .17em; text-transform: uppercase; }
.legal-toc a { padding: 10px 0; border-top: 1px solid var(--line); font-size: 12px; }
.legal-content { min-width: 0; }
.legal-content [id^="legal-"] { scroll-margin-top: 150px; }
.legal-content > h2:first-child { margin-top: 0; }
.sitemap-list { display: grid; gap: 70px; }
.sitemap-group { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 50px; }
.sitemap-group .eyebrow { grid-column: 1 / -1; }
.sitemap-group a { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
.sitemap-group a svg { width: 30px; height: 30px; padding: 7px; border-radius: 50%; color: var(--white); background: var(--blue); }

.single-hero { display: grid; min-height: 680px; grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr); gap: clamp(40px, 5vw, 76px); padding: 150px max(48px, calc((100vw - 1320px) / 2)) 70px; background: var(--sky-2); }
.single-hero__copy { align-self: center; max-width: 640px; }
.single-meta { display: flex; gap: 15px; margin-bottom: 20px; color: var(--blue); font-family: Heebo, sans-serif; font-size: 11px; }
.single-meta span { padding: 2px 9px; border-radius: 99px; background: var(--sky); font-family: "IBM Plex Sans JP", sans-serif; }
.single-hero h1 { margin: 0; font-size: clamp(30px, 3.1vw, 44px); font-weight: 300; letter-spacing: -.025em; line-break: strict; line-height: 1.5; text-wrap: pretty; word-break: normal; }
.single-hero__media { height: 420px; align-self: center; border-radius: 24px 150px 24px 24px; overflow: hidden; }
.single-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.single-layout { display: grid; grid-template-columns: 72px minmax(0, 780px); gap: clamp(40px, 5vw, 72px); justify-content: center; padding-block: 92px 105px; }
.single-share { position: sticky; top: 130px; align-self: start; text-align: center; }
.single-share span { display: block; margin-bottom: 12px; color: var(--muted); font-family: Heebo, sans-serif; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.single-share button { width: 60px; height: 60px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); font-family: Heebo, sans-serif; font-size: 10px; cursor: pointer; }
.article-content { min-width: 0; }
.article-content > p:first-child { font-size: 18px; line-height: 2.05; }
.post-nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; padding: 35px 0 100px; border-top: 1px solid var(--line); }
.post-nav > div:last-child { text-align: right; }
.post-nav > div a { display: block; font-size: 12px; }
.post-nav span { display: block; color: var(--blue); font-family: Heebo, sans-serif; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.post-nav > a { padding: 10px 20px; border: 1px solid var(--line); border-radius: 99px; font-size: 12px; }
.not-found { position: relative; display: grid; min-height: 100svh; place-items: center; padding: 150px 25px 80px; color: var(--white); background: linear-gradient(135deg, var(--section-blue), var(--section-blue-bright)); text-align: center; overflow: hidden; }
.not-found > div { position: relative; z-index: 1; }
.not-found h1 { margin: 0 0 25px; font-size: clamp(42px, 6vw, 78px); font-weight: 300; }
.not-found > span { position: absolute; color: rgba(255,255,255,.04); font-family: Heebo, sans-serif; font-size: 42vw; font-weight: 100; line-height: 1; }
.not-found .button { margin-top: 25px; }

.site-footer { padding: 90px 0 25px; color: var(--white); background: #061f34; }
.site-footer__top { display: grid; grid-template-columns: 1fr 1.5fr; gap: 8vw; padding-bottom: 70px; }
.footer-brand { display: block; width: 150px; height: 145px; margin-bottom: 25px; padding: 10px; background: var(--white); }
.footer-brand img { width: 100%; height: 100%; object-fit: contain; }
.site-footer__identity p { color: rgba(255,255,255,.58); font-size: 12px; }
.site-footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.site-footer__nav div { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer__nav p { color: var(--cyan); font-family: Heebo, sans-serif; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.site-footer__nav a { padding: 6px 0; font-size: 13px; opacity: .75; }
.site-footer__nav a:hover { opacity: 1; }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.site-footer__bottom p { margin: 0; color: rgba(255,255,255,.45); font-family: Heebo, sans-serif; font-size: 9px; letter-spacing: .12em; }
.to-top { display: grid; width: 43px; height: 43px; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; transform: rotate(-90deg); }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 56px, 1000px); }
  .desktop-nav { display: none; }
  .site-header__nav-shell { padding-left: 7px; }
  .header-contact { margin-left: auto; }
  .drawer-toggle { display: flex; margin-left: 8px; }
  .home-hero__copy { width: 60vw; }
  .home-hero__visual { right: -5vw; width: 44vw; }
  .service-feature__media { height: 260px; }
  .statement-grid { grid-template-columns: 1fr; gap: 30px; }
  .statement-copy__body, .statement-copy .button { margin-left: 0; }
  .reasons-layout { gap: 6vw; }
  .contact-layout { grid-template-columns: .8fr 1.2fr; gap: 5vw; }
}

@media (max-width: 820px) {
  .eyebrow { font-size: 14px; letter-spacing: .16em; }
  :root { --shell: calc(100vw - 40px); --radius: 22px; }
  body { font-size: 15px; }
  .site-header { top: 12px; right: 12px; left: 12px; height: 66px; }
  .admin-bar .site-header { top: 58px; }
  .admin-bar .mobile-drawer__panel { padding-top: 166px; }
  .site-header.is-scrolled .site-header__inner { padding: 5px 6px 5px 12px; }
  .brand { width: 78px; height: 62px; }
  .brand img { width: 76px; height: 60px; }
  .site-header__nav-shell { height: 60px; padding: 5px; }
  .header-contact { height: 50px; margin-left: auto; padding: 0 9px 0 18px; }
  .header-contact svg { width: 31px; height: 31px; }
  .drawer-toggle { width: 50px; height: 50px; }
  .home-hero { min-height: 900px; padding: 128px 28px 45px; }
  .home-hero__copy { width: 100%; padding: 0; }
  .home-hero h1 { font-size: clamp(48px, 10vw, 76px); }
  .home-hero__visual { top: auto; right: 28px; bottom: 50px; width: 60vw; height: 440px; }
  .home-hero__scroll-orb { right: auto; bottom: 28px; left: -68px; width: 108px; height: 108px; }
  .home-hero__scroll-orb span { top: 21px; }
  .home-hero__scroll-orb i { width: 39px; height: 39px; margin-top: 20px; }
  .scroll-cue { display: none; }
  .service-feature-grid { grid-template-columns: 1fr; }
  .service-feature--offset, .service-feature--offset:hover { transform: none; }
  .service-feature__media { height: 420px; }
  .reasons-layout { grid-template-columns: 1fr; }
  .reasons-intro { position: static; }
  .flow-rail { grid-template-columns: repeat(2, 1fr); }
  .carrier-layout { grid-template-columns: 1fr; gap: 55px; }
  .home-company { grid-template-columns: 1fr; }
  .home-company__media { height: 420px; }
  .home-company__panel { padding: 70px 40px; }
  .page-hero { min-height: 700px; grid-template-columns: 1fr; padding: 130px 28px 40px; }
  .page-hero__copy { padding: 0; }
  .breadcrumbs { margin-bottom: 35px; }
  .page-hero__media { height: 300px; margin-top: 50px; }
  .service-index-grid, .support-grid, .news-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .service-index-card { min-height: 310px; padding: 30px; }
  .split-feature, .service-lede, .reason-detail, .message-layout { grid-template-columns: 1fr; }
  .split-feature__media { height: 480px; }
  .service-lede { gap: 35px; }
  .case-panel { grid-template-columns: 1fr; }
  .mini-flow { grid-template-columns: repeat(2, 1fr); }
  .reason-detail--reverse .reason-detail__copy { order: 1; }
  .reason-detail--reverse .reason-detail__media { order: 2; }
  .reason-detail__media { height: 420px; }
  .consultation-step { grid-template-columns: 85px 1fr; }
  .consultation-step > small { grid-column: 2; justify-self: start; }
  .prepare-box { grid-template-columns: 1fr; padding: 45px; }
  .prepare-box > p { grid-column: 1; }
  .profile-table > div { grid-template-columns: 180px 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; grid-template-columns: repeat(2, 1fr); gap: 0 18px; }
  .legal-toc p { grid-column: 1 / -1; }
  .single-hero { min-height: auto; grid-template-columns: 1fr; gap: 0; padding: 130px 28px 45px; }
  .single-hero__copy { max-width: none; padding: 0; }
  .single-hero h1 { font-size: clamp(30px, 5vw, 38px); }
  .single-hero__media { height: 320px; margin-top: 36px; }
  .site-footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100vw - 32px); --narrow: calc(100vw - 32px); }
  .section-space { padding-block: 90px; }
  .page-section { padding-block: 80px; }
  .eyebrow { margin-bottom: 18px; font-size: 13px; letter-spacing: .14em; }
  .section-heading h1, .section-heading h2 { font-size: 38px; }
  .home-services .section-heading h2 { font-size: clamp(28px, 8.7vw, 34px); }
  .home-news .section-heading h2 { font-size: clamp(28px, 8.7vw, 38px); }
  .header-contact span { display: none; }
  .header-contact { width: 50px; min-width: 50px; height: 50px; flex: 0 0 50px; justify-content: center; padding: 0; border-radius: 50%; color: var(--navy); background: var(--warm); }
  .header-contact svg { width: 19px; height: 19px; padding: 0; border-radius: 0; color: currentColor; background: transparent; }
  .home-hero { min-height: 790px; padding: 112px 20px 32px; }
  .home-hero h1 { margin-bottom: 22px; font-size: 44px; }
  .home-hero__lead br { display: none; }
  .home-hero__actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .home-hero__visual { right: 16px; bottom: 24px; width: 56vw; height: 300px; }
  .home-hero__image { border-radius: 130px 18px 90px 18px; }
  .home-hero__scroll-orb { bottom: 4px; left: -82px; width: 96px; height: 96px; }
  .home-hero__scroll-orb span { top: 17px; font-size: 8px; }
  .home-hero__scroll-orb i { width: 34px; height: 34px; margin-top: 19px; font-size: 21px; }
  .statement-copy h2 { font-size: 38px; }
  .statement-copy__body { grid-template-columns: 1fr; gap: 8px; }
  .service-feature-grid { margin-top: 50px; }
  .service-feature__media { height: 300px; }
  .reason-card { min-height: 420px; grid-template-columns: 58px 1fr; padding: 34px 22px; }
  .reason-card > span { font-size: 31px; }
  .reason-card h3 { font-size: 28px; }
  .reason-card--after { grid-template-columns: 46px 1fr; padding-inline: 18px; }
  .reason-card--after h3 { font-size: clamp(18px, 5.7vw, 24px); }
  .reason-copy-line { display: inline; }
  .reasons-intro .section-heading h2 { font-size: 34px; }
  .reason-detail__copy h2 { font-size: clamp(25px, 7.8vw, 32px); }
  .flow-rail { grid-template-columns: 1fr; }
  .flow-rail li { min-height: 210px; }
  .flow-rail li > div { margin-top: 42px; }
  .carrier-list a { min-height: 104px; grid-template-columns: minmax(0, 1fr) 108px 30px; gap: 12px; font-size: 12px; }
  .carrier-logo { width: 108px; height: 58px; }
  .carrier-logo img { max-width: 108px; max-height: 48px; }
  .carrier-list a:first-child .carrier-logo img { max-width: 96px; max-height: 54px; }
  .home-news__head { align-items: flex-start; flex-direction: column; }
  .news-slider { width: calc(100vw - 16px); margin-left: 16px; }
  .splide__arrows { display: none; }
  .home-company__media { height: 300px; }
  .home-company__panel { padding: 60px 24px; }
  .common-cta h2.common-cta__title--two-lines { font-size: clamp(20px, 6.15vw, 24px); }
  .common-cta__actions { align-items: center; flex-direction: column; }
  .common-cta__actions .button, .phone-link { width: 100%; max-width: 330px; }
  .common-cta h2 { font-size: 31px; }
  .page-hero { min-height: 630px; padding: 115px 20px 32px; }
  .page-hero h1 { font-size: 43px; }
  .page-hero__media { height: 245px; border-radius: 18px 90px 18px 55px; }
  .service-index-grid, .support-grid, .news-archive-grid { grid-template-columns: 1fr; }
  .service-index-card { min-height: 290px; }
  .split-feature__media { height: 340px; border-radius: 22px 110px 22px 22px; }
  .split-feature__copy h2 { font-size: clamp(28px, 7.7vw, 34px); }
  .split-feature__copy h2.service-scope-heading { font-size: clamp(21px, 6.4vw, 28px); }
  .prose h2.service-editor-heading { font-size: clamp(20px, 6.2vw, 31px); }
  .concern-list li { padding-right: 5px; font-size: 14px; }
  .case-panel li { grid-template-columns: 75px 1fr; gap: 10px; }
  .mini-flow { grid-template-columns: 1fr; }
  .mini-flow li { min-height: 200px; }
  .reason-detail-list { gap: 90px; }
  .reason-detail__media { height: 310px; }
  .message-title h2 { font-size: clamp(25px, 7.7vw, 30px); }
  .consultation-step { grid-template-columns: 58px 1fr; gap: 18px; }
  .consultation-step > span { width: 58px; height: 58px; }
  .consultation-step h2 { font-size: 24px; }
  .prepare-box { padding: 28px 22px; }
  .prepare-box h2 { font-size: 34px; }
  .profile-table > div { grid-template-columns: 1fr; gap: 7px; }
  .office-grid { grid-template-columns: 1fr; }
  .office-card { min-height: 280px; padding: 30px; }
  .policy-link-panel { padding: 42px 22px; }
  .policy-link-panel h2 { font-size: 34px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--wide { grid-column: 1; }
  .contact-form-panel { padding: 28px 17px; }
  .form-confirm dl > div { grid-template-columns: 1fr; gap: 7px; }
  .form-confirm__actions { align-items: stretch; flex-direction: column-reverse; }
  .thanks-panel { padding: 50px 22px; }
  .thanks-panel h2 { font-size: 36px; }
  .legal-toc { grid-template-columns: 1fr; }
  .sitemap-group { grid-template-columns: 1fr; }
  .sitemap-group .eyebrow { grid-column: 1; }
  .single-hero { min-height: auto; padding: 112px 20px 35px; }
  .single-hero h1 { font-size: clamp(25px, 7vw, 30px); letter-spacing: -.018em; line-height: 1.55; }
  .single-hero__media { height: 250px; margin-top: 30px; border-radius: 18px 90px 18px 18px; }
  .single-layout { grid-template-columns: 1fr; padding-block: 64px 72px; }
  .single-share { position: static; text-align: left; }
  .post-nav { grid-template-columns: 1fr; text-align: center; }
  .post-nav > div:last-child { text-align: center; }
  .site-footer__nav { grid-template-columns: 1fr 1fr; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
}

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