:root {
  --teal-950: #063f4c;
  --teal-900: #075767;
  --teal-800: #087f96;
  --teal-700: #1195ad;
  --yellow: #f1f500;
  --yellow-soft: #f7f98c;
  --ink: #102f38;
  --muted: #64777c;
  --paper: #f5f8f7;
  --white: #ffffff;
  --line: rgba(16, 47, 56, 0.14);
  --display: "Space Grotesk", sans-serif;
  --body: "DM Sans", sans-serif;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 88px;
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, height 0.25s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(6, 63, 76, 0.94);
  box-shadow: 0 8px 30px rgba(1, 34, 42, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 112px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 14px;
  font-weight: 500;
}

.site-nav > a:not(.client-link) {
  position: relative;
}

.site-nav > a:not(.client-link)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav > a:not(.client-link):hover::after,
.site-nav > a:not(.client-link):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.client-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid var(--yellow);
  transition: color 0.2s ease, background 0.2s ease;
}

.client-link:hover,
.client-link:focus-visible {
  color: var(--white);
  background: transparent;
}

.client-link svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.5;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--teal-800);
}

.hero::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  top: -340px;
  right: -230px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero-layout {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 48px;
  padding-top: 104px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--yellow);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 600;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-lead {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 23px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-3px);
  background: var(--white);
}

.text-link {
  padding-block: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 14px;
  font-weight: 500;
}

.hero-image {
  position: relative;
  width: min(100%, 510px);
  aspect-ratio: 1;
  margin-block: 0;
  margin-left: auto;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.hero-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--teal-950);
  border-radius: 50%;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(8, 127, 150, 0.06) 30%, rgba(6, 63, 76, 0.58) 100%);
  mix-blend-mode: multiply;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.78) contrast(1.04);
}

.hero-image-mark {
  position: absolute;
  top: 3%;
  right: 2%;
  width: 84px;
  height: 84px;
  transform: rotate(-10deg);
}

.hero-image-mark span {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 7px solid var(--yellow);
}

.hero-image-mark span:nth-child(1) {
  top: 0;
  left: 25px;
}

.hero-image-mark span:nth-child(2) {
  bottom: 13px;
  left: 0;
}

.hero-image-mark span:nth-child(3) {
  right: 0;
  bottom: 0;
}

.hero-image figcaption {
  position: absolute;
  right: -8px;
  bottom: 9%;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--teal-950);
  box-shadow: 0 15px 35px rgba(3, 51, 61, 0.24);
  font-size: 11px;
  font-style: normal;
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.hero-image figcaption i {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 3px;
  background: var(--yellow);
}

.hero-image figcaption strong {
  color: var(--white);
  font-weight: 600;
}

.hero-foot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.hero-foot p {
  margin: 0;
}

.hero-foot a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-foot svg {
  width: 18px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.6;
}

.section {
  padding-block: 130px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 40px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}

.section-kicker {
  margin-top: 10px;
  color: var(--teal-800);
}

.section-heading h2,
.product-intro h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.section-heading h2 span {
  color: var(--teal-800);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 40px;
  padding-top: 70px;
}

.about-mark {
  position: relative;
  width: 145px;
  height: 145px;
  transform: rotate(-8deg);
}

.about-mark span {
  position: absolute;
  width: 56px;
  height: 56px;
  border: 10px solid var(--teal-800);
}

.about-mark span:nth-child(1) {
  top: 0;
  left: 44px;
}

.about-mark span:nth-child(2) {
  bottom: 22px;
  left: 0;
}

.about-mark span:nth-child(3) {
  right: 0;
  bottom: 4px;
}

.about-mark p {
  position: absolute;
  bottom: -35px;
  left: 0;
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.08em;
  transform: rotate(8deg);
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

.about-content > p {
  margin: 0;
}

.about-lead {
  color: var(--ink);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.about-content > p:not(.about-lead) {
  color: var(--muted);
  font-size: 16px;
}

.principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.principles div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 25px 28px 0 0;
}

.principles div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.principle-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 12px;
  color: var(--teal-800);
  background: rgba(241, 245, 0, 0.35);
  font-style: normal;
}

.principle-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.6;
}

.principles strong {
  font-family: var(--display);
  font-size: 18px;
}

.principles span {
  color: var(--muted);
  font-size: 13px;
}

.product {
  overflow: hidden;
  color: var(--white);
  background: var(--teal-950);
}

.product-intro {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  align-items: end;
  gap: 80px;
}

.section-kicker-light {
  color: var(--yellow);
}

.product-intro h2 span {
  color: var(--yellow);
}

.product-intro > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
}

.product-stage {
  position: relative;
  margin-top: 80px;
  padding: 48px 48px 0;
  background: var(--yellow);
}

.product-stage::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 20px;
  width: 7px;
  height: 7px;
  background: var(--ink);
  box-shadow: 13px 0 0 rgba(16, 47, 56, 0.42), 26px 0 0 rgba(16, 47, 56, 0.2);
  border-radius: 50%;
}

.product-window {
  position: relative;
  z-index: 2;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: var(--ink);
  background: #f8faf9;
  box-shadow: 0 28px 70px rgba(3, 39, 47, 0.33);
}

.product-window > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.window-topbar {
  height: 59px;
  display: grid;
  grid-template-columns: 160px 1fr 50px;
  align-items: center;
  gap: 25px;
  padding: 0 22px;
  background: var(--white);
  border-bottom: 1px solid #e5eceb;
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
}

.window-brand span {
  width: 20px;
  height: 20px;
  background: var(--teal-800);
  clip-path: polygon(0 0, 44% 0, 44% 44%, 100% 44%, 100% 100%, 56% 100%, 56% 56%, 0 56%);
}

.window-search {
  justify-self: center;
  width: min(100%, 320px);
  padding: 7px 14px;
  color: #9ca8aa;
  background: #f4f7f6;
  border-radius: 4px;
  font-size: 10px;
}

.window-user {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  justify-self: end;
  color: var(--white);
  background: var(--teal-800);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 600;
}

.window-body {
  min-height: 451px;
  display: grid;
  grid-template-columns: 62px 1fr;
}

.window-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 22px;
  padding-top: 28px;
  background: var(--white);
  border-right: 1px solid #e5eceb;
}

.window-sidebar span {
  width: 15px;
  height: 15px;
  border: 1px solid #b8c5c5;
  border-radius: 3px;
}

.window-sidebar span.active {
  background: var(--teal-800);
  border-color: var(--teal-800);
  box-shadow: 0 0 0 7px rgba(17, 149, 173, 0.1);
}

.window-content {
  padding: 35px 38px;
}

.window-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-heading div {
  display: flex;
  flex-direction: column;
}

.window-heading small,
.metric-grid small {
  color: #8a9a9d;
  font-size: 9px;
}

.window-heading strong {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.window-heading button {
  padding: 10px 15px;
  color: var(--white);
  background: var(--teal-800);
  border: 0;
  border-radius: 3px;
  font-size: 9px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 27px;
}

.metric-grid > div {
  position: relative;
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: center;
  padding: 13px 17px;
  background: var(--white);
  border: 1px solid #e7eceb;
}

.metric-grid strong {
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.25;
}

.metric-grid span {
  color: #91a0a2;
  font-size: 8px;
}

.metric-grid .trend {
  position: absolute;
  right: 13px;
  bottom: 15px;
  color: var(--teal-700);
}

.service-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 13px;
  margin-top: 13px;
}

.service-list,
.service-chart {
  min-height: 190px;
  padding: 17px;
  background: var(--white);
  border: 1px solid #e7eceb;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf1f0;
  font-size: 8px;
}

.panel-title strong {
  font-size: 10px;
}

.panel-title span {
  color: var(--teal-800);
}

.service-row {
  display: grid;
  grid-template-columns: 7px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #edf1f0;
  font-size: 8px;
}

.service-row i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-yellow { background: #d9dd00; }
.status-blue { background: var(--teal-700); }
.status-green { background: #62ad75; }

.service-row span {
  display: flex;
  flex-direction: column;
}

.service-row small {
  color: #8d9b9d;
  font-size: 7px;
}

.service-row em {
  padding: 3px 6px;
  color: #708185;
  background: #f1f5f4;
  border-radius: 8px;
  font-style: normal;
  font-size: 7px;
}

.bars {
  height: 125px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 4px 0;
  background-image: linear-gradient(#edf1f0 1px, transparent 1px);
  background-size: 100% 33%;
}

.bars i {
  width: 11%;
  height: var(--height);
  background: var(--teal-700);
  border-radius: 2px 2px 0 0;
}

.bars i:nth-child(6) {
  background: var(--yellow);
}

.stage-label {
  position: absolute;
  z-index: 3;
  padding: 9px 13px;
  color: var(--white);
  background: var(--teal-800);
  box-shadow: 0 12px 30px rgba(3, 39, 47, 0.18);
  font-size: 10px;
  font-weight: 600;
}

.stage-label-one {
  top: 27%;
  left: 12px;
  transform: translateX(-50%);
}

.stage-label-two {
  right: 5px;
  bottom: 15%;
  color: var(--ink);
  background: var(--white);
  transform: translateX(42%);
}

.product-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 75px;
  background: rgba(255, 255, 255, 0.16);
}

.product-features article {
  padding: 0 42px 0 0;
  background: var(--teal-950);
}

.product-features article + article {
  padding-left: 42px;
}

.product-features span {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 11px;
}

.product-features h3 {
  margin: 18px 0 12px;
  font-family: var(--display);
  font-size: 21px;
}

.product-features p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.contact {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 100px;
}

.contact h2 {
  max-width: 600px;
}

.contact-copy > h2 + p {
  max-width: 480px;
  margin: 28px 0 0;
  color: var(--muted);
}

.contact-address {
  display: flex;
  max-width: 500px;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-address:hover,
.contact-address:focus-visible {
  border-color: var(--teal-800);
  transform: translateY(-3px);
}

.contact-address > i {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
}

.contact-address > i svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.contact-address address {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-style: normal;
}

.contact-address small {
  color: var(--teal-800);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-address strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-link > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-link small {
  color: var(--muted);
  font-size: 12px;
}

.contact-link strong {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: -0.035em;
}

.contact-link i {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.contact-link:hover i,
.contact-link:focus-visible i {
  transform: rotate(45deg);
}

.contact-link svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.site-footer {
  color: var(--white);
  background: var(--teal-950);
}

.footer-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-block: 75px;
}

.footer-main img {
  width: 125px;
  height: auto;
}

.footer-main p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 9px;
  margin-top: 24px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.social-links .social-dot {
  fill: currentColor;
  stroke: none;
}

.footer-main nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
}

.footer-main nav a:hover,
.footer-main nav a:focus-visible {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.back-to-top {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-top: -10px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--white);
  background: var(--teal-800);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy .reveal:nth-child(2) { transition-delay: 0.08s; }
.hero-copy .reveal:nth-child(3) { transition-delay: 0.16s; }
.hero-copy .reveal:nth-child(4) { transition-delay: 0.24s; }

@media (max-width: 980px) {
  .site-nav {
    gap: 22px;
  }

  .hero-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 15px;
  }

  .section-heading,
  .about-layout {
    grid-template-columns: 0.55fr 2.45fr;
  }

  .about-content {
    gap: 35px;
  }

  .product-intro {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
  }

  .product-stage {
    padding: 42px 28px 0;
  }

  .stage-label {
    display: none;
  }

  .contact-layout {
    gap: 55px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .site-header,
  .site-header.scrolled {
    height: 70px;
  }

  .brand img {
    width: 100px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.38);
  }

  .menu-toggle span {
    width: 19px;
    height: 1px;
    background: var(--white);
    transition: transform 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 90px 30px 40px;
    background: var(--teal-950);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .site-nav > a:not(.client-link) {
    padding: 9px 0;
    font-family: var(--display);
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.04em;
  }

  .client-link {
    align-self: flex-start;
    margin-top: 20px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 35px;
    padding-top: 135px;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 68px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-image {
    width: 340px;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-image figcaption {
    right: -4px;
  }

  .hero-foot {
    margin-top: 15px;
  }

  .hero-foot p {
    max-width: 230px;
  }

  .section {
    padding-block: 88px;
  }

  .section-heading,
  .about-layout,
  .about-content,
  .product-intro,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 12px;
    padding-bottom: 48px;
  }

  .section-heading h2,
  .product-intro h2,
  .contact h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .about-layout {
    gap: 65px;
    padding-top: 55px;
  }

  .about-mark {
    margin-left: 6px;
  }

  .about-content {
    gap: 25px;
  }

  .about-lead {
    font-size: 22px;
  }

  .principles {
    grid-template-columns: 1fr;
    margin-top: 15px;
  }

  .principles div,
  .principles div + div {
    padding: 20px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-intro {
    gap: 26px;
  }

  .product-intro > p {
    max-width: 540px;
  }

  .product-stage {
    margin-top: 55px;
    margin-inline: -18px;
    padding: 34px 10px 0;
  }

  .product-stage::before {
    top: 14px;
    left: 13px;
  }

  .product-features {
    grid-template-columns: 1fr;
    gap: 35px;
    background: transparent;
  }

  .product-features article,
  .product-features article + article {
    padding: 0 0 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .contact-layout {
    gap: 52px;
  }

  .contact-link i {
    width: 52px;
    height: 52px;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 45px;
    padding-block: 60px;
  }

  .footer-main nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 45px;
  }
}

@media (max-width: 430px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-image {
    width: 300px;
  }

  .hero-image-mark {
    transform: rotate(-10deg) scale(0.82);
  }

  .hero-foot p {
    max-width: 190px;
  }

  .hero-foot a span {
    display: none;
  }

  .contact-link strong {
    font-size: 18px;
  }

  .footer-bottom > span {
    max-width: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}
