:root {
  --ink: #1f2637;
  --ink-soft: #343c50;
  --muted: #747d91;
  --muted-light: #959daf;
  --indigo: #4c6ef5;
  --indigo-dark: #4259ca;
  --indigo-soft: #eef1ff;
  --indigo-pale: #f7f8ff;
  --surface: #ffffff;
  --canvas: #f6f7fb;
  --line: #e4e7ef;
  --line-strong: #d9dde8;
  --success: #1ab98a;
  --shadow-sm: 0 12px 30px rgba(43, 48, 86, 0.07);
  --shadow-lg: 0 30px 80px rgba(54, 60, 113, 0.15);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

h1,
h2,
h3,
.brand {
  letter-spacing: -0.04em;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1380px) / 2));
  border-bottom: 1px solid rgba(228, 231, 239, 0.78);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 5px 22px rgba(31, 36, 48, 0.035);
  backdrop-filter: blur(18px);
  transition:
    height 0.2s ease,
    background 0.2s ease;
}

.site-header.scrolled {
  height: 64px;
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 820;
}

.brand img {
  flex: 0 0 auto;
  filter: drop-shadow(0 7px 9px rgba(76, 81, 191, 0.2));
}

.site-header nav {
  position: absolute;
  left: 50%;
  display: flex;
  gap: 32px;
  transform: translateX(-50%);
  color: #596174;
  font-size: 14px;
  font-weight: 680;
}

.site-header nav a {
  transition: color 0.18s ease;
}

.site-header nav a:hover {
  color: var(--indigo);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 14px;
  font-weight: 760;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

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

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.button-primary {
  background: linear-gradient(135deg, #5575f6, #4965e8);
  color: #fff;
  box-shadow: 0 11px 25px rgba(76, 103, 225, 0.24);
}

.button-primary:hover {
  box-shadow: 0 15px 32px rgba(76, 103, 225, 0.32);
}

.button-secondary,
.button-light {
  border-color: var(--line-strong);
  background: #fff;
  color: #30384a;
}

.button-secondary:hover,
.button-light:hover {
  border-color: #c6cbd9;
  box-shadow: 0 10px 24px rgba(42, 47, 74, 0.08);
}

.button-white {
  background: #fff;
  color: #3f4baa;
  box-shadow: 0 14px 34px rgba(22, 26, 77, 0.2);
}

.section {
  padding: 110px 26px;
}

.section-inner,
.hero-inner {
  width: min(1380px, 100%);
  margin-inline: auto;
}

.eyebrow,
.card-kicker {
  margin-bottom: 17px;
  color: #5b63bd;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 27px;
  color: #191f2e;
  font-size: clamp(58px, 6vw, 91px);
  font-weight: 820;
  line-height: 0.99;
  letter-spacing: -0.068em;
}

h1 em,
h2 em {
  background: linear-gradient(125deg, #4c5bc7, #687ef0);
  background-clip: text;
  color: transparent;
  font-style: normal;
}

h2 {
  margin-bottom: 22px;
  color: #202637;
  font-size: clamp(38px, 4.1vw, 59px);
  font-weight: 770;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

h3 {
  color: #242a3a;
  font-size: 26px;
  line-height: 1.2;
}

.hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  padding: 72px 26px 0;
  background:
    radial-gradient(
      circle at 76% 30%,
      rgba(108, 120, 239, 0.17),
      transparent 31rem
    ),
    linear-gradient(180deg, #fff 0%, #f7f8fc 100%);
}

.hero::before {
  position: absolute;
  top: 125px;
  right: -30px;
  width: min(760px, 52vw);
  height: 610px;
  background-image: radial-gradient(
    rgba(83, 88, 196, 0.18) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  content: "";
  mask-image: linear-gradient(
    to bottom right,
    transparent 4%,
    #000 48%,
    transparent 96%
  );
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(3px);
}

.hero-orb-one {
  bottom: -280px;
  left: -240px;
  width: 560px;
  height: 560px;
  background: rgba(96, 110, 231, 0.09);
}

.hero-orb-two {
  top: 140px;
  right: 9%;
  width: 230px;
  height: 230px;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(45px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 808px;
  grid-template-columns: minmax(430px, 0.76fr) minmax(610px, 1.24fr);
  align-items: center;
  gap: clamp(54px, 7vw, 105px);
  padding: 92px 0 100px;
}

.hero-copy {
  padding-bottom: 10px;
}

.lead {
  max-width: 650px;
  margin-bottom: 0;
  color: #687184;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 33px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 31px;
}

.hero-tags span,
.mini-tags span,
.intro-points span {
  padding: 7px 11px;
  border: 1px solid #e0e3ed;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #687083;
  font-size: 11px;
  font-weight: 700;
}

.hero-product {
  position: relative;
  width: 100%;
}

.product-window {
  overflow: hidden;
  border: 1px solid #dfe3ec;
  border-radius: var(--radius-md);
  background: #f7f8fc;
  box-shadow: var(--shadow-sm);
}

.product-window-hero {
  box-shadow: var(--shadow-lg);
  transform: perspective(1600px) rotateY(-1.7deg) rotateX(0.5deg);
}

.product-window img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.window-bar {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 11px;
  padding: 0 14px;
  border-bottom: 1px solid #e8eaf0;
  background: #f8f9fc;
  color: #9299a9;
  font-size: 10px;
}

.window-bar > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window-bar > b {
  margin-left: auto;
  padding: 3px 7px;
  border-radius: 999px;
  background: #e8f8f2;
  color: #159b72;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.window-dots {
  display: flex;
  flex: 0 0 auto;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d1d4de;
}

.window-dots i:first-child {
  background: #7478e8;
}

.hero-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(220, 224, 236, 0.95);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(47, 53, 98, 0.14);
  backdrop-filter: blur(10px);
}

.hero-note strong,
.hero-note small {
  display: block;
}

.hero-note strong {
  color: #303748;
  font-size: 12px;
}

.hero-note small {
  margin-top: 1px;
  color: #8b92a2;
  font-size: 9px;
}

.hero-note-search {
  right: -22px;
  bottom: -32px;
}

.hero-note-deploy {
  top: -28px;
  left: -30px;
}

.note-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 10px;
  background: var(--indigo-soft);
  color: var(--indigo-dark);
  font-size: 20px;
}

.status-dot {
  width: 10px;
  height: 10px;
  margin-inline: 5px;
  border: 3px solid #d9f7ed;
  border-radius: 50%;
  background: var(--success);
  box-sizing: content-box;
}

.product-strip {
  border-block: 1px solid var(--line);
  background: #fff;
}

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

.product-strip-grid > div {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-right: 1px solid var(--line);
}

.product-strip-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.product-strip span,
.workflow-number {
  color: #686dd8;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-strip strong {
  color: #4e5668;
  font-size: 13px;
}

.intro {
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.78fr);
  align-items: end;
  gap: clamp(60px, 9vw, 130px);
}

.intro-grid h2 {
  max-width: 780px;
  margin: 0;
}

.intro-copy > p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.intro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.intro-points span {
  background: var(--canvas);
}

.workflows {
  border-top: 1px solid var(--line);
  background: var(--canvas);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 70px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.section-heading.centered > p:last-child {
  margin-inline: auto;
}

.workflow-row {
  display: grid;
  grid-template-columns: minmax(290px, 0.38fr) minmax(600px, 0.62fr);
  align-items: center;
  gap: clamp(48px, 7vw, 95px);
  padding: 75px 0;
  border-top: 1px solid var(--line);
}

.workflow-row:last-child {
  padding-bottom: 10px;
}

.workflow-row-reverse {
  grid-template-columns: minmax(600px, 0.62fr) minmax(290px, 0.38fr);
}

.workflow-row-reverse .workflow-copy {
  order: 2;
}

.workflow-row-reverse .product-window {
  order: 1;
}

.workflow-copy h3 {
  margin: 15px 0 16px;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.05em;
}

.workflow-copy > p {
  color: var(--muted);
  font-size: 16px;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 25px 0 0;
  padding: 0;
  color: #555e71;
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  background: #e8f8f2;
  color: #169c73;
  content: "✓";
  font-size: 9px;
  font-weight: 900;
}

.workflow-row .product-window {
  box-shadow: 0 24px 58px rgba(50, 56, 98, 0.11);
}

.operations {
  border-block: 1px solid var(--line);
  background: #fff;
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.operation-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 15px 38px rgba(42, 47, 83, 0.05);
}

.operation-copy {
  padding: 34px;
}

.operation-copy h3,
.operation-card-small h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.operation-copy > p:last-child,
.operation-card-small > p:not(.card-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.operation-icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 12px;
  background: var(--indigo-soft);
  color: var(--indigo-dark);
  font-size: 18px;
  font-weight: 850;
}

.card-kicker {
  margin-bottom: 10px;
}

.operation-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(300px, 0.36fr) minmax(620px, 0.64fr);
  align-items: center;
  background: linear-gradient(135deg, #fff, #fafaff);
}

.operation-card-wide .compact-window {
  margin: 24px 24px 24px 0;
}

.operation-card-backup {
  display: flex;
  min-height: 650px;
  grid-column: span 7;
  grid-row: span 2;
  flex-direction: column;
  background: linear-gradient(150deg, #f9faff, #f3f5ff);
}

.operation-card-backup .compact-window {
  margin: auto 24px 24px;
}

.operation-card-small {
  min-height: 316px;
  grid-column: span 5;
  padding: 34px;
}

.operation-card-small:nth-child(3) {
  background: linear-gradient(145deg, #fff, #f7fbff);
}

.operation-card-small:nth-child(4) {
  background: linear-gradient(145deg, #fff, #fbfaff);
}

.compact-window {
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(48, 54, 99, 0.11);
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 26px;
}

.mini-tags span {
  background: var(--indigo-pale);
  color: #626b89;
}

.deployment {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(133, 139, 255, 0.28),
      transparent 25rem
    ),
    linear-gradient(135deg, #363d9f, #5c64d9);
  color: #fff;
}

.deployment::after {
  position: absolute;
  right: -180px;
  bottom: -340px;
  width: 620px;
  height: 620px;
  border: 100px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  content: "";
}

.deployment-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(530px, 1.18fr);
  align-items: center;
  gap: clamp(65px, 9vw, 130px);
}

.deployment .eyebrow,
.contact .eyebrow {
  color: #d1d4ff;
}

.deployment h2 {
  color: #fff;
}

.deployment-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.73);
  font-size: 17px;
}

.deployment-actions {
  margin-top: 32px;
}

.architecture {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.085);
  box-shadow: 0 30px 60px rgba(20, 24, 82, 0.22);
  backdrop-filter: blur(12px);
}

.architecture-row,
.architecture-services > div {
  display: grid;
  gap: 4px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.architecture-row span,
.architecture-services span {
  color: #d6d9ff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.architecture-row strong,
.architecture-services strong {
  font-size: 15px;
}

.architecture-row small,
.architecture-services small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.architecture-entry {
  text-align: center;
}

.architecture-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.architecture-line {
  width: 1px;
  height: 22px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.28);
}

.contact {
  background: #171b2a;
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.contact h2 {
  color: #fff;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: #aeb4c3;
  font-size: 17px;
}

.contact-email {
  display: inline-block;
  margin-top: 21px;
  color: #bfc3ff;
  font-weight: 750;
}

.contact-email:hover {
  color: #fff;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.form-heading h3 {
  margin-bottom: 5px;
  font-size: 25px;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.feedback-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.feedback-form label > span {
  font-size: 13px;
  font-weight: 750;
}

.feedback-form label b {
  color: #e74f56;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  border: 1px solid #dce0e9;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.feedback-form input {
  height: 47px;
  padding: 0 14px;
}

.feedback-form textarea {
  min-height: 125px;
  padding: 12px 14px;
  resize: vertical;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  border-color: #777ae9;
  box-shadow: 0 0 0 3px rgba(101, 105, 224, 0.12);
}

.feedback-form .button {
  align-self: flex-start;
}

.feedback-form .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-status.success {
  color: #138a67;
}

.form-status.error {
  color: #c43d46;
}

footer {
  display: grid;
  min-height: 120px;
  grid-template-columns: 1fr 1.5fr 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 30px max(24px, calc((100vw - 1380px) / 2));
  border-top: 1px solid var(--line);
  background: #fff;
  color: #858c9b;
  font-size: 12px;
}

footer p {
  margin: 0;
}

footer .brand {
  color: var(--ink);
  font-size: 17px;
}

footer > a:not(.brand):hover {
  color: var(--indigo);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

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

@media (max-width: 1180px) {
  .site-header nav {
    gap: 20px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 100px 0 105px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-product {
    width: min(100%, 980px);
  }

  .product-window-hero {
    transform: none;
  }

  .workflow-row,
  .workflow-row-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .workflow-row-reverse .workflow-copy,
  .workflow-row-reverse .product-window {
    order: initial;
  }

  .workflow-copy {
    max-width: 720px;
  }

  .operation-card-wide {
    grid-template-columns: 1fr;
  }

  .operation-card-wide .compact-window {
    margin: 0 24px 24px;
  }

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

  .deployment-copy {
    max-width: 760px;
  }
}

@media (max-width: 920px) {
  .site-header nav {
    display: none;
  }

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

  .product-strip-grid > div:nth-child(2) {
    border-right: 0;
  }

  .product-strip-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .intro-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .operation-card-backup {
    min-height: 0;
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .operation-card-small {
    grid-column: span 6;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 64px;
  }

  .section {
    padding: 78px 18px;
  }

  .site-header {
    height: 64px;
    padding-inline: 18px;
  }

  .site-header > .button {
    display: none;
  }

  .hero {
    padding: 64px 18px 0;
  }

  .hero-inner {
    padding: 78px 0 82px;
  }

  h1 {
    font-size: clamp(49px, 15vw, 64px);
    letter-spacing: -0.058em;
  }

  h2 {
    font-size: 38px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    display: none;
  }

  .product-window,
  .operation-card,
  .feedback-form,
  .architecture {
    border-radius: 15px;
  }

  .window-bar {
    min-height: 34px;
  }

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

  .product-strip-grid > div,
  .product-strip-grid > div:first-child {
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .product-strip-grid > div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    margin-bottom: 52px;
  }

  .workflow-row {
    gap: 30px;
    padding: 56px 0;
  }

  .workflow-copy h3 {
    font-size: 31px;
  }

  .operations-grid {
    display: flex;
    flex-direction: column;
  }

  .operation-card-wide {
    display: block;
  }

  .operation-card-backup {
    display: block;
  }

  .operation-copy,
  .operation-card-small {
    min-height: 0;
    padding: 27px;
  }

  .operation-card-wide .compact-window,
  .operation-card-backup .compact-window {
    margin: 0 14px 14px;
  }

  .architecture {
    padding: 16px;
  }

  .architecture-services {
    grid-template-columns: 1fr;
  }

  .feedback-form {
    padding: 24px;
  }

  .feedback-form .button {
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 40px 18px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

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