:root {
  --ink: #102b2d;
  --ink-soft: #345052;
  --paper: #f5f3ed;
  --surface: #ffffff;
  --surface-soft: #e9efec;
  --line: rgba(16, 43, 45, .14);
  --teal: #0b6663;
  --teal-deep: #073f40;
  --mint: #bfe3d6;
  --lime: #d8ed83;
  --coral: #e46e54;
  --shadow: 0 26px 80px rgba(12, 43, 43, .13);
  --radius: 24px;
  --font: "Aptos", "Segoe UI", system-ui, -apple-system, sans-serif;
  --display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
}

body[data-theme="dark"] {
  --ink: #eef7f3;
  --ink-soft: #b9cbc5;
  --paper: #071f21;
  --surface: #0d2b2e;
  --surface-soft: #14383a;
  --line: rgba(234, 246, 240, .14);
  --teal: #6dd2c5;
  --teal-deep: #062326;
  --mint: #245d58;
  --lime: #d8ed83;
  --coral: #f18b73;
  --shadow: 0 26px 80px rgba(0, 0, 0, .26);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; overflow-x: clip; background: var(--paper); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body::selection { background: var(--lime); color: #102b2d; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 2000; padding: 12px 16px; background: var(--surface); border-radius: 10px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }
.section-shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.content-section { padding-block: 120px; }
.muted-section { background: var(--surface-soft); }

.scroll-progress { position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 1001; background: transparent; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--coral), var(--lime)); }

.site-header { position: sticky; top: 0; z-index: 1000; padding: 14px 0; backdrop-filter: blur(18px); background: color-mix(in srgb, var(--paper) 84%, transparent); border-bottom: 1px solid var(--line); }
.nav-shell { width: min(1400px, calc(100% - 36px)); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--ink); color: var(--paper); font-weight: 800; letter-spacing: -.05em; }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: .95rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: 4px; color: var(--ink-soft); font-size: .7rem; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.main-nav a { position: relative; font-size: .82rem; font-weight: 700; color: var(--ink-soft); }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--coral); transition: right .25s ease; }
.main-nav a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-button, .menu-toggle { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); cursor: pointer; display: grid; place-items: center; }
.icon-button svg { width: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 1.7; }
.language-toggle { font-weight: 800; font-size: .75rem; }
.menu-toggle { display: none; }
.menu-toggle span { width: 18px; height: 2px; background: currentColor; margin: 2px 0; transition: transform .25s ease; }

.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 22px; border: 0; border-radius: 15px; background: var(--teal); color: #fff; font-weight: 800; font-size: .84rem; cursor: pointer; box-shadow: 0 10px 28px color-mix(in srgb, var(--teal) 24%, transparent); transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px color-mix(in srgb, var(--teal) 30%, transparent); }
.button-small { min-height: 40px; padding: 0 16px; border-radius: 12px; }
.button-light { background: #f7fff9; color: #0a4242; }
.button-secondary { border: 1px solid color-mix(in srgb, var(--ink) 22%, transparent); background: transparent; color: var(--ink); box-shadow: none; }
.button-secondary:hover { background: color-mix(in srgb, var(--surface) 55%, transparent); box-shadow: none; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: .86rem; }
.text-link span:last-child { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; transition: transform .25s ease; }
.text-link:hover span:last-child { transform: translate(3px, -3px); }

 .hero { min-height: calc(100svh - 76px); padding-block: 88px 76px; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: clamp(48px, 7vw, 108px); }
 .hero-copy { position: relative; z-index: 2; padding-block: 14px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--teal); font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span:first-child { width: 34px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--lime); }
.hero h1, .section-heading h2, .robotics-copy h2, .science-copy h2, .profile-copy h2, .engine-copy h2, .appointment-copy h2, .appointment-dialog h2 { margin: 0; font-family: var(--display); font-weight: 700; letter-spacing: -.055em; line-height: .97; }
.hero h1 { max-width: 800px; font-size: clamp(3.35rem, 5.2vw, 5.55rem); }
.hero h1 em, .section-heading h2 em { color: var(--teal); font-style: normal; }
.hero-lead { max-width: 640px; margin: 30px 0 0; color: var(--ink-soft); font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.68; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 52px 0 0; border-top: 1px solid var(--line); }
.hero-metrics div { padding: 20px 18px 0 0; min-width: 0; }
.hero-metrics div + div { border-left: 1px solid var(--line); padding-left: 22px; }
.hero-metrics dt { font-family: var(--display); font-weight: 800; font-size: 1.1rem; }
.hero-metrics dd { margin: 5px 0 0; color: var(--ink-soft); font-size: .73rem; line-height: 1.35; }

.hero-visual { position: relative; min-width: 0; padding-top: 8px; }
.visual-frame { position: relative; min-height: 620px; overflow: hidden; border-radius: 38px 38px 150px 38px; box-shadow: 0 26px 72px rgba(5, 24, 26, .16); background: var(--surface-soft); border: 1px solid rgba(255,255,255,.28); }
.visual-frame img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: 52% 26%; }
.visual-gradient { position: absolute; inset: 38% 0 0; background: linear-gradient(transparent, rgba(5, 38, 39, .88)); }
.visual-caption { position: absolute; left: 28px; right: 28px; bottom: 28px; display: grid; color: #fff; }
.visual-caption span { font-family: var(--display); font-size: 1.5rem; font-weight: 800; letter-spacing: -.03em; }
.visual-caption small { margin-top: 4px; color: rgba(255,255,255,.8); line-height: 1.45; }

.trust-rail { border-block: 1px solid var(--line); background: var(--surface); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid p { margin: 0; min-height: 88px; padding: 0 20px; display: flex; align-items: center; gap: 14px; font-size: .78rem; font-weight: 750; }
.trust-grid p + p { border-left: 1px solid var(--line); }
.trust-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--surface-soft); color: var(--teal); font-size: .65rem; font-weight: 900; }

.profile-section { background: var(--surface-soft); }
.profile-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(54px, 8vw, 120px); align-items: center; }
.profile-copy h2 { max-width: 720px; font-size: clamp(3rem, 5vw, 5.6rem); }
.profile-copy > p:not(.eyebrow) { max-width: 680px; margin: 28px 0 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.75; }
.profile-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 32px; }
.credential-panel { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); box-shadow: var(--shadow); }
.credential-panel article { display: grid; grid-template-columns: 48px 1fr; gap: 18px; align-items: center; min-height: 108px; padding: 24px 28px; }
.credential-panel article + article { border-top: 1px solid var(--line); }
.credential-panel article > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--surface-soft); color: var(--coral); font-size: .66rem; font-weight: 900; }
.credential-panel strong, .credential-panel small { display: block; }
.credential-panel strong { font-size: .9rem; line-height: 1.35; }
.credential-panel small { margin-top: 5px; color: var(--ink-soft); font-size: .7rem; line-height: 1.4; }

.section-heading { display: grid; grid-template-columns: minmax(180px, .42fr) 1.58fr; gap: 44px; align-items: start; margin-bottom: 58px; }
.section-heading h2 { max-width: 820px; font-size: clamp(2.7rem, 5vw, 5.25rem); }
.section-heading > div > p { max-width: 640px; margin: 22px 0 0; color: var(--ink-soft); font-size: 1rem; }

.orientation-layout { display: grid; grid-template-columns: .75fr 1.25fr; min-height: 490px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.orientation-tabs { border-right: 1px solid var(--line); }
.orientation-tab { width: 100%; min-height: 162px; padding: 30px; display: grid; grid-template-columns: 44px 1fr; grid-template-rows: auto auto; gap: 3px 16px; text-align: left; border: 0; border-bottom: 1px solid var(--line); background: transparent; cursor: pointer; transition: background .25s ease; }
.orientation-tab:last-child { border-bottom: 0; }
.orientation-tab > span { grid-row: 1 / 3; align-self: center; color: var(--teal); font-weight: 900; }
.orientation-tab strong { font-family: var(--display); font-size: 1.15rem; letter-spacing: -.02em; }
.orientation-tab small { color: var(--ink-soft); }
.orientation-tab.active { background: var(--ink); color: var(--paper); }
.orientation-tab.active small { color: color-mix(in srgb, var(--paper) 68%, transparent); }
.orientation-tab.active > span { color: var(--lime); }
.orientation-panel { padding: clamp(38px, 6vw, 72px); display: grid; align-content: center; }
.orientation-panel > span { color: var(--coral); font-weight: 900; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.orientation-panel h3 { margin: 12px 0 16px; font-family: var(--display); font-size: clamp(2rem, 3vw, 3.25rem); line-height: 1.05; letter-spacing: -.045em; }
.orientation-panel > p { max-width: 650px; color: var(--ink-soft); font-size: 1.02rem; }
.orientation-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--line); }
.orientation-columns strong { font-size: .78rem; }
.orientation-columns ul { margin: 10px 0 0; padding: 0; list-style: none; }
.orientation-columns li { position: relative; margin: 7px 0; padding-left: 18px; color: var(--ink-soft); font-size: .82rem; }
.orientation-columns li::before { content: ""; position: absolute; left: 0; top: .7em; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.clinical-note { margin: 18px 0 0; color: var(--ink-soft); font-size: .72rem; }

.expertise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.expertise-card { position: relative; min-height: 390px; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.expertise-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.expertise-card .card-number { display: inline-flex; align-items: center; gap: 10px; color: var(--teal); font-size: .68rem; font-weight: 900; }
.expertise-card .card-number::after { content: ""; width: 38px; height: 1px; background: currentColor; }
.expertise-card h3 { margin: 48px 0 18px; max-width: 230px; font-family: var(--display); font-size: 1.55rem; line-height: 1.08; letter-spacing: -.035em; }
.expertise-card p { color: var(--ink-soft); font-size: .83rem; }
.expertise-card .card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 20px; }
.expertise-card .card-tags span { padding: 6px 9px; border-radius: 99px; background: var(--surface-soft); color: var(--ink-soft); font-size: .63rem; font-weight: 800; }
.card-action { width: 100%; margin-top: 18px; padding: 14px 0 0; display: flex; justify-content: space-between; border: 0; border-top: 1px solid var(--line); background: transparent; color: var(--teal); font-size: .72rem; font-weight: 900; cursor: pointer; text-align: left; }
.card-action span { font-size: 1rem; transition: transform .25s ease; }
.card-action:hover span { transform: translate(3px, -3px); }
.expertise-card.featured { background: var(--teal-deep); color: #fff; }
.expertise-card.featured p { color: rgba(255,255,255,.68); }
.expertise-card.featured .card-number { color: var(--lime); }
.expertise-card.featured .card-tags span { background: rgba(255,255,255,.1); color: rgba(255,255,255,.76); }
.expertise-card.featured .card-action { border-color: rgba(255,255,255,.16); color: var(--lime); }

.robotics-section { display: grid; grid-template-columns: 1.12fr .88fr; min-height: 820px; background: var(--teal-deep); color: #fff; }
.robotics-image { position: relative; min-height: 680px; overflow: hidden; }
.robotics-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,63,64,.08) 0%, transparent 42%, rgba(7,63,64,.50) 100%); }
.robotics-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; filter: saturate(.84) contrast(1.08) brightness(1.02); }
.image-index { position: absolute; left: 28px; bottom: 28px; z-index: 2; padding: 9px 12px; border-radius: 10px; background: rgba(6,35,38,.68); backdrop-filter: blur(8px); font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.robotics-copy { padding: clamp(56px, 6vw, 100px); align-self: center; }
.robotics-copy h2 { max-width: 620px; font-size: clamp(2.9rem, 4.8vw, 5.25rem); }
.robotics-copy > p:not(.eyebrow) { max-width: 600px; color: rgba(255,255,255,.76); font-size: 1.02rem; line-height: 1.75; }
.feature-list { margin: 40px 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.14); }
.feature-list li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.feature-list li > span { color: var(--lime); font-size: .7rem; font-weight: 900; }
.feature-list strong { font-size: .9rem; }
.feature-list p { margin: 4px 0 0; color: rgba(255,255,255,.62); font-size: .76rem; }

.journey-shell { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.journey-nav { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.journey-step { min-height: 106px; padding: 22px; border: 0; border-right: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; }
.journey-step:last-child { border-right: 0; }
.journey-step span { display: block; margin-bottom: 14px; color: var(--teal); font-size: .65rem; font-weight: 900; }
.journey-step strong { font-family: var(--display); font-size: 1rem; }
.journey-step.active { background: var(--lime); color: #102b2d; }
.journey-step.active span { color: #0b6663; }
.journey-detail { min-height: 330px; padding: clamp(34px, 6vw, 72px); display: grid; grid-template-columns: .8fr 1.2fr; gap: 68px; align-items: center; }
.journey-detail > div:first-child span { color: var(--coral); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.journey-detail h3 { margin: 12px 0; font-family: var(--display); font-size: clamp(2rem, 3.4vw, 3.6rem); line-height: 1; letter-spacing: -.045em; }
.journey-detail > div:last-child p { margin: 0; color: var(--ink-soft); }
.journey-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.journey-checks span { padding: 12px 14px; border-radius: 12px; background: var(--surface-soft); font-size: .75rem; font-weight: 800; }

.evidence-section { background: var(--surface); }
.publication-toolbar { margin-bottom: 12px; padding: 18px; display: grid; grid-template-columns: 1.4fr .8fr auto; gap: 12px; align-items: end; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.publication-toolbar label { display: grid; gap: 6px; color: var(--ink-soft); font-size: .66rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.publication-toolbar input, .publication-toolbar select { width: 100%; min-height: 46px; padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--ink); font: inherit; font-size: .82rem; }
.filter-reset { min-height: 46px; padding: 0 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--teal); font-weight: 850; cursor: pointer; }
.filter-status { min-height: 24px; margin: 0 0 14px; color: var(--ink-soft); font-size: .72rem; }
.publication-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.publication-card { min-height: 390px; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); }
.publication-meta { display: flex; justify-content: space-between; gap: 16px; color: var(--teal); font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.publication-card h3 { margin: 52px 0 16px; font-family: var(--display); font-size: 1.35rem; line-height: 1.14; letter-spacing: -.03em; }
.publication-card p { color: var(--ink-soft); font-size: .8rem; }
.publication-card .publication-excerpt { margin-top: 4px; font-size: .74rem; line-height: 1.55; }
.publication-card footer { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; color: var(--ink-soft); font-size: .68rem; }
.publication-card footer a { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-weight: 900; }
.publication-card footer a span { font-size: 1rem; }
.publication-empty { grid-column: 1 / -1; padding: 34px; border: 1px dashed var(--line); border-radius: 18px; color: var(--ink-soft); text-align: center; }
.publication-link { margin-top: 34px; }

.science-band { margin-block: 32px 120px; display: grid; grid-template-columns: .84fr 1.16fr; min-height: 560px; overflow: hidden; border-radius: 28px; background: var(--mint); color: #102b2d; }
.science-image { min-height: 500px; }
.science-image img { width: 100%; height: 100%; object-fit: cover; object-position: 35% center; }
.science-copy { padding: clamp(44px, 7vw, 92px); align-self: center; }
.science-copy h2 { font-size: clamp(2.8rem, 4.7vw, 5rem); }
.science-copy > p:not(.eyebrow) { color: #345052; }
.science-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 42px; }
.science-stats p { margin: 0; }
.science-stats strong { display: block; font-family: var(--display); font-size: 1.3rem; }
.science-stats span { display: block; margin-top: 4px; color: #345052; font-size: .68rem; line-height: 1.3; }

.engine-section { background: #071f21; color: #fff; }
.engine-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 8vw, 120px); align-items: center; }
.engine-copy h2 { font-size: clamp(3rem, 5vw, 5.2rem); }
.engine-copy > p:not(.eyebrow) { color: rgba(255,255,255,.66); }
.engine-legend { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 18px; }
.engine-legend > span { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.68); font-size: .68rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.input { background: #fff; }.dot.automated { background: var(--lime); }.dot.approval { background: var(--coral); }
.engine-map { position: relative; min-height: 500px; border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: radial-gradient(circle at 52% 45%, rgba(216,237,131,.12), transparent 40%); overflow: hidden; }
.engine-map::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px); background-size: 44px 44px; }
.map-node { position: absolute; z-index: 2; min-width: 165px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(10,45,47,.88); backdrop-filter: blur(10px); }
.map-node span { color: var(--lime); font-size: .6rem; font-weight: 900; }
.map-node strong, .map-node small { display: block; }
.map-node strong { margin-top: 3px; font-size: .82rem; }
.map-node small { color: rgba(255,255,255,.55); font-size: .65rem; }
.map-node.source { left: 7%; top: 42%; }
.map-node.ai { left: 37%; top: 18%; }
.map-node.approve { right: 7%; top: 42%; }
.map-line { position: absolute; z-index: 1; height: 1px; background: linear-gradient(90deg, rgba(216,237,131,.15), var(--lime), rgba(216,237,131,.15)); transform-origin: left center; }
.line-one { width: 190px; left: 25%; top: 44%; transform: rotate(-33deg); }
.line-two { width: 190px; left: 55%; top: 32%; transform: rotate(33deg); }
.line-three { width: 140px; right: 18%; top: 61%; transform: rotate(55deg); }
.map-outputs { position: absolute; right: 7%; bottom: 8%; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.map-outputs span { min-width: 78px; padding: 9px 10px; border-radius: 10px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); text-align: center; font-size: .65rem; font-weight: 800; }

.appointment-section { padding-block: 120px; background: var(--lime); color: #102b2d; }
.appointment-grid { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(50px, 9vw, 130px); align-items: center; }
.appointment-copy h2 { max-width: 700px; font-size: clamp(3rem, 5vw, 5.5rem); }
.appointment-copy > p:not(.eyebrow) { max-width: 650px; color: #345052; }
.appointment-copy .button { margin-top: 20px; }
.contact-actions { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; }
.appointment-copy .contact-actions .button { margin-top: 0; }
.prototype-note { display: block; margin-top: 12px; color: #4c6464; }
.location-card { overflow: hidden; padding: 34px; border-radius: 24px; background: #fff; color: #102b2d; box-shadow: 0 25px 60px rgba(16,43,45,.14); }
.location-label { color: #0b6663; font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.location-card h3 { margin: 50px 0 0; font-family: var(--display); font-size: 2.4rem; letter-spacing: -.04em; }
.location-card > p { margin: 0; color: #526a6b; }
.location-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 30px; }
.location-meta span { padding: 8px 10px; border-radius: 99px; background: #e9efec; color: #345052; font-size: .65rem; font-weight: 800; }
.location-footer { margin: 34px -34px -34px; background: #102b2d; color: rgba(255,255,255,.75); font-size: .68rem; }
.location-footer a { padding: 18px 34px; display: flex; justify-content: space-between; align-items: center; }
.location-actions a + a { border-top: 1px solid rgba(255,255,255,.12); }

.site-footer { padding-block: 64px 24px; background: #06181a; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 40px; }
.footer-brand .brand-mark { background: #fff; color: #102b2d; }
.footer-brand .brand-copy small { color: rgba(255,255,255,.5); }
.footer-grid > div:first-child > p { max-width: 400px; color: rgba(255,255,255,.58); font-size: .82rem; line-height: 1.6; }
.footer-grid > div:not(:first-child) { display: grid; align-content: start; gap: 8px; }
.footer-grid > div:not(:first-child) strong { margin-bottom: 6px; color: rgba(255,255,255,.44); font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-grid > div:not(:first-child) a { color: rgba(255,255,255,.76); font-size: .78rem; }
.footer-action { width: max-content; padding: 0; border: 0; background: transparent; color: rgba(255,255,255,.76); cursor: pointer; font-size: .78rem; text-align: left; }
.footer-status { color: rgba(255,255,255,.6); font-size: .72rem; line-height: 1.45; }
.footer-bottom { margin-top: 44px; padding-top: 18px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.44); font-size: .68rem; }

.whatsapp-float {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 1500;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-2px) scale(1.04); background: #20bd5a; box-shadow: 0 12px 32px rgba(0,0,0,.34); }
.whatsapp-float:focus-visible { outline: 3px solid var(--ink); outline-offset: 4px; }
.whatsapp-float svg { width: 34px; height: 34px; fill: currentColor; }

.appointment-dialog { width: min(650px, calc(100% - 28px)); max-height: calc(100dvh - 28px); overflow-y: auto; padding: 44px; border: 0; border-radius: 26px; background: var(--surface); color: var(--ink); box-shadow: 0 40px 120px rgba(0,0,0,.35); }
.booking-dialog { width: min(780px, calc(100% - 28px)); }
.appointment-dialog::backdrop { background: rgba(4,25,27,.72); backdrop-filter: blur(8px); }
.dialog-close { position: absolute; right: 18px; top: 16px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 1.4rem; }
.appointment-dialog h2 { max-width: 520px; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.appointment-dialog ol { margin: 34px 0 0; padding: 0; list-style: none; }
.appointment-dialog li { display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.appointment-dialog li > span { color: var(--coral); font-size: .68rem; font-weight: 900; }
.appointment-dialog li strong { font-size: .88rem; }
.appointment-dialog li p { margin: 3px 0 0; color: var(--ink-soft); font-size: .76rem; }
.dialog-note { display: flex; gap: 12px; margin-top: 24px; padding: 15px; border-radius: 14px; background: var(--surface-soft); }
.dialog-note > span { display: grid; place-items: center; flex: 0 0 24px; height: 24px; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 900; }
.dialog-note p { margin: 0; color: var(--ink-soft); font-size: .72rem; }
.dialog-actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.booking-form { margin-top: 28px; }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-field { display: grid; gap: 7px; color: var(--ink); font-size: .72rem; font-weight: 800; }
.booking-field input, .booking-field select { width: 100%; min-height: 48px; padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-soft); color: var(--ink); font: inherit; font-size: .86rem; font-weight: 500; outline: none; }
.booking-field input:focus, .booking-field select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(12,105,100,.13); }
.booking-consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin-top: 20px; color: var(--ink-soft); font-size: .74rem; line-height: 1.5; cursor: pointer; }
.booking-consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--teal); }
.booking-consent a { color: var(--teal); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.booking-note { margin: 16px 0 0; padding: 14px 16px; border-radius: 12px; background: var(--surface-soft); color: var(--ink-soft); font-size: .72rem; line-height: 1.5; }
.booking-hp { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.dialog-index { color: var(--coral); font-size: .72rem; font-weight: 900; letter-spacing: .1em; }
.dialog-lead { max-width: 570px; color: var(--ink-soft); }
.expertise-detail-grid { margin-top: 28px; display: grid; gap: 0; border-block: 1px solid var(--line); }
.expertise-detail-grid section { padding: 18px 0; }
.expertise-detail-grid section + section { border-top: 1px solid var(--line); }
.expertise-detail-grid strong { font-size: .82rem; }
.expertise-detail-grid p, .expertise-detail-grid li { color: var(--ink-soft); font-size: .76rem; }
.expertise-detail-grid p { margin: 6px 0 0; }
.expertise-detail-grid ul { margin: 8px 0 0; padding-left: 18px; }

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

@media (max-width: 1120px) {
  .main-nav { gap: 16px; }
  .main-nav a { font-size: .75rem; }
  .nav-actions .button-small { display: none; }
  .hero { grid-template-columns: 1fr 1fr; gap: 48px; }
  .visual-frame, .visual-frame img { min-height: 560px; }
  .card-top { left: -24px; }
  .card-bottom { right: -16px; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .expertise-card { min-height: 330px; }
}

@media (max-width: 860px) {
  .section-shell { width: min(100% - 32px, 720px); }
  .content-section { padding-block: 84px; }
  .brand-copy small { display: none; }
  .main-nav { position: fixed; left: 16px; right: 16px; top: 78px; padding: 18px; display: grid; gap: 0; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow); opacity: 0; transform: translateY(-12px); pointer-events: none; transition: .25s ease; }
  .main-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav a { padding: 14px 8px; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: 0; }
  .menu-toggle { display: grid; align-content: center; }
  .hero { grid-template-columns: 1fr; padding-block: 54px 76px; }
  .hero h1 { font-size: clamp(3.5rem, 14vw, 6rem); }
  .hero-visual { width: min(620px, 100%); margin-inline: auto; }
  .visual-frame, .visual-frame img { min-height: 620px; }
  .card-top { left: 14px; }
  .card-bottom { right: 14px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid p:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-grid p:nth-child(4) { border-top: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .section-heading h2 { font-size: clamp(2.8rem, 10vw, 4.8rem); }
  .orientation-layout { grid-template-columns: 1fr; }
  .orientation-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-right: 0; border-bottom: 1px solid var(--line); }
  .orientation-tab { min-height: 126px; padding: 18px; grid-template-columns: 1fr; }
  .orientation-tab > span { grid-row: auto; }
  .orientation-tab small { display: none; }
  .orientation-tab:not(:last-child) { border-right: 1px solid var(--line); }
  .robotics-section { grid-template-columns: 1fr; }
  .robotics-image { min-height: 520px; }
  .journey-detail { grid-template-columns: 1fr; gap: 22px; }
  .publication-toolbar { grid-template-columns: 1fr 1fr; }
  .publication-toolbar .filter-reset { grid-column: 1 / -1; }
  .publication-grid { grid-template-columns: 1fr; }
  .publication-card { min-height: 270px; }
  .science-band, .profile-grid, .engine-grid, .appointment-grid { grid-template-columns: 1fr; }
  .science-image { min-height: 420px; }
  .engine-map { min-height: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .whatsapp-float {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
  }
  .site-header { padding: 10px 0; }
  .nav-shell { width: calc(100% - 20px); }
  .brand-mark { width: 40px; height: 40px; }
  .brand-copy strong { font-size: .82rem; }
  .hero { min-height: auto; }
  .hero h1 { font-size: clamp(2.85rem, 13.2vw, 4.6rem); }
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-metrics div, .hero-metrics div + div { padding: 14px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .visual-frame, .visual-frame img { min-height: 490px; }
  .visual-frame { border-radius: 28px 28px 90px 28px; }
  .floating-card { position: relative; left: auto; right: auto; top: auto; bottom: auto; margin: 10px 0 0; }
  .card-bottom { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid p, .trust-grid p:nth-child(3), .trust-grid p:nth-child(4) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-grid p:first-child { border-top: 0; }
  .orientation-tabs { grid-template-columns: 1fr; }
  .orientation-tab { min-height: auto; grid-template-columns: 42px 1fr; border-right: 0 !important; }
  .orientation-tab > span { grid-row: auto; }
  .orientation-columns { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: 320px; }
  .robotics-image { min-height: 360px; }
  .robotics-copy { padding: 58px 24px; }
  .journey-nav { grid-template-columns: 1fr 1fr; }
  .journey-step { min-height: 88px; border-bottom: 1px solid var(--line); }
  .journey-checks { grid-template-columns: 1fr; }
  .publication-toolbar { grid-template-columns: 1fr; }
  .publication-toolbar .filter-reset { grid-column: auto; }
  .science-band { width: calc(100% - 24px); }
  .science-image { min-height: 320px; }
  .science-copy { padding: 42px 24px; }
  .science-stats { grid-template-columns: 1fr; }
  .engine-map { min-height: 600px; }
  .map-node.source { left: 8%; top: 10%; }.map-node.ai { left: auto; right: 8%; top: 35%; }.map-node.approve { left: 8%; right: auto; top: 60%; }
  .map-line { display: none; }
  .map-outputs { right: 8%; bottom: 5%; }
  .appointment-section { padding-block: 80px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { gap: 20px; flex-direction: column; }
  .appointment-dialog { padding: 34px 24px; }
  .booking-grid { grid-template-columns: 1fr; }
  .dialog-actions .button, .contact-actions .button { width: 100%; }
}

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


.process-section { background: var(--surface); padding-block: 132px; margin-top: 8px; }
.process-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(40px, 7vw, 92px); align-items: center; }
.process-copy h2 { max-width: 520px; font-size: clamp(2.3rem, 4vw, 4rem); }
.process-copy p:last-child { max-width: 520px; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; }
.process-steps { display: grid; gap: 16px; }
.process-steps article { display: flex; gap: 18px; align-items: flex-start; padding: 24px 24px 22px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.process-steps span { display: inline-grid; place-items: center; flex: 0 0 42px; height: 42px; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 900; margin-top: 2px; }
.process-steps strong { display: block; margin-bottom: 6px; font-size: 1rem; line-height: 1.25; }
.process-steps small { display: block; color: var(--ink-soft); line-height: 1.62; }
@media (max-width: 960px) { .process-grid { grid-template-columns: 1fr; } }


.contact-intent-section { background: var(--surface); padding-block: 112px; }
.contact-intent-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(36px, 6vw, 84px); align-items: start; }
.contact-intent-copy h2 { max-width: 620px; font-size: clamp(2.2rem, 4vw, 4rem); }
.contact-intent-copy > p:last-child { max-width: 560px; color: var(--ink-soft); line-height: 1.7; }
.contact-intent-list { display: grid; gap: 14px; }
.contact-intent-list article { padding: 20px 22px 18px; background: linear-gradient(180deg, var(--surface-soft), #fff); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.contact-intent-list strong { display: block; margin-bottom: 6px; font-size: .98rem; line-height: 1.25; }
.contact-intent-list small { display: block; color: var(--ink-soft); line-height: 1.62; }
@media (max-width: 960px) { .contact-intent-grid { grid-template-columns: 1fr; } .contact-intent-section { padding-block: 88px; } }
@media (max-width: 640px) { .contact-intent-section { padding-block: 72px; } .contact-intent-list article { padding: 18px 16px 16px; } }

@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-bottom { margin-top: 36px; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } .footer-bottom { flex-direction: column; gap: 8px; } }

.contact-intent-link { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; width: fit-content; border-radius: 999px; background: var(--teal); color: #fff; font-size: .78rem; font-weight: 800; text-decoration: none; box-shadow: var(--shadow); }
.contact-intent-link:hover { transform: translateY(-1px); }

@media (max-width: 960px) { .hero { grid-template-columns: 1fr; padding-block: 64px 56px; } .hero-visual { padding-top: 0; } .visual-frame { min-height: 540px; } .visual-frame img { min-height: 540px; } }
@media (max-width: 640px) { .hero { padding-block: 52px 44px; } .visual-frame { min-height: 420px; border-radius: 28px 28px 110px 28px; } .visual-frame img { min-height: 420px; } .hero-metrics { grid-template-columns: repeat(2, 1fr); } .hero-metrics div:nth-child(odd) { border-left: none; padding-left: 0; } }
@media (max-width: 640px) { .robotics-image { min-height: 380px; } .robotics-image img { object-position: center 40%; } }
