@charset "UTF-8";

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/barlow-600.160e7ba8.woff2") format("woff2");
  unicode-range: U+0020-007E, U+00A9, U+00B7, U+2192;
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/dm-sans.2e22a2f5.woff2") format("woff2");
  unicode-range: U+0020-007E, U+00A9, U+00B7, U+2192;
}

@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("/assets/jetbrains-mono.55b58499.woff2") format("woff2");
  unicode-range: U+0020-007E, U+00A9, U+00B7, U+2192;
}

:root {
  --background: #070a0f;
  --background-raised: #0a0e15;
  --surface: #0c111a;
  --surface-hover: #101824;
  --foreground: #e8edf6;
  --muted: #9aa8bd;
  --dim: #74839b;
  --accent: #38bdf8;
  --accent-strong: #19a7e8;
  --accent-ink: #031019;
  --border: rgba(226, 232, 244, 0.11);
  --border-strong: rgba(226, 232, 244, 0.2);
  --success: #34d399;
  --font-sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Barlow", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --container: 1280px;
  --nav-height: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
  background: var(--background);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

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

h1,
h2,
h3 {
  color: var(--foreground);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.06;
  text-wrap: balance;
}

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

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
}

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

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

.landing-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--nav-height);
  border-bottom: 1px solid transparent;
  background: rgba(7, 10, 15, 0.78);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.landing-nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(7, 10, 15, 0.95);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  min-height: 44px;
  color: var(--foreground);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.landing-nav .brand {
  min-width: 142px;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}

.brand-collapse {
  display: inline-block;
  max-width: var(--part-width);
  overflow: hidden;
  opacity: 1;
  transform: translateX(0);
  white-space: pre;
  animation: brand-contract 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.brand-orth {
  --part-width: 2.75em;
}

.brand-rook {
  --part-width: 2.65em;
}

@keyframes brand-contract {
  0%,
  24%,
  100% {
    max-width: var(--part-width);
    opacity: 1;
    transform: translateX(0);
  }

  38%,
  68% {
    max-width: 0;
    opacity: 0;
    transform: translateX(-0.18em);
  }

  82% {
    max-width: var(--part-width);
    opacity: 1;
    transform: translateX(0);
  }
}

.brand strong {
  color: var(--accent);
  font-weight: 600;
}

.brand-icon {
  width: 19px;
  height: 19px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 34px);
}

.nav-menu > a,
.nav-console {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.01em;
  transition: color 150ms ease;
}

.nav-menu > a:hover,
.nav-console:hover {
  color: var(--foreground);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 16px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  transition: background-color 150ms ease, transform 150ms ease;
}

.nav-demo:hover {
  background: #66ccfa;
  transform: translateY(-1px);
}

.nav-mobile-actions,
.mobile-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 80px) 0 80px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 15%, transparent 95%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 55% at 50% -15%, rgba(56, 189, 248, 0.1), transparent 70%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: clamp(52px, 7vw, 94px);
}

.section-label {
  margin-bottom: 18px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section-label span {
  color: var(--dim);
}

.hero h1 {
  max-width: 600px;
  margin-bottom: 24px;
  font-size: clamp(3.8rem, 6vw, 5.8rem);
  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;
  color: var(--accent);
}

.hero-lead {
  max-width: 540px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.3;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.button svg {
  width: 16px;
  margin-left: 8px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

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

.button-primary:hover {
  background: #66ccfa;
  transform: translateY(-1px);
}

.button-secondary {
  border-color: var(--border-strong);
  color: var(--muted);
}

.button-secondary:hover {
  border-color: rgba(226, 232, 244, 0.4);
  color: var(--foreground);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  border: 1px solid var(--border-strong);
  aspect-ratio: 4 / 3;
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.84);
}

.hero-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 10, 15, 0.45), transparent 48%);
}

.hero-visual figcaption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid var(--border-strong);
  background: rgba(7, 10, 15, 0.84);
  color: var(--foreground);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.hero-visual figcaption span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.7);
}

.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 0;
}

.stats-grid > div {
  display: flex;
  min-height: 72px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stats-grid > div:last-child {
  border-right: 0;
}

.stats strong {
  color: var(--foreground);
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
}

.stats span {
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.landing-section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 56px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -0.035em;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  position: relative;
  min-height: 310px;
  padding: 34px;
  border: 1px solid var(--border);
  border-right: 0;
  background: var(--background);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.process-grid li:last-child {
  border-right: 1px solid var(--border);
}

.process-grid li:hover {
  border-color: var(--border-strong);
  background: var(--surface);
}

.step-number {
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.step-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 52px 0 26px;
  place-items: center;
  border: 1px solid rgba(56, 189, 248, 0.24);
  color: var(--accent);
}

.step-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.process-grid h3 {
  margin-bottom: 14px;
  font-size: 1.75rem;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.workloads-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--background-raised);
}

.workload-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--border);
}

.workload-card,
.feature-card {
  min-width: 0;
  background: var(--surface);
  transition: background-color 180ms ease;
}

.workload-card:hover,
.feature-card:hover {
  background: var(--surface-hover);
}

.workload-card {
  min-height: 320px;
  padding: 32px 28px;
}

.workload-code {
  display: inline-flex;
  padding: 4px 8px;
  border: 1px solid currentColor;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.workload-code.exchange { color: #57b1f4; background: rgba(0, 120, 212, 0.09); }
.workload-code.onedrive { color: #69b6f0; background: rgba(15, 108, 189, 0.09); }
.workload-code.sharepoint { color: #50c5c8; background: rgba(3, 131, 135, 0.09); }
.workload-code.teams { color: #9ca3f7; background: rgba(75, 83, 188, 0.11); }

.workload-card h3 {
  min-height: 48px;
  margin: 30px 0 24px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.workload-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workload-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.workload-card li::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  content: "";
}

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

.feature-card {
  min-height: 250px;
  padding: 28px;
}

.feature-card > svg {
  width: 21px;
  height: 21px;
  margin-bottom: 48px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.faq-section {
  border-top: 1px solid var(--border);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(70px, 10vw, 150px);
}

.faq-intro {
  align-self: start;
}

.faq-intro h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 3.4vw, 3.35rem);
  letter-spacing: -0.03em;
}

.faq-intro > p:not(.section-label) {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.boundary-note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}

.boundary-note svg {
  width: 16px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.faq-item summary {
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item summary i {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 7px;
  left: 2px;
  width: 12px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.faq-item summary i::after {
  transform: rotate(90deg);
}

.faq-item[open] summary i::after {
  transform: rotate(0deg);
}

.home-faq-answer {
  padding: 0 44px 24px 0;
}

.home-faq-answer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.home-faq-answer a {
  color: var(--foreground);
  text-decoration: underline;
  text-decoration-color: rgba(56, 189, 248, 0.55);
  text-underline-offset: 3px;
}

.home-faq-answer a:hover {
  color: var(--accent);
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 116px 0;
  border-top: 1px solid var(--border);
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 110%, rgba(56, 189, 248, 0.1), transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  display: flex;
  max-width: 700px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ready-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ready-label span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.cta-content h2 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  letter-spacing: -0.045em;
}

.cta-content > p:not(.ready-label) {
  max-width: 600px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.cta-actions {
  justify-content: center;
}

.landing-footer {
  padding: 34px 0 22px;
  border-top: 1px solid var(--border);
  background: #06090d;
}

.footer-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 44px;
}

.footer-layout > p {
  margin: 0;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  line-height: 1.6;
  text-align: center;
}

.footer-layout nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer-layout nav a,
.footer-meta {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.footer-layout nav a,
.footer-meta > a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
}

.footer-layout nav a:hover,
.footer-meta a:hover {
  color: var(--foreground);
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--dim);
  line-height: 1.6;
}

.footer-meta a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: rgba(154, 168, 189, 0.4);
  text-underline-offset: 3px;
}

@media (max-width: 1020px) {
  .nav-menu {
    gap: 17px;
  }

  .nav-menu > a,
  .nav-console {
    font-size: 0.66rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    gap: 42px;
  }

  .workload-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-layout {
    grid-template-columns: 1fr auto;
  }

  .footer-layout > p {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --nav-height: 60px;
  }

  .landing-container {
    width: min(calc(100% - 36px), var(--container));
  }

  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
  }

  .mobile-toggle span {
    width: 17px;
    height: 1px;
    background: var(--foreground);
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

  .mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .nav-menu {
    position: fixed;
    z-index: 101;
    top: var(--nav-height);
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(7, 10, 15, 0.98);
    opacity: 0;
    pointer-events: none;
    transition: max-height 220ms ease, opacity 180ms ease, border-color 180ms ease;
  }

  .nav-menu.active {
    max-height: calc(100vh - var(--nav-height));
    border-bottom-color: var(--border);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu > a {
    min-height: 52px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 0.76rem;
  }

  .nav-mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 18px 24px 22px;
  }

  .nav-mobile-actions a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-strong);
    color: var(--foreground);
    font-family: var(--font-mono);
    font-size: 0.7rem;
  }

  .nav-mobile-actions .nav-demo {
    border-color: var(--accent);
    color: var(--accent-ink);
  }

  .hero {
    padding: calc(var(--nav-height) + 64px) 0 68px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 11vw, 5.4rem);
  }

  .hero-lead {
    max-width: 620px;
  }

  .hero-visual {
    max-width: 650px;
  }

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

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

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

  .landing-section {
    padding: 88px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 44px;
  }

  .section-heading > p {
    max-width: 600px;
  }

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

  .process-grid li,
  .process-grid li:last-child {
    min-height: 0;
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }

  .process-grid li:last-child {
    border-bottom: 1px solid var(--border);
  }

  .step-icon {
    margin: 30px 0 22px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-intro {
    max-width: 620px;
  }
}

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

  .brand {
    font-size: 0.82rem;
  }

  .section-label {
    margin-bottom: 14px;
    font-size: 0.62rem;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 46px);
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(3.35rem, 17vw, 4.75rem);
  }

  .hero-lead {
    font-size: 0.94rem;
  }

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

  .button {
    width: 100%;
  }

  .hero-visual figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: max-content;
    max-width: calc(100% - 24px);
  }

  .stats-grid {
    width: 100%;
  }

  .stats-grid > div {
    min-height: 96px;
    padding-inline: 14px;
  }

  .stats strong {
    font-size: 1.65rem;
  }

  .stats span {
    font-size: 0.56rem;
  }

  .landing-section {
    padding: 72px 0;
  }

  .section-heading h2 {
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .process-grid li {
    padding: 28px;
  }

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

  .workload-card,
  .feature-card {
    min-height: 0;
  }

  .workload-card h3 {
    min-height: 0;
  }

  .feature-card > svg {
    margin-bottom: 34px;
  }

  .home-faq-answer {
    padding-right: 0;
  }

  .cta-section {
    padding: 84px 0;
  }

  .cta-content h2 {
    font-size: clamp(3.25rem, 15vw, 4.4rem);
  }

  .footer-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }

  .footer-layout nav {
    justify-content: flex-start;
    gap: 16px 22px;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

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

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

  .brand-collapse {
    max-width: var(--part-width);
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
