:root {
  --blue: #0a4f9f;
  --blue-dark: #082c5c;
  --blue-soft: #e8f2ff;
  --yellow: #f7c72f;
  --yellow-soft: #fff6d6;
  --ink: #101828;
  --muted: #5c667a;
  --line: #d9e3ef;
  --line-soft: #edf1f5;
  --white: #ffffff;
  --bg: #f6f8fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 0 clamp(20px, 5vw, 72px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 16px 40px rgba(8, 44, 92, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.is-menu-open {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 16px 40px rgba(8, 44, 92, 0.08);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  max-width: 1240px;
  min-height: 80px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  display: block;
  width: auto;
  height: 44px;
  max-width: min(260px, 52vw);
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 180ms ease;
}

.site-header.is-scrolled .brand img {
  filter: none;
}

.site-header.is-menu-open .brand img {
  filter: none;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: transparent;
  border-bottom-color: var(--yellow);
}

.site-header.is-scrolled .nav-links a {
  color: var(--muted);
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-links a.active {
  color: var(--blue-dark);
}

.site-header.is-menu-open .nav-links a {
  color: var(--muted);
}

.site-header.is-menu-open .nav-links a:hover,
.site-header.is-menu-open .nav-links a.active {
  color: var(--blue-dark);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 800;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.site-header.is-menu-open .nav-cta {
  color: var(--white);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-menu-open .menu-toggle {
  border-color: var(--line);
  background: var(--white);
}

.site-header.is-scrolled .menu-toggle span,
.site-header.is-menu-open .menu-toggle span {
  background: var(--blue-dark);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(640px, calc(100vh - 80px));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 24px;
  align-items: center;
  padding: 162px clamp(20px, 7vw, 92px) 156px;
  color: var(--white);
  background:
    linear-gradient(rgba(5, 45, 92, 0.935), rgba(5, 40, 78, 0.935)),
    url("hero-construction.png") center / cover no-repeat,
    radial-gradient(circle at 78% 18%, rgba(13, 91, 166, 0.9), transparent 34%),
    radial-gradient(circle at 20% 86%, rgba(0, 92, 159, 0.72), transparent 34%),
    linear-gradient(135deg, #052d5c 0%, #063f78 52%, #05284e 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 200;
  height: clamp(76px, 10vw, 130px);
  background: var(--white);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 140' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 82 L1018 0 C1092 0 1158 34 1200 92 L1200 140 L0 140 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 140' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 82 L1018 0 C1092 0 1158 34 1200 92 L1200 140 L0 140 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  pointer-events: none;
}

.hero > .hero-content,
.hero > .hero-visual {
  position: relative;
  z-index: 2;
}

.hero {
  --hero-divider-size: clamp(86px, 13vw, 168px);
}

.hero > .hero-visual::before {
  content: none;
}

.hero > .hero-content::after,
.page-hero > h1::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 470px;
}

.hero-shape {
  position: absolute;
  right: -6%;
  bottom: 3%;
  width: min(570px, 44vw);
  aspect-ratio: 1.22;
  border-radius: 999px 999px 24px 24px;
  background: rgba(247, 199, 47, 0.96);
  transform: rotate(-12deg);

}

.hero-device {
  position: absolute;
  display: block;
  right:5%;
  top: 40%;
  width: min(540vw, 48vw);
  object-fit: cover;
  border: 0;
  border-radius: 0;

  transform: translateY(-50%);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--yellow);
}

.hero .section-label {
  color: var(--yellow);
}

.hero .section-label::before,
.page-hero .section-label::before,
.hr-plan .section-label::before,
.contact-card .section-label::before {
  background: var(--white);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 800;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 5.8vw, 5.8rem);
}

h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.75rem);
}

h3 {
  font-size: 1.15rem;
}

article p {
  font-size: 0.98rem;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.btn.primary {
  color: var(--blue-dark);
  background: var(--yellow);
  box-shadow: 0 12px 26px rgba(247, 199, 47, 0.26);
}

.btn.secondary {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.intro-section,
.split-section,
.capability-band,
.process-section,
.site-scope,
.image-feature,
.profile-section,
.page-hero,
.site-footer {
  padding-inline: clamp(20px, 7vw, 92px);
}

main > section {
  position: relative;
}

.site-scope {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding-block: 104px 72px;
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
}

.scope-illustration {
  position: relative;
  min-height: 330px;
}

.scope-illustration::before {
  content: "";
  position: absolute;
  left: 7%;
  bottom: 0;
  width: 54%;
  aspect-ratio: 1;
  background: var(--yellow);
  border-radius: 40px;
  transform: rotate(-12deg);
}

.scope-illustration img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(470px, 100%);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(8, 44, 92, 0.12);
}

.scope-copy p:not(.section-label),
.split-section p {
  max-width: 620px;
  color: var(--muted);
}

.scope-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.scope-board article {
  min-height: 210px;
  padding: 26px 22px;
  background: var(--white);
  border: 1px solid rgba(217, 227, 239, 0.7);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 18px 42px rgba(8, 44, 92, 0.06);
}

.scope-board article:nth-child(2) {
  transform: translateY(-18px);
  box-shadow: 0 30px 70px rgba(8, 44, 92, 0.13);
}

.scope-board span,
.intro-grid span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--blue-dark);
  background: var(--yellow-soft);
  border: 1px solid rgba(247, 199, 47, 0.6);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.scope-board p {
  color: var(--muted);
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.86fr);
  gap: clamp(32px, 8vw, 120px);
  align-items: center;
  padding-block: 88px;
  background: var(--bg);
  overflow: hidden;
}

.image-feature img {
  width: 100%;
  aspect-ratio: 10 / 13;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 26px 70px rgba(8, 44, 92, 0.16);
  transform: rotate(-3deg);
}

.image-feature p:not(.section-label) {
  color: var(--muted);
}

.image-feature .btn,
.split-section .btn {
  margin-top: 18px;
}

.intro-section {
  padding-block: 80px 92px;
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.intro-grid article,
.profile-card,
.page-hero {
  border-radius: 8px;
}

.intro-grid article {
  min-height: 220px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(217, 227, 239, 0.7);
  text-align: center;
  box-shadow: 0 18px 42px rgba(8, 44, 92, 0.06);
}

.intro-grid article:nth-child(2) {
  transform: translateY(-18px);
  box-shadow: 0 30px 70px rgba(8, 44, 92, 0.13);
}

.intro-grid p,
.profile-card p,
.page-hero p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: clamp(32px, 8vw, 110px);
  align-items: center;
  padding-block: 92px;
  background:
    radial-gradient(circle at 18% 68%, rgba(247, 199, 47, 0.9), transparent 16%),
    var(--white);
  color: var(--ink);
}

.split-visual {
  position: relative;
}

.split-visual::before {
  content: "";
  position: absolute;
  inset: auto -4% -8% 22%;
  height: 58%;
  background: var(--yellow);
  border-radius: 999px 999px 18px 18px;
  transform: rotate(-14deg);
}

.split-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(390px, 86%);
  aspect-ratio: 10 / 14;
  margin: 0 auto;
  object-fit: cover;
  border: 9px solid #0c1d32;
  border-radius: 30px;
  box-shadow: 0 26px 68px rgba(8, 44, 92, 0.19);
}

.capability-band {
  display: block;
  padding-block: 88px;
  background:
    linear-gradient(168deg, transparent 0 42%, rgba(246, 248, 251, 0.95) 42% 100%),
    var(--white);
  border-block: 0;
}

.capability-copy p:not(.section-label) {
  max-width: 760px;
  color: var(--muted);
}

.capability-list {
  display: grid;
  gap: 12px;
}

.capability-list span {
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  font-weight: 800;
}

.split-section .section-label {
  color: var(--blue);
}

.profile-card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 28px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-top: 3px solid var(--yellow);
  box-shadow: 0 22px 70px rgba(8, 44, 92, 0.08);
}

.profile-section {
  padding-block: 0 48px;
  background: var(--white);
}

.profile-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 0;
}

.profile-card dt {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-card dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.page-hero {
  margin: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 164px 148px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(13, 91, 166, 0.58), transparent 32%),
    linear-gradient(135deg, #052d5c 0%, #063f78 58%, #05284e 100%);
  border-bottom: 1px solid var(--line-soft);
}

.page-hero::before {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -10vw;
  z-index: 0;
  width: min(680px, 66vw);
  aspect-ratio: 1.36;
  background: var(--yellow);
  border-radius: 52% 48% 0 0 / 78% 72% 0 0;
  transform: rotate(-12deg);
  opacity: 0.94;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("hero-construction.png") center / cover no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero .section-label {
  color: var(--yellow);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.process-section {
  padding-block: 92px;
  background: var(--white);
}

.process-section .section-heading {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  grid-template-columns: 1fr;
}

.process-section .section-label {
  justify-content: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1040px;
  margin: 0 auto;
  border-top: 3px solid var(--yellow);
}

.process-grid article {
  position: relative;
  min-height: 190px;
  padding: 32px 24px 24px;
  border-radius: 0;
  background: var(--white);
  border: 0;
}

.process-grid article::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 24px;
  width: 15px;
  height: 15px;
  background: var(--white);
  border: 4px solid var(--yellow);
  border-radius: 50%;
}

.process-grid strong {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 8px;
  font-size: 1.2rem;
}

.process-grid p {
  color: var(--muted);
}

.site-footer {
  position: relative;
  margin-top: clamp(56px, 8vw, 104px);
  padding-block: clamp(76px, 8vw, 104px) 24px;
  color: var(--white);
  background: #06172c;
  border-top: 0;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 620' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 86 L1018 0 C1092 0 1158 34 1200 92 L1200 620 L0 620 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 620' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 86 L1018 0 C1092 0 1158 34 1200 92 L1200 620 L0 620 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  isolation: isolate;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 0.7fr));
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p,
.site-footer div:not(.footer-brand) > span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a,
.site-footer div:not(.footer-brand) > span {
  margin-top: 9px;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
}

.footer-logo img {
  height: 50px;
  max-width: min(280px, 70vw);
  filter: brightness(0) invert(1);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: 1240px;
  margin: 42px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p {
  margin: 0;
  font-weight: 800;
}

.footer-bottom a {
  display: inline;
  margin: 0;
  color: var(--yellow);
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 78px;
  }

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

  .hero-shape {
    width: min(520px, 72vw);
  }

  .hero-device {
    width: min(500px, 72vw);
    right: 10%;
  }

  .site-scope,
  .image-feature,
  .split-section {
    grid-template-columns: 1fr;
  }

  .scope-board,
  .intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding-block: 16px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    justify-self: end;
  }

  .nav-right {
    grid-column: 1 / -1;
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    gap: 14px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 220ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .site-header.is-menu-open .nav-right {
    max-height: 380px;
    opacity: 1;
    visibility: visible;
    padding-top: 10px;
  }

  .nav-links {
    display: grid;
    width: 100%;
    gap: 4px;
    justify-content: stretch;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
    font-size: 0.96rem;
    color: var(--muted);
  }

  .nav-cta {
    width: 100%;
    margin-top: 4px;
  }

  .hero {
    min-height: 640px;
    padding-top: 218px;
    background:
      radial-gradient(circle at 70% 80%, rgba(247, 199, 47, 0.34), transparent 26%),
      linear-gradient(180deg, rgba(5, 45, 92, 0.98) 0%, rgba(6, 63, 120, 0.95) 58%, rgba(5, 40, 78, 0.96) 100%);
  }

  .hero::after {
    z-index: 5;
    height: clamp(124px, 24vw, 190px);
  }

  .hero > .hero-visual {
    z-index: 1;
  }

  .hero-device {
    top: 58%;
  }

  .page-hero {
    padding-top: 218px;
  }

  .section-heading,
  .site-scope,
  .image-feature,
  .capability-band,
  .split-section,
  .profile-card dl {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    border-top: 0;
  }

  .process-grid article {
    border: 1px solid var(--line);
    border-left: 3px solid var(--yellow);
    border-radius: 8px;
  }

  .process-grid article::before {
    content: none;
  }

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

  .site-footer {
    margin-top: 0;
    background: #06172c;
    -webkit-mask-image: none;
    mask-image: none;
    padding-block: 56px 24px;
  }

  .site-footer::before {
    content: none;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

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

  .nav-links a {
    padding: 11px 0;
    font-size: 0.92rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-device {
    width: min(420px, 86vw);
    right: 4%;
    top: 62%;
  }

  .scope-board,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .scope-board article:nth-child(2),
  .intro-grid article:nth-child(2) {
    transform: none;
  }
}
