:root {
  --ink: #16222a;
  --muted: #5d6b73;
  --line: #dce3e6;
  --soft: #f4f7f8;
  --white: #ffffff;
  --navy: #0e354c;
  --blue: #1c638a;
  --blue-light: #ddecf4;
  --accent: #1ba7e0;
  --accent-soft: #e5f5fb;
  --green: #2e725c;
  --radius: 18px;
  --shadow: 0 14px 34px rgba(16, 46, 63, 0.1);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; min-width: 320px; background: var(--white); }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 10px 14px; border-radius: 8px; color: white; background: var(--navy); }
.skip-link:focus { top: 12px; }

.site-header { position: sticky; top: 0; z-index: 50; min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 14px clamp(22px, 5vw, 76px); border-bottom: 1px solid rgba(220, 227, 230, .9); background: rgba(255,255,255,.96); backdrop-filter: blur(14px); }
.site-brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; min-width: 0; }
.site-brand img { width: 148px; height: 46px; object-fit: contain; }
.site-brand span { width: 1px; height: 26px; background: var(--accent); }
.site-brand strong { color: #46545c; font-size: 13px; line-height: 1.15; letter-spacing: .13em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { color: #46545c; font-size: 14px; font-weight: 650; text-decoration: none; }
nav a:hover { color: var(--blue); }
.nav-action { padding: 10px 15px; border: 1px solid #cdd8dc; border-radius: 9px; color: var(--navy); }

.hero { min-height: 650px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(400px, .9fr); align-items: center; gap: clamp(48px, 7vw, 110px); padding: 84px clamp(24px, 7vw, 110px); color: white; background: var(--navy); }
.hero-copy { max-width: 720px; }
.eyebrow { margin: 0 0 15px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { max-width: 780px; margin: 0; font-size: clamp(44px, 5.4vw, 76px); line-height: .99; letter-spacing: -.055em; }
.hero-summary { max-width: 650px; margin: 27px 0 0; color: #d7e5ec; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 19px; border-radius: 9px; font-size: 14px; font-weight: 750; text-decoration: none; }
.button-primary { color: #0e354c; background: #35b6e9; }
.button-primary:hover { background: #58c5ee; }
.button-secondary { border: 1px solid #527388; color: white; background: rgba(255,255,255,.04); }
.button-secondary:hover { background: rgba(255,255,255,.1); }
.prototype-note { display: flex; align-items: center; gap: 9px; margin: 22px 0 0; color: #a9c0cc; font-size: 12px; }
.prototype-note span { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(27,167,224,.14); }

.workflow-panel { padding: 26px; border: 1px solid #41657a; border-radius: 22px; background: #123d56; box-shadow: 0 22px 50px rgba(0,0,0,.16); }
.workflow-panel-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 19px; border-bottom: 1px solid #345970; }
.workflow-panel-head p { margin: 0; font-size: 15px; font-weight: 750; }
.workflow-panel-head span { padding: 6px 9px; border-radius: 999px; color: #d9e9e1; background: rgba(66,141,107,.2); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.workflow-panel ol { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.workflow-panel li { position: relative; display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 18px 0; border-bottom: 1px solid #294f65; }
.workflow-panel li:last-child { border-bottom: 0; padding-bottom: 0; }
.workflow-panel li > span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid #53778c; border-radius: 9px; color: #f0aa34; font: 750 11px/1 ui-monospace, monospace; }
.workflow-panel li div { display: grid; gap: 4px; }
.workflow-panel li strong { font-size: 14px; }
.workflow-panel li small { color: #b7cbd6; font-size: 12px; line-height: 1.45; }

.section { padding: 96px clamp(24px, 7vw, 110px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 54px; margin-bottom: 40px; }
.section-heading h2, .relationship h2, .detail-content h2, .readiness-section h2 { margin: 0; color: #17262f; font-size: clamp(31px, 3.4vw, 48px); line-height: 1.08; letter-spacing: -.04em; }
.section-heading > p { max-width: 540px; margin: 0 0 4px; color: var(--muted); font-size: 16px; line-height: 1.6; }
.products-section { background: #f7f9f9; }
.product-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.product-card { grid-column: span 6; min-height: 440px; display: flex; flex-direction: column; padding: clamp(25px, 3vw, 38px); border: 1px solid var(--line); border-radius: var(--radius); color: inherit; background: white; box-shadow: 0 2px 0 rgba(22,34,42,.02); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.product-card:hover, .product-card:focus-visible { transform: translateY(-4px); border-color: #aabdc6; box-shadow: var(--shadow); outline: none; }
.product-card.featured { grid-column: span 7; }
.product-card:nth-child(2) { grid-column: span 5; }
.campus-card { min-height: 390px; }
.card-topline { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 30px; color: #6b7980; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.card-topline strong { color: var(--green); font-size: 10px; text-align: right; }
.product-card > img { width: min(100%, 430px); height: 86px; object-fit: contain; object-position: left center; margin-bottom: 24px; }
.product-card h3 { max-width: 650px; margin: 0; color: #162a35; font-size: clamp(23px, 2.2vw, 31px); line-height: 1.18; letter-spacing: -.03em; }
.product-card > p { max-width: 660px; margin: 15px 0 22px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.card-path { display: flex; align-items: center; gap: 8px; margin: 2px 0 27px; color: #4f6068; font-size: 10px; font-weight: 750; text-transform: uppercase; }
.card-path i { width: 16px; height: 1px; background: #c2cdd2; }
.two-part { display: grid; grid-template-columns: auto 20px auto 1fr; align-items: center; gap: 8px; margin: 0 0 26px; color: #334c59; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.two-part b { color: var(--accent); }
.two-part small { justify-self: end; color: #7a878d; font-size: 10px; font-weight: 650; text-transform: none; }
.card-cta { display: flex; align-items: center; gap: 9px; margin-top: auto; color: #185979; font-size: 13px; font-weight: 800; }
.card-cta b { font-size: 19px; transition: transform .18s ease; }
.product-card:hover .card-cta b { transform: translateX(4px); }

.relationship { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; border-bottom: 1px solid var(--line); }
.relationship-copy > p:last-child { margin: 22px 0 0; color: var(--muted); line-height: 1.7; }
.relationship-flow { display: grid; grid-template-columns: repeat(7, auto); align-items: center; justify-content: space-between; gap: 10px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.relationship-flow > div { display: grid; gap: 5px; min-width: 100px; }
.relationship-flow span { color: var(--accent); font: 800 10px/1 ui-monospace, monospace; }
.relationship-flow strong { color: #1b3645; font-size: 14px; }
.relationship-flow small { color: #718087; font-size: 10px; }
.relationship-flow > i { color: #91a2aa; font-style: normal; }

.product-detail { min-height: 600px; display: grid; grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr); }
.detail-brand { display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 7vw, 100px); color: white; background: var(--navy); }
.detail-brand img { width: min(100%, 520px); }
.detail-brand p { margin: 25px 0 0; color: #b8ccd7; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.detail-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 7vw, 100px); background: white; }
.detail-content > p:not(.eyebrow) { max-width: 780px; margin: 21px 0 26px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.detail-audience .detail-brand { background: #174b68; }
.detail-review .detail-brand { background: #243f4d; }
.detail-campus .detail-brand { background: #286382; }
.capability-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 28px; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.capability-list li { display: grid; gap: 5px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.capability-list strong { color: #173b4f; font-size: 13px; }
.capability-list span { color: #68777e; font-size: 12px; line-height: 1.45; }
.capability-list.compact { grid-template-columns: repeat(2, 1fr); }
.detail-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 29px; }
.detail-actions a { color: #165979; font-size: 13px; font-weight: 800; text-decoration: none; }
.detail-actions a:hover { text-decoration: underline; }
.inline-launch { padding: 11px 15px; border-radius: 8px; color: white !important; background: #185f83; }
.status-label { display: inline-flex; align-items: center; width: fit-content; padding: 6px 9px; border-radius: 999px; font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.status-label.local { color: #6a5319; background: #fff1c9; }
.status-label.transitional { color: #6c4a15; background: #fce9c6; }
.status-label.protected { color: #245e4b; background: #dcefe7; }
.module-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.module-grid > div { padding: 19px; border: 1px solid var(--line); border-radius: 12px; background: var(--soft); }
.module-grid span { color: var(--accent); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.module-grid strong { display: block; margin-top: 8px; color: #17394b; font-size: 15px; }
.module-grid p { margin: 8px 0 0; color: #66757c; font-size: 12px; line-height: 1.55; }
.campus-domains { display: flex; flex-wrap: wrap; gap: 8px; }
.campus-domains span { padding: 8px 11px; border: 1px solid #cbd9df; border-radius: 999px; color: #31586b; background: #f5f9fa; font-size: 11px; font-weight: 750; }

.platform-section { background: #f4f7f8; }
.platform-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: white; }
.platform-grid > div { min-height: 230px; padding: 28px; border-right: 1px solid var(--line); }
.platform-grid > div:last-child { border-right: 0; }
.platform-grid span { color: var(--accent); font: 800 10px/1 ui-monospace, monospace; }
.platform-grid h3 { margin: 55px 0 10px; color: #1a3746; font-size: 16px; }
.platform-grid p { margin: 0; color: #69777e; font-size: 12px; line-height: 1.6; }

.launch-section { background: white; }
.launch-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.launch-list > div { min-height: 285px; display: flex; flex-direction: column; align-items: flex-start; padding: 23px; border: 1px solid var(--line); border-radius: 14px; }
.launch-list img { width: 100%; height: 60px; object-fit: contain; object-position: left; margin-bottom: 22px; }
.launch-list p { min-height: 42px; margin: 13px 0 21px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.launch-list button, .launch-button, .launch-links a { width: 100%; min-height: 39px; display: inline-flex; align-items: center; justify-content: center; margin-top: auto; border: 0; border-radius: 8px; font: 750 11px/1 inherit; text-decoration: none; }
.launch-list button { color: #8a959a; background: #edf1f2; cursor: not-allowed; }
.launch-button { color: white; background: #175d7f; }
.launch-links { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: auto; }
.launch-links a { color: #15597a; background: #e7f0f4; }
.launch-button:hover, .launch-links a:hover { filter: brightness(.95); }

.readiness-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; color: white; background: #192d38; }
.readiness-section h2 { color: white; }
.readiness-section > p { margin: 0; color: #c3d0d6; font-size: 16px; line-height: 1.75; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 32px clamp(24px, 7vw, 110px); border-top: 1px solid var(--line); }
.footer-brand img { width: 118px; }
.footer-brand strong { font-size: 10px; }
footer p, footer > a:last-child { color: #708087; font-size: 11px; }
footer > a:last-child { font-weight: 750; text-decoration: none; }

@media (max-width: 1050px) {
  nav { gap: 17px; }
  .hero { grid-template-columns: 1fr; }
  .workflow-panel { max-width: 760px; }
  .product-card.featured, .product-card:nth-child(2), .product-card { grid-column: span 12; }
  .relationship { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .detail-brand { min-height: 280px; }
  .detail-brand img { max-width: 520px; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .platform-grid > div { border-bottom: 1px solid var(--line); }
  .platform-grid > div:nth-child(2) { border-right: 0; }
  .platform-grid > div:nth-child(3), .platform-grid > div:nth-child(4) { border-bottom: 0; }
  .launch-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .site-header { align-items: flex-start; padding: 12px 18px; }
  .site-brand img { width: 118px; }
  .site-brand strong { display: none; }
  .site-brand span { height: 22px; }
  nav { gap: 13px; overflow-x: auto; }
  nav a { display: none; }
  nav .nav-action { display: inline-flex; white-space: nowrap; }
  .hero { min-height: auto; padding: 64px 22px; }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .workflow-panel { padding: 20px; }
  .section { padding: 70px 20px; }
  .section-heading { display: grid; gap: 18px; }
  .product-card { min-height: 410px; padding: 24px; }
  .product-card > img { height: 68px; }
  .card-path { flex-wrap: wrap; }
  .two-part { grid-template-columns: auto 16px auto; }
  .two-part small { grid-column: 1 / -1; justify-self: start; }
  .relationship-flow { grid-template-columns: 1fr; }
  .relationship-flow > i { transform: rotate(90deg); justify-self: center; }
  .relationship-flow > div { text-align: center; }
  .detail-brand { min-height: 220px; padding: 40px 22px; }
  .detail-content { padding: 56px 22px; }
  .capability-list, .capability-list.compact, .module-grid { grid-template-columns: 1fr; }
  .platform-grid, .launch-list { grid-template-columns: 1fr; }
  .platform-grid > div { border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .platform-grid > div:last-child { border-bottom: 0 !important; }
  .readiness-section { grid-template-columns: 1fr; gap: 25px; }
  footer { display: grid; justify-items: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
