:root {
  --paper: #f0f6f9;
  --white: #ffffff;
  --ink: #183c43;
  --muted: #304c53;
  --green: #17616c;
  --action: #185e68;
  --line: #b7ced9;
  --font: 'Manrope', Arial, sans-serif;
  --serif: Georgia, 'Times New Roman', serif;
  --gradient-hero:
    radial-gradient(ellipse at 97% 12%, #71c4cd 0%, transparent 60%),
    radial-gradient(ellipse at 95% 90%, #a9c7ec 0%, transparent 64%),
    linear-gradient(115deg, #fbfcfa 18%, #f0f5f8 58%, #c5e6ec 100%);
  --gradient-paper:
    radial-gradient(ellipse at 100% 10%, #d4e7f1 0%, transparent 70%),
    linear-gradient(120deg, #f6fafb 0%, #edf5f8 55%, #e0eff3 100%);
  --gradient-white:
    radial-gradient(ellipse at 0% 100%, #e1f0f2 0%, transparent 70%),
    linear-gradient(115deg, #f6fafc 0%, #e8f1f9 60%, #d8e7f4 100%);
  --gradient-dark:
    radial-gradient(ellipse at 100% 0%, #245568 0%, transparent 72%),
    linear-gradient(120deg, #142f46 0%, #183b54 55%, #1b4759 100%);
  --gradient-contact:
    radial-gradient(ellipse at 100% 100%, #b6d1ed 0%, transparent 65%),
    linear-gradient(115deg, #e0f1f5 0%, #bce3e6 50%, #a8dadd 100%);
  color-scheme: light;
}
* { box-sizing: border-box; }
body, body * { -webkit-user-select: none; user-select: none; }
input, textarea, [contenteditable="true"], .contact-email > span { -webkit-user-select: text; user-select: text; }
html { scroll-behavior: smooth; scroll-padding-top: 32px; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 1rem/1.7 var(--font); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, summary:focus-visible, [tabindex]:focus-visible { outline: 2px solid #147b91; outline-offset: 5px; }
::selection { color: #fff; background: #17616c; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, figure { margin: 0; }
em { font-family: var(--serif); font-weight: 400; }
.container { width: min(1220px, calc(100% - 112px)); margin-inline: auto; }
.eyebrow { font-size: .875rem; font-weight: 600; letter-spacing: .015em; line-height: 1.5; color: #124f59; }
.mono { font-size: .8125rem; font-weight: 500; }
.skip-link { position: fixed; left: 20px; top: -100px; z-index: 100; padding: 12px 20px; background: var(--green); color: white; }
.skip-link:focus { top: 12px; }
.site-header { position: relative; z-index: 10; }
.header-inner { height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; gap: 10px; align-items: center; flex-shrink: 0; }
.brand img { width: 36px; height: 39px; object-fit: contain; }
.brand > span { font-size: 1.35rem; font-weight: 800; line-height: 1; letter-spacing: .095em; }
.brand-suffix { display: block; font-size: .625rem; letter-spacing: .37em; margin-top: 7px; }
.desktop-nav { display: flex; gap: 34px; font-size: .875rem; margin-left: auto; margin-right: 28px; }
.desktop-nav a { color: var(--muted); }
.desktop-nav a:hover { color: #103f50; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 54px; padding: 15px 23px; border: 1px solid var(--green); border-radius: 4px; background: var(--action); color: #fff; font-size: .875rem; font-weight: 600; line-height: 1.5; transition: background .2s, border-color .2s; }
.button:hover { background: #123f4b; border-color: #123f4b; }
.button > span { font-size: 1.15rem; font-weight: 400; }
.button-small { padding: 11px 17px; min-height: 44px; background: transparent; color: var(--ink); border-color: #8dabb8; }
.button-small:hover { color: white; }
.text-link { font-size: .875rem; font-weight: 500; display: inline-flex; align-items: center; gap: 16px; text-decoration: underline; text-underline-offset: 5px; text-decoration-color: #91adba; transition: text-decoration-color .2s, color .2s; }
.text-link:hover { color: var(--green); text-decoration-color: var(--green); }
.menu-toggle { width: 44px; height: 44px; display: none; border: 0; padding: 10px; background: transparent; }
.menu-toggle span { height: 1px; background: var(--ink); display: block; margin: 6px 0; }
.mobile-nav[hidden] { display: none; }
.hero { padding-top: 76px; }
/* Bounded colour fields keep the composition visible on pages of any length. */
.hero, .section, .contact { position: relative; isolation: isolate; }
.hero::before { content: ''; position: absolute; inset: -104px 0 0; z-index: -2; background: var(--gradient-hero); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(270px, .65fr); gap: 85px; align-items: center; min-height: 470px; padding-bottom: 68px; }
.hero-copy .eyebrow { margin-bottom: 24px; }
.hero h1 { font-size: clamp(3.5rem, 6.3vw, 5.75rem); font-weight: 500; line-height: 1.08; letter-spacing: -.057em; }
.hero h1 em { color: var(--green); letter-spacing: -.06em; font-size: 1.06em; line-height: 1.12; }
.hero-description { max-width: 540px; margin-top: 28px; font-size: 1.0625rem; line-height: 1.85; color: var(--muted); }
.hero-actions { display: flex; gap: 23px; align-items: center; flex-wrap: wrap; margin-top: 30px; }
.hero-foot { display: flex; justify-content: space-between; align-items: center; gap: 28px; padding-block: 29px; border-top: 1px solid var(--line); }
.hero-foot p { font-family: var(--serif); font-size: 1.0625rem; font-style: italic; color: var(--muted); }
.hero-foot > div { display: flex; gap: 23px; font-size: .8125rem; color: var(--muted); }
.hero-foot > div span:not(:last-child)::after { content: '/'; margin-left: 23px; color: #8eacbb; }
.section { padding-block: 100px; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: end; margin-bottom: 51px; }
.section-label { margin-bottom: 20px; }
h2 { font-size: clamp(2.35rem, 3.55vw, 3.2rem); font-weight: 500; line-height: 1.2; letter-spacing: -.045em; }
h2 em { font-size: 1.12em; letter-spacing: -.045em; }
.muted-title { color: #527184; }
.section-heading > p { max-width: 365px; font-size: 1rem; color: var(--muted); line-height: 1.85; }
.expertise { background: var(--gradient-white); border-top: 1px solid #d4e4ed; }
.services { border-top: 1px solid #abc5d2; }
.service { border-bottom: 1px solid var(--line); }
.service summary { list-style: none; display: grid; grid-template-columns: 1fr 285px 33px; gap: 30px; align-items: center; padding: 27px 0; cursor: pointer; }
.service summary::-webkit-details-marker { display: none; }
.service-number, .service-icon { display: none; }
.service h3 { font-size: clamp(1.35rem, 2.25vw, 1.875rem); font-weight: 500; letter-spacing: -.03em; line-height: 1.35; transition: color .22s ease; }
.service-preview { font-size: .875rem; color: var(--muted); }
.expand-icon { width: 30px; height: 30px; position: relative; }
.expand-icon::before, .expand-icon::after { content: ''; width: 13px; height: 1px; background: #486d7b; position: absolute; top: 14px; left: 8px; }
.expand-icon::after { transform: rotate(90deg); transition: transform .32s cubic-bezier(.22, 1, .36, 1), opacity .22s ease; }
.service[data-expanded=true] .expand-icon::after, .service:not([data-expanded])[open] .expand-icon::after { transform: rotate(0); opacity: 0; }
.service[data-expanded=true] h3, .service:not([data-expanded])[open] h3, .service summary:hover h3 { color: var(--green); }
.service-content.is-animating { overflow: hidden; }
.service-body { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 3px 63px 34px 0; }
.service-intro p { font-size: 1rem; color: var(--muted); line-height: 1.85; max-width: 480px; }
.capabilities { padding: 0; margin: 0; list-style: none; }
.capabilities li { font-size: .875rem; padding: 7px 0; color: var(--muted); display: flex; gap: 12px; }
.capabilities li::before { content: '—'; color: #6c939f; }
.technology-row { display: flex; justify-content: space-between; gap: 25px; align-items: center; margin-top: 40px; }
.technology-row > .mono { color: var(--muted); font-size: .8125rem; }
.technology-row > div { display: flex; gap: 28px; flex-wrap: wrap; color: var(--muted); font-size: .9375rem; font-weight: 600; }
.technology-row .aws-word { font-size: 1.5rem; line-height: 1; }
.approach { background: var(--gradient-dark); color: #e9f4fb; }
.approach .section-label { color: #b5d7e8; }
.approach .section-heading > p { color: #c5d9e4; }
.approach h2 em { color: #aedce8; }

.lifecycle { --active-step: 0; position: relative; display: grid; grid-template-columns: repeat(5, 1fr); border-block: 1px solid #50798e; }
.lifecycle::after { content: ''; position: absolute; left: 0; bottom: 0; width: 20%; height: 3px; background: #aedce8; pointer-events: none; transform: translateX(calc(var(--active-step) * 100%)); transition: transform .38s cubic-bezier(.22, 1, .36, 1); }
.lifecycle button { background: transparent; color: #c5d9e4; border: 0; border-bottom: 3px solid transparent; padding: 23px 15px 21px; text-align: left; display: flex; flex-direction: column; gap: 12px; transition: color .2s ease, background .2s ease; }
.lifecycle button:first-child { padding-left: 0; }
.lifecycle button:hover { color: white; }
.lifecycle button[aria-selected=true] { color: #f1f8fc; }
.stage-number { font-size: .75rem; }
.lifecycle button > span:nth-child(2) { font-size: 1.5rem; font-weight: 500; letter-spacing: -.025em; transition: transform .22s ease; }
@media (hover: hover) {
  .lifecycle button:hover { background: rgb(174 220 232 / 4%); }
  .lifecycle button:hover > span:nth-child(2) { transform: translateY(-2px); }
}
.stage-arrow { display: none; }
.stage-panel { display: grid; grid-template-columns: 1.25fr .75fr; gap: 100px; padding-block: 43px 12px; min-height: 304px; }
.stage-panel[hidden] { display: none; }
.stage-panel > div > .mono:first-child { color: #b5d7e8; font-size: .8125rem; }
.stage-panel h3 { font-size: 1.7rem; letter-spacing: -.025em; font-weight: 500; line-height: 1.4; margin-block: 12px 14px; max-width: 500px; }
.stage-panel p { color: #c5d9e4; font-size: 1rem; line-height: 1.85; }
.stage-deliverables { display: flex; flex-direction: column; }
.stage-deliverables > .mono { margin-bottom: 17px; }
.stage-deliverables > span:not(.mono) { font-size: .875rem; padding: 13px 0; border-bottom: 1px solid #40677d; color: #dbe9f1; }
.approach-note { margin-top: 24px; max-width: 800px; font-size: .875rem; color: #c5d9e4; }
.approach-note > span { display: none; }
.approach :focus-visible { outline-color: #9ee2ef; }
.audience { background: var(--gradient-white); }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 45px; }
.audience-card { border-top: 1px solid #aac5d1; padding-top: 24px; display: flex; flex-direction: column; align-items: flex-start; }
.audience-label { font-size: .8125rem; color: var(--muted); }
.audience-card h3 { font-family: var(--serif); font-size: 1.8rem; line-height: 1.2; font-weight: 400; letter-spacing: -.03em; margin-block: 22px 18px; }
.audience-card p { font-size: 1rem; line-height: 1.8; color: var(--muted); margin-bottom: 25px; }
.team { background: var(--gradient-paper); border-top: 1px solid #d4e4ed; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.portrait { height: 390px; background: #050607; }
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 23%; }
.founder:nth-child(3) .portrait img { object-position: 50% 12%; }
.founder-caption { padding-top: 18px; }
.founder-caption h3 { font-size: 1.1875rem; font-weight: 600; letter-spacing: -.025em; }
.founder-caption > span { color: var(--muted); font-size: .875rem; display: block; margin-top: 3px; }
.meeting-section { border-top: 1px solid #afcbd5; background: var(--gradient-white); }
.meeting-inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); align-items: center; gap: 60px; padding-block: 62px; }
.meeting-copy .section-label { margin-bottom: 13px; }
.meeting-copy h2 { margin-bottom: 14px; }
.meeting-copy p { max-width: 620px; color: var(--muted); line-height: 1.85; }
.meeting-action { display: flex; justify-content: flex-end; align-items: center; gap: 24px; }
.meeting-meta { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .8125rem; line-height: 1.5; white-space: nowrap; }
.meeting-meta strong { color: var(--green); font-family: var(--serif); font-size: 3rem; font-weight: 400; line-height: 1; }
.contact { padding-block: 80px 85px; border-top: 1px solid #9bbfcd; background: var(--gradient-contact); }
.contact .section-label { color: #124f59; }
.contact-main { display: flex; justify-content: space-between; gap: 50px; align-items: center; }
.contact h2 { font-size: clamp(3rem, 5vw, 4.8rem); line-height: 1.1; }
.contact h2 em { color: var(--green); }
.contact-arrow { display: inline-flex; align-items: center; gap: 44px; color: #fff; background: var(--action); border: 1px solid var(--green); border-radius: 4px; min-height: 54px; padding: 14px 25px; font-size: 1rem; font-weight: 500; flex-shrink: 0; }
.contact-arrow:hover { background: #123f4b; }
.contact-arrow > span { font-size: 1.4rem; font-weight: 400; }
.contact-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 45px; margin-top: 35px; }
.contact-bottom p { max-width: 480px; font-size: 1rem; color: var(--muted); line-height: 1.85; }
.contact-email { display: flex; gap: 8px; align-items: center; position: relative; min-width: 0; }
.contact-email > span { font-size: 1.2rem; border-bottom: 1px solid #7aa4b3; padding-bottom: 3px; letter-spacing: -.025em; overflow-wrap: anywhere; }
.copy-email { display: grid; place-items: center; width: 44px; height: 44px; background: transparent; border: 0; color: #275563; flex-shrink: 0; }
.copy-email:hover { background: #8cc1d040; }
.copy-status { position: absolute; right: 0; bottom: -30px; font-size: .8125rem; color: #275563; }
.footer { background: var(--gradient-paper); padding-block: 37px 24px; }
.footer-top { display: flex; align-items: center; gap: 30px; }
.footer-top > p { font-size: .875rem; color: var(--muted); max-width: 220px; line-height: 1.5; }
.footer-top nav { display: flex; gap: 25px; margin-left: auto; font-size: .875rem; color: var(--muted); }
.footer-top nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; align-items: center; padding-top: 24px; margin-top: 34px; border-top: 1px solid var(--line); font-size: .75rem; color: var(--muted); }
.footer-bottom a { display: flex; gap: 12px; color: var(--muted); }
@media (max-width: 1100px) {
  .container { width: calc(100% - 72px); }
  .hero-grid { gap: 35px; }
  .hero h1 { font-size: clamp(3.1rem, 5.6vw, 4.5rem); }
  .hero-actions { gap: 19px; }
  .hero-actions .text-link { margin-top: 2px; }
  .hero-foot { gap: 20px; }
  .hero-foot > div { gap: 12px; }
  .hero-foot > div span:not(:last-child)::after { margin-left: 12px; }
  .section-heading { gap: 45px; }
  .section-heading > p { font-size: 1rem; }
  .service summary { grid-template-columns: 1fr 230px 30px; gap: 18px; }
  .service-body { gap: 45px; padding-right: 45px; }
  .technology-row > div { gap: 20px; }
  .stage-panel { gap: 60px; }
  .audience-grid { gap: 30px; }
  .portrait { height: 330px; }
  .contact-bottom { align-items: flex-start; }
  .contact-email > span { font-size: 1rem; }
  .footer-top > p { max-width: 185px; }
}
@media (max-width: 960px) {
  .meeting-inner { grid-template-columns: 1fr; gap: 26px; }
  .meeting-action { justify-content: flex-start; }
}
@media (max-width: 760px) {
  html { scroll-padding-top: 22px; }
  .container { width: calc(100% - 40px); }
  .header-inner { height: 81px; }
  .brand img { width: 30px; height: 34px; }
  .brand > span { font-size: 1.2rem; }
  .brand-suffix { font-size: .6rem; margin-top: 6px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { position: absolute; top: 81px; left: 0; right: 0; padding: 10px 20px 20px; background: var(--gradient-paper); border-bottom: 1px solid #abc8d5; display: grid; box-shadow: 0 15px 25px #183b5410; }
  .mobile-nav a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .mobile-nav a:last-child { border: 0; color: var(--green); font-weight: 600; }
  .menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { padding-top: 43px; }
  .hero::before { inset-block-start: -81px; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; min-height: 0; padding-bottom: 34px; }
  .hero-copy .eyebrow { margin-bottom: 20px; }
  .eyebrow { font-size: .8125rem; }
  .hero h1 { font-size: clamp(2.85rem, 8.9vw, 4.7rem); line-height: 1.13; }
  .hero h1 em { font-size: 1.12em; }
  .hero-description { font-size: 1rem; line-height: 1.8; max-width: 520px; margin-top: 24px; }
  .hero-actions { gap: 20px; margin-top: 25px; }
  .hero-actions .button { font-size: .875rem; padding-inline: 19px; }
  .hero-foot { display: block; padding-block: 25px; }
  .hero-foot p { font-size: 1rem; }
  .hero-foot > div { font-size: .75rem; margin-top: 13px; flex-wrap: wrap; gap: 12px; }
  .hero-foot > div span:not(:last-child)::after { margin-left: 12px; }
  .section { padding-block: 64px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 33px; }
  .section-label { margin-bottom: 15px; }
  h2 { font-size: clamp(2rem, 6vw, 2.65rem); line-height: 1.23; }
  .section-heading > p { max-width: 520px; font-size: 1rem; line-height: 1.8; }
  .service summary { grid-template-columns: 1fr 30px; gap: 15px; padding: 23px 0; }
  .service-preview { display: none; }
  .service h3 { font-size: 1.28rem; line-height: 1.5; }
  .service-body { grid-template-columns: 1fr; gap: 24px; padding: 0 0 28px; }
  .service-intro p { font-size: 1rem; }
  .capabilities li { font-size: .875rem; padding-block: 6px; }
  .technology-row { display: block; margin-top: 30px; }
  .technology-row > div { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); align-items: center; margin-top: 20px; gap: 14px 8px; font-size: .875rem; }
  .technology-row > div > span { grid-column: span 2; text-align: center; }
  .technology-row > div > span:nth-child(4) { grid-column: 2 / span 2; }
  .technology-row > div > span:nth-child(5) { grid-column: 4 / span 2; }
  .lifecycle button { padding: 18px 6px 17px; gap: 13px; }
  .lifecycle button > span:nth-child(2) { font-size: .9375rem; letter-spacing: -.03em; }
  .stage-number { font-size: .75rem; }
  .stage-panel { grid-template-columns: 1fr; gap: 29px; padding-block: 27px 8px; min-height: 550px; }
  .stage-panel h3 { font-size: 1.45rem; line-height: 1.4; margin-block: 10px 15px; }
  .stage-panel p { font-size: 1rem; }
  .stage-deliverables > .mono { margin-bottom: 5px; }
  .stage-deliverables > span:not(.mono) { padding-block: 11px; }
  .approach-note { margin-top: 16px; font-size: .875rem; }
  .audience-grid { grid-template-columns: 1fr; gap: 33px; }
  .audience-card { padding-top: 21px; }
  .audience-card h3 { font-size: 1.75rem; margin-block: 15px 14px; }
  .audience-card p { max-width: 510px; margin-bottom: 19px; }
  .team-grid { grid-template-columns: 1fr; gap: 34px; }
  .portrait { height: auto; aspect-ratio: 1 / 1.1; max-height: 530px; }
  .founder-caption { padding-top: 16px; }
  .meeting-inner { padding-block: 48px; }
  .meeting-action { justify-content: flex-start; align-items: flex-start; flex-direction: column; gap: 15px; }
  .meeting-meta strong { font-size: 2.65rem; }
  .meeting-action .button { gap: 14px; padding-inline: 18px; }
  .contact { padding-block: 52px 58px; }
  .contact-main { align-items: flex-start; gap: 26px; flex-direction: column; }
  .contact h2 { font-size: clamp(2.5rem, 8vw, 3.3rem); line-height: 1.16; }
  .contact-arrow { font-size: .875rem; min-height: 50px; padding: 12px 19px; gap: 25px; }
  .contact-bottom { display: block; margin-top: 27px; }
  .contact-bottom p { font-size: 1rem; max-width: 470px; }
  .contact-email { margin-top: 22px; width: max-content; max-width: 100%; }
  .contact-email > span { font-size: 1.125rem; }
  .footer { padding-block: 32px 21px; }
  .footer-top { flex-wrap: wrap; gap: 22px; }
  .footer-top > p { margin-left: auto; max-width: 150px; font-size: .75rem; }
  .footer-top nav { margin: 0; width: 100%; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .875rem; }
  .footer-bottom { align-items: flex-start; gap: 14px; margin-top: 26px; padding-top: 19px; font-size: .75rem; }
  .footer-bottom a { white-space: nowrap; gap: 8px; }
}
@media (max-width: 360px) {
  .hero h1 { font-size: 2.5rem; }
  .hero-foot > div { gap: 8px; }
  .hero-foot > div span:not(:last-child)::after { margin-left: 8px; }
  .technology-row > div { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px 4px; font-size: .75rem; }
  .lifecycle button { padding-inline: 3px; }
  .lifecycle button > span:nth-child(2) { font-size: .875rem; }
  .contact-email > span { font-size: 1rem; }
  .footer-top > p { max-width: 125px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}


/* The opening section explains the work; founder portraits live in the team section. */
.hero-scope { align-self: center; padding-top: 26px; }
.scope-intro { color: var(--muted); font-size: .8125rem; margin-bottom: 28px; }
.scope-list { list-style: none; padding: 0 0 0 25px; margin: 0; border-left: 1px solid #9cbecc; }
.scope-list li { position: relative; padding: 0 0 29px; }
.scope-list li:last-child { padding-bottom: 2px; }
.scope-list li::before { content: ''; position: absolute; width: 12px; height: 1px; top: 13px; left: -26px; background: #729dac; }
.scope-list h2 { font-size: 1.25rem; font-weight: 500; line-height: 1.4; letter-spacing: -.025em; }
.scope-list p { font-size: .9375rem; line-height: 1.75; margin-top: 7px; color: var(--muted); max-width: 260px; }
@media (min-width: 761px) and (max-width: 1100px) {
  .hero-grid { grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr); gap: 38px; }
  .hero h1 { font-size: clamp(2.9rem, 5.9vw, 4rem); }
  .hero h1 em { font-size: 1.04em; }
  .scope-list h2 { font-size: 1.125rem; }
  .scope-list p { font-size: .875rem; }
}
@media (max-width: 760px) {
  .hero-grid { gap: 37px; padding-bottom: 34px; }
  .hero h1 { font-size: clamp(2.8rem, 8.9vw, 4.6rem); }
  .hero h1 em { font-size: 1.06em; }
  .hero-scope { padding-top: 0; border-top: 1px solid var(--line); }
  .scope-intro { margin-top: 25px; margin-bottom: 22px; }
  .scope-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 17px; border: 0; padding: 0; }
  .scope-list li, .scope-list li:last-child { padding: 0; }
  .scope-list li::before { display: none; }
  .scope-list h2 { font-size: .9375rem; line-height: 1.5; letter-spacing: -.02em; }
  .scope-list p { font-size: .875rem; line-height: 1.65; margin-top: 7px; }
}
@media (max-width: 480px) {
  .scope-list { grid-template-columns: 1fr; gap: 20px; border-left: 1px solid #9cbecc; padding-left: 22px; }
  .scope-list h2 { font-size: 1.0625rem; }
  .scope-list p { max-width: 100%; margin-top: 4px; }
  .scope-list li::before { display: block; left: -23px; width: 10px; }
  .hero-foot p { font-size: .9375rem; }
}
@media (max-width: 360px) {
  .hero h1 { font-size: 2.5rem; }
}
