:root {
  --ink: #0a2537;
  --brand: #174a68;
  --paper: #f4f7f6;
  --white: #ffffff;
  --acid: #9bd0ff;
  --orange: #002fa7;
  --line: rgba(10, 37, 55, 0.18);
  --muted: #536571;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --radius: 0.35rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }

img { display: block; max-width: 100%; }

button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--acid);
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 8.5rem;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: rgba(244, 247, 246, 0.96);
  border-bottom: 1px solid rgba(7, 27, 44, 0.12);
  backdrop-filter: blur(16px);
  transition: height 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  height: 5.75rem;
  color: var(--ink);
  background: rgba(244, 247, 246, 0.97);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
}

.site-header > .brand {
  margin-left: 0;
  transform: none;
}

.brand-logo {
  width: auto;
  height: 7.25rem;
  object-fit: contain;
  filter: none;
  transition: height 180ms ease;
}

.site-header.is-scrolled .brand-logo { height: 5.15rem; }

.site-nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.7vw, 3rem); }

.site-nav a {
  font-size: 0.77rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}

.site-nav a:not(.nav-cta) { position: relative; }

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.35rem;
  height: 2px;
  background: currentColor;
  transition: right 180ms ease;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after { right: 0; }

.nav-cta {
  padding: 0.85rem 1.05rem;
  background: var(--orange);
  color: var(--white);
  border-radius: 0.25rem;
}

.site-header.is-scrolled .nav-cta { background: var(--orange); color: var(--white); }

.menu-button { display: none; }

.hero {
  position: relative;
  min-height: min(48rem, 82svh);
  padding: clamp(9rem, 15vh, 12rem) var(--pad) clamp(2.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem clamp(2.5rem, 6vw, 7rem);
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-background,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-background {
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 52%;
  transform: scale(1.01);
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.2) 53%, transparent 80%);
}

.hero-copy {
  max-width: 65rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.85), 0 6px 18px rgba(0, 0, 0, 0.55);
}

.hero-copy .button { text-shadow: none; }

.hero-copy .eyebrow { color: var(--white); }

.eyebrow {
  margin: 0 0 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span { width: 2rem; height: 2px; background: currentColor; }

h1, h2, h3, p { text-wrap: balance; }

h1, h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

h1 {
  font-size: clamp(3.7rem, 7vw, 7.9rem);
  letter-spacing: -0.045em;
  line-height: 1.09;
}

h1 em, h2 em {
  color: inherit;
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

.hero-intro {
  max-width: 39rem;
  margin: 2.2rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.45vw, 1.38rem);
  line-height: 1.45;
}

.hero-actions { margin-top: 2.1rem; display: flex; align-items: center; flex-wrap: wrap; gap: 1.4rem; }

.button {
  min-height: 3.6rem;
  padding: 0.9rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover, .button:focus-visible { transform: translateY(-2px); }

.button-primary { background: var(--acid); color: var(--ink); }

.button-primary:hover, .button-primary:focus-visible { background: var(--white); color: var(--ink); }

.text-link {
  padding: 0.7rem 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-meta {
  min-width: 14rem;
  display: grid;
  gap: 0.75rem;
  align-self: end;
}

.hero-meta div {
  padding: 0.9rem 1rem;
  display: grid;
  gap: 0.08rem;
  border: 1px solid rgba(7, 27, 44, 0.14);
  background: rgba(244, 247, 246, 0.96);
  backdrop-filter: blur(14px);
}

.hero-meta strong { color: var(--brand); font-size: 0.91rem; letter-spacing: -0.02em; }
.hero-meta span { color: var(--muted); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  color: var(--ink);
  border-block: 1px solid var(--line);
}

.proof-strip div { min-height: 7.5rem; padding: 1.5rem var(--pad); display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.proof-strip div:last-child { border: 0; }
.proof-strip strong { font-size: clamp(1rem, 1.5vw, 1.35rem); letter-spacing: -0.035em; }
.proof-strip span { margin-top: 0.2rem; color: var(--orange); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }

.section { padding: clamp(5rem, 7.5vw, 7.5rem) var(--pad); }

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.1fr 0.75fr;
  gap: 3rem;
  align-items: end;
}

.section-heading .eyebrow { align-self: start; }

h2 { font-size: clamp(3.1rem, 6.2vw, 7.1rem); }

.section-heading > p:last-child { margin: 0; max-width: 29rem; color: var(--muted); font-size: 1.05rem; }

.product-showcase {
  margin-top: clamp(3rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: minmax(19rem, 0.72fr) minmax(0, 1.48fr);
  align-items: stretch;
}

.product-photo {
  position: relative;
  min-height: 27rem;
  margin: 0;
  overflow: hidden;
  background: var(--brand);
}

.product-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(3, 18, 28, 0.88) 100%);
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 22% center;
  transition: transform 500ms ease;
}

.product-photo:hover img { transform: scale(1.025); }

.product-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: grid;
  gap: 0.35rem;
  color: var(--white);
}

.product-photo figcaption strong { color: var(--acid); font-size: 1rem; }
.product-photo figcaption span { max-width: 24rem; color: rgba(255, 255, 255, 0.74); font-size: 0.78rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.product-card {
  min-height: 19rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-card:hover { background: var(--ink); color: var(--white); }

.card-number { align-self: flex-start; min-width: 2.4rem; padding: 0.25rem 0.4rem; border: 1px solid currentColor; border-radius: 100px; font-size: 0.64rem; font-weight: 800; text-align: center; }
.product-card h3 { margin: auto 0 1rem; font-size: clamp(1.45rem, 2.2vw, 2.1rem); line-height: 1; letter-spacing: -0.05em; }
.product-card p { margin: 0 0 1.7rem; color: var(--muted); font-size: 0.92rem; }
.product-card:hover p { color: rgba(255,255,255,0.68); }
.product-card ul { margin: 0; padding: 1.1rem 0 0; list-style: none; border-top: 1px solid currentColor; }
.product-card li { margin-top: 0.45rem; font-size: 0.75rem; font-weight: 700; }
.product-card li::before { content: "+"; margin-right: 0.55rem; color: var(--orange); }
.product-card:hover li::before { color: var(--acid); }

.capabilities {
  padding: clamp(5rem, 8vw, 8rem) var(--pad);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(4rem, 7vw, 8rem);
  background: var(--brand);
  color: var(--white);
}

.eyebrow-light { color: var(--acid); }
.capability-lead { position: sticky; top: 8rem; align-self: start; }
.capability-lead h2 { font-size: clamp(3.4rem, 6vw, 6.6rem); }
.capability-photo {
  position: relative;
  margin: clamp(2.5rem, 4vw, 4rem) 0 0;
  min-height: 0;
  max-width: 38rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
}
.capability-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(7, 45, 70, 0.68) 100%);
}
.capability-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.capability-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 1.2rem;
  bottom: 1.1rem;
  left: 1.2rem;
  display: grid;
  gap: 0.25rem;
}
.capability-photo figcaption strong { color: var(--acid); font-size: 0.86rem; }
.capability-photo figcaption span { color: rgba(255, 255, 255, 0.72); font-size: 0.72rem; }
.capability-intro { margin: 0 0 2.6rem; max-width: 34rem; font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.35; }
.capability-list { border-top: 1px solid rgba(255,255,255,0.28); }
.capability-list > div { padding: 1.2rem 0; display: grid; grid-template-columns: 2.5rem 0.8fr 1.25fr; gap: 1rem; border-bottom: 1px solid rgba(255,255,255,0.28); }
.capability-list span { color: var(--acid); font-size: 0.69rem; font-weight: 800; }
.capability-list strong { font-size: 0.95rem; }
.capability-list p { margin: 0; color: rgba(255,255,255,0.65); font-size: 0.87rem; }

.served-markets { margin-top: 2.5rem; }
.served-heading { display: grid; grid-template-columns: 0.8fr 1.25fr; gap: 1rem; align-items: start; margin-bottom: 1.2rem; }
.served-heading strong { color: var(--acid); font-size: 0.95rem; }
.served-heading p { margin: 0; color: rgba(255,255,255,0.65); font-size: 0.87rem; }
.served-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,0.28); border-left: 1px solid rgba(255,255,255,0.28); }
.served-list span { min-height: 3.7rem; padding: 0.8rem; display: flex; align-items: flex-end; border-right: 1px solid rgba(255,255,255,0.28); border-bottom: 1px solid rgba(255,255,255,0.28); font-size: 0.76rem; font-weight: 800; }

.process-title { display: grid; grid-template-columns: 0.8fr 2fr; gap: 3rem; }
.process-title h2 { max-width: 64rem; }
.steps { margin: clamp(3rem, 5vw, 5rem) 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.steps li { min-height: 16rem; padding: 1.4rem; display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.steps > li > span { font-family: inherit; font-size: clamp(2rem, 3vw, 3.7rem); font-style: normal; }
.steps div { display: block; }
.steps h3 { margin: 0; font-size: clamp(1.25rem, 2vw, 2rem); letter-spacing: -0.04em; }
.steps p { margin: 0.75rem 0 0; max-width: 30rem; color: var(--muted); }

.contact { padding: clamp(5rem, 8vw, 8rem) var(--pad); text-align: center; background: var(--brand); color: var(--white); }
.contact-kicker { margin-bottom: 1.2rem; font-size: 0.73rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.contact h2 { font-size: clamp(4rem, 10vw, 11rem); }
.contact p { max-width: 40rem; margin: 2rem auto; font-size: 1.05rem; }
.button-dark { min-width: min(100%, 25rem); background: var(--acid); color: var(--ink); }
.button-dark:hover, .button-dark:focus-visible { background: var(--white); color: var(--ink); }

footer {
  padding: 4rem var(--pad);
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  gap: 2rem;
  align-items: end;
  background: var(--ink);
  color: var(--white);
}

.footer-brand { --footer-logo-width: 7.2rem; width: var(--footer-logo-width); height: 10rem; position: relative; overflow: hidden; display: block; }
.footer-brand .brand-logo { position: absolute; width: 280%; height: auto; max-width: none; left: -90%; top: -53%; filter: none; }
.footer-copy { max-width: 35rem; }
.footer-copy p { margin: 0 0 1.5rem; color: rgba(255,255,255,0.66); }
.footer-copy span, .back-top { font-size: 0.69rem; font-weight: 700; letter-spacing: 0.05em; }
.back-top { justify-self: end; color: var(--white); text-decoration: none; text-transform: uppercase; }

.js .reveal { opacity: 0; transform: translateY(1.4rem); transition: opacity 600ms ease, transform 600ms ease; }
.js .reveal[data-delay="1"] { transition-delay: 80ms; }
.js .reveal[data-delay="2"] { transition-delay: 160ms; }
.js .reveal[data-delay="3"] { transition-delay: 240ms; }
.js .reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

@media (max-width: 980px) {
  .site-header { height: 6.5rem; }
  .site-header.is-scrolled { height: 5.5rem; }
  .brand-logo { height: 5.75rem; }
  .site-header.is-scrolled .brand-logo { height: 4.9rem; }
  body.menu-open .site-header { color: var(--ink); background: transparent; border-color: transparent; backdrop-filter: none; }
  .menu-button {
    position: relative;
    z-index: 2;
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
  }
  .menu-button i, .menu-button i::before { display: block; width: 1.35rem; height: 2px; background: currentColor; transition: transform 180ms ease; }
  .menu-button i::before { content: ""; transform: translateY(-0.36rem); }
  .menu-button[aria-expanded="true"] i { transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] i::before { transform: rotate(-90deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    padding: 8rem var(--pad) 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.25rem;
    background: var(--paper);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-1rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .site-nav a { font-size: clamp(2.1rem, 9vw, 4rem); letter-spacing: -0.05em; line-height: 1; text-transform: none; }
  .site-nav .nav-cta { margin-top: 1rem; padding: 1rem 1.25rem; background: var(--orange); color: var(--white); font-size: 1rem; letter-spacing: 0; }
  .hero {
    min-height: 100svh;
    padding-top: 9.5rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-background { object-position: 57% center; }
  .hero-shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.63) 0%, rgba(0, 0, 0, 0.25) 76%, rgba(0, 0, 0, 0.1) 100%);
  }
  .hero-meta { min-width: 0; display: flex; flex-wrap: wrap; }
  .hero-meta div { min-width: 11rem; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-strip div:nth-child(2) { border-right: 0; }
  .proof-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr 2fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .product-showcase { grid-template-columns: 1fr; }
  .product-photo { min-height: 0; aspect-ratio: 16 / 9; }
  .product-photo img { object-position: 22% 47%; }
  .capabilities { grid-template-columns: 1fr; }
  .capability-lead { position: static; }
  .capability-photo { max-height: 34rem; }
  .process-title { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-copy { order: 3; grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .hero { gap: 2rem; }
  .hero-background { object-position: 58% center; }
  .hero-meta { display: none; }
  h1 { font-size: clamp(3.15rem, 15vw, 5rem); line-height: 1.08; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip div { min-height: 5.4rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip div:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .section-heading { display: block; }
  .section-heading h2 { margin-bottom: 1.8rem; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 17.5rem; }
  .capability-list > div { grid-template-columns: 2rem 1fr; }
  .capability-list p { grid-column: 2; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: 12rem; }
  .served-heading { grid-template-columns: 1fr; }
  .served-list { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  .footer-brand { --footer-logo-width: 6.4rem; height: 8.9rem; }
  .back-top { justify-self: start; }
  .footer-copy { order: initial; grid-column: auto; }
}

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

/* Keep all editorial grids within the visual viewport, including iOS Safari. */
html, body { max-width: 100%; overflow-x: clip; }
main, section, footer { min-width: 0; max-width: 100%; }
.hero, .capabilities, .product-showcase, .product-grid, .section-heading, .process-title, .steps { min-width: 0; }
.hero > *, .capabilities > *, .product-showcase > *, .product-grid > *, .section-heading > *, .process-title > *, .steps > * { min-width: 0; }
.capability-photo, .product-photo { max-width: 100%; }
.capability-photo img, .product-photo img { max-width: 100%; }

@media (max-width: 980px) {
  .hero, .capabilities, .product-showcase, .section-heading, .process-title { grid-template-columns: minmax(0, 1fr); }
  .section-heading > p:last-child { grid-column: auto; }
  .capabilities { gap: 2.5rem; }
  .capability-photo { width: 100%; max-width: 34rem; }
  .product-photo { max-height: 26rem; }
}
@media (max-width: 620px) {
  :root { --pad: 1.25rem; }
  .site-header { width: 100%; height: 5.75rem; }
  .site-header.is-scrolled { height: 5.25rem; }
  .brand-logo { height: 4.75rem; }
  .site-header.is-scrolled .brand-logo { height: 4.3rem; }
  .hero { min-height: 0; padding-top: 7.75rem; padding-bottom: 3rem; gap: 0; grid-template-columns: minmax(0, 1fr); }
  .hero-background { object-position: 60% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.3)); }
  .hero-copy { width: 100%; min-width: 0; }
  h1 { font-size: clamp(3rem, 13vw, 4.4rem); line-height: 0.99; overflow-wrap: normal; }
  h2 { font-size: clamp(2.7rem, 11vw, 4.8rem); }
  .hero-intro { margin-top: 1.5rem; font-size: 1rem; }
  .hero-actions { margin-top: 1.5rem; gap: 1rem; }
  .button { min-width: 0; max-width: 100%; font-size: 0.76rem; }
  .proof-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-strip div { min-height: 5rem; padding: 1rem var(--pad); }
  .proof-strip div:nth-child(odd) { border-right: 1px solid var(--line); }
  .section, .capabilities { padding-block: 4rem; }
  .product-showcase { margin-top: 2.5rem; }
  .product-photo { height: auto; max-height: 18rem; aspect-ratio: 4 / 3; }
  .product-grid { grid-template-columns: minmax(0, 1fr); }
  .product-card { min-height: 0; padding: 1.4rem; }
  .product-card h3 { margin-top: 2.5rem; }
  .capability-photo { width: 100%; max-width: 100%; aspect-ratio: 4 / 3; }
  .capability-photo figcaption { right: 1rem; left: 1rem; }
  .capability-list > div { grid-template-columns: 2rem minmax(0, 1fr); }
  .served-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .contact h2 { font-size: clamp(3.2rem, 13vw, 6rem); }
  .site-nav { width: 100vw; max-width: 100%; }
}
