:root {
  --navy: #082e63;
  --deep: #041c3d;
  --blue: #0868c9;
  --orange: #f18700;
  --pale: #f3f7fc;
  --paper: #fcfdfe;
  --ink: #102a4c;
  --muted: #66758a;
  --line: rgba(8, 46, 99, .16);
  --white: #ffffff;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --sans: "Noto Sans JP", "BIZ UDPGothic", "Yu Gothic UI", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --en: Georgia, "Times New Roman", serif;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}
.reveal { opacity: 1; transform: none; transition: none; }
body.is-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, .lead, .button, summary {
  word-break: auto-phrase;
  text-wrap: pretty;
}
h1, h2, h3 { margin: 0; color: var(--deep); font-family: var(--serif); font-weight: 600; line-height: 1.35; }
p { margin: 0; }
.l-container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.l-section { position: relative; padding: 104px 0; overflow: hidden; }
.l-section--pale { background: var(--pale); }
.l-section--deep { color: var(--white); background: var(--deep); }
.l-section--deep h2, .l-section--deep h3 { color: var(--white); }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { width: 34px; height: 1px; background: currentColor; content: ""; }
.l-section--deep .eyebrow { color: #80c4ff; }
.section-title { font-size: clamp(32px, 3.5vw, 44px); }
.section-lead { max-width: 660px; margin-top: 24px; color: var(--muted); font-size: 17px; }
.l-section--deep .section-lead { color: rgba(255,255,255,.72); }
.button { display: inline-flex; min-height: 56px; align-items: center; justify-content: center; gap: 12px; padding: 0 28px; border: 1px solid transparent; text-decoration: none; font-size: 15px; font-weight: 700; transition: transform .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--white); background: var(--orange); box-shadow: 0 14px 30px rgba(241,135,0,.2); }
.button--outline { border-color: var(--navy); color: var(--navy); background: rgba(255,255,255,.78); }
.button--white { color: var(--deep); background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--blue); text-decoration: none; font-weight: 700; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }
.u-orange { color: var(--orange); }
.u-blue { color: var(--blue); }
.u-note { color: var(--muted); font-size: 13px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(8,46,99,.09); background: rgba(252,253,254,.92); backdrop-filter: blur(14px); }
.site-header__inner { width: min(calc(100% - 40px), 1240px); min-height: 88px; margin-inline: auto; display: flex; align-items: center; gap: 28px; }
.site-logo { flex: 0 0 auto; }
.site-logo img { width: 132px; height: 68px; object-fit: contain; }
.site-nav { margin-left: auto; }
.site-nav__list { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.site-nav a { position: relative; text-decoration: none; font-size: 13px; font-weight: 700; }
.site-nav a:not(.button)::after { position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: linear-gradient(90deg,var(--blue),var(--orange)); content: ""; transition: right .25s ease; }
.site-nav a:not(.button):hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.site-nav .button { min-height: 46px; padding-inline: 18px; color: #fff; }
.menu-button { display: none; width: 46px; height: 46px; margin-left: auto; border: 1px solid var(--line); background: #fff; }
.menu-button span, .menu-button::before, .menu-button::after { display: block; width: 20px; height: 1px; margin: 5px auto; background: var(--deep); content: ""; transition: .25s ease; }
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

/* Hero — fv-87 adapted */
.hero { position: relative; width: 100%; min-height: 760px; overflow: hidden; background: radial-gradient(circle at 82% 22%,rgba(8,104,201,.09),transparent 24%), linear-gradient(120deg,#fff 0 48%,#f7fbff 48% 100%); }
.hero::before { position: absolute; inset: 0; background: url("../src/deco-circuit.png") 88% 54%/330px auto no-repeat; opacity: .07; mix-blend-mode: multiply; content: ""; }
.hero-inner { position: relative; z-index: 1; width: min(calc(100% - 48px), 1360px); min-height: 760px; margin-inline: auto; display: grid; grid-template-columns: 44% 56%; align-items: center; }
.hero-copy { position: relative; z-index: 4; padding: 92px 0 88px; }
.hero-limit { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px; padding: 9px 14px; border: 1px solid var(--line); background: rgba(255,255,255,.9); color: var(--navy); font-size: 13px; font-weight: 700; }
.hero-limit i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(241,135,0,.12); }
.hero h1 { font-size: clamp(48px, 5.1vw, 68px); letter-spacing: -.02em; }
.hero h1 span { display: block; white-space: nowrap; }
.hero h1 .hero-mark { position: relative; display: inline-block; color: var(--blue); }
.hero h1 .hero-mark::after { position: absolute; left: 0; right: -4%; bottom: .02em; height: 8px; border-bottom: 3px solid var(--orange); border-radius: 50%; content: ""; transform: rotate(-1deg); }
.hero-sub { max-width: 570px; margin-top: 28px; color: var(--ink); font-size: 18px; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note { margin-top: 18px; color: var(--muted); font-size: 13px; }
.hero-visual { position: relative; align-self: stretch; min-width: 0; }
.hero-photo { position: absolute; inset: 46px -6vw 50px 0; border-radius: 46% 12% 42% 18% / 16% 28% 18% 26%; overflow: hidden; box-shadow: 0 34px 64px rgba(4,28,61,.12); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-photo::after { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(255,255,255,.2),transparent 26%); content: ""; }
.hero-sticker { position: absolute; z-index: 4; padding: 18px 16px; background: #fff; box-shadow: 0 18px 40px rgba(4,28,61,.14); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-align: center; }
.hero-sticker b { display: block; color: var(--blue); font-family: var(--en); font-size: 28px; line-height: 1.1; }
.hero-sticker--it { left: 1%; bottom: 94px; transform: rotate(-4deg); }
.hero-sticker--web { right: 4%; top: 112px; transform: rotate(4deg); }
.hero-sticker--photo { right: 7%; bottom: 74px; transform: rotate(-2deg); }
.hero-cutout { position: absolute; z-index: 3; filter: drop-shadow(0 20px 28px rgba(4,28,61,.18)); animation: float 7s ease-in-out infinite; }
.hero-cutout--camera { width: 210px; right: 2%; bottom: 88px; }
.hero-cutout--phone { width: 118px; left: -3%; top: 98px; animation-delay: -2s; }
.hero-cutout--router { width: 180px; left: 8%; bottom: 52px; animation-delay: -4s; }
@keyframes float { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-9px) rotate(.8deg)} }
.service-ribbon { position: absolute; z-index: 5; left: 50%; bottom: 0; width: min(calc(100% - 48px),1120px); transform: translate(-50%,48%); display: grid; grid-template-columns: 1.45fr 1fr 1fr; background: #fff; box-shadow: 0 22px 54px rgba(4,28,61,.12); }
.service-ribbon a { position: relative; min-height: 116px; padding: 22px 26px; border-right: 1px solid var(--line); text-decoration: none; overflow: hidden; }
.service-ribbon a:last-child { border-right: 0; }
.service-ribbon a:first-child { border-top: 4px solid var(--blue); }
.service-ribbon a:nth-child(2) { border-top: 4px solid var(--orange); }
.service-ribbon a:nth-child(3) { border-top: 4px solid #0d8d70; }
.service-ribbon small { display: block; color: var(--muted); font-size: 10px; letter-spacing: .12em; }
.service-ribbon strong { display: block; margin-top: 4px; color: var(--deep); font-family: var(--serif); font-size: 19px; }
.service-ribbon span { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; }

/* Pain */
.pain { padding-top: 156px; }
.pain-layout { display: grid; grid-template-columns: 34% 66%; gap: 70px; }
.pain-sticky { align-self: start; position: sticky; top: 130px; }
.pain-question { margin-top: 28px; color: rgba(255,255,255,.62); font-family: var(--serif); font-size: 24px; }
.pain-list { border-top: 1px solid rgba(255,255,255,.18); }
.pain-item { display: grid; grid-template-columns: 80px 1fr; gap: 26px; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.pain-item__num { color: var(--orange); font-family: var(--en); font-size: 34px; }
.pain-item h3 { font-size: 25px; }
.pain-item p { margin-top: 10px; color: rgba(255,255,255,.68); }

/* Promise */
.promise-layout { display: grid; grid-template-columns: 42% 58%; align-items: center; gap: 72px; }
.promise-image { position: relative; min-height: 560px; }
.promise-image__main { position: absolute; inset: 0 12% 8% 0; width: 88%; height: 92%; object-fit: cover; border-radius: 0 96px 0 0; }
.promise-image__sub { position: absolute; right: 0; bottom: 0; width: 48%; border: 12px solid var(--paper); }
.promise-copy { position: relative; }
.promise-copy::before { position: absolute; top: -90px; right: -90px; width: 210px; height: 210px; background: url("../src/deco-a-curve.png") center/contain no-repeat; opacity: .1; content: ""; }
.promise-copy blockquote { margin: 36px 0 0; padding-left: 24px; border-left: 3px solid var(--orange); color: var(--navy); font-family: var(--serif); font-size: 24px; line-height: 1.8; }
.promise-copy p { margin-top: 26px; color: var(--muted); }

/* Numbers */
.numbers { background: var(--deep); }
.numbers-layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: 70px; align-items: end; }
.numbers-primary { padding: 38px 0 20px; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.numbers-primary__value { color: #fff; font-family: var(--en); font-size: clamp(96px,13vw,180px); line-height: .86; }
.numbers-primary__value span { color: var(--orange); font-size: .38em; }
.numbers-primary p { margin-top: 24px; color: rgba(255,255,255,.68); }
.numbers-grid { display: grid; grid-template-columns: 1fr 1fr; }
.number-cell { min-height: 180px; padding: 26px; border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.number-cell:nth-child(n+3) { border-bottom: 1px solid rgba(255,255,255,.18); }
.number-cell b { display: block; color: #fff; font-family: var(--en); font-size: 46px; line-height: 1.1; }
.number-cell b span { color: var(--orange); font-size: .46em; }
.number-cell p { margin-top: 14px; color: rgba(255,255,255,.65); font-size: 14px; }

/* Cases */
.case-head { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 60px; margin-bottom: 54px; }
.case-story { display: grid; grid-template-columns: 54% 46%; min-height: 440px; margin-bottom: 38px; background: #fff; box-shadow: 0 28px 70px rgba(4,28,61,.09); }
.case-story:nth-child(even) { grid-template-columns: 46% 54%; }
.case-story:nth-child(even) .case-story__image { order: 2; }
.case-story__image { width: 100%; height: 100%; object-fit: cover; }
.case-story__body { padding: 54px; }
.case-story__tag { color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.case-story h3 { margin-top: 14px; font-size: 27px; }
.case-steps { margin-top: 30px; }
.case-step { display: grid; grid-template-columns: 74px 1fr; gap: 18px; padding: 16px 0; border-top: 1px solid var(--line); }
.case-step dt { color: var(--orange); font-family: var(--en); font-size: 12px; font-weight: 700; letter-spacing: .1em; }
.case-step dd { margin: 0; color: var(--muted); font-size: 14px; }

/* Services */
.services-index { margin-top: 54px; border-top: 1px solid var(--line); }
.service-row { position: relative; display: grid; grid-template-columns: 74px 1.15fr 1.5fr 190px; gap: 28px; align-items: center; min-height: 174px; padding: 26px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.service-row__num { color: var(--orange); font-family: var(--en); font-size: 24px; }
.service-row h3 { font-size: 27px; }
.service-row p { color: var(--muted); font-size: 14px; }
.service-row img { width: 190px; height: 112px; object-fit: cover; clip-path: polygon(4% 0,100% 4%,96% 100%,0 94%); transition: transform .35s ease; }
.service-row:hover img { transform: scale(1.03) rotate(-1deg); }
.service-row--primary { min-height: 224px; background: linear-gradient(90deg,rgba(8,104,201,.06),transparent); }
.service-row--primary h3 { font-size: 33px; }
.service-guard { margin-top: 28px; padding: 20px 24px; border-left: 3px solid var(--orange); background: rgba(241,135,0,.07); color: var(--muted); font-size: 14px; }

/* Pricing */
.pricing-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; }
.pricing-table { margin-top: 54px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan { position: relative; padding: 38px 30px; border-right: 1px solid var(--line); background: rgba(255,255,255,.6); }
.plan:last-child { border-right: 0; }
.plan--recommended { background: #fff; box-shadow: 0 24px 60px rgba(4,28,61,.12); transform: translateY(-14px); }
.plan__label { color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.plan__name { margin-top: 10px; font-family: var(--serif); font-size: 26px; }
.plan__price { margin: 24px 0; color: var(--deep); font-family: var(--en); font-size: 48px; line-height: 1; }
.plan__price small { color: var(--muted); font-family: var(--sans); font-size: 12px; }
.plan ul { margin: 26px 0 0; padding: 0; list-style: none; }
.plan li { padding: 11px 0 11px 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.plan li::before { float: left; margin-left: -20px; color: var(--blue); content: "✓"; }
.pricing-note { margin-top: 26px; color: var(--muted); font-size: 13px; }

/* Process */
.process-line { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 58px; }
.process-line::before { position: absolute; top: 39px; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg,var(--blue),var(--orange)); content: ""; }
.process-step { position: relative; padding: 0 24px; }
.process-step__num { position: relative; z-index: 1; display: grid; width: 78px; height: 78px; place-items: center; border: 1px solid var(--blue); border-radius: 50%; background: var(--paper); color: var(--blue); font-family: var(--en); font-size: 25px; }
.process-step h3 { margin-top: 24px; font-size: 22px; }
.process-step p { margin-top: 12px; color: var(--muted); font-size: 14px; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 34% 66%; gap: 70px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; padding: 26px 56px 26px 46px; cursor: pointer; list-style: none; color: var(--deep); font-family: var(--serif); font-size: 19px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { position: absolute; left: 0; color: var(--blue); font-family: var(--en); content: "Q"; }
.faq-item summary::after { position: absolute; right: 8px; top: 50%; color: var(--orange); content: "+"; transform: translateY(-50%); font-size: 25px; }
.faq-item[open] summary::after { content: "−"; }
.faq-item__answer { padding: 0 46px 28px; color: var(--muted); font-size: 14px; }

/* News */
.news-layout { display: grid; grid-template-columns: 28% 72%; gap: 70px; }
.news-list { border-top: 1px solid var(--line); }
.news-item { display: grid; grid-template-columns: 120px 160px 1fr; gap: 24px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.news-item time { color: var(--muted); font-family: var(--en); font-size: 13px; }
.news-item span { color: var(--blue); font-size: 11px; font-weight: 700; }
.news-item strong { font-family: var(--serif); font-size: 18px; }

/* CTA / Footer */
.final-cta { position: relative; padding: 108px 0; overflow: hidden; color: #fff; background: var(--deep); }
.final-cta::before { position: absolute; inset: 0; background: url("../src/section-bg-3.jpg") center/cover; opacity: .12; content: ""; mix-blend-mode: screen; }
.final-cta__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.final-cta h2 { color: #fff; font-size: clamp(34px,4vw,52px); }
.final-cta p { margin-top: 24px; color: rgba(255,255,255,.7); }
.final-cta__actions { display: grid; gap: 12px; }
.final-cta__tel { display: block; margin-top: 8px; color: #fff; text-align: center; text-decoration: none; font-family: var(--en); font-size: 25px; }
.site-footer { padding: 64px 0 28px; color: rgba(255,255,255,.72); background: #02152d; }
.site-footer__grid { display: grid; grid-template-columns: 1.2fr repeat(3,1fr); gap: 44px; }
.site-footer__logo { width: 150px; padding: 8px; background: #fff; }
.site-footer__about { margin-top: 18px; font-size: 13px; }
.site-footer h2 { color: #fff; font-family: var(--sans); font-size: 12px; letter-spacing: .12em; }
.site-footer ul { margin: 16px 0 0; padding: 0; list-style: none; }
.site-footer li { margin-top: 8px; }
.site-footer a { text-decoration: none; font-size: 13px; }
.site-footer a:hover { color: #fff; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); font-size: 11px; }

/* Subpages */
.page-hero { position: relative; min-height: 410px; display: grid; align-items: center; overflow: hidden; background: linear-gradient(110deg,#fff 0 55%,#eaf3fc 55%); }
.page-hero::after { position: absolute; right: -60px; top: -80px; width: 440px; height: 440px; background: url("../src/deco-a-curve.png") center/contain no-repeat; opacity: .12; content: ""; }
.page-hero__inner { position: relative; z-index: 1; padding: 72px 0; }
.page-hero h1 { font-size: clamp(38px,5vw,58px); }
.page-hero p { max-width: 660px; margin-top: 22px; color: var(--muted); }
.breadcrumbs { margin-bottom: 26px; color: var(--muted); font-size: 12px; }
.breadcrumbs a { text-decoration: none; }
.content-grid { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 64px; }
.prose h2 { margin-top: 64px; padding-bottom: 16px; border-bottom: 1px solid var(--line); font-size: 34px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 38px; font-size: 24px; }
.prose p, .prose ul { margin-top: 20px; color: var(--muted); }
.prose li { margin-top: 8px; }
.prose img { width: 100%; margin-top: 32px; aspect-ratio: 16/9; object-fit: cover; }
.notice { margin-top: 28px; padding: 24px; border-left: 3px solid var(--orange); background: rgba(241,135,0,.07); color: var(--muted); }
.info-table { width: 100%; margin-top: 34px; border-collapse: collapse; }
.info-table th, .info-table td { padding: 18px 14px; border-bottom: 1px solid var(--line); vertical-align: top; text-align: left; }
.info-table th { width: 180px; color: var(--deep); font-size: 13px; }
.info-table td { color: var(--muted); }
.sidebar { align-self: start; position: sticky; top: 118px; }
.side-box { margin-bottom: 24px; padding: 24px; border: 1px solid var(--line); background: #fff; }
.side-box h2 { font-family: var(--sans); font-size: 13px; letter-spacing: .1em; }
.side-box ul { margin: 14px 0 0; padding: 0; list-style: none; }
.side-box li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.side-box a { text-decoration: none; font-size: 13px; }
.author-box { display: grid; grid-template-columns: 92px 1fr; gap: 22px; margin-top: 64px; padding: 28px; background: var(--pale); }
.author-box img { width: 92px; height: 92px; margin: 0; border-radius: 50%; object-fit: cover; }
.author-box h2 { margin: 0; padding: 0; border: 0; font-family: var(--sans); font-size: 17px; }
.author-box p { margin-top: 8px; font-size: 13px; }
.post-meta { display: flex; gap: 18px; margin-top: 22px; color: var(--muted); font-size: 12px; }

/* Forms */
.contact-layout { display: grid; grid-template-columns: 38% 62%; gap: 70px; }
.contact-cards { display: grid; gap: 16px; margin-top: 32px; }
.contact-card { padding: 24px; border: 1px solid var(--line); background: #fff; }
.contact-card small { display: block; color: var(--muted); }
.contact-card a { display: block; margin-top: 4px; color: var(--blue); text-decoration: none; font-size: 20px; font-weight: 700; }
.contact-form { padding: 38px; background: #fff; box-shadow: 0 24px 70px rgba(4,28,61,.09); }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 700; }
.form-row input, .form-row select, .form-row textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; background: var(--paper); padding: 14px; color: var(--ink); }
.form-row textarea { min-height: 180px; resize: vertical; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; margin: 20px 0; color: var(--muted); font-size: 13px; }
.contact-form button { width: 100%; border: 0; cursor: pointer; }

@media (max-width: 980px) {
  .site-header__inner { min-height: 72px; }
  .site-logo img { width: 108px; height: 56px; }
  .menu-button { display: block; }
  .site-nav { position: fixed; inset: 72px 0 auto 0; max-height: 0; overflow: hidden; background: rgba(252,253,254,.98); transition: max-height .35s ease; }
  .site-nav.is-open { height: calc(100vh - 72px); max-height: calc(100vh - 72px); overflow: auto; border-top: 1px solid var(--line); background: var(--paper); }
  .site-nav__list { display: block; padding: 24px; }
  .site-nav li { border-bottom: 1px solid var(--line); }
  .site-nav a { display: block; padding: 15px 4px; }
  .site-nav .button { margin-top: 16px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { padding: 78px 0 28px; }
  .hero-visual { min-height: 520px; }
  .hero-photo { inset: 10px 0 54px 8%; }
  .service-ribbon { position: relative; left: auto; bottom: auto; width: min(calc(100% - 48px),1120px); margin: -18px auto 0; transform: none; }
  .pain { padding-top: 104px; }
  .pain-layout, .promise-layout, .numbers-layout, .case-head, .pricing-head, .faq-layout, .news-layout, .final-cta__inner, .contact-layout { grid-template-columns: 1fr; }
  .pain-sticky { position: static; }
  .case-story, .case-story:nth-child(even) { grid-template-columns: 1fr; }
  .case-story:nth-child(even) .case-story__image { order: 0; }
  .case-story__image { height: 320px; }
  .service-row { grid-template-columns: 54px 1fr 160px; }
  .service-row p { grid-column: 2/3; }
  .pricing-table { grid-template-columns: 1fr; }
  .plan { border-right: 0; border-bottom: 1px solid var(--line); }
  .plan--recommended { transform: none; }
  .process-line { grid-template-columns: 1fr 1fr; gap: 44px 0; }
  .process-line::before { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .l-container { width: min(calc(100% - 32px), var(--max)); }
  .l-section { padding: 68px 0; }
  .section-title { font-size: 30px; }
  .hero { min-height: auto; }
  .hero-inner { width: min(calc(100% - 32px),1360px); min-height: auto; }
  .hero h1 { font-size: 38px; }
  .hero h1 span { white-space: normal; }
  .hero-sub { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-visual { min-height: 390px; }
  .hero-photo { inset: 8px -18px 42px 0; border-radius: 34% 8% 30% 12% / 12% 18% 12% 18%; }
  .hero-cutout--camera { width: 140px; right: -2%; bottom: 64px; }
  .hero-cutout--phone { width: 78px; left: -3%; top: 52px; }
  .hero-cutout--router { width: 124px; left: 5%; bottom: 28px; }
  .hero-sticker { padding: 10px; }
  .hero-sticker b { font-size: 18px; }
  .hero-sticker--it { bottom: 36px; }
  .hero-sticker--web { top: 30px; }
  .hero-sticker--photo { bottom: 28px; }
  .service-ribbon { width: calc(100% - 32px); grid-template-columns: 1fr; }
  .service-ribbon a { min-height: 98px; border-right: 0; border-bottom: 1px solid var(--line); }
  .pain { padding-top: 84px; }
  .pain-item { grid-template-columns: 54px 1fr; gap: 14px; }
  .promise-image { min-height: 420px; }
  .promise-copy blockquote { font-size: 20px; }
  .numbers-primary__value { font-size: 104px; }
  .numbers-grid { grid-template-columns: 1fr; }
  .number-cell { min-height: 142px; border-right: 1px solid rgba(255,255,255,.18); }
  .case-story__image { height: 240px; }
  .case-story__body { padding: 30px 24px; }
  .service-row, .service-row--primary { grid-template-columns: 46px 1fr; min-height: auto; }
  .service-row p, .service-row img { grid-column: 2/3; }
  .service-row img { width: 100%; height: 170px; margin-top: 8px; }
  .process-line { grid-template-columns: 1fr; }
  .faq-layout { gap: 38px; }
  .faq-item summary { padding-left: 36px; font-size: 17px; }
  .faq-item__answer { padding-left: 36px; }
  .news-item { grid-template-columns: 90px 1fr; gap: 10px 18px; }
  .news-item strong { grid-column: 1/-1; }
  .final-cta { padding: 72px 0; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { display: block; }
  .page-hero { min-height: 330px; }
  .page-hero h1 { font-size: 38px; }
  .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { padding-bottom: 4px; border-bottom: 0; }
  .info-table td { padding-top: 4px; }
  .contact-form { padding: 26px 20px; }
  .author-box { grid-template-columns: 1fr; }
}

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

/* =========================================================
   ALISE dispatch concept — homepage v3
   The visual language turns ongoing IT support into a calm
   operations desk: channels, files, routes, and support logs.
   ========================================================= */

.dispatch-hero {
  --signal: #ff9418;
  --aqua: #68d8ff;
  position: relative;
  min-height: calc(100svh - 88px);
  height: clamp(720px, calc(100svh - 88px), 920px);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #03142d;
}
.dispatch-photo { position: absolute; inset: 0; z-index: -4; }
.dispatch-photo picture, .dispatch-photo img { width: 100%; height: 100%; }
.dispatch-photo img { object-fit: cover; object-position: center; filter: saturate(.75) contrast(1.04) brightness(.55); transform: scale(1.025); animation: dispatch-drift 18s ease-in-out infinite alternate; }
.dispatch-hero::before { position: absolute; inset: 0; z-index: -3; background: linear-gradient(90deg,rgba(3,16,37,.97) 0 43%,rgba(3,20,45,.82) 58%,rgba(3,20,45,.32) 100%),linear-gradient(180deg,rgba(1,13,29,.2),rgba(1,13,29,.72)); content: ""; }
.dispatch-hero::after { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .15; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E"); content: ""; }
.dispatch-grid { position: absolute; z-index: -2; inset: 0; opacity: .28; background-image: linear-gradient(rgba(104,216,255,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(104,216,255,.12) 1px,transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(90deg,transparent 25%,#000 62%); }
.dispatch-hud { position: absolute; z-index: 3; top: 27px; left: 4vw; right: 4vw; display: flex; justify-content: space-between; color: rgba(255,255,255,.58); font-family: ui-monospace,Consolas,monospace; font-size: 10px; letter-spacing: .22em; }
.dispatch-hud span:last-child { display: flex; align-items: center; gap: 10px; }
.dispatch-hud i, .console-foot i { width: 7px; height: 7px; border-radius: 50%; background: #48f6b2; box-shadow: 0 0 0 5px rgba(72,246,178,.12),0 0 20px rgba(72,246,178,.8); }
.dispatch-shell { width: min(calc(100% - 80px),1240px); height: 100%; margin-inline: auto; display: grid; grid-template-columns: minmax(0,1.04fr) minmax(480px,.96fr); gap: clamp(38px,6vw,96px); align-items: center; }
.dispatch-copy { position: relative; z-index: 2; padding-top: 48px; }
.dispatch-kicker { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; color: rgba(255,255,255,.68); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.dispatch-kicker::before { width: 42px; height: 1px; background: var(--signal); box-shadow: 0 0 16px rgba(255,148,24,.8); content: ""; }
.dispatch-kicker span { color: var(--signal); }
.dispatch-hero h1 { color: #fff; font-family: var(--sans); font-size: clamp(48px,5.6vw,78px); font-weight: 800; line-height: 1.13; letter-spacing: -.035em; text-shadow: 0 18px 60px rgba(0,0,0,.3); }
.dispatch-hero h1 em { position: relative; display: inline-block; color: #fff; font-style: normal; }
.dispatch-hero h1 em::after { position: absolute; left: 0; right: -5%; bottom: -.06em; height: 9px; border-bottom: 3px solid var(--signal); border-radius: 50%; filter: drop-shadow(0 0 10px rgba(255,148,24,.7)); transform: rotate(-1.5deg); content: ""; }
.dispatch-lead { max-width: 560px; margin-top: 28px; color: rgba(255,255,255,.76); font-size: 16px; line-height: 2; }
.dispatch-actions { display: flex; align-items: center; gap: 22px; margin-top: 34px; }
.button--signal { position: relative; min-height: 60px; padding-inline: 28px; overflow: hidden; color: #1e1000; background: linear-gradient(90deg,#ff8611,#ffb12a); clip-path: polygon(0 0,calc(100% - 14px) 0,100% 14px,100% 100%,14px 100%,0 calc(100% - 14px)); box-shadow: 0 16px 42px rgba(255,129,0,.24); }
.button--signal::before { position: absolute; inset: 0; background: linear-gradient(110deg,transparent 36%,rgba(255,255,255,.7) 48%,transparent 60%); transform: translateX(-130%); animation: signal-sweep 3.8s ease-in-out infinite; content: ""; }
.button--signal span { position: relative; font-size: 19px; }
.dispatch-tel { color: #fff; text-decoration: none; font-family: ui-monospace,Consolas,monospace; font-size: 12px; letter-spacing: .08em; border-bottom: 1px solid rgba(255,255,255,.38); }
.dispatch-note { margin-top: 16px; color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: .06em; }
.dispatch-console { position: relative; margin-top: 42px; padding: 24px; border: 1px solid rgba(104,216,255,.28); background: linear-gradient(145deg,rgba(6,34,63,.8),rgba(3,18,38,.68)); backdrop-filter: blur(18px); box-shadow: inset 0 0 46px rgba(104,216,255,.06),0 34px 76px rgba(0,0,0,.32); clip-path: polygon(0 0,calc(100% - 24px) 0,100% 24px,100% 100%,24px 100%,0 calc(100% - 24px)); }
.dispatch-console::before { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg,transparent 0 43%,rgba(104,216,255,.11) 49%,transparent 55%); transform: translateX(-80%); animation: console-scan 5s ease-in-out infinite; content: ""; }
.console-top { display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; align-items: end; padding: 0 3px 20px; border-bottom: 1px solid rgba(104,216,255,.22); }
.console-top span { font-family: ui-monospace,Consolas,monospace; font-size: 10px; letter-spacing: .22em; color: var(--aqua); }
.console-top b { grid-row: 1/3; grid-column: 2; color: transparent; -webkit-text-stroke: 1px var(--aqua); font-family: var(--en); font-size: 96px; line-height: .75; opacity: .75; }
.console-top small { color: rgba(255,255,255,.42); font-family: ui-monospace,Consolas,monospace; font-size: 9px; letter-spacing: .18em; }
.channel-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; margin: 18px 0 0; padding: 0; list-style: none; }
.channel-grid li { position: relative; min-height: 84px; padding: 12px 10px; overflow: hidden; border: 1px solid rgba(104,216,255,.17); background: rgba(255,255,255,.035); }
.channel-grid li::after { position: absolute; left: 0; right: 68%; bottom: 0; height: 2px; background: var(--aqua); box-shadow: 0 0 12px var(--aqua); content: ""; }
.channel-grid li.is-main { background: rgba(104,216,255,.11); border-color: rgba(104,216,255,.52); }
.channel-grid li.is-open { border-color: rgba(255,148,24,.38); }
.channel-grid li.is-open::after { right: 22%; background: var(--signal); box-shadow: 0 0 12px var(--signal); animation: open-channel 1.8s ease-in-out infinite; }
.channel-grid span { display: block; color: rgba(255,255,255,.32); font-family: ui-monospace,Consolas,monospace; font-size: 9px; }
.channel-grid b { display: block; margin-top: 9px; color: #fff; font-size: 12px; }
.channel-grid small { display: block; color: rgba(255,255,255,.45); font-size: 9px; }
.console-foot { display: flex; justify-content: space-between; gap: 16px; margin-top: 18px; color: rgba(255,255,255,.7); font-size: 10px; }
.console-foot span { display: flex; align-items: center; gap: 10px; }
.console-foot small { color: rgba(255,255,255,.35); }
.dispatch-route { position: absolute; z-index: -1; right: -6%; bottom: 5%; width: 56%; height: 40%; transform: rotate(-8deg); opacity: .55; }
.dispatch-route::before,.dispatch-route::after,.dispatch-route i { position: absolute; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg,transparent,var(--aqua),transparent); box-shadow: 0 0 18px rgba(104,216,255,.8); content: ""; animation: route-pulse 3.4s linear infinite; }
.dispatch-route::before { top: 12%; }.dispatch-route i:nth-child(1) { top: 38%; animation-delay: -1.2s; }.dispatch-route i:nth-child(2) { top: 64%; animation-delay: -2.1s; }.dispatch-route i:nth-child(3) { top: 84%; animation-delay: -.5s; }.dispatch-route::after { top: 96%; animation-delay: -2.8s; }
.dispatch-scroll { position: absolute; z-index: 3; left: 4vw; bottom: 24px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.5); text-decoration: none; font-family: ui-monospace,Consolas,monospace; font-size: 9px; letter-spacing: .22em; }
.dispatch-scroll i { width: 46px; height: 1px; background: rgba(255,255,255,.38); overflow: hidden; }
@keyframes dispatch-drift { to { transform: scale(1.07) translateX(-1%); } }
@keyframes signal-sweep { 0%,55%{transform:translateX(-130%)} 82%,100%{transform:translateX(130%)} }
@keyframes console-scan { 0%,45%{transform:translateX(-80%)} 80%,100%{transform:translateX(80%)} }
@keyframes open-channel { 50%{opacity:.35;right:58%} }
@keyframes route-pulse { from{clip-path:inset(0 100% 0 0);opacity:.2} 45%{clip-path:inset(0 0 0 0);opacity:1} to{clip-path:inset(0 0 0 100%);opacity:.1} }

/* Intro: open tabs + unsent memo */
.unsent-intro { position: relative; padding: 126px 0 150px; overflow: hidden; background: #eef2f5; }
.unsent-intro::before { position: absolute; inset: auto -8% -34% 15%; height: 70%; background: radial-gradient(ellipse,rgba(8,104,201,.11),transparent 65%); content: ""; }
.unsent-head,.evidence-head,.switch-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; }
.unsent-head h2,.evidence-head h2,.switch-head h2 { font-size: clamp(34px,4.4vw,54px); }
.unsent-head > p,.evidence-head > p,.switch-head > p { color: var(--muted); font-size: 14px; }
.unsent-desk { position: relative; min-height: 540px; margin-top: 58px; }
.browser-stack { position: absolute; left: 0; top: 18px; width: min(600px,62%); overflow: hidden; border: 1px solid #cfd8df; border-radius: 16px; background: rgba(255,255,255,.82); box-shadow: 0 28px 70px -46px rgba(16,42,76,.4); backdrop-filter: blur(14px); }
.browser-bar { height: 46px; display: flex; align-items: center; gap: 7px; padding: 0 15px; border-bottom: 1px solid #d9e0e5; background: #f7f9fa; }
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: #0b6bc1; }.browser-bar i:first-child{background:#ee765f}.browser-bar i:nth-child(2){background:#f0b94f}
.browser-bar span { margin-left: 8px; color: #83909b; font-family: ui-monospace,Consolas,monospace; font-size: 9px; letter-spacing: .12em; }
.search-tab { display: grid; grid-template-columns: 38px 1fr auto; gap: 14px; align-items: center; margin: 12px 16px; padding: 15px; border: 1px solid #d9e0e5; background: #fff; }
.search-tab > span { color: #9ba7b0; font-family: ui-monospace,Consolas,monospace; font-size: 10px; }.search-tab b{font-size:14px}.search-tab small{color:var(--blue);font-family:ui-monospace,Consolas,monospace;font-size:9px;letter-spacing:.12em}
.unsent-memo { position: absolute; z-index: 2; top: 88px; right: 1%; width: min(490px,48%); min-height: 330px; padding: 42px; border: 1px solid #ded5c4; background: #fffdf7; box-shadow: 0 38px 80px -46px rgba(16,42,76,.38); transform: rotate(1.2deg); }
.unsent-memo::before { position: absolute; inset: 75px 35px 32px; background: repeating-linear-gradient(180deg,transparent 0 38px,#e4ddd0 39px 40px); content: ""; }
.unsent-memo > span { position: relative; color: #a88754; font-family: ui-monospace,Consolas,monospace; font-size: 10px; letter-spacing: .18em; }
.unsent-memo p { position: relative; margin-top: 30px; color: #24364d; font-family: var(--serif); font-size: clamp(21px,2.6vw,30px); font-weight: 600; line-height: 1.9; }
.unsent-memo p span,.unsent-memo mark { display: block; }
.unsent-memo mark { width: max-content; max-width: 100%; color: inherit; background: linear-gradient(transparent 64%,rgba(241,135,0,.34) 64%); }
.unsent-reply { position: absolute; z-index: 3; left: 13%; bottom: 8px; display: flex; gap: 24px; align-items: center; min-width: 520px; padding: 20px 28px; border: 1px solid rgba(104,216,255,.25); border-radius: 999px; color: #fff; background: #082e63; box-shadow: 0 22px 46px -30px rgba(4,28,61,.8); }
.unsent-reply span { color: var(--orange); font-family: ui-monospace,Consolas,monospace; font-size: 10px; letter-spacing: .16em; }.unsent-reply p{font-size:14px;line-height:1.6}.unsent-reply b{color:#80d8ff}

/* Reasons: overlapping company files */
.evidence-section { position: relative; padding: 130px 0 156px; overflow: hidden; background: #fbfaf6; }
.evidence-section::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(8,46,99,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(8,46,99,.045) 1px,transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(#000,transparent 85%); content: ""; }
.evidence-board { position: relative; min-height: 620px; margin-top: 64px; }
.evidence-file { position: absolute; width: 35.5%; min-height: 470px; padding: 34px; border: 1px solid #ded7ca; background: #fffdf8; box-shadow: 0 32px 70px -42px rgba(16,42,76,.42); }
.evidence-file--1 { left: 0; top: 72px; transform: rotate(-2deg); }.evidence-file--2 { z-index:2; left:32.25%; top:0; transform:rotate(1.2deg) }.evidence-file--3 { z-index:1; right:0; top:96px; transform:rotate(-.8deg) }
.file-tab { display: inline-block; margin: -34px 0 0 -34px; padding: 10px 17px; color: #fff; background: var(--navy); font-family: ui-monospace,Consolas,monospace; font-size: 9px; letter-spacing: .16em; }
.evidence-file--2 .file-tab { background: var(--blue); }.evidence-file--3 .file-tab{background:var(--orange);color:#251300}
.evidence-file h3 { margin-top: 28px; font-size: 27px; }.evidence-file p{margin-top:16px;color:var(--muted);font-size:14px}
.evidence-file dl { margin: 30px 0 0; border-top: 1px solid var(--line); }.evidence-file dl div{display:grid;grid-template-columns:70px 1fr;gap:10px;padding:12px 0;border-bottom:1px solid var(--line);font-size:12px}.evidence-file dt{color:var(--blue);font-weight:700}.evidence-file dd{margin:0;color:var(--muted)}
.file-stamp { float: right; margin-top: -2px; color: transparent; -webkit-text-stroke: 1px var(--orange); font-family: var(--en); font-size: 72px; line-height: .72; text-align: center; transform: rotate(7deg); }.file-stamp small{font-size:14px;-webkit-text-stroke:0;color:var(--orange)}
.file-lines { height: 100px; margin-top: 28px; background: repeating-linear-gradient(180deg,transparent 0 16px,rgba(8,46,99,.15) 17px 18px); }
.file-orbit { position: relative; width: 150px; height: 106px; margin: 24px auto 0; border: 1px solid rgba(8,104,201,.18); border-radius: 50%; }.file-orbit::before,.file-orbit::after{position:absolute;border:1px solid rgba(8,104,201,.18);border-radius:50%;content:""}.file-orbit::before{inset:12px -24px}.file-orbit::after{inset:24px -42px}.file-orbit i{position:absolute;z-index:1;display:grid;width:42px;height:42px;place-items:center;border-radius:50%;color:#fff;background:var(--navy);font-style:normal;font-size:10px}.file-orbit i:first-child{left:52px;top:32px}.file-orbit i:nth-child(2){left:-10px;top:4px;background:var(--blue)}.file-orbit i:last-child{right:-12px;bottom:3px;background:var(--orange);color:#251300}
.evidence-link { position: relative; z-index: 3; margin-left: 31%; }

/* Numbers: one support line */
.signal-numbers { position: relative; min-height: 850px; padding: 110px 0; overflow: hidden; color: #fff; background: #041c3d; }
.signal-numbers::before { position: absolute; inset: 0; opacity: .12; background: url("../src/deco-circuit.png") 50%/cover no-repeat; content: ""; }
.signal-head { position: relative; display: grid; grid-template-columns: 1fr .72fr; column-gap: 70px; align-items: end; }.signal-head .eyebrow{grid-column:1/-1;color:#75d7ff}.signal-head h2{color:#fff;font-size:clamp(36px,4.6vw,56px)}.signal-head p{color:rgba(255,255,255,.58);font-size:14px}
.signal-map { position: relative; min-height: 500px; margin-top: 20px; }
.signal-path { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }.signal-path path{fill:none;stroke:rgba(104,216,255,.22);stroke-width:2;stroke-dasharray:4 9}.signal-path .signal-path__live{stroke:url(#none);stroke:#ff9418;stroke-dasharray:260 1120;stroke-width:3;filter:drop-shadow(0 0 8px rgba(255,148,24,.9));animation:live-line 7s linear infinite}
.signal-node { position: absolute; width: 220px; padding: 18px 20px; border: 1px solid rgba(104,216,255,.24); background: rgba(3,20,45,.82); backdrop-filter: blur(12px); box-shadow: 0 24px 60px rgba(0,0,0,.26); }.signal-node::before{position:absolute;width:9px;height:9px;border-radius:50%;background:#ff9418;box-shadow:0 0 0 7px rgba(255,148,24,.12),0 0 18px #ff9418;content:""}
.signal-node--1{left:1%;top:56%}.signal-node--1::before{right:-11px;top:50%}.signal-node--2{left:24%;top:5%}.signal-node--2::before{left:50%;bottom:-32px}.signal-node--3{left:54%;top:59%}.signal-node--3::before{left:50%;top:-32px}.signal-node--4{right:1%;top:3%}.signal-node--4::before{left:50%;bottom:-32px}
.signal-node small { color: #75d7ff; font-family: ui-monospace,Consolas,monospace; font-size: 9px; letter-spacing: .18em; }.signal-node b{display:block;margin:8px 0 2px;color:#fff;font-family:var(--en);font-size:48px;line-height:1}.signal-node b em{margin-left:4px;color:var(--orange);font-family:var(--sans);font-size:13px;font-style:normal}.signal-node h3{color:#fff;font-family:var(--sans);font-size:16px}.signal-node p{margin-top:4px;color:rgba(255,255,255,.48);font-size:11px}
@keyframes live-line { to{stroke-dashoffset:-1380} }

/* Comparison: decision switchboard */
.switchboard-vs { padding: 132px 0 150px; overflow: hidden; background: #f4f1ea; }
.switch-board { display: grid; grid-template-columns: 1fr 110px 1fr; margin-top: 58px; border: 1px solid #d8d0c2; box-shadow: 0 36px 80px -58px rgba(16,42,76,.4); }
.switch-side { min-height: 560px; padding: 38px; background: rgba(255,253,248,.92); }.switch-side--old{background:linear-gradient(180deg,#fffdf8,#f8eee7)}.switch-side--new{background:linear-gradient(180deg,#fff,#eaf5f8)}
.switch-label { color: #a35d40; font-family: ui-monospace,Consolas,monospace; font-size: 9px; letter-spacing: .2em; }.switch-side--new .switch-label{color:var(--blue)}
.switch-side h3 { margin-top: 14px; font-size: 29px; }.switch-side ol{margin:28px 0 0;padding:0;list-style:none}.switch-side li{display:grid;grid-template-columns:42px 1fr;padding:19px 0;border-top:1px solid #dbd3c7}.switch-side li i{grid-row:1/3;color:#b86b45;font-family:var(--en);font-size:14px;font-style:normal}.switch-side--new li i{color:var(--blue)}.switch-side li b{font-size:18px}.switch-side li p{margin-top:4px;color:var(--muted);font-size:12px}
.switch-core { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 64px; border-inline: 1px solid #d8d0c2; background: #fff; }.switch-core::before{position:absolute;top:32px;bottom:32px;left:50%;width:1px;background:#d8d0c2;content:""}.switch-core span,.switch-core b{position:relative;z-index:2;padding:8px 4px;color:var(--muted);background:#fff;writing-mode:vertical-rl;font-family:ui-monospace,Consolas,monospace;font-size:9px;letter-spacing:.16em}.switch-core i{position:relative;z-index:2;width:15px;height:15px;border-radius:50%;background:var(--blue);box-shadow:0 0 0 8px #fff,0 0 0 9px #d8d0c2}.switch-core i:nth-of-type(2){background:var(--orange)}
.switch-caption { margin-top: 28px; color: var(--navy); font-family: var(--serif); font-size: clamp(20px,2.4vw,28px); text-align: center; }

/* Voice: support log playback */
.voice-console { position: relative; padding: 120px 0; overflow: hidden; background: #e9edf1; }.voice-console::before{position:absolute;inset:0;background-image:radial-gradient(rgba(8,46,99,.1) 1px,transparent 1px);background-size:27px 27px;mask-image:linear-gradient(90deg,#000,transparent);content:""}
.voice-wrap { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; gap: 74px; align-items: center; }.voice-copy h2{font-size:clamp(35px,4vw,50px)}.voice-copy>p{margin-top:24px;color:var(--muted);font-size:14px}
.voice-tabs { display: grid; gap: 8px; margin-top: 34px; }.voice-tabs button{position:relative;padding:16px 18px;border:1px solid #cad4dd;color:var(--muted);background:rgba(255,255,255,.52);text-align:left;cursor:pointer}.voice-tabs button[aria-selected="true"]{padding-left:24px;border-color:var(--blue);color:var(--navy);background:#fff;font-weight:700}.voice-tabs button[aria-selected="true"]::before{position:absolute;left:0;top:0;bottom:0;width:4px;background:var(--orange);content:""}
.voice-terminal { overflow: hidden; border: 1px solid #cbd5de; border-radius: 18px; background: #fffdf8; box-shadow: 0 38px 80px -46px rgba(4,28,61,.48); }.terminal-bar{height:58px;display:flex;justify-content:space-between;align-items:center;padding:0 24px;border-bottom:1px solid #d8e0e5;background:#082e63;color:#fff;font-family:ui-monospace,Consolas,monospace;font-size:10px;letter-spacing:.12em}.terminal-bar span{display:flex;align-items:center;gap:10px}.terminal-bar i{width:8px;height:8px;border-radius:50%;background:#48f6b2;box-shadow:0 0 14px #48f6b2}.terminal-bar small{color:rgba(255,255,255,.46);font-size:8px}
.voice-panel { padding: 30px; }.voice-time{margin:8px 0 12px;color:#9a7a48;font-family:ui-monospace,Consolas,monospace;font-size:9px;letter-spacing:.16em}.voice-message{max-width:88%;padding:18px 20px;border:1px solid #d6dee4;border-radius:16px 16px 16px 3px;background:#fff}.voice-message span{display:block;margin-bottom:5px;color:var(--blue);font-size:10px;font-weight:700}.voice-message p{color:#34465c;font-size:14px}.voice-message--after{margin-left:auto;border-color:#0d5a99;border-radius:16px 16px 3px 16px;color:#fff;background:#082e63}.voice-message--after span{color:#80d8ff}.voice-message--after p{color:#fff}
.voice-log { position: relative; display: grid; grid-template-columns:auto 1fr auto 1fr auto 1fr; gap: 7px; align-items:center;margin:24px 0;padding:14px;border:1px dashed #cbd5de;background:#f1f5f7;color:#68798b;font-size:9px}.voice-log i{width:8px;height:8px;border-radius:50%;background:var(--orange);box-shadow:0 0 0 5px rgba(241,135,0,.11)}.terminal-note{padding:0 30px 22px;color:#85919c;font-size:10px;text-align:center}

@media (max-width: 1100px) {
  .dispatch-shell { width: min(calc(100% - 48px),1240px); grid-template-columns: 1fr 440px; gap: 36px; }
  .dispatch-hero h1 { font-size: 52px; }
  .channel-grid { grid-template-columns: repeat(3,1fr); }
  .channel-grid li:nth-child(9),.channel-grid li:nth-child(10),.channel-grid li:nth-child(11),.channel-grid li:nth-child(12){display:none}
  .evidence-file { width: 37%; }.evidence-file--2{left:31.5%}
}

@media (max-width: 860px) {
  .dispatch-hero { height: auto; min-height: 0; }
  .dispatch-hero::before { background: linear-gradient(180deg,rgba(3,16,37,.95) 0 58%,rgba(3,20,45,.68) 100%); }
  .dispatch-photo img { object-position: 62% center; }
  .dispatch-hud { top: 18px; left: 24px; right: 24px; }.dispatch-hud span:first-child{display:none}
  .dispatch-shell { width: min(calc(100% - 40px),720px); min-height: 0; padding: 90px 0 76px; grid-template-columns: 1fr; gap: 20px; }
  .dispatch-copy { padding-top: 0; }.dispatch-console{margin-top:20px}.dispatch-scroll{display:none}
  .unsent-head,.evidence-head,.switch-head,.signal-head,.voice-wrap { grid-template-columns: 1fr; gap: 22px; }
  .signal-head .eyebrow{grid-column:auto}
  .unsent-intro,.evidence-section,.switchboard-vs,.voice-console { padding: 84px 0 96px; }
  .unsent-desk{min-height:690px}.browser-stack{position:relative;width:100%;top:auto}.unsent-memo{top:330px;right:4%;width:86%}.unsent-reply{left:0;bottom:0;min-width:0;width:100%;border-radius:18px}
  .evidence-board{min-height:0;display:grid;gap:18px}.evidence-file{position:relative;inset:auto;width:100%;min-height:0;transform:none}.evidence-link{margin:28px 0 0}
  .signal-numbers{min-height:0;padding:84px 0 96px}.signal-map{display:grid;grid-template-columns:1fr 1fr;gap:14px;min-height:0;margin-top:44px}.signal-path{display:none}.signal-node{position:relative;inset:auto;width:auto;min-height:190px}.signal-node::before{right:18px;top:18px;left:auto;bottom:auto}
  .switch-board{grid-template-columns:1fr}.switch-core{height:84px;flex-direction:row;gap:45px;border-inline:0;border-block:1px solid #d8d0c2}.switch-core::before{left:28px;right:28px;top:50%;bottom:auto;width:auto;height:1px}.switch-core span,.switch-core b{writing-mode:horizontal-tb}.switch-side{min-height:0}
  .voice-copy{max-width:650px}.voice-tabs{grid-template-columns:1fr 1fr}.voice-terminal{max-width:650px}
}

@media (max-width: 620px) {
  .dispatch-shell { width: calc(100% - 32px); padding-top: 78px; }
  .dispatch-kicker { font-size: 10px; }.dispatch-hero h1{font-size:clamp(38px,11vw,48px)}.dispatch-lead{font-size:14px}.dispatch-actions{display:grid;gap:14px}.dispatch-tel{justify-self:start}.dispatch-console{padding:18px}.console-top b{font-size:70px}.channel-grid{grid-template-columns:repeat(3,1fr)}.channel-grid li{min-height:72px}.console-foot{display:grid}.dispatch-route{display:none}
  .unsent-intro,.evidence-section,.switchboard-vs,.voice-console { padding: 70px 0 80px; }
  .unsent-head h2,.evidence-head h2,.switch-head h2,.signal-head h2,.voice-copy h2{font-size:31px}
  .unsent-desk{min-height:630px;margin-top:38px}.search-tab{grid-template-columns:28px 1fr}.search-tab small{display:none}.unsent-memo{top:305px;width:94%;padding:30px}.unsent-memo::before{inset:62px 24px 24px}.unsent-reply{padding:17px 19px;gap:14px}.unsent-reply p{font-size:12px}
  .evidence-file{padding:28px 24px}.file-tab{margin:-28px 0 0 -24px}.file-stamp{font-size:58px}.evidence-file h3{font-size:24px}
  .signal-numbers{padding:70px 0 80px}.signal-map{grid-template-columns:1fr}.signal-node{min-height:0}.signal-node b{font-size:42px}
  .switch-side{padding:28px 22px}.switch-side h3{font-size:24px}.switch-core{gap:22px}.switch-core i:nth-of-type(3){display:none}
  .voice-tabs{grid-template-columns:1fr}.voice-panel{padding:20px 16px}.voice-message{max-width:96%;padding:15px}.voice-log{grid-template-columns:auto 1fr;gap:8px 10px}.terminal-bar{padding:0 16px}.terminal-bar small{display:none}.terminal-note{padding-inline:18px}
}

@media (prefers-reduced-motion: reduce) {
  .dispatch-photo img { transform: none; }
  .signal-path .signal-path__live { animation: none; }
}

/* ==========================================================
   ALISE reference-light skin / 2026-08-29
   The content architecture stays intact; this layer aligns the
   visual system to the supplied white, blue and orange reference.
   ========================================================== */
:root {
  --navy: #07366f;
  --deep: #06285b;
  --blue: #0875cf;
  --orange: #f28a00;
  --pale: #f3f8fd;
  --paper: #ffffff;
  --ink: #0b2d5d;
  --muted: #526985;
  --line: rgba(7, 54, 111, .13);
  --max: 1160px;
}

body {
  color: var(--ink);
  background: #fff;
  font-size: 15px;
  line-height: 1.9;
}
h1, h2, h3 { color: var(--deep); font-family: var(--sans); font-weight: 700; letter-spacing: .025em; }
.l-container { width: min(calc(100% - 56px), var(--max)); }
.l-section { padding: 92px 0; }
.l-section--pale { background-color: #f4f9fd; background-image: url("../src/section-bg-1.jpg"); background-position: center; background-size: cover; }
.l-section--deep { color: var(--ink); background: #f4f9fd url("../src/section-bg-1.jpg") center/cover no-repeat; }
.l-section--deep h2, .l-section--deep h3 { color: var(--deep); }
.l-section--deep .eyebrow { color: var(--blue); }
.section-title { font-size: clamp(31px, 3.25vw, 43px); }
.eyebrow { margin-bottom: 16px; color: var(--blue); font-size: 11px; letter-spacing: .18em; }
.eyebrow::before { width: 28px; background: var(--orange); }
.button { min-height: 50px; border-radius: 9px; }
.button--primary { color: #fff; background: var(--blue); box-shadow: 0 10px 24px rgba(8, 117, 207, .24); }
.button--outline { border-color: rgba(7,54,111,.28); color: var(--navy); background: #fff; }

/* Header — slim white band from the reference */
.site-header { border-bottom: 1px solid rgba(7,54,111,.07); background: rgba(255,255,255,.97); box-shadow: 0 4px 18px rgba(9,49,99,.045); backdrop-filter: blur(12px); }
.site-header__inner { width: min(calc(100% - 48px), 1380px); min-height: 78px; gap: 24px; }
.site-logo { width: 150px; overflow: visible; }
.site-logo img { width: 118px; height: 62px; transform: scale(1.48); transform-origin: left center; }
.site-nav__list { gap: clamp(15px, 1.8vw, 28px); }
.site-nav a { color: #102e58; font-size: 12px; }
.site-nav a:not(.button)::after { bottom: -11px; height: 2px; background: var(--blue); }
.site-nav .button { min-height: 42px; padding-inline: 18px; border-radius: 9px; }

/* First view — bright real photo, generous white space, four service-like cards */
.dispatch-hero { height: 790px; min-height: 790px; color: var(--ink); background: #fff; isolation: isolate; }
.dispatch-hero::before { z-index: 0; background: none; }
.dispatch-hero::after { position: absolute; z-index: 0; inset: 0; background: url("../src/deco-circuit.png") 6% 74%/500px auto no-repeat; opacity: .065; content: ""; pointer-events: none; }
.dispatch-photo { z-index: -1; inset: 0; overflow: hidden; }
.dispatch-photo::after { position: absolute; inset: 0; background: url("../src/section-bg-1.jpg") center/cover no-repeat; opacity: .07; content: ""; }
.dispatch-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: none; transform: none; animation: none; }
.dispatch-grid, .dispatch-route, .dispatch-hud, .dispatch-scroll { display: none; }
.dispatch-shell { position: relative; z-index: 2; display: block; width: min(calc(100% - 72px), 1380px); min-height: 790px; padding: 82px 0 230px; }
.dispatch-copy { width: min(600px, 49%); padding-top: 0; text-shadow: none; }
.dispatch-kicker { color: var(--navy); font-size: 13px; letter-spacing: .04em; }
.dispatch-kicker span { margin-right: 10px; padding: 7px 11px; border: 1px solid rgba(8,117,207,.2); border-radius: 5px; color: var(--blue); background: rgba(255,255,255,.88); }
.dispatch-hero h1 { margin-top: 25px; color: #082c5c; font-family: var(--sans); font-size: clamp(43px, 4.35vw, 64px); font-weight: 700; line-height: 1.48; letter-spacing: .02em; }
.dispatch-hero h1 em { position: relative; display: inline-block; color: var(--blue); font-style: normal; }
.dispatch-hero h1 em::after { position: absolute; left: 0; right: -5px; bottom: .1em; height: 3px; border-radius: 50%; background: var(--orange); content: ""; transform: rotate(-2deg); }
.dispatch-lead { max-width: 580px; margin-top: 24px; color: #344d6c; font-size: 15px; line-height: 1.9; }
.dispatch-actions { margin-top: 28px; gap: 18px; }
.button--signal { min-height: 52px; padding-inline: 25px; border: 0; border-radius: 9px; color: #fff; background: var(--blue); box-shadow: 0 10px 24px rgba(8,117,207,.22); clip-path: none; }
.button--signal::after { display: none; }
.button--signal span { color: #fff; }
.dispatch-tel { color: var(--navy); font-family: var(--sans); font-size: 14px; font-weight: 700; letter-spacing: .03em; }
.dispatch-tel::before { background: var(--orange); box-shadow: 0 0 0 5px rgba(242,138,0,.11); }
.dispatch-note { color: #60738b; font-size: 11px; letter-spacing: .03em; }
.dispatch-console { position: absolute; right: 0; bottom: 40px; left: 0; display: block; width: 100%; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; backdrop-filter: none; }
.dispatch-console::before { display: none; }
.console-top { position: absolute; left: 0; bottom: calc(100% + 10px); display: flex; width: 250px; min-height: 38px; align-items: center; justify-content: flex-start; gap: 8px; padding: 0 14px; border-left: 3px solid var(--orange); color: var(--navy); background: rgba(255,255,255,.86); }
.console-top span { color: var(--blue); font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.console-top b { color: var(--orange); font-family: var(--sans); font-size: 22px; line-height: 1; }
.console-top small { color: var(--muted); font-family: var(--sans); font-size: 8px; letter-spacing: .06em; }
.channel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 0; }
.channel-grid li { min-height: 168px; padding: 0; border: 1px solid rgba(7,54,111,.10); border-top: 4px solid var(--blue); border-radius: 11px; color: var(--navy); background: rgba(255,255,255,.95); box-shadow: 0 13px 30px rgba(6,40,91,.10); text-align: left; }
.channel-grid li > a { display: grid; min-height: 164px; grid-template-columns: 62px 1fr; grid-template-rows: auto auto auto; align-content: center; column-gap: 14px; padding: 20px 22px; color: inherit; text-decoration: none; }
.channel-grid picture { grid-row: 1 / 4; align-self: center; }
.channel-grid img { width: 58px; height: 58px; object-fit: contain; }
.channel-grid li:nth-child(2) { border-top-color: var(--orange); }
.channel-grid li:nth-child(3) { border-top-color: #15996d; }
.channel-grid li:nth-child(4) { border-top-color: #1598b7; }
.channel-grid li:nth-child(n+5) { display: none; }
.channel-grid li::after { right: 20px; bottom: 18px; top: auto; width: 25px; height: 25px; border-radius: 50%; background: var(--blue); box-shadow: none; content: "→"; color: #fff; font-size: 14px; line-height: 25px; text-align: center; }
.channel-grid li:nth-child(2)::after { background: var(--orange); }
.channel-grid li:nth-child(3)::after { background: #15996d; }
.channel-grid li:nth-child(4)::after { background: #1598b7; }
.channel-grid li.is-main { border-color: rgba(7,54,111,.10); border-top-color: var(--blue); background: rgba(255,255,255,.95); }
.channel-grid span { color: var(--blue); font-family: var(--sans); font-size: 9px; font-weight: 700; }
.channel-grid b { margin-top: 5px; color: var(--navy); font-size: 17px; line-height: 1.45; }
.channel-grid small { margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.55; }
.console-foot { display: none; }

/* Shared title layouts */
.unsent-head, .evidence-head, .switch-head, .signal-head { gap: 60px; }
.unsent-head h2, .evidence-head h2, .switch-head h2, .signal-head h2, .voice-copy h2 { font-size: clamp(33px, 4vw, 50px); }
.unsent-head > p, .evidence-head > p, .switch-head > p, .signal-head p, .voice-copy > p { color: var(--muted); font-size: 14px; }

/* Intro — pale circuit paper and floating white panels */
.unsent-intro { padding: 112px 0 126px; background: #f4f9fd url("../src/section-bg-1.jpg") center/cover no-repeat; }
.unsent-intro::before { inset: 0; height: auto; background: none; }
.unsent-desk { min-height: 520px; margin-top: 52px; }
.browser-stack { border: 1px solid rgba(7,54,111,.12); border-radius: 13px; background: rgba(255,255,255,.96); box-shadow: 0 20px 50px rgba(6,40,91,.10); backdrop-filter: none; }
.browser-bar { background: #f7fbff; }
.search-tab { border-color: rgba(7,54,111,.10); border-radius: 7px; box-shadow: 0 3px 12px rgba(6,40,91,.035); }
.unsent-memo { border: 1px solid rgba(242,138,0,.20); border-radius: 13px; background: #fff; box-shadow: 0 20px 50px rgba(6,40,91,.10); transform: none; }
.unsent-memo::before { background: url("../src/deco-thin-rule.png") center/cover no-repeat; opacity: .09; }
.unsent-memo p { color: var(--navy); font-family: var(--sans); font-weight: 700; }
.unsent-reply { left: 16%; border: 0; border-radius: 11px; background: var(--blue); box-shadow: 0 14px 32px rgba(8,117,207,.20); }
.unsent-reply b { color: #fff; }

/* Reasons — three white feature cards with brand-color rules */
.evidence-section { padding: 112px 0 126px; background: #fff; }
.evidence-section::before { inset: 0; background: url("../src/deco-circuit.png") 102% 20%/520px auto no-repeat; opacity: .045; mask-image: none; }
.evidence-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; min-height: 0; margin-top: 56px; }
.evidence-file { position: relative; inset: auto; width: auto; min-height: 450px; padding: 34px 30px; border: 1px solid rgba(7,54,111,.10); border-top: 4px solid var(--blue); border-radius: 13px; background: #fff; box-shadow: 0 16px 36px rgba(6,40,91,.08); transform: none; }
.evidence-file--2 { border-top-color: var(--orange); }
.evidence-file--3 { border-top-color: #15996d; }
.file-tab { margin: -34px 0 0 -30px; padding: 9px 16px; border-radius: 9px 0 7px 0; background: var(--blue); }
.evidence-file--2 .file-tab { background: var(--orange); }
.evidence-file--3 .file-tab { background: #15996d; color: #fff; }
.evidence-file h3 { color: var(--navy); font-size: 24px; }
.evidence-file p { color: var(--muted); }
.evidence-file dl { border-top-color: rgba(7,54,111,.10); }
.file-lines { background: url("../src/deco-thin-rule.png") center/cover no-repeat; opacity: .35; }
.file-orbit { background: url("../src/badge-1.png") center/contain no-repeat; border: 0; border-radius: 0; }
.file-orbit::before, .file-orbit::after, .file-orbit i { display: none; }
.evidence-link { margin: 34px 0 0; }

/* Numbers — one light card, four readable metrics */
.signal-numbers { min-height: 0; padding: 108px 0 120px; color: var(--ink); background: #eff7fd url("../src/section-bg-1.jpg") center/cover no-repeat; }
.signal-numbers::before { display: none; }
.signal-head .eyebrow { grid-column: 1 / -1; color: var(--blue); }
.signal-head h2 { color: var(--deep); }
.signal-map { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; min-height: 0; margin-top: 48px; }
.signal-path { display: none; }
.signal-node { position: relative; inset: auto; width: auto; min-height: 250px; padding: 28px 24px; border: 1px solid rgba(7,54,111,.10); border-top: 4px solid var(--blue); border-radius: 13px; color: var(--ink); background: rgba(255,255,255,.96); box-shadow: 0 15px 32px rgba(6,40,91,.08); backdrop-filter: none; }
.signal-node:nth-of-type(3) { border-top-color: var(--orange); }
.signal-node:nth-of-type(4) { border-top-color: #15996d; }
.signal-node:nth-of-type(5) { border-top-color: #1598b7; }
.signal-node::before { right: 20px; top: 22px; left: auto; bottom: auto; width: 8px; height: 8px; background: var(--orange); box-shadow: 0 0 0 6px rgba(242,138,0,.10); }
.signal-node small { color: var(--blue); }
.signal-node b { margin-top: 18px; color: var(--navy); font-size: 54px; }
.signal-node b em { color: var(--orange); }
.signal-node h3 { margin-top: 22px; color: var(--navy); font-size: 16px; }
.signal-node p { color: var(--muted); font-size: 11px; }

/* Comparison — rounded white split board */
.switchboard-vs { padding: 112px 0 126px; background: #fff; }
.switch-board { overflow: hidden; border: 1px solid rgba(7,54,111,.10); border-radius: 15px; box-shadow: 0 18px 44px rgba(6,40,91,.09); }
.switch-side { min-height: 520px; background: #fff; }
.switch-side--old { background: #fffaf4; }
.switch-side--new { background: #f4fbff; }
.switch-core { border-color: rgba(7,54,111,.10); background: #fff; }
.switch-caption { color: var(--navy); font-family: var(--sans); font-weight: 700; }

/* Voice — origin-page-like large white card */
.voice-console { padding: 112px 0 126px; background: #eff7fd url("../src/section-bg-1.jpg") center/cover no-repeat; }
.voice-console::before { display: none; }
.voice-wrap { gap: 58px; }
.voice-tabs button { border-radius: 8px; background: rgba(255,255,255,.80); }
.voice-tabs button[aria-selected="true"] { border-color: var(--blue); box-shadow: 0 8px 22px rgba(6,40,91,.08); }
.voice-terminal { border-color: rgba(7,54,111,.10); border-radius: 15px; background: #fff; box-shadow: 0 20px 50px rgba(6,40,91,.11); }
.terminal-bar { background: var(--navy); }

/* Services — card composition like the reference, while retaining 3 services */
.services-index { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; border-top: 0; }
.service-row, .service-row--primary { display: grid; grid-template-columns: 48px 1fr; grid-template-rows: auto auto 150px; gap: 11px 8px; min-height: 430px; align-content: start; padding: 27px 25px 24px; overflow: hidden; border: 1px solid rgba(7,54,111,.10); border-top: 4px solid var(--blue); border-radius: 13px; background: #fff; box-shadow: 0 15px 34px rgba(6,40,91,.08); }
.service-row:nth-child(2) { border-top-color: var(--orange); }
.service-row:nth-child(3) { border-top-color: #15996d; }
.service-row__num { color: var(--blue); font-family: var(--sans); font-size: 13px; font-weight: 700; }
.service-row:nth-child(2) .service-row__num { color: var(--orange); }
.service-row:nth-child(3) .service-row__num { color: #15996d; }
.service-row h3, .service-row--primary h3 { align-self: center; color: var(--navy); font-size: 22px; }
.service-row p { grid-column: 1 / -1; color: var(--muted); font-size: 13px; }
.service-row picture { grid-column: 1 / -1; align-self: end; margin: 8px -25px -24px; }
.service-row img { width: 100%; height: 150px; object-fit: cover; clip-path: none; }
.service-guard { border-left: 0; border-radius: 10px; color: var(--navy); background: #fff7eb; box-shadow: inset 4px 0 0 var(--orange); }

/* Pricing / process / FAQ / news — soft white panels */
.pricing-table { gap: 16px; border: 0; }
.plan { border: 1px solid rgba(7,54,111,.10); border-top: 4px solid var(--blue); border-radius: 13px; background: #fff; box-shadow: 0 12px 28px rgba(6,40,91,.06); }
.plan:nth-child(2) { border-top-color: var(--orange); }
.plan:nth-child(3) { border-top-color: #15996d; }
.plan--recommended { box-shadow: 0 18px 40px rgba(6,40,91,.11); }
.process-line { gap: 14px; }
.process-line::before { display: none; }
.process-step { padding: 25px; border: 1px solid rgba(7,54,111,.09); border-radius: 12px; background: #fff; box-shadow: 0 10px 26px rgba(6,40,91,.05); }
.process-step__num { width: 52px; height: 52px; border: 0; color: #fff; background: var(--blue); }
.faq-list, .news-list { border-top: 0; }
.faq-item { margin-bottom: 10px; border: 1px solid rgba(7,54,111,.10); border-radius: 9px; background: #fff; }
.faq-item summary { padding-left: 54px; }
.faq-item summary::before { left: 20px; }
.news-item { margin-bottom: 9px; padding: 20px; border: 1px solid rgba(7,54,111,.09); border-radius: 9px; background: #fff; }

/* CTA / footer — blue to orange branded sweep from supplied raster */
.final-cta { padding: 96px 0; color: var(--navy); background: #f5f9fd url("../src/section-bg-3.jpg") center/cover no-repeat; }
.final-cta::before { inset: auto 0 0; height: 38%; background: url("../src/section-bg-1.jpg") center bottom/cover no-repeat; opacity: .38; mix-blend-mode: multiply; }
.final-cta h2 { color: var(--navy); }
.final-cta p { color: var(--muted); }
.final-cta__tel { color: var(--navy); }
.site-footer { color: #526985; background: #fff; border-top: 1px solid rgba(7,54,111,.09); }
.site-footer__logo { padding: 0; background: transparent; }
.site-footer h2 { color: var(--navy); }
.site-footer a:hover { color: var(--blue); }
.site-footer__bottom { border-top-color: rgba(7,54,111,.10); }

/* Subpages — airy circuit hero and rounded content surfaces */
.page-hero { min-height: 365px; background: #f3f8fd url("../src/section-bg-1.jpg") center/cover no-repeat; }
.page-hero::after { width: 300px; height: 300px; background-image: url("../src/deco-circuit.png"); opacity: .055; }
.page-hero h1 { color: var(--navy); font-family: var(--sans); }
.content-grid > *, .side-box, .prose, .contact-form, .area-box, .summary-table { border-radius: 13px; }

/* About — reference-inspired origin page */
.page-hero--origin { min-height: 330px; text-align: center; background-image: linear-gradient(90deg,rgba(8,117,207,.04),rgba(255,255,255,.76),rgba(242,138,0,.06)), url("../src/section-bg-1.jpg"); }
.page-hero--origin .page-hero__inner { align-items: center; }
.page-hero--origin .breadcrumbs { position: absolute; left: 0; top: 26px; text-align: left; }
.page-hero--origin .eyebrow { justify-content: center; }
.page-hero--origin h1 { font-size: clamp(38px,5vw,58px); letter-spacing: .08em; }
.page-hero--origin p { max-width: 720px; margin: 20px auto 0; }
.origin-section { margin-top: -72px; padding-top: 0; overflow: visible; }
.origin-card { position: relative; z-index: 2; padding: 52px 62px; border: 1px solid rgba(7,54,111,.10); border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: 0 22px 60px rgba(6,40,91,.11); }
.origin-card__intro { display: grid; grid-template-columns: 31% 1fr; align-items: center; gap: 62px; padding-bottom: 46px; border-bottom: 1px solid rgba(7,54,111,.11); }
.origin-card__intro img { width: 100%; max-width: 280px; margin-inline: auto; }
.origin-card__intro h2 { font-size: clamp(28px,3.5vw,42px); }
.origin-card__intro p { margin-top: 18px; color: var(--muted); }
.origin-values { padding-top: 42px; }
.origin-values > h3 { text-align: center; font-size: 24px; }
.origin-values > h3::after { display: block; width: 34px; height: 2px; margin: 14px auto 30px; background: var(--orange); content: ""; }
.origin-values dl { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 42px; margin: 0; }
.origin-values dl > div { display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 20px; min-height: 108px; padding: 18px 0; border-bottom: 1px solid rgba(7,54,111,.09); }
.origin-values dt { display: grid; grid-template-columns: 48px 1fr; grid-template-rows: auto auto; align-items: center; column-gap: 12px; color: var(--navy); }
.origin-values dt b { grid-row: 1 / 3; display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; color: var(--blue); background: #edf7ff; font-size: 22px; }
.origin-values dl > div:nth-child(2) dt b { color: #149476; background: #edf9f5; }
.origin-values dl > div:nth-child(3) dt b { color: var(--orange); background: #fff6e9; }
.origin-values dl > div:nth-child(4) dt b { color: #7653a8; background: #f5f0fb; }
.origin-values dt span { font-size: 16px; font-weight: 700; }
.origin-values dt small { color: var(--muted); font-size: 11px; }
.origin-values dd { margin: 0; color: var(--muted); font-size: 13px; }

@media (max-width: 1100px) {
  .site-nav__list { gap: 14px; }
  .site-nav a { font-size: 11px; }
  .dispatch-shell { width: min(calc(100% - 48px), 1240px); }
  .dispatch-hero h1 { font-size: 48px; }
  .channel-grid { grid-template-columns: repeat(4, 1fr); }
  .channel-grid li:nth-child(4) { display: block; }
  .signal-map { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .site-header__inner { min-height: 70px; }
  .dispatch-hero { height: auto; min-height: 0; background: #fff; }
  .dispatch-hero::before { background: none; }
  .dispatch-photo { height: 760px; }
  .dispatch-photo img { object-position: 62% center; }
  .dispatch-photo::after { background: rgba(255,255,255,.30); opacity: 1; }
  .dispatch-shell { width: min(calc(100% - 40px), 720px); min-height: 0; padding: 70px 0 50px; }
  .dispatch-copy { width: 76%; padding: 0; }
  .dispatch-console { position: relative; inset: auto; margin-top: 64px; }
  .console-top { left: 0; }
  .channel-grid { grid-template-columns: repeat(2, 1fr); }
  .channel-grid li { min-height: 132px; }
  .channel-grid li > a { min-height: 128px; grid-template-columns: 46px 1fr; padding: 15px; }
  .channel-grid img { width: 42px; height: 42px; }
  .unsent-head, .evidence-head, .switch-head, .signal-head, .voice-wrap { grid-template-columns: 1fr; gap: 20px; }
  .signal-head .eyebrow { grid-column: auto; }
  .evidence-board { grid-template-columns: 1fr; }
  .evidence-file { min-height: 0; }
  .services-index { grid-template-columns: 1fr; }
  .service-row, .service-row--primary { min-height: 390px; }
  .switch-board { grid-template-columns: 1fr; }
  .switch-core { height: 84px; }
  .origin-card { padding: 38px 32px; }
  .origin-card__intro { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .origin-card__intro img { max-width: 220px; }
  .origin-values dl { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .l-container { width: calc(100% - 32px); }
  .l-section { padding: 72px 0; }
  .site-logo img { width: 100px; height: 56px; }
  .site-logo { width: 122px; }
  .site-logo img { transform: scale(1.25); }
  .dispatch-photo { height: 690px; }
  .dispatch-photo img { object-position: 67% center; }
  .dispatch-photo::after { background: rgba(255,255,255,.64); }
  .dispatch-shell { width: calc(100% - 32px); padding: 52px 0 36px; }
  .dispatch-copy { width: 100%; }
  .dispatch-kicker { font-size: 10px; }
  .dispatch-hero h1 { font-size: clamp(37px, 11vw, 49px); line-height: 1.42; }
  .dispatch-lead { max-width: 93%; font-size: 13px; }
  .dispatch-actions { display: grid; gap: 12px; }
  .dispatch-console { margin-top: 72px; }
  .console-top { width: auto; }
  .channel-grid { gap: 10px; }
  .channel-grid li { min-height: 118px; padding: 18px 15px; }
  .channel-grid li { padding: 0; }
  .channel-grid li > a { min-height: 114px; grid-template-columns: 1fr; grid-template-rows: 34px auto auto auto; padding: 12px 13px 30px; }
  .channel-grid picture { grid-row: auto; }
  .channel-grid img { width: 34px; height: 34px; }
  .channel-grid b { font-size: 15px; }
  .channel-grid li::after { right: 13px; bottom: 13px; }
  .unsent-intro, .evidence-section, .signal-numbers, .switchboard-vs, .voice-console { padding: 72px 0 82px; }
  .unsent-reply { left: 0; }
  .signal-map { grid-template-columns: 1fr; }
  .signal-node { min-height: 0; }
  .pricing-table { gap: 12px; }
  .process-line { gap: 10px; }
  .news-item { padding: 16px; }
  .final-cta { padding: 78px 0; }
  .page-hero--origin .breadcrumbs { position: static; margin-bottom: 40px; }
  .page-hero--origin h1 { font-size: 36px; }
  .page-hero--origin p br { display: none; }
  .origin-section { margin-top: -38px; }
  .origin-card { padding: 30px 20px; }
  .origin-values dl > div { grid-template-columns: 1fr; gap: 8px; }
}

.reveal { opacity: 1; transform: none; transition: none; }
