:root {
  --navy-950: #051832;
  --navy-900: #071f42;
  --navy-800: #0b315f;
  --yellow: #ffc400;
  --yellow-700: #d49b00;
  --ink: #11223a;
  --muted: #667487;
  --line: #dce5ee;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --steel: #9aa8b8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 104px;
  padding: 14px clamp(20px, 5vw, 76px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 229, 238, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(178px, 15vw, 245px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.5vw, 34px);
  color: var(--navy-950);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  background: var(--yellow);
  color: var(--navy-950);
  box-shadow: 0 12px 26px rgba(255, 196, 0, 0.2);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy-950);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.96fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  min-height: 100vh;
  padding: 150px clamp(20px, 5vw, 76px) 58px;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0 56%, rgba(244, 247, 250, 0.74) 56% 100%),
    var(--paper);
}

.hero::before {
  position: absolute;
  top: 104px;
  bottom: 0;
  left: 0;
  width: min(15vw, 210px);
  background:
    linear-gradient(rgba(5, 24, 50, 0.88), rgba(5, 24, 50, 0.94)),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.08) 42px 43px),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(255, 255, 255, 0.08) 42px 43px);
  clip-path: polygon(0 0, 72% 0, 100% 50%, 72% 100%, 0 100%);
  content: "";
}

.hero::after {
  position: absolute;
  top: 104px;
  bottom: 0;
  left: min(13vw, 178px);
  width: 14px;
  background: var(--yellow);
  transform: skewX(-19deg);
  transform-origin: top;
  content: "";
}

.hero-panel {
  position: absolute;
  inset: 104px 0 0 auto;
  width: 58vw;
  opacity: 0.16;
  pointer-events: none;
}

.blueprint-lines {
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(28deg, transparent 30%, rgba(11, 49, 95, 0.38) 30.4%, transparent 31%),
    linear-gradient(115deg, transparent 38%, rgba(11, 49, 95, 0.32) 38.4%, transparent 39%),
    repeating-linear-gradient(0deg, transparent 0 60px, rgba(11, 49, 95, 0.16) 60px 61px),
    repeating-linear-gradient(90deg, transparent 0 60px, rgba(11, 49, 95, 0.16) 60px 61px);
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-content {
  max-width: 700px;
  padding-left: clamp(84px, 9vw, 128px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  color: var(--navy-950);
  font-size: clamp(2.35rem, 3.9vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-content p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.4vw, 1.26rem);
}

.hero-visual {
  justify-self: end;
  width: min(100%, 680px);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(5, 24, 50, 0.24);
}

.service-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.service-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 14px 10px;
  border-right: 1px solid var(--line);
  color: var(--navy-950);
  font-size: 0.84rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.service-strip a:hover {
  background: var(--yellow);
}

.section,
.dark-section,
.partners-section,
.contact-section {
  padding: clamp(66px, 8vw, 118px) clamp(20px, 5vw, 76px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--soft);
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--yellow-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy-950);
  font-size: clamp(2rem, 3.3vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy-950);
  font-size: 1.18rem;
  line-height: 1.22;
}

.section-copy p,
.technical-grid p,
.partners-section p,
.contact-section p,
.vr-card p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-grid article,
.technical-grid article {
  min-height: 236px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.feature-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--yellow);
  font-weight: 900;
}

.dark-section {
  background:
    linear-gradient(120deg, rgba(5, 24, 50, 0.95), rgba(7, 31, 66, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(255, 255, 255, 0.08) 54px 55px);
}

.vr-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: end;
}

.vr-card h2,
.contact-section h2 {
  color: var(--paper);
}

.vr-card p,
.contact-section p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.technical-section {
  background: var(--paper);
}

.technical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.technical-grid article {
  min-height: 204px;
}

.technical-grid article::before {
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: 22px;
  background: var(--yellow);
  content: "";
}

.partners-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: end;
  background: var(--soft);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: center;
  background:
    linear-gradient(115deg, rgba(5, 24, 50, 0.96), rgba(11, 49, 95, 0.9)),
    var(--navy-950);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--navy-950);
  font-weight: 850;
}

.contact-actions a:first-child {
  background: var(--yellow);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(20px, 5vw, 76px);
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.68);
}

.site-footer img {
  width: 160px;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--paper);
}

.site-footer p {
  margin: 0;
  text-align: right;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero::before {
    width: 48vw;
    opacity: 0.26;
  }

  .hero::after {
    left: 39vw;
  }

  .hero-content {
    max-width: 820px;
    padding-left: 0;
  }

  .hero-visual {
    justify-self: start;
    max-width: 720px;
  }

  .service-strip,
  .technical-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .intro-section,
  .vr-card,
  .partners-section,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 92px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 92px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(5, 24, 50, 0.16);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .nav-cta {
    margin-top: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero::before {
    width: 82vw;
    opacity: 0.18;
  }

  .hero::after {
    left: 72vw;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .service-strip,
  .technical-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-strip a {
    min-height: 66px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 158px;
  }

  .hero {
    padding-top: 124px;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.07;
    overflow-wrap: anywhere;
  }

  .hero-visual img {
    border-width: 6px;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .technical-grid {
    grid-template-columns: 1fr;
  }

  .service-strip a {
    justify-content: flex-start;
    padding-left: 20px;
  }
}

/* Final layout: closer to the approved visual mockup. */
.site-header {
  min-height: 138px;
  padding: 18px clamp(34px, 4.8vw, 86px);
}

.brand img {
  width: clamp(230px, 24vw, 430px);
  max-height: 106px;
  object-fit: contain;
  object-position: left center;
}

.nav-cta {
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
}

.nav-cta::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.8rem;
  line-height: 1;
  content: "↗";
}

.hero {
  grid-template-columns: minmax(430px, 45%) minmax(0, 55%);
  gap: 0;
  align-items: stretch;
  min-height: 560px;
  padding: 138px 0 0;
  background: var(--paper);
}

.hero::after {
  top: 138px;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 46%;
  background:
    linear-gradient(90deg, rgba(5, 24, 50, 0.98), rgba(5, 24, 50, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(255, 255, 255, 0.07) 46px 47px),
    repeating-linear-gradient(0deg, transparent 0 46px, rgba(255, 255, 255, 0.07) 46px 47px);
  clip-path: polygon(0 0, 100% 0, 84% 50%, 100% 100%, 0 100%);
  transform: none;
}

.hero::before {
  top: 138px;
  bottom: 0;
  left: calc(45% - 72px);
  z-index: 6;
  width: 16px;
  background: var(--yellow);
  transform: skewX(-30deg);
  transform-origin: top;
  clip-path: none;
}

.hero-panel {
  display: none;
}

.hero-content,
.hero-visual {
  z-index: 5;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  min-height: 560px;
  padding: clamp(48px, 6vw, 86px) clamp(34px, 5vw, 78px);
  color: var(--paper);
}

h1 {
  color: inherit;
  font-size: clamp(2.45rem, 4vw, 5rem);
}

.hero-rule {
  display: block;
  width: 70px;
  height: 6px;
  margin-bottom: 24px;
  background: var(--yellow);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
}

.hero-visual {
  justify-self: auto;
  width: 100%;
  min-height: 560px;
  max-width: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-cards {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px;
  padding: 26px clamp(34px, 4.8vw, 86px) 20px;
  border-top: 1px solid rgba(220, 229, 238, 0.72);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.service-cards article {
  display: grid;
  justify-items: center;
  min-height: 196px;
  padding: 22px 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  text-align: center;
  box-shadow: 0 12px 32px rgba(5, 24, 50, 0.04);
}

.service-cards svg {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  fill: none;
  stroke: var(--navy-950);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-cards h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.service-cards p {
  margin: 0;
  color: var(--navy-950);
  font-size: 0.78rem;
  line-height: 1.45;
}

.service-cards article::after {
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 16px;
  background: var(--yellow);
  content: "";
}

.process-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.52fr) 1fr;
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  padding: 22px clamp(34px, 4.8vw, 86px);
  background: var(--navy-950);
  color: var(--paper);
}

.process-band span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.process-band h2 {
  max-width: 520px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.25rem, 1.75vw, 1.85rem);
  line-height: 1.12;
}

.process-band ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-band li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
}

.process-band li:not(:last-child)::after {
  position: absolute;
  right: -12px;
  color: var(--yellow);
  content: "→";
}

.process-band strong {
  color: transparent;
  font-size: clamp(1.6rem, 2.4vw, 2.65rem);
  line-height: 1;
  -webkit-text-stroke: 1px var(--yellow);
}

@media (max-width: 1180px) {
  .service-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-band,
  .process-band ol {
    grid-template-columns: 1fr;
  }

  .process-band li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 96px;
    padding: 14px 20px;
  }

  .brand img {
    width: 178px;
    max-height: 72px;
  }

  .site-nav {
    top: 96px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 96px;
  }

  .hero::after {
    width: 100%;
    clip-path: none;
  }

  .hero::before {
    left: 72%;
    opacity: 1;
  }

  .hero-content {
    min-height: auto;
    padding: 56px 20px 36px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 360px;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 18px 20px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.15rem;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }
}

/* V4: final hero fix based on the approved mockup. */
@media (min-width: 901px) {
  .hero {
    grid-template-columns: minmax(600px, 45%) minmax(0, 55%);
    min-height: 560px;
  }

  .hero::before {
    top: 138px;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: calc(45% + 18px);
    background: var(--yellow);
    clip-path: polygon(0 0, calc(100% - 82px) 0, 100% 50%, calc(100% - 82px) 100%, 0 100%);
    opacity: 1;
    transform: none;
  }

  .hero::after {
    top: 138px;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 45%;
    background:
      linear-gradient(90deg, rgba(5, 24, 50, 0.98), rgba(5, 24, 50, 0.9)),
      repeating-linear-gradient(90deg, transparent 0 46px, rgba(255, 255, 255, 0.07) 46px 47px),
      repeating-linear-gradient(0deg, transparent 0 46px, rgba(255, 255, 255, 0.07) 46px 47px);
    clip-path: polygon(0 0, calc(100% - 82px) 0, 100% 50%, calc(100% - 82px) 100%, 0 100%);
    transform: none;
  }

  .hero-content {
    z-index: 4;
    max-width: 670px;
    min-height: 560px;
    padding: 54px 82px 46px 64px;
  }

  h1 {
    max-width: 640px;
    font-size: clamp(3.1rem, 3.4vw, 4.15rem);
    line-height: 1.12;
    overflow-wrap: normal;
  }

  .hero-content p {
    max-width: 590px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 560px;
  }

  .hero-visual img {
    object-position: center center;
  }
}

.process-band li:not(:last-child)::after {
  content: ">";
}

/* V5: hero uses one complete background image, with text overlaid in HTML. */
.hero {
  display: flex;
  align-items: center;
  min-height: 720px;
  padding: 138px clamp(34px, 4.8vw, 86px) 0;
  background:
    linear-gradient(90deg, rgba(5, 24, 50, 0.08), rgba(5, 24, 50, 0)),
    url("assets/corradi-hero-bg-v5.png") center / cover no-repeat;
}

.hero::before,
.hero::after,
.hero-panel,
.hero-visual {
  display: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(45vw, 720px);
  min-height: 560px;
  max-width: 720px;
  padding: 0;
  color: var(--paper);
}

.hero-content h1 {
  max-width: 690px;
  color: var(--paper);
  font-size: clamp(3.1rem, 4vw, 5rem);
  line-height: 1.08;
}

.hero-content p {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1180px) {
  .hero {
    min-height: 660px;
    background-position: 56% center;
  }

  .hero-content {
    width: min(52vw, 620px);
  }

  .hero-content h1 {
    font-size: clamp(2.7rem, 4.8vw, 4.2rem);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 126px 20px 360px;
    background-position: 58% bottom;
  }

  .hero-content {
    width: 100%;
    min-height: auto;
  }

  .hero-content h1 {
    max-width: 620px;
    font-size: clamp(2.15rem, 8vw, 3.4rem);
  }
}

@media (max-width: 520px) {
  .hero {
    padding-bottom: 300px;
    background-position: 58% bottom;
  }
}

/* V6: keep hero text inside the navy area and strengthen the 3D modeling section. */
@media (min-width: 901px) {
  .hero {
    min-height: 650px;
    background-position: center center;
  }

  .hero-content {
    width: min(38vw, 650px);
    max-width: 650px;
  }

  .hero-content h1 {
    max-width: 640px;
    font-size: clamp(3rem, 3.45vw, 4.45rem);
    line-height: 1.08;
  }

  .hero-content p {
    max-width: 570px;
    font-size: clamp(1.05rem, 1.15vw, 1.28rem);
  }
}

.dark-section {
  padding-top: clamp(78px, 8vw, 128px);
  padding-bottom: clamp(78px, 8vw, 128px);
}

.vr-card {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.8fr);
  align-items: center;
}

.vr-card h2 {
  max-width: 920px;
  font-size: clamp(2.6rem, 4vw, 5.2rem);
  line-height: 1.04;
}

.vr-card p {
  max-width: 700px;
  font-size: clamp(1.25rem, 1.45vw, 1.65rem);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .vr-card {
    grid-template-columns: 1fr;
  }

  .vr-card h2 {
    font-size: clamp(2.1rem, 7vw, 3.4rem);
  }

  .vr-card p {
    font-size: 1.08rem;
  }
}

/* V7: split hero headline into white lead + yellow support line. */
.hero-content h1 {
  display: grid;
  gap: 12px;
}

.hero-content h1 span {
  display: block;
  max-width: 560px;
  color: var(--yellow);
  font-size: 0.58em;
  line-height: 1.12;
}

@media (min-width: 901px) {
  .hero-content {
    width: min(36vw, 610px);
  }

  .hero-content h1 {
    max-width: 600px;
    font-size: clamp(2.85rem, 3.15vw, 4.05rem);
    line-height: 1.06;
  }

  .hero-content h1 span {
    max-width: 530px;
  }
}

@media (max-width: 900px) {
  .hero-content h1 span {
    font-size: 0.68em;
  }
}
