:root {
  --navy-950: #04111f;
  --navy-900: #07182b;
  --navy-800: #0d2741;
  --navy-700: #173b5d;
  --ink: #0a2034;
  --slate: #496174;
  --muted: #718596;
  --line: #d7e0e4;
  --mist: #edf3f3;
  --mist-2: #f5f8f8;
  --white: #ffffff;
  --teal: #39d0ca;
  --teal-dark: #087e7c;
  --teal-pale: #dff8f5;
  --max-width: 1440px;
  --page-pad: clamp(24px, 4vw, 68px);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body, button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { border-radius: 0; }
::selection { background: var(--teal); color: var(--navy-950); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--teal);
  color: var(--navy-950);
  font-weight: 700;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

.section-shell {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { width: 30px; height: 2px; background: currentColor; content: ""; }
.eyebrow.light { color: var(--teal); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border 0.25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--teal); color: var(--navy-950); }
.button-primary:hover { background: #62e0da; }
.button-dark { background: var(--navy-900); color: var(--white); }
.button-dark:hover { background: var(--navy-700); }
.button-light { background: var(--white); color: var(--navy-950); }
.button-light:hover { background: var(--teal-pale); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-block: 8px;
  border-bottom: 1px solid rgba(10, 32, 52, 0.35);
  font-size: 14px;
  font-weight: 750;
  transition: gap 0.25s var(--ease), border-color 0.25s ease;
}
.text-link:hover { gap: 26px; border-color: var(--teal-dark); }
.light-link { color: var(--white); border-color: rgba(255, 255, 255, 0.45); }
.light-link:hover { border-color: var(--teal); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 84px;
  border-bottom: 1px solid rgba(13, 39, 65, 0.11);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
}
.header-shell {
  width: min(100%, var(--max-width));
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--page-pad);
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
}
.brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.brand-mark { position: relative; display: grid; width: 35px; height: 35px; grid-template: 1fr 1fr / 1fr 1fr; gap: 4px; }
.brand-mark span { display: block; background: var(--navy-900); }
.brand-mark span:nth-child(2), .brand-mark span:nth-child(3) { background: var(--teal); }
.brand-mark span:nth-child(3) { grid-column: 2; grid-row: 2; }
.brand-type { display: flex; flex-direction: column; line-height: 0.95; }
.brand-type strong { font-size: 15px; letter-spacing: 0.16em; }
.brand-type > span { margin-top: 6px; color: var(--slate); font-size: 10px; font-weight: 750; letter-spacing: 0.24em; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); }
.desktop-nav a { position: relative; padding-block: 31px; color: #2b4459; font-size: 13px; font-weight: 650; white-space: nowrap; }
.desktop-nav a::after { position: absolute; left: 0; right: 100%; bottom: 22px; height: 2px; background: var(--teal-dark); content: ""; transition: right 0.25s var(--ease); }
.desktop-nav a:hover::after { right: 0; }
.header-cta { align-self: stretch; min-width: 168px; margin-left: 8px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--navy-900); color: var(--white); font-size: 15px; font-weight: 750; }
.header-cta > span:last-child { color: var(--teal); font-size: 20px; line-height: 1; transition: transform .25s var(--ease); }
.header-cta:hover > span:last-child { transform: translate(3px, -3px); }
.mobile-menu { display: none; margin-left: auto; }
.mobile-menu summary { width: 46px; height: 46px; padding: 12px; display: flex; flex-direction: column; justify-content: center; gap: 5px; background: var(--navy-900); list-style: none; cursor: pointer; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { height: 2px; width: 100%; background: var(--white); }
.mobile-menu nav { position: fixed; left: 0; right: 0; top: 84px; padding: 24px var(--page-pad) 34px; display: flex; flex-direction: column; background: var(--navy-900); color: var(--white); box-shadow: 0 24px 48px rgba(4, 17, 31, 0.25); }
.mobile-menu nav a { padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); font-size: 17px; }

/* Home hero */
.hero { position: relative; min-height: min(850px, calc(100svh - 84px)); overflow: hidden; background: var(--navy-950); color: var(--white); }
.hero-media, .hero-shade, .hero-grid { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(2, 12, 23, 0.94) 0%, rgba(4, 20, 37, 0.79) 36%, rgba(4, 20, 37, 0.18) 69%, rgba(4, 20, 37, 0.28) 100%), linear-gradient(0deg, rgba(2, 13, 25, 0.72) 0%, transparent 40%); }
.hero-grid { opacity: 0.16; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 96px 96px; mask-image: linear-gradient(to right, black, transparent 70%); }
.hero-content { position: relative; z-index: 2; width: min(100%, var(--max-width)); min-height: inherit; margin-inline: auto; padding: clamp(88px, 11vh, 138px) var(--page-pad) 150px; display: flex; align-items: center; justify-content: space-between; gap: 72px; }
.hero-copy { max-width: 850px; }
.hero-copy h1 { max-width: 840px; margin: 0; font-size: clamp(47px, 5.6vw, 82px); font-weight: 620; letter-spacing: -0.055em; line-height: 0.98; text-wrap: balance; }
.hero-copy h1 em { color: var(--teal); font-style: normal; font-weight: 620; }
.hero-copy > p { max-width: 660px; margin: 34px 0 0; color: #d6e2e9; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.58; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.hero-rail { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; min-height: 68px; padding-inline: max(var(--page-pad), calc((100vw - var(--max-width))/2 + var(--page-pad))); display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; border-top: 1px solid rgba(255,255,255,.18); background: rgba(4,17,31,.7); color: #bdccd6; font-size: 9px; font-weight: 750; letter-spacing: .14em; }
.hero-rail span { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.14); }

/* Shared headings and homepage sections */
.section-heading h2, .feature-copy h2, .marking-copy h2, .software-copy h2, .faq-intro h2, .scope-heading h2, .decision-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.1vw, 60px);
  font-weight: 610;
  letter-spacing: -0.047em;
  line-height: 1.05;
  text-wrap: balance;
}
.split-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr); gap: clamp(60px, 10vw, 160px); align-items: end; }
.heading-copy { padding-bottom: 6px; }
.heading-copy p { margin: 0 0 18px; color: var(--slate); font-size: 17px; line-height: 1.7; }
.heading-copy p:last-child { margin-bottom: 0; }

.intro-section { padding-top: clamp(90px, 10vw, 150px); padding-bottom: clamp(90px, 10vw, 150px); }
.architecture-grid { margin-top: 78px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.architecture-grid article { min-height: 280px; padding: 28px 28px 34px; border-right: 1px solid var(--line); transition: background .3s ease, transform .3s var(--ease); }
.architecture-grid article:last-child { border-right: 0; }
.architecture-grid article:hover { background: var(--mist-2); transform: translateY(-5px); }
.architecture-grid article > span { color: var(--teal-dark); font-size: 12px; font-weight: 800; }
.architecture-grid h3 { margin: 88px 0 14px; font-size: 28px; font-weight: 620; letter-spacing: -.035em; }
.architecture-grid p { margin: 0; color: var(--slate); font-size: 14px; line-height: 1.65; }

.solutions-section { padding-block: clamp(90px, 9vw, 135px); background: var(--mist); }
.solutions-heading { display: flex; align-items: end; justify-content: space-between; gap: 48px; }
.solutions-heading > div { max-width: 850px; }
.solutions-heading .text-link { flex: 0 0 auto; margin-bottom: 8px; }
.solutions-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(5, 1fr); border-left: 1px solid #cbd8dc; border-top: 1px solid #cbd8dc; }
.solution-card { min-height: 310px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid #cbd8dc; border-bottom: 1px solid #cbd8dc; background: rgba(255,255,255,.66); transition: background .3s ease, transform .3s var(--ease), color .3s ease; }
.solution-card:hover { z-index: 2; background: var(--white); transform: translateY(-7px); box-shadow: 0 22px 52px rgba(13,39,65,.12); }
.solution-card-top { display: flex; justify-content: space-between; color: var(--teal-dark); font-size: 12px; font-weight: 800; }
.solution-card-top span:last-child { font-size: 18px; }
.solution-card p { margin: 0 0 9px; color: var(--teal-dark); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.solution-card h3 { margin: 0; font-size: clamp(21px, 1.7vw, 28px); font-weight: 620; letter-spacing: -.04em; line-height: 1.1; }
.card-summary { max-height: 0; margin-top: 0; display: block; overflow: hidden; opacity: 0; color: var(--slate); font-size: 13px; line-height: 1.55; transition: max-height .35s ease, margin .35s ease, opacity .3s ease; }
.solution-card:hover .card-summary { max-height: 100px; margin-top: 14px; opacity: 1; }
.solution-card-1, .solution-card-10 { background: var(--navy-900); color: var(--white); }
.solution-card-10 { background: var(--teal-dark); }
.solution-card-1 p, .solution-card-1 .solution-card-top, .solution-card-10 p, .solution-card-10 .solution-card-top { color: var(--teal); }
.solution-card-10 p, .solution-card-10 .solution-card-top { color: #d8fffb; }
.solution-card-1 .card-summary, .solution-card-10 .card-summary { color: #d4e1e8; }
.solution-card-1:hover, .solution-card-10:hover { background: var(--navy-800); color: var(--white); }

.feature-story { padding-top: clamp(100px, 11vw, 160px); padding-bottom: clamp(100px, 11vw, 160px); display: grid; grid-template-columns: 1.16fr .84fr; gap: clamp(54px, 8vw, 120px); align-items: center; }
.feature-image { position: relative; min-height: 570px; overflow: hidden; background: var(--navy-900); }
.feature-image img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.image-label { position: absolute; left: 0; bottom: 0; padding: 15px 20px; background: var(--teal); color: var(--navy-950); font-size: 9px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.feature-copy > p, .marking-copy > p, .software-copy > p { margin: 28px 0; color: var(--slate); font-size: 17px; line-height: 1.72; }
.check-list { margin: 30px 0 36px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 15px 0 15px 32px; border-top: 1px solid var(--line); color: #314b60; font-size: 14px; font-weight: 650; }
.check-list li:last-child { border-bottom: 1px solid var(--line); }
.check-list li::before { position: absolute; left: 2px; color: var(--teal-dark); content: "✓"; font-weight: 900; }

.approach-section { padding-block: clamp(100px, 10vw, 155px); overflow: hidden; background: var(--navy-900); color: var(--white); }
.light-heading h2 { color: var(--white); }
.light-heading .heading-copy p { color: #bdccd6; }
.process-grid { margin-top: 80px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.13); }
.process-grid article { min-height: 330px; padding: 30px; background: var(--navy-900); transition: background .25s ease; }
.process-grid article:hover { background: var(--navy-800); }
.process-grid article > span { color: var(--teal); font-size: 12px; font-weight: 800; }
.process-grid h3 { margin: 112px 0 18px; font-size: 24px; font-weight: 600; letter-spacing: -.03em; }
.process-grid p { margin: 0; color: #adbfcb; font-size: 14px; line-height: 1.7; }

.marking-story { padding-top: clamp(100px, 10vw, 150px); padding-bottom: clamp(100px, 10vw, 150px); display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(60px, 9vw, 145px); align-items: center; }
.marking-image { min-height: 580px; position: relative; overflow: hidden; }
.marking-image img { width: 100%; height: 100%; position: absolute; object-fit: cover; }
.mini-links { margin-top: 36px; border-top: 1px solid var(--line); }
.mini-links a { padding: 17px 0; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 700; transition: padding .25s var(--ease), color .25s ease; }
.mini-links a:hover { padding-left: 12px; color: var(--teal-dark); }

.sectors-section { padding-block: clamp(100px, 10vw, 150px); background: var(--navy-950); color: var(--white); }
.sectors-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(64px, 11vw, 170px); }
.sectors-copy { position: sticky; top: 135px; align-self: start; }
.sectors-copy h2 { margin: 0; font-size: clamp(40px, 4.5vw, 64px); font-weight: 600; letter-spacing: -.05em; line-height: 1.04; }
.sectors-copy p { max-width: 500px; margin: 30px 0 0; color: #afc0cc; font-size: 17px; line-height: 1.7; }
.sector-list { border-top: 1px solid rgba(255,255,255,.17); }
.sector-list div { min-height: 78px; display: grid; grid-template-columns: 55px 1fr auto; align-items: center; border-bottom: 1px solid rgba(255,255,255,.17); transition: padding .25s var(--ease), background .25s ease; }
.sector-list div:hover { padding-inline: 18px; background: rgba(255,255,255,.04); }
.sector-list span { color: var(--teal); font-size: 10px; font-weight: 800; }
.sector-list strong { font-size: clamp(19px, 2vw, 27px); font-weight: 540; letter-spacing: -.02em; }
.sector-list i { color: #6f8799; font-style: normal; }

.software-story { padding-top: clamp(100px, 11vw, 160px); padding-bottom: clamp(100px, 11vw, 160px); display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(55px, 8vw, 120px); align-items: center; }
.software-image { position: relative; min-height: 530px; overflow: hidden; }
.software-image::after { position: absolute; inset: auto 0 0 0; height: 40%; background: linear-gradient(transparent, rgba(4,17,31,.35)); content: ""; }
.software-image img { width: 100%; height: 100%; position: absolute; object-fit: cover; }

.faq-section { padding-bottom: clamp(100px, 11vw, 160px); display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px, 10vw, 150px); }
.faq-intro { align-self: start; position: sticky; top: 130px; }
.faq-intro h2 { font-size: clamp(38px, 3.8vw, 56px); }
.faq-intro p { margin: 28px 0; color: var(--slate); font-size: 16px; line-height: 1.7; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 88px; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 28px; list-style: none; cursor: pointer; color: var(--ink); font-size: 18px; font-weight: 650; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--teal-dark); font-style: normal; font-size: 20px; transition: transform .25s ease, background .25s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); background: var(--teal-pale); }
.faq-list details p { max-width: 760px; margin: -4px 55px 26px 0; color: var(--slate); font-size: 15px; line-height: 1.75; }

.contact-band-wrap { padding-bottom: clamp(90px, 10vw, 145px); }
.contact-band { position: relative; overflow: hidden; padding: clamp(42px, 5vw, 74px); display: flex; align-items: center; justify-content: space-between; gap: 60px; background: var(--navy-800); color: var(--white); }
.contact-band::after { position: absolute; width: 340px; height: 340px; right: -150px; top: -170px; border: 1px solid rgba(57,208,202,.25); border-radius: 50%; content: ""; box-shadow: 0 0 0 70px rgba(57,208,202,.04), 0 0 0 140px rgba(57,208,202,.025); }
.contact-band > div { position: relative; z-index: 2; }
.contact-band h2 { max-width: 800px; margin: 0; font-size: clamp(34px, 4vw, 55px); font-weight: 600; letter-spacing: -.045em; line-height: 1.08; }
.contact-band p { max-width: 760px; margin: 21px 0 0; color: #c6d5de; font-size: 16px; line-height: 1.65; }
.contact-band-actions { flex: 0 0 290px; display: flex; flex-direction: column; gap: 24px; }
.phone-link { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.2); font-size: 23px; font-weight: 650; }
.phone-link small { margin-bottom: 5px; display: block; color: var(--teal); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }

/* Footer */
.site-footer { padding: 80px max(var(--page-pad), calc((100vw - var(--max-width))/2 + var(--page-pad))) 28px; background: var(--navy-950); color: var(--white); }
.site-footer .brand-mark span { background: var(--white); }
.site-footer .brand-mark span:nth-child(2), .site-footer .brand-mark span:nth-child(3) { background: var(--teal); }
.site-footer .brand-type > span { color: #a9bcc8; }
.footer-grid { display: grid; grid-template-columns: 1.55fr 1fr 1fr .8fr; gap: clamp(42px, 6vw, 90px); }
.footer-intro > p { max-width: 410px; margin: 30px 0; color: #9eb2bf; font-size: 14px; line-height: 1.7; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; color: var(--teal); font-size: 15px; font-weight: 650; }
.footer-grid h2 { margin: 0 0 25px; color: #7f97a7; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li { margin-bottom: 13px; }
.footer-grid li a { color: #cad7df; font-size: 13px; transition: color .2s ease; }
.footer-grid li a:hover { color: var(--teal); }
.footer-base { margin-top: 70px; padding-top: 24px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.12); color: #728998; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

/* Inner heroes */
.inner-page { min-height: 70vh; }
.inner-hero { position: relative; min-height: 540px; overflow: hidden; background: var(--navy-900); color: var(--white); }
.inner-hero-image, .inner-hero-overlay { position: absolute; inset: 0; }
.inner-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.inner-hero-overlay { background: linear-gradient(90deg, rgba(3,15,28,.95), rgba(4,20,37,.66) 56%, rgba(4,20,37,.25)); }
.inner-hero-content { position: relative; z-index: 2; min-height: 540px; padding-top: 55px; padding-bottom: 75px; display: flex; flex-direction: column; justify-content: flex-end; }
.inner-hero-content h1 { max-width: 1030px; margin: 0; font-size: clamp(47px, 5.6vw, 78px); font-weight: 600; letter-spacing: -.055em; line-height: 1.02; }
.inner-hero-content > p { max-width: 760px; margin: 28px 0 0; color: #d0dde5; font-size: 19px; line-height: 1.65; }
.breadcrumbs { margin-bottom: auto; padding-top: 2px; display: flex; flex-wrap: wrap; gap: 9px; color: rgba(255,255,255,.62); font-size: 11px; }
.breadcrumbs a:hover { color: var(--teal); }
.breadcrumbs span[aria-current="page"] { color: var(--white); }
.solutions-intro { padding-block: clamp(90px, 9vw, 140px) 30px; }
.solution-directory { padding-bottom: clamp(100px, 11vw, 165px); }
.directory-row { min-height: 225px; padding: 26px 0; display: grid; grid-template-columns: 58px 260px 1fr 45px; align-items: center; gap: clamp(28px, 4vw, 64px); border-top: 1px solid var(--line); transition: padding .3s var(--ease), background .3s ease; }
.directory-row:last-child { border-bottom: 1px solid var(--line); }
.directory-row:hover { padding-inline: 24px; background: var(--mist-2); }
.directory-number { color: var(--teal-dark); font-size: 12px; font-weight: 850; }
.directory-image { height: 170px; overflow: hidden; background: var(--mist); }
.directory-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.directory-row:hover .directory-image img { transform: scale(1.04); }
.directory-copy > span { color: var(--teal-dark); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.directory-copy h2 { margin: 10px 0 11px; font-size: clamp(27px, 2.7vw, 40px); font-weight: 610; letter-spacing: -.04em; }
.directory-copy p { max-width: 720px; margin: 0; color: var(--slate); font-size: 14px; line-height: 1.65; }
.directory-arrow { font-size: 25px; }
.decision-guide { padding: clamp(70px, 8vw, 120px) var(--page-pad); margin-bottom: clamp(90px, 10vw, 145px); background: var(--mist); }
.decision-heading { max-width: 850px; }
.decision-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #cbd8dc; border-bottom: 1px solid #cbd8dc; }
.decision-grid article { min-height: 245px; padding: 25px; border-right: 1px solid #cbd8dc; }
.decision-grid article:last-child { border-right: 0; }
.decision-grid span { color: var(--teal-dark); font-size: 11px; font-weight: 800; }
.decision-grid h3 { margin: 80px 0 14px; font-size: 23px; letter-spacing: -.03em; }
.decision-grid p { margin: 0; color: var(--slate); font-size: 13px; line-height: 1.65; }

/* Solution detail */
.solution-hero { position: relative; min-height: 680px; overflow: hidden; background: var(--navy-950); color: var(--white); }
.solution-hero-media, .solution-hero-overlay, .solution-hero-grid { position: absolute; inset: 0; }
.solution-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.solution-hero-overlay { background: linear-gradient(90deg, rgba(2,13,25,.95) 0%, rgba(4,20,37,.77) 48%, rgba(4,20,37,.25) 78%), linear-gradient(0deg, rgba(2,13,25,.55), transparent 50%); }
.solution-hero-grid { opacity: .12; background-image: linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px); background-size: 88px 88px; mask-image: linear-gradient(90deg, black, transparent 68%); }
.solution-hero-content { position: relative; z-index: 2; min-height: 680px; padding-top: 46px; padding-bottom: 74px; display: flex; flex-direction: column; justify-content: flex-end; }
.solution-hero-content .breadcrumbs { margin-bottom: auto; }
.solution-number { position: absolute; right: var(--page-pad); bottom: 74px; color: rgba(255,255,255,.16); font-size: clamp(110px, 15vw, 220px); font-weight: 700; line-height: .7; letter-spacing: -.08em; }
.solution-hero-content h1 { max-width: 990px; margin: 0; font-size: clamp(45px, 5.5vw, 78px); font-weight: 600; letter-spacing: -.055em; line-height: 1.01; }
.solution-hero-content > p { max-width: 760px; margin: 27px 0 0; color: #d1dee6; font-size: 18px; line-height: 1.65; }
.solution-hero-content .hero-actions { margin-top: 31px; }
.solution-overview { padding-top: clamp(95px, 10vw, 150px); padding-bottom: clamp(95px, 10vw, 150px); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 155px); align-items: center; }
.overview-copy h2 { margin: 0; font-size: clamp(39px, 4.2vw, 61px); font-weight: 610; letter-spacing: -.05em; line-height: 1.05; }
.lead-copy { margin: 30px 0; color: var(--slate); font-size: 18px; line-height: 1.75; }
.overview-copy blockquote { margin: 38px 0 0; padding: 26px 0 0 30px; border-top: 1px solid var(--line); border-left: 3px solid var(--teal); color: var(--ink); font-size: 19px; font-weight: 650; line-height: 1.5; }
.overview-copy blockquote span { margin-bottom: 8px; display: block; color: var(--teal-dark); font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.overview-image { position: relative; min-height: 540px; overflow: hidden; }
.overview-image img { width: 100%; height: 100%; position: absolute; object-fit: cover; }
.overview-image > span { position: absolute; left: 0; bottom: 0; padding: 13px 18px; background: var(--white); color: var(--slate); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.capability-section { padding-block: clamp(90px, 10vw, 150px); background: var(--navy-900); color: var(--white); }
.capability-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(70px, 10vw, 160px); }
.capability-layout h2 { margin: 0 0 50px; font-size: clamp(36px, 3.6vw, 54px); font-weight: 600; letter-spacing: -.045em; line-height: 1.08; }
.numbered-list { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.17); list-style: none; }
.numbered-list li { min-height: 76px; display: grid; grid-template-columns: 48px 1fr; align-items: center; border-bottom: 1px solid rgba(255,255,255,.17); }
.numbered-list span { color: var(--teal); font-size: 10px; font-weight: 850; }
.numbered-list strong { color: #e6eef2; font-size: 15px; font-weight: 620; }
.application-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.16); }
.application-grid article { min-height: 160px; padding: 22px; background: var(--navy-900); transition: background .25s ease; }
.application-grid article:hover { background: var(--navy-800); }
.application-grid span { color: var(--teal); font-size: 17px; }
.application-grid h3 { margin: 68px 0 0; font-size: 17px; font-weight: 620; line-height: 1.35; }
.project-scope { padding-top: clamp(100px, 11vw, 160px); padding-bottom: clamp(100px, 11vw, 160px); }
.scope-heading { max-width: 900px; }
.scope-heading p { max-width: 700px; margin: 27px 0 0; color: var(--slate); font-size: 17px; line-height: 1.7; }
.scope-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.scope-grid article { min-height: 300px; padding: 25px; border-right: 1px solid var(--line); }
.scope-grid article:last-child { border-right: 0; }
.scope-grid span { color: var(--teal-dark); font-size: 11px; font-weight: 850; }
.scope-grid h3 { margin: 90px 0 15px; font-size: 22px; font-weight: 630; letter-spacing: -.03em; line-height: 1.25; }
.scope-grid p { margin: 0; color: var(--slate); font-size: 13px; line-height: 1.65; }
.solution-proof { padding-bottom: clamp(100px, 11vw, 165px); display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(60px, 9vw, 135px); align-items: center; }
.proof-image { min-height: 510px; position: relative; overflow: hidden; }
.proof-image img { width: 100%; height: 100%; position: absolute; object-fit: cover; }
.proof-copy h2 { margin: 0; font-size: clamp(38px, 4vw, 58px); font-weight: 610; letter-spacing: -.048em; line-height: 1.06; }
.proof-copy > p { margin: 27px 0; color: var(--slate); font-size: 17px; line-height: 1.72; }
.solution-faq { padding-top: clamp(90px, 9vw, 130px); border-top: 1px solid var(--line); }
.related-section { padding-bottom: clamp(100px, 11vw, 155px); }
.related-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.related-grid > a { min-height: 250px; padding: 25px; position: relative; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s ease, transform .3s var(--ease); }
.related-grid > a:hover { z-index: 2; background: var(--mist-2); transform: translateY(-5px); }
.related-grid > a > span { color: var(--teal-dark); font-size: 11px; font-weight: 850; }
.related-grid p { margin: 95px 0 8px; color: var(--teal-dark); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.related-grid h3 { margin: 0; font-size: 27px; font-weight: 610; letter-spacing: -.035em; }
.related-grid i { position: absolute; right: 25px; top: 22px; font-style: normal; font-size: 20px; }

/* Contact */
.contact-hero { position: relative; min-height: 580px; overflow: hidden; background: var(--navy-900); color: var(--white); }
.contact-hero-image, .contact-hero-overlay { position: absolute; inset: 0; }
.contact-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.contact-hero-overlay { background: linear-gradient(90deg, rgba(3,15,28,.96), rgba(5,22,39,.75) 56%, rgba(5,22,39,.3)); }
.contact-hero-content { position: relative; z-index: 2; min-height: 580px; padding-top: 45px; padding-bottom: 70px; display: flex; flex-direction: column; justify-content: flex-end; }
.contact-hero-content .breadcrumbs { margin-bottom: auto; }
.contact-hero h1 { max-width: 1000px; margin: 0; font-size: clamp(46px, 5.5vw, 76px); font-weight: 600; letter-spacing: -.055em; line-height: 1.02; }
.contact-hero-content > p { max-width: 720px; margin: 26px 0 0; color: #d0dde5; font-size: 18px; line-height: 1.65; }
.contact-layout { padding-top: clamp(90px, 10vw, 145px); padding-bottom: clamp(95px, 10vw, 145px); display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(60px, 9vw, 135px); align-items: start; }
.contact-details h2 { margin: 0; font-size: clamp(38px, 4.1vw, 58px); font-weight: 610; letter-spacing: -.048em; line-height: 1.07; }
.contact-details > p { margin: 27px 0 35px; color: var(--slate); font-size: 16px; line-height: 1.75; }
.direct-contact-grid { border-top: 1px solid var(--line); }
.direct-contact-grid a { min-height: 92px; padding: 18px 0; display: grid; grid-template-columns: 110px 1fr auto; align-items: center; border-bottom: 1px solid var(--line); transition: padding .25s var(--ease), color .25s ease; }
.direct-contact-grid a:hover { padding-left: 12px; color: var(--teal-dark); }
.direct-contact-grid span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.direct-contact-grid strong { word-break: break-word; font-size: 15px; font-weight: 650; }
.direct-contact-grid i { font-style: normal; }
.helpful-list { margin-top: 46px; padding: 30px; background: var(--mist); }
.helpful-list h3 { margin: 0 0 19px; font-size: 16px; }
.helpful-list ul { margin: 0; padding: 0; list-style: none; }
.helpful-list li { position: relative; margin: 10px 0; padding-left: 22px; color: var(--slate); font-size: 13px; }
.helpful-list li::before { position: absolute; left: 0; color: var(--teal-dark); content: "→"; }
.enquiry-panel { padding: clamp(28px, 4vw, 54px); background: var(--navy-900); color: var(--white); }
.enquiry-panel-heading { margin-bottom: 35px; padding-bottom: 22px; display: flex; justify-content: space-between; gap: 24px; border-bottom: 1px solid rgba(255,255,255,.15); }
.enquiry-panel-heading span { font-size: 25px; font-weight: 600; letter-spacing: -.025em; }
.enquiry-panel-heading p { margin: 7px 0 0; color: #8fa5b4; font-size: 10px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px; }
.enquiry-panel label { margin-bottom: 22px; display: block; }
.enquiry-panel label > span { margin-bottom: 9px; display: block; color: #b9c8d2; font-size: 10px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.enquiry-panel input, .enquiry-panel select, .enquiry-panel textarea { width: 100%; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.06); color: var(--white); outline: none; transition: border .2s ease, background .2s ease; }
.enquiry-panel input, .enquiry-panel select { height: 52px; padding: 0 15px; }
.enquiry-panel textarea { padding: 15px; resize: vertical; line-height: 1.5; }
.enquiry-panel input:focus, .enquiry-panel select:focus, .enquiry-panel textarea:focus { border-color: var(--teal); background: rgba(255,255,255,.1); }
.enquiry-panel select option { background: var(--navy-900); color: var(--white); }
.enquiry-panel textarea::placeholder { color: #70899a; }
.checkbox-label { margin-top: 5px; display: flex !important; align-items: flex-start; gap: 12px; }
.checkbox-label input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--teal); }
.checkbox-label span { margin: 0 !important; color: #aebfca !important; font-size: 10px !important; letter-spacing: 0 !important; line-height: 1.5; text-transform: none !important; }
.form-submit { width: 100%; border: 0; cursor: pointer; }
.form-note { margin: 14px 0 0; color: #8098a8; font-size: 10px; line-height: 1.5; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { margin: 0 0 24px; padding: 14px 16px; border-left: 3px solid var(--teal); background: rgba(57,208,202,.1); color: #d9fffc; font-size: 13px; line-height: 1.55; }
.contact-next-step { padding-bottom: clamp(100px, 11vw, 160px); }
.next-step-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.next-step-grid article { min-height: 240px; padding: 25px; border-right: 1px solid var(--line); }
.next-step-grid article:last-child { border-right: 0; }
.next-step-grid span { color: var(--teal-dark); font-size: 11px; font-weight: 850; }
.next-step-grid h2 { margin: 80px 0 14px; font-size: 24px; font-weight: 620; letter-spacing: -.03em; }
.next-step-grid p { margin: 0; color: var(--slate); font-size: 13px; line-height: 1.65; }

.not-found-page { min-height: 68vh; padding: 120px var(--page-pad); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; background: var(--navy-900); color: var(--white); }
.not-found-page h1 { max-width: 900px; margin: 0; font-size: clamp(44px, 6vw, 80px); font-weight: 600; letter-spacing: -.055em; line-height: 1.02; }
.not-found-page p { max-width: 650px; margin: 28px 0; color: #b7c8d2; font-size: 18px; line-height: 1.65; }
.not-found-page > div { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 1180px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 12px; }
  .header-cta { min-width: 170px; }
  .solutions-grid { grid-template-columns: repeat(3, 1fr); }
  .solution-card { min-height: 285px; }
  .footer-grid { grid-template-columns: 1.5fr .8fr; }
  .footer-grid > div:nth-child(2), .footer-grid > div:nth-child(3) { display: none; }
}

@media (max-width: 980px) {
  .site-header { height: 76px; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { display: block; }
  .mobile-menu nav { top: 76px; }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 92px; }
  .split-heading, .feature-story, .marking-story, .software-story, .faq-section, .sectors-layout, .solution-overview, .solution-proof, .contact-layout { grid-template-columns: 1fr; }
  .split-heading { gap: 36px; }
  .architecture-grid, .process-grid, .scope-grid { grid-template-columns: repeat(2, 1fr); }
  .architecture-grid article:nth-child(2), .process-grid article:nth-child(2), .scope-grid article:nth-child(2) { border-right: 0; }
  .architecture-grid article:nth-child(-n+2), .scope-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature-image, .marking-image, .software-image, .overview-image, .proof-image { min-height: 480px; }
  .marking-copy { order: 2; }
  .marking-image { order: 1; }
  .sectors-copy, .faq-intro { position: static; }
  .faq-section { gap: 50px; }
  .contact-band { align-items: flex-start; flex-direction: column; }
  .contact-band-actions { width: min(100%, 420px); flex-basis: auto; }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
  .directory-row { grid-template-columns: 42px 200px 1fr 30px; gap: 24px; }
  .decision-grid { grid-template-columns: repeat(2, 1fr); }
  .decision-grid article:nth-child(2) { border-right: 0; }
  .decision-grid article:nth-child(-n+2) { border-bottom: 1px solid #cbd8dc; }
  .capability-layout { grid-template-columns: 1fr; gap: 80px; }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  :root { --page-pad: 21px; }
  .brand-type strong { font-size: 13px; }
  .brand-type > span { font-size: 8px; }
  .brand-mark { width: 31px; height: 31px; }
  .hero { min-height: 720px; }
  .hero-media img { object-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(2,12,23,.96), rgba(4,20,37,.75)), linear-gradient(0deg, rgba(2,13,25,.72), transparent 46%); }
  .hero-content { padding-top: 78px; padding-bottom: 110px; align-items: flex-end; }
  .hero-copy h1 { font-size: clamp(43px, 13vw, 61px); }
  .hero-copy > p { margin-top: 25px; font-size: 16px; }
  .hero-actions { margin-top: 28px; align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-rail { min-height: 48px; grid-template-columns: 1fr 1fr; gap: 6px; padding-block: 8px; font-size: 7px; }
  .hero-rail span { padding-left: 8px; }
  .hero-rail span:nth-child(n+3) { display: none; }
  .architecture-grid, .process-grid, .scope-grid, .decision-grid, .next-step-grid { grid-template-columns: 1fr; }
  .architecture-grid article, .process-grid article, .scope-grid article, .decision-grid article, .next-step-grid article { min-height: 225px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid article { border-color: rgba(255,255,255,.14); }
  .architecture-grid h3, .process-grid h3, .scope-grid h3, .decision-grid h3, .next-step-grid h2 { margin-top: 55px; }
  .solutions-heading { align-items: flex-start; flex-direction: column; gap: 26px; }
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .solution-card { min-height: 245px; }
  .solution-card h3 { font-size: 22px; }
  .solution-card:hover .card-summary { display: none; }
  .feature-image, .marking-image, .software-image, .overview-image, .proof-image { min-height: 340px; }
  .process-grid { margin-top: 55px; }
  .sector-list div { min-height: 70px; }
  .contact-band { padding: 34px 25px; }
  .contact-band h2 { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { display: block; }
  .footer-base { align-items: flex-start; flex-direction: column; }
  .inner-hero, .inner-hero-content { min-height: 540px; }
  .inner-hero-content h1 { font-size: 46px; }
  .directory-row { min-height: auto; padding: 24px 0 30px; grid-template-columns: 35px 1fr 26px; gap: 16px; }
  .directory-image { height: 190px; grid-column: 2 / -1; grid-row: 1; }
  .directory-number { grid-row: 1 / 3; align-self: start; padding-top: 6px; }
  .directory-copy { grid-column: 2; }
  .directory-arrow { grid-column: 3; grid-row: 2; }
  .decision-guide { margin-inline: var(--page-pad); padding-inline: 24px; }
  .solution-hero, .solution-hero-content { min-height: 650px; }
  .solution-hero-media img { object-position: 58% center; }
  .solution-hero-overlay { background: linear-gradient(90deg, rgba(2,13,25,.96), rgba(4,20,37,.73)); }
  .solution-hero-content h1 { font-size: 43px; }
  .solution-number { display: none; }
  .application-grid { grid-template-columns: 1fr; }
  .application-grid article { min-height: 135px; }
  .application-grid h3 { margin-top: 45px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-grid > a { min-height: 210px; }
  .related-grid p { margin-top: 65px; }
  .contact-hero, .contact-hero-content { min-height: 560px; }
  .contact-hero h1 { font-size: 45px; }
  .form-grid { grid-template-columns: 1fr; }
  .enquiry-panel { margin-inline: calc(var(--page-pad) * -1); padding-inline: var(--page-pad); }
  .direct-contact-grid a { grid-template-columns: 1fr auto; }
  .direct-contact-grid a span { grid-column: 1 / -1; }
}

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

/* ================================================================
   Oxford Traceability launch redesign — restrained future industrial
   ================================================================ */
:root {
  --navy-950: #020a12;
  --navy-900: #061522;
  --navy-800: #0b2435;
  --navy-700: #123a50;
  --ink: #071c2a;
  --slate: #425d6d;
  --muted: #5d7684;
  --line: #ccd9df;
  --mist: #eaf1f4;
  --mist-2: #f4f8fa;
  --teal: #55e6df;
  --teal-dark: #087875;
  --teal-pale: #d9f8f5;
  --max-width: 1360px;
  --page-pad: clamp(22px, 4vw, 64px);
  --panel-radius: 14px;
  --soft-shadow: 0 22px 60px rgba(3, 23, 36, .12);
}

body {
  background: #f7fafb;
  font-family: Inter, Aptos, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

h1, h2, h3, strong { text-rendering: geometricPrecision; }

.site-header {
  height: 78px;
  border-bottom: 1px solid rgba(85, 230, 223, .17);
  background: rgba(247, 250, 251, .94);
  box-shadow: 0 8px 34px rgba(2, 16, 26, .06);
}
.site-header.is-scrolled { box-shadow: 0 14px 42px rgba(2, 16, 26, .12); }

.brand-mark {
  width: 38px;
  height: 38px;
  padding: 4px;
  border: 1px solid rgba(8, 120, 117, .18);
  border-radius: 10px;
  background: #edf7f8;
}

.brand-mark span { border-radius: 2px; }
.brand-type strong { color: #041724; font-size: 14px; }
.brand-type > span { color: #496675; }
.desktop-nav a { padding-block: 28px; color: #18394a; font-weight: 700; }
.desktop-nav a::after { bottom: 18px; background: var(--teal-dark); }

.header-cta {
  min-width: 168px;
  border-left: 1px solid rgba(85, 230, 223, .24);
  background: linear-gradient(135deg, #071a28, #0b2a3d);
}

.button { border-radius: 8px; box-shadow: 0 10px 24px rgba(2, 19, 30, .09); }
.button-primary { background: var(--teal); }
.button-primary:hover { background: #7af0ea; box-shadow: 0 14px 32px rgba(26, 191, 184, .22); }
.button-dark { background: linear-gradient(135deg, var(--navy-900), var(--navy-800)); }

/* Hero: one strong image and copy, with no information box over it. */
.hero {
  min-height: clamp(640px, 76svh, 760px);
  border-bottom: 1px solid rgba(85, 230, 223, .22);
}

.hero::before {
  position: absolute;
  z-index: 1;
  width: 620px;
  height: 620px;
  right: 5vw;
  bottom: -390px;
  border: 1px solid rgba(85, 230, 223, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(85, 230, 223, .025), 0 0 0 180px rgba(85, 230, 223, .018);
  content: "";
  pointer-events: none;
}

.hero-media img { object-position: center center; filter: saturate(.82) contrast(1.05); }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(1, 8, 14, .98) 0%, rgba(2, 13, 22, .92) 32%, rgba(2, 16, 27, .47) 58%, rgba(2, 12, 20, .18) 100%),
    linear-gradient(0deg, rgba(1, 9, 15, .78) 0%, transparent 43%);
}

.hero-grid {
  opacity: .17;
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000, rgba(0,0,0,.66) 43%, transparent 76%);
}

.hero-content {
  min-height: inherit;
  padding-top: clamp(72px, 9vh, 104px);
  padding-bottom: 112px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-copy { max-width: 790px; }
.hero-copy h1 {
  max-width: 790px;
  font-size: clamp(49px, 5.35vw, 76px);
  font-weight: 680;
  letter-spacing: -.058em;
  line-height: .98;
  text-shadow: 0 5px 28px rgba(0, 0, 0, .48);
}

.hero-copy h1 em { color: #76f0e9; font-weight: 680; }
.hero-copy > p { max-width: 690px; margin-top: 27px; color: #e2edf1; font-size: clamp(17px, 1.35vw, 20px); line-height: 1.58; text-shadow: 0 2px 12px rgba(0,0,0,.7); }
.hero-actions { margin-top: 30px; }

.hero-proof-line {
  max-width: 770px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.22);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: #d9e7ec;
  font-size: 12px;
  font-weight: 720;
}

.hero-proof-line span { display: inline-flex; align-items: center; gap: 9px; }
.hero-proof-line i { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(85,230,223,.12); }
.hero-rail { min-height: 58px; background: rgba(2, 12, 20, .82); backdrop-filter: blur(12px); font-size: 10px; }

/* Compact, information-dense homepage rhythm. */
.intro-section { padding-top: clamp(72px, 7vw, 100px); padding-bottom: clamp(72px, 7vw, 100px); background: #fff; }
.split-heading { gap: clamp(42px, 7vw, 110px); }
.architecture-grid { margin-top: 48px; gap: 12px; border: 0; }
.architecture-grid article {
  min-height: 220px;
  border: 1px solid var(--line) !important;
  border-radius: var(--panel-radius);
  background: linear-gradient(145deg, #fff, #f3f8fa);
  box-shadow: 0 10px 32px rgba(7, 37, 53, .05);
}
.architecture-grid article:hover { border-color: rgba(8,120,117,.42) !important; box-shadow: var(--soft-shadow); }
.architecture-grid h3 { margin-top: 44px; }

.machine-showcase {
  padding-top: clamp(70px, 7vw, 100px);
  padding-bottom: clamp(70px, 7vw, 100px);
}

.machine-showcase-wrap {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(85, 230, 223, .2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 8%, rgba(85,230,223,.11), transparent 27%),
    linear-gradient(140deg, #03101a, #082437);
  box-shadow: 0 30px 80px rgba(2, 19, 30, .18);
  color: #fff;
}

.machine-showcase-head { max-width: 970px; margin-bottom: 36px; }
.machine-showcase-head h2 { margin: 0; font-size: clamp(36px, 4.4vw, 60px); font-weight: 640; letter-spacing: -.05em; line-height: 1.04; }
.machine-showcase-head p { max-width: 760px; margin: 19px 0 0; color: #c3d4dd; font-size: 16px; line-height: 1.68; }
.machine-showcase-grid { display: grid; grid-template-columns: 1.18fr .82fr; grid-template-rows: repeat(2, minmax(210px, 270px)); gap: 14px; }
.machine-shot { position: relative; min-height: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: #071824; }
.machine-shot:first-child { grid-row: 1 / 3; }
.machine-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .4s ease; }
.machine-shot::after { position: absolute; inset: 38% 0 0; background: linear-gradient(transparent, rgba(1,9,15,.9)); content: ""; }
.machine-shot:hover img { transform: scale(1.035); filter: saturate(1.08); }
.machine-shot-copy { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; }
.machine-shot-copy span { color: var(--teal); font-size: 10px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.machine-shot-copy h3 { margin: 7px 0 0; color: #fff; font-size: clamp(20px, 2vw, 29px); font-weight: 630; letter-spacing: -.035em; }

.solutions-section { padding-block: clamp(72px, 7vw, 104px); background: linear-gradient(180deg, #eaf2f5, #f5f9fa); }
.solutions-grid { margin-top: 48px; gap: 10px; border: 0; }
.solution-card {
  min-height: 258px;
  border: 1px solid #c9d7dd;
  border-radius: 12px;
  background: rgba(255,255,255,.82);
}
.solution-card:hover { border-color: rgba(8,120,117,.4); box-shadow: 0 20px 46px rgba(6, 34, 49, .12); }
.solution-card-1, .solution-card-10 { border-color: transparent; }
.solution-card p { font-size: 10px; }
.card-summary,
.solution-card:hover .card-summary {
  max-height: none;
  margin-top: 13px;
  display: block;
  opacity: 1;
}
.solution-card-10 .card-summary { color: #f0fffe; }

.feature-story, .marking-story, .software-story {
  padding-top: clamp(76px, 7.5vw, 112px);
  padding-bottom: clamp(76px, 7.5vw, 112px);
  gap: clamp(44px, 6vw, 88px);
}
.feature-image, .marking-image, .software-image { min-height: 490px; border-radius: 18px; box-shadow: var(--soft-shadow); }
.feature-image img, .marking-image img, .software-image img { filter: saturate(.9) contrast(1.03); }
.image-label { border-radius: 0 8px 0 0; }

.approach-section, .sectors-section { padding-block: clamp(78px, 7.5vw, 112px); }
.approach-section { background: linear-gradient(145deg, #04131f, #09283a); }
.process-grid { margin-top: 50px; gap: 10px; background: transparent; }
.process-grid article { min-height: 260px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: rgba(255,255,255,.025); }
.process-grid h3 { margin-top: 74px; }
.sectors-layout { gap: clamp(50px, 8vw, 120px); }
.sector-list div { min-height: 68px; }
.faq-section { padding-bottom: clamp(76px, 8vw, 116px); gap: clamp(48px, 8vw, 110px); }
.faq-list summary { min-height: 76px; }
.contact-band-wrap { padding-bottom: clamp(76px, 8vw, 116px); }
.contact-band { border: 1px solid rgba(85,230,223,.2); border-radius: 18px; background: linear-gradient(135deg, #082335, #0e4053); box-shadow: var(--soft-shadow); }

/* Inner pages keep the same confident visual language without excess height. */
.inner-hero, .inner-hero-content { min-height: 510px; }
.solution-hero, .solution-hero-content { min-height: 590px; }
.solution-hero-overlay { background: linear-gradient(90deg, rgba(1,9,15,.97) 0%, rgba(3,19,30,.85) 44%, rgba(3,22,34,.32) 73%, rgba(2,12,20,.23)); }
.solution-hero-content { padding-bottom: 60px; }
.solution-number { bottom: 60px; opacity: .72; }
.solution-hero-content h1 { max-width: 920px; font-size: clamp(43px, 5vw, 70px); }
.solution-overview, .project-scope { padding-top: clamp(74px, 7vw, 105px); padding-bottom: clamp(74px, 7vw, 105px); }
.overview-image, .proof-image { min-height: 460px; border-radius: 17px; box-shadow: var(--soft-shadow); }
.capability-section { padding-block: clamp(74px, 7vw, 104px); background: linear-gradient(145deg, #04131f, #09283a); }
.project-scope .scope-grid { margin-top: 48px; gap: 10px; border: 0; }
.scope-grid article { min-height: 240px; border: 1px solid var(--line) !important; border-radius: 12px; background: #fff; }
.scope-grid h3 { margin-top: 54px; }
.solution-proof { padding-bottom: clamp(78px, 8vw, 116px); gap: clamp(46px, 7vw, 98px); }
.related-section { padding-bottom: clamp(76px, 8vw, 112px); }
.related-grid { margin-top: 44px; gap: 10px; border: 0; }
.related-grid > a { min-height: 220px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.related-grid p { margin-top: 72px; }
.solutions-intro { padding-top: clamp(66px, 7vw, 96px); padding-bottom: clamp(56px, 6vw, 82px); }
.solution-directory { padding-bottom: clamp(76px, 8vw, 112px); }
.directory-row { min-height: 186px; grid-template-columns: 50px 250px 1fr 36px; border-color: var(--line); }
.directory-image { height: 142px; border-radius: 10px; }
.decision-guide { margin-bottom: clamp(76px, 8vw, 112px); border-radius: 18px; }

.contact-hero, .contact-hero-content { min-height: 510px; }
.contact-layout { padding-top: clamp(74px, 7vw, 104px); padding-bottom: clamp(74px, 7vw, 104px); gap: clamp(48px, 7vw, 98px); }
.enquiry-panel { border: 1px solid rgba(85,230,223,.2); border-radius: 16px; background: linear-gradient(145deg, #051522, #0a2b3c); box-shadow: var(--soft-shadow); }
.enquiry-panel input, .enquiry-panel select, .enquiry-panel textarea { border-radius: 7px; }
.form-note { font-size: 11px; }
.form-note a { color: #c5dce4; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.helpful-list { border-radius: 12px; }
.contact-next-step { padding-bottom: clamp(76px, 8vw, 112px); }
.next-step-grid { gap: 10px; border: 0; }
.next-step-grid article { min-height: 210px; border: 1px solid var(--line) !important; border-radius: 12px; background: #fff; }
.next-step-grid h2 { margin-top: 54px; }

.site-footer { padding-top: 68px; }
.site-footer .brand-mark { background: rgba(255,255,255,.05); border-color: rgba(85,230,223,.25); }
.footer-grid h2, .directory-copy > span, .image-label { font-size: 10px; }

/* Privacy and launch-information pages */
.legal-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(85,230,223,.13), transparent 25%),
    linear-gradient(135deg, #03101a, #0a2b3d);
  color: #fff;
}
.legal-hero::after { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.24) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.24) 1px, transparent 1px); background-size: 72px 72px; content: ""; }
.legal-hero-content { position: relative; z-index: 2; min-height: 360px; padding-top: 38px; padding-bottom: 55px; display: flex; flex-direction: column; justify-content: flex-end; }
.legal-hero-content .breadcrumbs { margin-bottom: auto; }
.legal-hero h1 { margin: 0; font-size: clamp(46px, 6vw, 76px); font-weight: 650; letter-spacing: -.055em; line-height: 1; }
.legal-hero p { max-width: 720px; margin: 22px 0 0; color: #d4e2e8; font-size: 18px; line-height: 1.65; }
.legal-layout { padding-top: clamp(70px, 7vw, 102px); padding-bottom: clamp(80px, 8vw, 118px); display: grid; grid-template-columns: .62fr 1.38fr; gap: clamp(52px, 8vw, 118px); align-items: start; }
.legal-summary { position: sticky; top: 116px; padding: 30px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(145deg, #fff, #eef5f7); }
.legal-summary p { margin: 0 0 24px; color: var(--slate); font-size: 15px; line-height: 1.75; }
.legal-updated { margin: 0 0 38px !important; color: var(--teal-dark) !important; font-size: 12px !important; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.legal-copy h2 { margin: 46px 0 14px; color: var(--ink); font-size: clamp(26px, 2.5vw, 36px); font-weight: 640; letter-spacing: -.035em; }
.legal-copy h2:first-of-type { margin-top: 0; }
.legal-copy p { margin: 0 0 18px; color: var(--slate); font-size: 16px; line-height: 1.78; }
.legal-copy a { color: var(--teal-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 980px) {
  .site-header { height: 74px; }
  .mobile-menu nav { top: 74px; }
  .hero { min-height: 690px; }
  .hero-content { padding-top: 68px; padding-bottom: 105px; }
  .machine-showcase-grid { grid-template-columns: 1fr; grid-template-rows: 390px 250px 250px; }
  .machine-shot:first-child { grid-row: auto; }
  .directory-row { grid-template-columns: 42px 210px 1fr 28px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-summary { position: static; }
}

@media (max-width: 720px) {
  .hero { min-height: 680px; }
  .hero-content { padding-top: 55px; padding-bottom: 92px; }
  .hero-copy h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero-copy > p { color: #f2f7f8; }
  .hero-proof-line { gap: 9px 18px; }
  .hero-proof-line span { width: calc(50% - 10px); font-size: 10px; }
  .hero-rail { font-size: 9px; }
  .machine-showcase { padding-inline: 0; }
  .machine-showcase-wrap { border-radius: 0; padding: 32px var(--page-pad); }
  .machine-showcase-grid { grid-template-rows: 280px 220px 220px; }
  .machine-shot-copy { left: 16px; right: 16px; bottom: 15px; }
  .architecture-grid, .process-grid, .scope-grid, .next-step-grid { gap: 9px; }
  .solutions-grid { gap: 8px; }
  .feature-image, .marking-image, .software-image, .overview-image, .proof-image { min-height: 330px; border-radius: 12px; }
  .solution-hero, .solution-hero-content { min-height: 600px; }
  .solution-hero-content h1 { font-size: 41px; }
  .directory-row { grid-template-columns: 34px 1fr 26px; }
  .contact-band { border-radius: 12px; }
}


/* SEO expansion 2026-08-25 */
.seo-hero .solution-hero-content{max-width:980px}.seo-hero .solution-hero-content h1{max-width:930px}.answer-section{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);gap:clamp(2rem,6vw,7rem);padding-top:clamp(4rem,8vw,8rem);padding-bottom:clamp(4rem,8vw,8rem)}.answer-copy h2{font-size:clamp(2.3rem,4.8vw,4.7rem);line-height:.98;letter-spacing:-.055em;margin:1.2rem 0 1.8rem}.answer-copy p{font-size:clamp(1.04rem,1.35vw,1.25rem);line-height:1.75;color:#365366;max-width:820px}.answer-facts{margin:0;align-self:start;border-top:1px solid #b9cad3}.answer-facts div{display:grid;grid-template-columns:130px 1fr;gap:1rem;padding:1.25rem 0;border-bottom:1px solid #cbd8df}.answer-facts dt{text-transform:uppercase;letter-spacing:.13em;font-size:.68rem;font-weight:800;color:#557082}.answer-facts dd{margin:0;font-weight:700;color:#071b29;line-height:1.45}.seo-card-section{background:#061522;color:#fff;padding:clamp(4rem,8vw,8rem) 0}.seo-card-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));border-top:1px solid rgba(255,255,255,.18);border-left:1px solid rgba(255,255,255,.18)}.seo-card-grid article{padding:clamp(1.5rem,3vw,2.8rem);min-height:310px;border-right:1px solid rgba(255,255,255,.18);border-bottom:1px solid rgba(255,255,255,.18);display:flex;flex-direction:column}.seo-card-grid article>span,.sector-index{font-family:var(--mono);color:#55d9db;font-size:.72rem;letter-spacing:.12em}.seo-card-grid h3{font-size:clamp(1.35rem,2vw,2rem);line-height:1.08;margin:auto 0 1rem}.seo-card-grid p{color:#b7ccd7;line-height:1.7;margin:0}.guide-section{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);gap:clamp(2rem,6vw,7rem);padding-top:clamp(4rem,8vw,8rem);padding-bottom:clamp(4rem,8vw,8rem)}.guide-copy h2{font-size:clamp(2.2rem,4.5vw,4.5rem);line-height:1;margin:1rem 0 2rem;letter-spacing:-.05em}.guide-copy p{font-size:1.05rem;line-height:1.8;color:#365366}.guide-copy a{color:#006d73;text-decoration:underline;text-underline-offset:3px}.source-note{font-size:.92rem!important;padding-top:1rem;border-top:1px solid #c9d7de}.guide-callout{align-self:start;background:#dff7f6;padding:clamp(1.8rem,4vw,3.4rem);border-top:4px solid #42d5d7}.guide-callout>span{text-transform:uppercase;letter-spacing:.14em;font-size:.7rem;font-weight:800;color:#006d73}.guide-callout h3{font-size:clamp(1.7rem,2.8vw,2.8rem);line-height:1.05;margin:1.3rem 0}.guide-callout p{line-height:1.7;color:#284c5f}.seo-opportunity-section{padding-top:clamp(4rem,8vw,8rem);padding-bottom:clamp(4rem,8vw,8rem)}.opportunity-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));border-top:1px solid #b9cad3;border-left:1px solid #b9cad3;margin-top:3rem}.opportunity-grid>a{padding:clamp(1.4rem,3vw,2.6rem);border-right:1px solid #b9cad3;border-bottom:1px solid #b9cad3;color:#071b29;min-height:270px;display:flex;flex-direction:column;transition:background .2s,color .2s}.opportunity-grid>a:hover{background:#061522;color:#fff}.opportunity-grid span{font-family:var(--mono);color:#00878d;font-size:.72rem}.opportunity-grid h3{font-size:clamp(1.3rem,1.8vw,1.8rem);line-height:1.12;margin:auto 0 1rem}.opportunity-grid p{margin:0;line-height:1.6;color:#4b6677}.opportunity-grid>a:hover p{color:#bfd0d8}.opportunity-actions{display:flex;gap:2rem;align-items:center;margin-top:2rem}.intent-links-section{display:grid;grid-template-columns:minmax(260px,.7fr) minmax(0,1.3fr);gap:3rem;padding-top:clamp(3rem,6vw,6rem);padding-bottom:clamp(3rem,6vw,6rem);border-top:1px solid #c4d2da}.intent-links-section h2{font-size:clamp(2rem,3.5vw,3.5rem);line-height:1.02;margin:1rem 0}.intent-links-grid{display:grid;grid-template-columns:repeat(3,1fr);border-left:1px solid #b9cad3;border-top:1px solid #b9cad3}.intent-links-grid a{position:relative;display:flex;flex-direction:column;min-height:210px;padding:1.5rem;border-right:1px solid #b9cad3;border-bottom:1px solid #b9cad3;color:#071b29}.intent-links-grid span{font-family:var(--mono);font-size:.7rem;color:#00878d}.intent-links-grid h3{font-size:1.35rem;line-height:1.12;margin:auto 0 0}.intent-links-grid i{position:absolute;right:1.4rem;top:1.3rem;font-style:normal}.industry-detail{padding-top:clamp(4rem,8vw,8rem);padding-bottom:clamp(4rem,8vw,8rem)}.industry-intro{max-width:800px;margin-bottom:3rem}.industry-intro h2{font-size:clamp(2.3rem,4.5vw,4.5rem);line-height:1;margin:1rem 0}.industry-intro p{font-size:1.1rem;line-height:1.7;color:#466171}.industry-list{border-top:1px solid #b9cad3}.industry-list article{display:grid;grid-template-columns:90px minmax(0,1fr);gap:2rem;padding:clamp(2rem,4vw,4rem) 0;border-bottom:1px solid #b9cad3;scroll-margin-top:110px}.industry-list h2{font-size:clamp(1.8rem,3vw,3rem);margin:0 0 1rem}.industry-list p{max-width:900px;line-height:1.75;color:#3e5a6b}.sector-links{display:flex;flex-wrap:wrap;gap:.75rem 1.5rem;margin-top:1.3rem}.sector-links a{font-weight:800;color:#006d73;border-bottom:1px solid #80b9bb;padding-bottom:.25rem}.sector-links span{margin-left:.5rem}.location-section{display:grid;grid-template-columns:.85fr 1.15fr;gap:4rem;padding-top:clamp(4rem,7vw,7rem);padding-bottom:clamp(4rem,7vw,7rem);border-top:1px solid #b9cad3}.location-section h2{font-size:clamp(2.2rem,4vw,4rem);line-height:1;margin:1rem 0 1.5rem}.location-section p{font-size:1.1rem;line-height:1.75;color:#3e5a6b}.location-actions{border-top:1px solid #b9cad3}.location-actions a{display:grid;grid-template-columns:120px 1fr auto;gap:1rem;align-items:center;padding:1.5rem 0;border-bottom:1px solid #b9cad3;color:#071b29}.location-actions small{text-transform:uppercase;letter-spacing:.13em;font-size:.66rem;font-weight:800;color:#547081}.location-actions strong{font-size:clamp(1rem,1.5vw,1.35rem);overflow-wrap:anywhere}.location-actions span{color:#00878d}.footer-grid{grid-template-columns:minmax(260px,1.35fr) repeat(3,minmax(170px,1fr))}.sector-list strong a{color:inherit}.sector-list strong a:hover{color:#54d9db}
@media(max-width:1050px){.seo-card-grid,.opportunity-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.answer-section,.guide-section,.intent-links-section,.location-section{grid-template-columns:1fr}.footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:680px){.seo-card-grid,.opportunity-grid,.intent-links-grid{grid-template-columns:1fr}.answer-facts div{grid-template-columns:1fr}.opportunity-actions,.sector-links{align-items:flex-start;flex-direction:column}.industry-list article{grid-template-columns:48px minmax(0,1fr)}.location-actions a{grid-template-columns:1fr auto}.location-actions small{grid-column:1/-1}.footer-grid{grid-template-columns:1fr}}


/* SEO opportunity expansion 2026-09-01 */
.source-panel{display:grid;grid-template-columns:minmax(260px,.75fr) minmax(0,1.25fr);gap:clamp(2.5rem,7vw,7rem);padding-top:clamp(4rem,7vw,7rem);padding-bottom:clamp(4rem,7vw,7rem);border-top:1px solid #c4d2da}.source-panel h2{margin:1rem 0 1.2rem;font-size:clamp(2.1rem,4vw,4rem);line-height:1;letter-spacing:-.05em}.source-panel p{max-width:650px;color:#466171;line-height:1.72}.source-panel ul{margin:0;padding:0;list-style:none;border-top:1px solid #b9cad3}.source-panel li{border-bottom:1px solid #b9cad3}.source-panel a{position:relative;display:block;padding:1.35rem 2.4rem 1.35rem 0;color:#006d73;font-weight:760;line-height:1.45}.source-panel a::after{position:absolute;right:.2rem;top:1.25rem;content:'↗';font-weight:500}.source-panel a:hover{color:#071b29}.guide-library{padding-top:clamp(4rem,8vw,8rem);padding-bottom:clamp(4rem,8vw,8rem)}.guide-library-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.guide-library-grid>a{min-height:390px;padding:clamp(2rem,4vw,3.7rem);border:1px solid #c1d1d9;border-radius:16px;background:linear-gradient(145deg,#fff,#edf5f7);color:#071b29;display:flex;flex-direction:column;transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease}.guide-library-grid>a:hover{transform:translateY(-4px);border-color:rgba(8,120,117,.5);box-shadow:0 22px 48px rgba(6,34,49,.12)}.guide-library-grid span{color:#00878d;font-size:.68rem;font-weight:820;letter-spacing:.13em;text-transform:uppercase}.guide-library-grid h2{margin:auto 0 1.2rem;font-size:clamp(2rem,3.5vw,3.6rem);line-height:1;letter-spacing:-.05em}.guide-library-grid p{margin:0 0 1.7rem;color:#3e5a6b;line-height:1.7}.guide-library-grid strong{color:#006d73}.guide-library-grid i{font-style:normal;margin-left:.45rem}.solution-card-11,.solution-card-12{border-color:rgba(8,120,117,.28);background:linear-gradient(145deg,#f5ffff,#dff7f6)}.solution-card-11 .solution-card-top>span:first-child,.solution-card-12 .solution-card-top>span:first-child{color:#00878d}.seo-opportunity-section .opportunity-grid>a{border-radius:0}.seo-opportunity-section .opportunity-grid>a:first-child{border-radius:12px 0 0 12px}.seo-opportunity-section .opportunity-grid>a:last-child{border-radius:0 12px 12px 0}@media(max-width:980px){.source-panel{grid-template-columns:1fr}.guide-library-grid{grid-template-columns:1fr}.guide-library-grid>a{min-height:320px}}@media(max-width:720px){.source-panel{padding-inline:var(--page-pad)}.guide-library{padding-inline:var(--page-pad)}.guide-library-grid>a{min-height:300px}.seo-opportunity-section .opportunity-grid>a:first-child,.seo-opportunity-section .opportunity-grid>a:last-child{border-radius:0}}
