:root {
  --ink: #0b1528;
  --ink-soft: #3d4a5e;
  --muted: #6f7b8d;
  --line: #dce3ec;
  --line-strong: #c8d2df;
  --paper: #f8f7f2;
  --white: #ffffff;
  --blue: #075bd8;
  --blue-dark: #0647a8;
  --blue-soft: #eaf2ff;
  --cyan: #36d1dc;
  --lime: #b5ee55;
  --orange: #ff7a45;
  --navy: #071a39;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(19, 47, 86, .12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; text-wrap: balance; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 12px 18px; color: #fff; background: var(--ink); border-radius: 10px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 90;
  border-bottom: 1px solid rgba(200, 210, 223, .76);
  background: rgba(248, 247, 242, .9);
  backdrop-filter: blur(18px);
}
.header-inner { width: min(calc(100% - 48px), var(--max)); min-height: 78px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-logo { width: 48px; height: 48px; object-fit: contain; filter: drop-shadow(0 8px 14px rgba(13, 42, 91, .16)); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-size: 18px; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 12px; letter-spacing: .11em; }
.site-nav { display: flex; align-items: center; gap: 27px; font-size: 13px; font-weight: 700; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--blue); transition: right .25s ease; }
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { right: 0; }
.nav-cta { padding: 12px 18px; color: #fff; background: var(--ink); border-radius: 999px; }
.menu-button { display: none; width: 46px; height: 42px; padding: 10px; border: 0; border-radius: 12px; color: var(--ink); background: var(--white); }
.menu-button > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.section-grid {
  background-image: linear-gradient(rgba(11, 21, 40, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 21, 40, .045) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; width: 620px; height: 620px; right: -140px; top: -180px; background: radial-gradient(circle, rgba(54, 209, 220, .24), transparent 66%); pointer-events: none; }
.hero-inner { position: relative; width: min(calc(100% - 48px), 1240px); min-height: 690px; margin: auto; padding: 86px 0 74px; display: grid; grid-template-columns: minmax(420px, .9fr) minmax(560px, 1.1fr); align-items: center; gap: 52px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--blue); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 12px; font-weight: 800; letter-spacing: .13em; }
.eyebrow span { width: 26px; height: 2px; background: currentColor; }
.eyebrow-light { color: #8dc2ff; }
.hero h1 { max-width: 670px; margin-bottom: 27px; font-size: clamp(45px, 4.35vw, 61px); line-height: 1.16; font-weight: 900; }
.hero h1 .title-line { display: block; }
.hero h1 em { color: var(--blue); font-style: normal; background: linear-gradient(transparent 70%, rgba(181, 238, 85, .55) 70%); }
.hero-lead { max-width: 650px; margin-bottom: 32px; color: var(--ink-soft); font-size: 16px; line-height: 2; }
.hero-lead span { display: block; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 22px; min-height: 58px; padding: 0 25px; border: 1px solid transparent; border-radius: 14px; font-weight: 800; line-height: 1.3; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 15px 35px rgba(7, 91, 216, .24); }
.button-primary:hover, .button-primary:focus-visible { background: var(--blue-dark); box-shadow: 0 18px 40px rgba(7, 91, 216, .3); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 14px; font-weight: 800; border-bottom: 1px solid var(--ink); }
.hero-facts { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 27px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.hero-facts li { display: flex; align-items: center; gap: 7px; }
.hero-facts span { display: grid; place-items: center; width: 18px; height: 18px; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-size: 11px; }

.hero-visual { position: relative; min-width: 0; }
.workflow-window { position: relative; overflow: hidden; border: 1px solid #c9d5e4; border-radius: 24px; background: rgba(255, 255, 255, .93); box-shadow: var(--shadow); }
.window-bar { min-height: 53px; padding: 0 18px; display: grid; grid-template-columns: 82px 1fr auto; align-items: center; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; font-weight: 700; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #d2d9e2; }
.window-dots i:first-child { background: var(--orange); }
.window-dots i:nth-child(2) { background: #f4c84c; }
.window-dots i:nth-child(3) { background: #63c887; }
.status-pill { padding: 5px 10px; color: var(--blue); background: var(--blue-soft); border-radius: 999px; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 10px; letter-spacing: .1em; }
.workflow-body { min-height: 480px; padding: 34px 28px 30px; display: grid; grid-template-columns: 1fr .82fr 1fr; align-items: center; gap: 18px; }
.workflow-label { margin-bottom: 13px; color: var(--muted); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.mini-task { min-height: 68px; padding: 13px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 7px 20px rgba(21, 45, 78, .06); }
.mini-task.is-alert { border-color: rgba(255, 122, 69, .45); }
.mini-icon { flex: 0 0 auto; display: grid; place-items: center; width: 29px; height: 29px; color: var(--blue); background: var(--blue-soft); border-radius: 9px; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 10px; font-weight: 900; }
.is-alert .mini-icon { color: #bb4415; background: #fff0e9; }
.mini-task div { min-width: 0; }
.mini-task strong, .mini-task small { display: block; }
.mini-task strong { margin-bottom: 2px; font-size: 12px; line-height: 1.35; }
.mini-task small { overflow: hidden; color: var(--muted); font-size: 10px; line-height: 1.4; white-space: nowrap; text-overflow: ellipsis; }
.mini-connector { width: 1px; height: 19px; margin: 0 auto; background: var(--line-strong); }
.workflow-engine { text-align: center; }
.engine-orbit { position: relative; width: 124px; height: 124px; margin: 0 auto 18px; border: 1px dashed #9fb6d4; border-radius: 50%; animation: slow-spin 22s linear infinite; }
.engine-orbit::before, .engine-orbit::after { content: ""; position: absolute; inset: 13px; border: 1px solid #d8e5f5; border-radius: 50%; }
.engine-orbit::after { inset: 29px; border-style: dashed; }
.engine-orbit span { position: absolute; width: 9px; height: 9px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 0 5px rgba(54, 209, 220, .13); }
.engine-orbit span:first-child { left: 8px; top: 33px; }
.engine-orbit span:nth-child(2) { right: 10px; top: 23px; background: var(--blue); }
.engine-orbit span:nth-child(3) { left: 54px; bottom: -4px; background: var(--lime); }
.engine-core { position: absolute; width: 92px; height: 92px; top: 50%; left: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--blue); background: #fff; border: 7px solid #eef5ff; border-radius: 50%; transform: translate(-50%, -50%); box-shadow: 0 8px 25px rgba(7, 91, 216, .25); animation: counter-spin 22s linear infinite; }
.workflow-engine { position: relative; }
.engine-core img { width: 44px; height: 44px; object-fit: contain; }
.engine-core strong { margin-top: -2px; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 7px; letter-spacing: .08em; }
.workflow-engine ul { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.workflow-engine li { padding: 6px 3px; color: var(--blue-dark); background: var(--blue-soft); border-radius: 7px; font-size: 9px; font-weight: 800; }
.after-card { min-height: 120px; padding: 20px 15px; display: flex; align-items: flex-start; gap: 10px; border: 1px solid rgba(7, 91, 216, .2); border-radius: 17px; background: linear-gradient(145deg, #f7fbff, #edf5ff); }
.after-check { display: grid; place-items: center; flex: 0 0 auto; width: 30px; height: 30px; color: #fff; background: var(--blue); border-radius: 50%; font-size: 13px; font-weight: 900; }
.after-card p { margin: 0; }
.after-card strong, .after-card small { display: block; }
.after-card strong { margin-bottom: 7px; font-size: 13px; line-height: 1.5; }
.after-card small { color: var(--muted); font-size: 10px; line-height: 1.6; }
.after-metrics { margin-top: 10px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.after-metrics div { padding: 9px 3px; text-align: center; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.after-metrics span, .after-metrics strong { display: block; }
.after-metrics span { color: var(--muted); font-size: 8px; }
.after-metrics strong { color: var(--blue); font-size: 11px; }
.human-note { margin: 11px 0 0; color: var(--muted); font-size: 9px; line-height: 1.5; }
.human-note span { color: var(--lime); }
.floating-note { position: absolute; min-width: 142px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.95); box-shadow: 0 12px 30px rgba(21,45,78,.13); }
.floating-note span, .floating-note strong { display: block; }
.floating-note span { color: var(--muted); font-size: 9px; letter-spacing: .09em; }
.floating-note strong { font-size: 12px; }
.note-one { left: -24px; bottom: 33px; }
.note-two { right: -17px; top: 87px; }
@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes counter-spin { from { transform: translate(-50%, -50%) rotate(0); } to { transform: translate(-50%, -50%) rotate(-360deg); } }

.trust-strip { min-height: 105px; padding: 22px max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; border-bottom: 1px solid var(--line); background: #fff; }
.trust-strip div { min-height: 48px; padding: 0 24px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--line); }
.trust-strip div:first-child { border-left: 0; padding-left: 0; }
.trust-strip span { margin-bottom: 3px; color: var(--blue); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.trust-strip strong { font-size: 13px; line-height: 1.5; }

.section { width: min(calc(100% - 48px), var(--max)); margin: auto; padding: 120px 0; }
.section-head { max-width: 780px; margin-bottom: 58px; }
.section-head h2, .process-intro h2, .faq-intro h2, .partner-copy h2, .proof-copy h2, .contact-copy h2, .deliverables-panel h2 { margin-bottom: 22px; font-size: clamp(36px, 4vw, 58px); line-height: 1.18; }
.section-head > p:last-child, .process-intro > p, .faq-intro > p, .partner-copy > p:last-child, .proof-copy > p, .deliverables-panel > div > p:last-child { max-width: 650px; color: var(--ink-soft); }
.section-head-row { max-width: none; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 90px; }
.section-head-row > p { margin-bottom: 8px; }

.problems { padding-bottom: 95px; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line-strong); }
.problem-card { min-height: 250px; padding: 32px; border-right: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); background: rgba(255,255,255,.42); transition: background .25s ease, transform .25s ease; }
.problem-card:hover { z-index: 1; background: #fff; transform: translateY(-4px); box-shadow: 0 18px 45px rgba(21,45,78,.08); }
.problem-card > span { display: inline-block; margin-bottom: 44px; color: var(--blue); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px; font-weight: 900; }
.problem-card h3 { margin-bottom: 12px; font-size: 20px; }
.problem-card p { margin-bottom: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.85; }

.partner { width: min(calc(100% - 28px), 1400px); padding-top: 40px; padding-bottom: 40px; }
.partner-panel { overflow: hidden; padding: 82px max(36px, calc((100% - var(--max)) / 2)); display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; color: #fff; background: var(--navy); border-radius: 34px; }
.partner-copy p:last-child { color: #bfcce0; }
.partner-flow { border-top: 1px solid rgba(255,255,255,.17); }
.partner-flow li { min-height: 100px; padding: 18px 0; display: grid; grid-template-columns: 52px 1fr; align-items: center; border-bottom: 1px solid rgba(255,255,255,.17); }
.partner-flow > li > span { color: #8dc2ff; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px; }
.partner-flow strong, .partner-flow small { display: block; }
.partner-flow strong { margin-bottom: 3px; font-size: 19px; }
.partner-flow small { color: #adbbd0; font-size: 12px; }

.workflow-lab { overflow: hidden; border: 1px solid var(--line-strong); border-radius: 28px; background: #fff; box-shadow: 0 25px 70px rgba(21,45,78,.08); }
.lab-tabs { padding: 14px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; border-bottom: 1px solid var(--line); background: #f4f6f8; }
.lab-tabs button { min-height: 48px; padding: 8px; border: 1px solid transparent; border-radius: 12px; color: var(--ink-soft); background: transparent; font-size: 13px; font-weight: 800; cursor: pointer; }
.lab-tabs button[aria-selected="true"] { color: #fff; background: var(--ink); box-shadow: 0 8px 20px rgba(11,21,40,.14); }
.lab-panel { min-height: 400px; padding: 56px; display: grid; grid-template-columns: 1fr 150px 1fr; align-items: center; gap: 35px; }
.lab-kicker { display: inline-flex; margin-bottom: 18px; padding: 5px 10px; color: var(--blue); background: var(--blue-soft); border-radius: 999px; font-size: 12px; font-weight: 800; }
.lab-before .lab-kicker { color: #b4481f; background: #fff0e9; }
.lab-panel h3 { min-height: 82px; margin-bottom: 24px; font-size: 23px; line-height: 1.55; }
.lab-panel ul { display: grid; gap: 10px; }
.lab-panel li { position: relative; padding-left: 22px; color: var(--ink-soft); font-size: 14px; }
.lab-panel li::before { content: ""; position: absolute; left: 0; top: .72em; width: 7px; height: 7px; border: 2px solid var(--orange); border-radius: 50%; }
.lab-after li::before { border-color: var(--blue); background: var(--blue); }
.lab-arrow { display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--blue); text-align: center; }
.lab-arrow span { padding: 7px 10px; color: var(--blue-dark); background: var(--blue-soft); border-radius: 9px; font-size: 12px; font-weight: 800; }
.lab-arrow i { display: grid; place-items: center; width: 55px; height: 55px; color: #fff; background: var(--blue); border-radius: 50%; font-style: normal; font-size: 25px; box-shadow: 0 10px 26px rgba(7,91,216,.24); }
.lab-footer { padding: 22px 30px; display: flex; align-items: center; justify-content: space-between; gap: 35px; border-top: 1px solid var(--line); background: var(--blue-soft); }
.lab-footer p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.lab-footer p strong { margin-right: 12px; color: var(--ink); }
.lab-footer a { flex: 0 0 auto; color: var(--blue); font-size: 13px; font-weight: 900; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 420px; padding: 38px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.service-number { position: absolute; right: 30px; top: 27px; color: #c5cfdb; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 12px; font-weight: 900; }
.service-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 50px; color: var(--blue); background: var(--blue-soft); border-radius: 17px; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 23px; font-weight: 900; }
.service-card h3 { margin-bottom: 13px; font-size: 26px; }
.service-card p { max-width: 480px; color: var(--ink-soft); font-size: 14px; }
.service-card ul { margin-top: 25px; display: flex; flex-wrap: wrap; gap: 7px; }
.service-card li { padding: 7px 11px; color: var(--ink-soft); background: #f4f6f8; border-radius: 999px; font-size: 12px; font-weight: 700; }

.process { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.process-intro { position: sticky; top: 135px; align-self: start; }
.process-intro .text-link { margin-top: 22px; }
.process-list { border-top: 1px solid var(--line-strong); }
.process-list li { min-height: 156px; padding: 30px 0; display: grid; grid-template-columns: 54px 1fr auto; align-items: start; gap: 20px; border-bottom: 1px solid var(--line-strong); }
.process-list > li > span { display: grid; place-items: center; width: 38px; height: 38px; color: var(--blue); background: var(--blue-soft); border-radius: 12px; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 10px; font-weight: 900; }
.process-list h3 { margin-bottom: 8px; font-size: 21px; }
.process-list p { max-width: 570px; margin: 0; color: var(--ink-soft); font-size: 14px; }
.process-list small { color: var(--muted); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 10px; letter-spacing: .1em; }

.deliverables { width: min(calc(100% - 28px), 1400px); padding-top: 40px; padding-bottom: 40px; }
.deliverables-panel { padding: 75px max(36px, calc((100% - var(--max)) / 2)); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; border: 1px solid #bfd2f0; border-radius: 34px; background: linear-gradient(135deg, #eef5ff 0%, #fff 48%, #f0fbf7 100%); }
.deliverable-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.deliverable-list li { min-height: 145px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.86); }
.deliverable-list span, .deliverable-list strong, .deliverable-list small { display: block; }
.deliverable-list span { margin-bottom: 24px; color: var(--blue); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px; font-weight: 900; }
.deliverable-list strong { margin-bottom: 5px; font-size: 15px; }
.deliverable-list small { color: var(--muted); font-size: 12px; line-height: 1.55; }

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fit-card { position: relative; min-height: 420px; padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.fit-sign { position: absolute; right: 30px; top: 18px; color: #d7e7ff; font-size: 75px; font-weight: 300; line-height: 1; }
.fit-check .fit-sign { color: #ffe0d3; }
.fit-card h3 { max-width: 360px; margin-bottom: 38px; font-size: 25px; }
.fit-card ul { display: grid; gap: 13px; }
.fit-card li { position: relative; padding: 12px 12px 12px 42px; color: var(--ink-soft); background: #f6f8fa; border-radius: 12px; font-size: 14px; }
.fit-card li::before { content: "✓"; position: absolute; left: 15px; top: 12px; color: var(--blue); font-weight: 900; }
.fit-check li::before { content: "確認"; top: 14px; color: #be4e21; font-size: 9px; }
.fit-note { margin: 18px 0 0; padding: 18px 22px; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 14px; background: #fff; font-size: 13px; }

.proof { width: min(calc(100% - 28px), 1400px); padding: 95px max(36px, calc((100% - var(--max)) / 2)); display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; color: #fff; background: var(--navy); border-radius: 34px; }
.proof-copy > p { color: #becbdd; }
.button-light { margin-top: 15px; color: var(--ink); background: var(--lime); }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.proof-grid > * { position: relative; min-height: 195px; padding: 25px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid rgba(255,255,255,.17); border-radius: 18px; background: rgba(255,255,255,.055); transition: background .2s ease, transform .2s ease; }
.proof-grid a:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.proof-grid span, .proof-grid strong, .proof-grid small { display: block; }
.proof-grid span { margin-bottom: auto; color: #8dc2ff; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 10px; letter-spacing: .11em; }
.proof-grid strong { margin-bottom: 7px; font-size: 18px; }
.proof-grid small { color: #b5c2d5; font-size: 12px; line-height: 1.6; }
.proof-grid i { position: absolute; right: 18px; top: 15px; color: var(--lime); font-style: normal; }
.proof-security img { width: 48px; height: 48px; margin-bottom: auto; object-fit: contain; filter: drop-shadow(0 8px 20px rgba(0,0,0,.2)); }

.starting-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.starting-steps article { min-height: 260px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.starting-steps span { display: inline-block; margin-bottom: 65px; color: var(--blue); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.starting-steps h3 { margin-bottom: 9px; font-size: 23px; }
.starting-steps p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.faq-intro { align-self: start; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-list details { border-bottom: 1px solid var(--line-strong); }
.faq-list summary { min-height: 92px; padding: 22px 8px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 16px; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; flex: 0 0 auto; width: 32px; height: 32px; color: var(--blue); background: var(--blue-soft); border-radius: 50%; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 680px; padding: 0 55px 28px 8px; color: var(--ink-soft); font-size: 14px; }

.contact { width: min(calc(100% - 28px), 1400px); margin: 40px auto 0; color: #fff; background: var(--blue); border-radius: 34px 34px 0 0; }
.contact-inner { width: min(calc(100% - 72px), var(--max)); margin: auto; padding: 92px 0; display: grid; grid-template-columns: .88fr 1.12fr; align-items: start; gap: 72px; }
.contact-copy h2 { font-size: clamp(37px, 4vw, 58px); }
.contact-copy > p { max-width: 650px; color: #dbe9ff; }
.button-white { margin: 15px 0 18px; color: var(--blue); background: #fff; }
.contact-copy > small { display: block; color: #c5dcff; font-size: 12px; }
.contact-mail-link { display: inline-flex; align-items: center; gap: 9px; margin: 11px 0 15px; padding-bottom: 3px; border-bottom: 1px solid rgba(255,255,255,.7); font-size: 14px; font-weight: 800; }
.contact-form { padding: 34px; color: var(--ink); background: #fff; border-radius: 24px; box-shadow: 0 25px 65px rgba(0,0,0,.14); }
.contact-form-heading { margin-bottom: 25px; }
.contact-form-heading > span { display: inline-block; margin-bottom: 9px; color: var(--blue); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.contact-form-heading h3 { margin-bottom: 8px; font-size: 24px; line-height: 1.45; }
.contact-form-heading p { margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.contact-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form > label, .contact-field-row label { display: grid; gap: 7px; margin-bottom: 15px; color: var(--ink); font-size: 13px; font-weight: 800; }
.contact-form em { color: #c34824; font-size: 11px; font-style: normal; }
.contact-form input:not([type="checkbox"]), .contact-form textarea { width: 100%; min-height: 50px; padding: 12px 13px; color: var(--ink); border: 1px solid var(--line-strong); border-radius: 10px; background: #f9fbfd; font-size: 15px; line-height: 1.6; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-form textarea { min-height: 132px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(7, 91, 216, .1); }
.contact-form .contact-agree { display: flex; align-items: flex-start; grid-template-columns: none; gap: 10px; margin: 5px 0 18px; font-size: 13px; font-weight: 700; }
.contact-agree input { flex: 0 0 auto; width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--blue); }
.contact-agree a { color: var(--blue-dark); text-decoration: underline; text-underline-offset: 3px; }
.contact-submit { width: 100%; margin: 0 0 12px; color: #fff; background: var(--blue-dark); }
.contact-submit:hover, .contact-submit:focus-visible { color: #fff; background: var(--ink); }
.contact-submit:disabled { opacity: .65; cursor: wait; }
.contact-form > small { display: block; color: var(--muted); font-size: 12px; line-height: 1.65; }
.contact-form-status { margin: 0 0 15px; padding: 11px 13px; color: #7f2d14; background: #fff1e8; border-radius: 9px; font-size: 13px; line-height: 1.6; }
.contact-form-status.is-success { color: #075f46; background: #e9f8f2; box-shadow: inset 3px 0 #1b9a70; }
.contact-form-status.is-error { color: #8a2434; background: #fff0f2; box-shadow: inset 3px 0 #d33b51; }

.site-footer { color: #c3cede; background: #040f23; }
.footer-top, .footer-bottom { width: min(calc(100% - 48px), var(--max)); margin: auto; }
.footer-top { padding: 50px 0 35px; display: flex; align-items: center; justify-content: space-between; gap: 35px; border-bottom: 1px solid rgba(255,255,255,.12); }
.brand-footer .brand-copy strong { color: #fff; }
.footer-top p { margin: 0; font-size: 13px; }
.footer-bottom { padding: 30px 0 45px; display: grid; grid-template-columns: 1fr auto; gap: 22px 50px; }
.footer-bottom > div { display: flex; flex-wrap: wrap; gap: 10px 24px; font-size: 12px; }
.footer-bottom strong { color: #fff; }
.footer-bottom a { color: #fff; }
.footer-bottom nav { display: flex; gap: 22px; font-size: 12px; }
.footer-bottom > small { grid-column: 1 / -1; color: #72819a; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-nav { gap: 17px; }
  .site-nav > a:not(.nav-cta) { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 72px; gap: 58px; }
  .hero-copy { max-width: 780px; }
  .hero-visual { width: min(100%, 760px); margin-left: auto; margin-right: auto; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip div:nth-child(3) { border-left: 0; }
  .trust-strip div:nth-child(n+3) { margin-top: 14px; }
  .partner-panel, .deliverables-panel, .proof { grid-template-columns: 1fr; gap: 55px; }
  .process { grid-template-columns: 1fr; gap: 55px; }
  .process-intro { position: static; }
  .faq { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  .header-inner { width: min(calc(100% - 32px), var(--max)); min-height: 70px; }
  .brand-copy small { display: none; }
  .brand-logo { width: 42px; height: 42px; }
  .menu-button { display: block; }
  .site-nav { position: fixed; left: 16px; right: 16px; top: 78px; padding: 18px; display: none; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav > a:not(.nav-cta) { display: block; padding: 12px; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .menu-button[aria-expanded="true"] > span:first-child { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-inner { width: min(calc(100% - 32px), 1240px); min-height: auto; padding: 58px 0 55px; }
  .hero h1 { font-size: clamp(31px, 10vw, 43px); }
  .hero-lead { font-size: 14px; line-height: 1.9; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .button { width: 100%; padding-left: 20px; padding-right: 20px; }
  .hero-facts { display: grid; grid-template-columns: 1fr; gap: 9px; }
  .workflow-body { min-height: 0; padding: 23px 18px; grid-template-columns: 1fr; gap: 30px; }
  .workflow-engine { padding: 10px 30px; }
  .workflow-engine::before, .workflow-engine::after { content: "↓"; position: absolute; left: 50%; color: var(--blue); transform: translateX(-50%); }
  .workflow-engine::before { top: -25px; }
  .workflow-engine::after { bottom: -25px; }
  .engine-orbit { width: 110px; height: 110px; }
  .engine-core { width: 82px; height: 82px; }
  .workflow-engine ul { max-width: 230px; margin: auto; }
  .floating-note { display: none; }
  .window-bar { grid-template-columns: 65px 1fr; }
  .window-bar .status-pill { display: none; }
  .trust-strip { padding: 22px 16px; grid-template-columns: 1fr; }
  .trust-strip div { padding: 15px 4px; border-left: 0; border-top: 1px solid var(--line); }
  .trust-strip div:first-child { border-top: 0; }
  .trust-strip div:nth-child(n+3) { margin-top: 0; }
  .section { width: min(calc(100% - 32px), var(--max)); padding: 82px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2, .process-intro h2, .faq-intro h2, .partner-copy h2, .proof-copy h2, .contact-copy h2, .deliverables-panel h2 { font-size: 38px; }
  .section-head h2 br, .process-intro h2 br, .faq-intro h2 br, .partner-copy h2 br, .proof-copy h2 br, .deliverables-panel h2 br { display: none; }
  .section-head-row { display: block; }
  .section-head-row > p { margin-top: 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 210px; padding: 28px; }
  .problem-card > span { margin-bottom: 28px; }
  .partner, .deliverables, .proof, .contact { width: calc(100% - 16px); }
  .partner-panel, .deliverables-panel, .proof { padding: 60px 24px; border-radius: 26px; }
  .lab-tabs { grid-template-columns: 1fr 1fr; }
  .lab-panel { padding: 35px 24px; grid-template-columns: 1fr; gap: 25px; }
  .lab-panel h3 { min-height: auto; font-size: 21px; }
  .lab-arrow { flex-direction: row; justify-content: center; }
  .lab-arrow i { width: 45px; height: 45px; transform: rotate(90deg); }
  .lab-footer { align-items: flex-start; flex-direction: column; }
  .service-grid, .fit-grid, .starting-steps { grid-template-columns: 1fr; }
  .service-card { min-height: 360px; padding: 30px; }
  .service-icon { margin-bottom: 38px; }
  .process-list li { grid-template-columns: 46px 1fr; }
  .process-list small { display: none; }
  .deliverable-list { grid-template-columns: 1fr; }
  .fit-card { min-height: 0; padding: 32px 26px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > * { min-height: 165px; }
  .starting-steps article { min-height: 230px; }
  .faq-list summary { min-height: 84px; font-size: 14px; line-height: 1.55; }
  .contact { border-radius: 26px 26px 0 0; }
  .contact-inner { width: calc(100% - 48px); padding: 70px 0; grid-template-columns: 1fr; gap: 45px; }
  .contact-field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px 22px; }
  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom > div { flex-direction: column; }
  .footer-bottom nav { flex-wrap: wrap; }
}

@media (max-width: 380px) {
  .header-inner, .hero-inner, .section, .footer-top, .footer-bottom { width: calc(100% - 24px); }
  .brand-copy strong { font-size: 15px; }
  .hero h1 { font-size: clamp(31px, 10vw, 38px); }
  .hero-lead { font-size: 14px; }
  .section-head h2, .process-intro h2, .faq-intro h2, .partner-copy h2, .proof-copy h2, .contact-copy h2, .deliverables-panel h2 { font-size: 34px; }
  .lab-tabs { grid-template-columns: 1fr; }
  .workflow-window { border-radius: 18px; }
  .window-bar { padding: 0 12px; }
  .workflow-body { padding: 18px 12px; }
  .partner-panel, .deliverables-panel, .proof { padding-left: 19px; padding-right: 19px; }
  .contact-inner { width: calc(100% - 32px); }
  .contact-form { padding: 24px 18px; }
}

html.is-embedded { scroll-padding-top: 0; }
html.is-embedded .skip-link,
html.is-embedded .site-header,
html.is-embedded .site-footer { display: none; }
html.is-embedded .hero-inner { min-height: 640px; padding-top: 60px; padding-bottom: 60px; }
html.is-embedded .section { padding-top: 96px; padding-bottom: 96px; }
html.is-embedded .contact { width: 100%; margin-top: 0; border-radius: 0; }
html.is-embedded .contact-inner { padding-top: 80px; padding-bottom: 80px; }

@media (max-width: 760px) {
  html.is-embedded .hero-inner { min-height: auto; padding-top: 40px; padding-bottom: 52px; }
  html.is-embedded .section { padding-top: 72px; padding-bottom: 72px; }
  html.is-embedded .contact-inner { padding-top: 64px; padding-bottom: 64px; }
}

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