:root {
  --bg: #ffffff;
  --ink: #132428;
  --ink-soft: #26383c;
  --muted: #637174;
  --faint: #eef4f3;
  --line: #dbe5e3;
  --line-strong: #c6d2d0;
  --panel: #102225;
  --panel-2: #1a3034;
  --cyan: #1fd8c2;
  --cyan-dark: #087f75;
  --amber: #eda83b;
  --danger: #e76558;
  --snow-shadow: 0 28px 90px rgba(18, 36, 40, 0.14);
  --tight-shadow: 0 16px 42px rgba(18, 36, 40, 0.09);
  --radius: 8px;
  --max: 1190px;
  color: var(--ink);
  background: var(--bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 7%, rgba(31, 216, 194, 0.08), transparent 18rem),
    linear-gradient(180deg, #fff 0%, #fff 58%, #f9fbfb 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='720' height='480' viewBox='0 0 720 480'%3E%3Cg fill='none' stroke='%23dbe5e3' stroke-width='1' opacity='.42'%3E%3Cpath d='M-40 96c104-62 194-62 272 0s170 64 276 0 188-63 252 0'/%3E%3Cpath d='M-60 136c112-72 216-72 308 0s188 74 292 0 190-70 250 0'/%3E%3Cpath d='M-80 176c128-82 242-82 344 0s212 84 328 0 206-82 278 0'/%3E%3Cpath d='M-100 216c144-90 270-90 380 0s236 94 364 0 224-92 304 0'/%3E%3Cpath d='M-120 256c160-98 302-98 424 0s258 102 394 0 244-102 332 0'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: top center;
  background-size: 720px 480px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent 58%);
}

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

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(210px, 0.7fr) auto minmax(250px, 0.7fr);
  align-items: center;
  gap: 28px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 19px 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  display: block;
  width: 250px;
  height: auto;
  margin: -44px 0;
  user-select: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 720;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--cyan-dark);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.language-switch {
  position: relative;
}

.language-trigger {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 40px;
  max-width: 92px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 0 11px;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.language-trigger:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.language-current-flag,
.language-option img {
  display: block;
  width: 22px;
  height: 22px;
  min-width: 22px;
  max-width: 22px;
  min-height: 22px;
  max-height: 22px;
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 auto;
}

.language-current-label {
  min-width: 20px;
  font-size: 13px;
  font-weight: 820;
}

.language-caret {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
  display: none;
  min-width: 168px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--tight-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.language-switch.is-open .language-menu,
.language-menu.is-open {
  display: grid !important;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.language-menu[hidden] {
  display: none !important;
  visibility: hidden;
}

.language-option {
  -webkit-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 38px;
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  padding: 0 10px;
  font-size: 14px;
  font-weight: 730;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
}

.language-option:hover,
.language-option.is-active {
  background: var(--faint);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 780;
  line-height: 1;
  cursor: pointer;
  transition:
    background 170ms ease,
    border-color 170ms ease,
    color 170ms ease,
    transform 170ms ease;
}

.header-cta {
  min-width: 148px;
  padding: 0 18px;
  background: var(--ink);
  color: #fff;
}

.button {
  min-width: 156px;
  padding: 0 22px;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

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

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(410px, 0.9fr) minmax(560px, 0.96fr);
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  width: min(var(--max), calc(100% - 44px));
  min-height: min(760px, calc(100vh - 92px));
  margin: 0 auto;
  padding: 56px 0 82px;
}

.hero-ridge {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: -8px;
  z-index: 0;
  width: min(1540px, 110vw);
  max-width: none;
  opacity: 0.47;
  filter: saturate(0.78) contrast(0.98);
  transform: translateX(-50%) scaleX(-1);
  pointer-events: none;
}

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

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 4vw, 58px);
  line-height: 1.01;
  letter-spacing: 0;
  font-weight: 810;
}

.hero p {
  margin: 26px 0 0;
  max-width: 575px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.analyst-panel {
  position: relative;
  z-index: 2;
  overflow: hidden;
  align-self: center;
  width: 100%;
  max-width: 610px;
  transform: translateY(-18px);
  border: 1px solid #244045;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    var(--panel);
  box-shadow: var(--snow-shadow);
}

.panel-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #e8f2f1;
}

.window-dot {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.window-dot.red {
  background: var(--danger);
}

.window-dot.amber {
  background: var(--amber);
}

.window-dot.cyan {
  background: var(--cyan);
}

.panel-product {
  margin-left: 10px;
  font-size: 13px;
  font-weight: 760;
}

.panel-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.route-map,
.timeline-panel,
.queue-panel {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.043);
}

.route-map {
  grid-column: 1 / 3;
  padding: 16px;
}

.timeline-panel {
  grid-column: 1;
}

.queue-panel {
  grid-column: 2;
}

.timeline-panel,
.queue-panel {
  padding: 14px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-title {
  color: #f5fbfb;
  font-size: 15px;
  font-weight: 800;
}

.panel-live {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 820;
}

.attack-route {
  width: 100%;
  height: auto;
  margin-top: 8px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(219, 229, 227, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(219, 229, 227, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}

.altitude-line,
.route-shadow {
  fill: none;
  stroke-linecap: round;
}

.route-shadow {
  stroke: rgba(231, 244, 242, 0.18);
  stroke-width: 18;
}

.altitude-line {
  stroke: var(--cyan);
  stroke-width: 4;
}

.route-nodes circle {
  fill: var(--panel);
  stroke: var(--cyan);
  stroke-width: 4;
}

.route-nodes .critical {
  stroke: var(--danger);
}

.route-labels text {
  fill: #b9cbc9;
  font-size: 12px;
  font-weight: 650;
}

.timeline-list,
.queue-list {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  color: #dce9e8;
  font-size: 12px;
}

.timeline-list time {
  color: #8da4a7;
}

.queue-list li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 9px;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.severity {
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-radius: 50%;
}

.severity.high {
  background: var(--danger);
}

.severity.medium {
  background: var(--amber);
}

.severity.low {
  background: var(--cyan);
}

.queue-list strong,
.queue-list span {
  display: block;
}

.queue-list strong {
  color: #f7fbfb;
  font-size: 12px;
  line-height: 1.22;
}

.queue-list div span {
  margin-top: 3px;
  color: #9db3b6;
  font-size: 11px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto 106px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(18, 36, 40, 0.04);
}

.proof-item {
  min-height: 158px;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.92);
}

.proof-item svg {
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  font-size: 17px;
  line-height: 1.32;
}

.proof-item span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.asymmetry-section,
.approach-section,
.use-case-section,
.contact-section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 104px 0;
  border-top: 1px solid var(--line);
}

.asymmetry-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 72px;
}

.section-copy {
  max-width: 590px;
}

.section-copy.compact {
  max-width: 760px;
}

.section-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-copy p,
.contact-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.comparison-board {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--tight-shadow);
}

.comparison-column {
  min-height: 310px;
  padding: 32px;
}

.comparison-column:first-child {
  border-right: 1px solid var(--line);
}

.comparison-column h3 {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.35;
}

.comparison-column.hostile h3,
.comparison-column.hostile strong {
  color: var(--danger);
}

.comparison-column.builder h3,
.comparison-column.builder strong {
  color: var(--cyan-dark);
}

.comparison-column ul {
  display: grid;
  gap: 13px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.comparison-column li::before {
  content: ">";
  display: inline-block;
  margin-right: 10px;
  color: var(--muted);
}

.comparison-column strong {
  display: block;
  font-size: 16px;
}

.versus {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  transform: translate(-50%, -50%);
}

.approach-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(248, 251, 251, 0.92), rgba(255, 255, 255, 0.96)),
    var(--bg);
}

.ascent-path {
  position: relative;
  min-height: 300px;
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ascent-path > img {
  position: absolute;
  right: -90px;
  bottom: -78px;
  z-index: 0;
  width: min(1100px, 112vw);
  max-width: none;
  opacity: 0.38;
  filter: saturate(0.74) contrast(0.95);
  pointer-events: none;
}

.ascent-path > svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ascent-path > svg path {
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 2;
  stroke-dasharray: 8 9;
}

.ascent-stage {
  position: absolute;
  z-index: 2;
  max-width: 265px;
}

.stage-one {
  left: 4%;
  top: 42%;
}

.stage-two {
  left: 38%;
  top: 21%;
}

.stage-three {
  right: 4%;
  top: 6%;
}

.stage-dot {
  display: block;
  width: 19px;
  height: 19px;
  margin-bottom: 18px;
  border: 5px solid var(--cyan);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 8px rgba(31, 216, 194, 0.1);
}

.ascent-stage h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.ascent-stage p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.use-case-section {
  padding-top: 90px;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.use-case-grid article {
  min-height: 265px;
  padding: 30px;
  background: #fff;
}

.case-index {
  display: block;
  margin-bottom: 58px;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 850;
}

.use-case-grid h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.use-case-grid p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.62fr);
  align-items: start;
  gap: 72px;
  padding-bottom: 132px;
  background:
    linear-gradient(180deg, rgba(248, 251, 251, 0.6), rgba(255, 255, 255, 0.98)),
    #fff;
}

.contact-copy {
  max-width: 610px;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
}

.contact-links a {
  width: fit-content;
  border-bottom: 1px solid var(--line-strong);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--tight-shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
  outline: none;
}

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

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 3px rgba(31, 216, 194, 0.18);
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (min-width: 761px) {
  .hero {
    overflow: hidden;
  }

  .proof-strip {
    position: relative;
    z-index: 3;
    width: min(1120px, calc(100% - 64px));
    margin: 52px auto 42px;
  }

  .asymmetry-section {
    padding-top: 76px;
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .asymmetry-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 34px;
  }

  .analyst-panel {
    max-width: 760px;
    transform: none;
  }

  .contact-section {
    gap: 44px;
  }
}

@media (max-width: 760px) {
  body {
    background: #fff;
  }

  .site-header {
    width: min(342px, calc(100% - 32px));
    margin-inline: auto;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 16px 0;
  }

  .brand-logo {
    width: 190px;
    max-width: 56vw;
    margin: -33px 0;
  }

  .header-actions {
    gap: 8px;
    min-width: 0;
  }

  .header-cta {
    display: none;
  }

  .language-trigger {
    width: 82px;
    max-width: 82px;
    min-height: 36px;
    height: 36px;
    padding: 0 9px;
    -webkit-tap-highlight-color: transparent;
  }

  .language-current-flag,
  .language-option img {
    width: 20px;
    height: 20px;
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
  }

  .language-menu {
    position: fixed;
    top: 62px;
    right: max(16px, env(safe-area-inset-right));
    z-index: 100;
    min-width: 158px;
    width: 158px;
    max-width: calc(100vw - 32px);
  }

  .language-option {
    display: flex;
    flex-direction: row;
    min-height: 38px;
    padding: 0 10px;
    font-size: 14px;
    line-height: 1;
  }

  .hero,
  .proof-strip,
  .asymmetry-section,
  .approach-section,
  .use-case-section,
  .contact-section,
  .site-footer {
    width: min(342px, calc(100% - 32px));
    max-width: 342px;
    margin-inline: auto;
  }

  .hero {
    display: block;
    padding: 32px 0 38px;
  }

  .hero-ridge {
    left: 50%;
    right: auto;
    top: 190px;
    bottom: auto;
    width: 690px;
    opacity: 0.25;
    transform: translateX(-52%) scaleX(-1);
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.03;
  }

  .hero p,
  .section-copy p,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .analyst-panel {
    margin-top: 18px;
    width: 100%;
  }

  .panel-topbar {
    height: 40px;
    padding: 0 14px;
  }

  .panel-product {
    font-size: 12px;
  }

  .panel-body {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
  }

  .route-map {
    grid-column: auto;
    padding: 11px;
  }

  .timeline-panel,
  .queue-panel {
    display: none;
  }

  .attack-route {
    width: 100%;
    min-width: 0;
    margin-top: 5px;
    transform: none;
  }

  .queue-panel {
    padding: 14px;
  }

  .queue-list {
    gap: 8px;
    margin-top: 12px;
  }

  .queue-list li {
    min-height: 46px;
    padding: 10px;
  }

  .proof-strip,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-bottom: 64px;
  }

  .proof-item {
    min-height: auto;
  }

  .asymmetry-section,
  .approach-section,
  .use-case-section,
  .contact-section {
    padding: 70px 0;
  }

  .section-copy h2,
  .contact-copy h2 {
    font-size: 32px;
  }

  .comparison-board {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .comparison-column {
    min-height: auto;
    padding: 26px;
  }

  .comparison-column:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .versus {
    top: 50%;
  }

  .ascent-path {
    min-height: auto;
    padding: 8px 0 220px;
  }

  .ascent-path > img {
    right: -190px;
    bottom: -48px;
    width: 780px;
    opacity: 0.34;
  }

  .ascent-path > svg {
    display: none;
  }

  .ascent-stage {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    max-width: none;
    margin-top: 34px;
  }

  .stage-dot {
    margin-bottom: 14px;
  }

  .case-index {
    margin-bottom: 32px;
  }

  .contact-form {
    padding: 20px;
  }

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

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