/* ATLai design tokens: edit these variables to adjust color, radius, shadows, and spacing. */
:root {
  --primary: #1E90FF;
  --dark: #081423;
  --dark-card: #10233A;
  --light: #F7FAFC;
  --text: #111827;
  --text-dark: #FFFFFF;
  --secondary: #64748B;
  --success: #22C55E;
  --white: #FFFFFF;
  --line: rgba(17, 24, 39, 0.10);
  --line-dark: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 24px 70px rgba(8, 20, 35, 0.10);
  --shadow-card: 0 18px 50px rgba(8, 20, 35, 0.08);
  --radius: 16px;
  --radius-lg: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  color: var(--text);
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(8, 20, 35, 0.07);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  width: 96px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-logo-dark {
  display: none;
}

.site-header.is-scrolled .brand-logo-light,
.site-header.menu-open .brand-logo-light {
  display: none;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.menu-open .brand-logo-dark {
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-menu a {
  padding: 9px 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 650;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-header.is-scrolled .nav-menu a,
.site-header.menu-open .nav-menu a {
  color: var(--secondary);
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .nav-menu a:hover,
.site-header.is-scrolled .nav-menu a.is-active,
.site-header.menu-open .nav-menu a:hover,
.site-header.menu-open .nav-menu a.is-active {
  color: var(--text);
  background: rgba(30, 144, 255, 0.10);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-toggle,
.nav-toggle {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.language-toggle {
  min-width: 48px;
  height: 42px;
  padding: 0 13px;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.language-toggle:hover,
.nav-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--text-dark);
  background: var(--dark);
  padding: 132px 0 84px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 0%, transparent 78%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 58vw;
  height: 58vw;
  background: rgba(30, 144, 255, 0.16);
  filter: blur(110px);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.86fr);
  gap: 70px;
  align-items: center;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1,
h2,
h3,
p {
  margin: 0;
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(3.4rem, 7.2vw, 6.7rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
}

.hero-actions,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 760;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  color: var(--dark);
  background: var(--primary);
  box-shadow: 0 18px 40px rgba(30, 144, 255, 0.28);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.btn-tertiary {
  color: var(--text);
  border-color: var(--line);
  background: var(--white);
}

.btn-full {
  width: 100%;
}

.trust-strip {
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.trust-strip span {
  position: relative;
  padding-left: 18px;
}

.trust-strip span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
}

.hero-visual {
  position: relative;
}

.dashboard-shell {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(16, 35, 58, 0.78);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  backdrop-filter: blur(18px);
  animation: floatPanel 7s ease-in-out infinite;
}

.window-bar {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.window-bar strong {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 16px;
}

.metric-card,
.chart-card,
.workflow-card,
.report-card-mini {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  background: rgba(8, 20, 35, 0.56);
  padding: 16px;
}

.metric-card span,
.workflow-card span,
.report-card-mini span,
.chart-header span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 650;
}

.metric-card strong {
  display: block;
  margin-top: 12px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.metric-card em {
  color: var(--primary);
  font-style: normal;
  font-weight: 800;
}

.chart-card {
  grid-column: 1 / -1;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.chart-header b {
  color: var(--primary);
  font-size: 0.74rem;
}

.grid-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.area-path {
  fill: rgba(30, 144, 255, 0.14);
}

.line-path {
  fill: none;
  stroke: var(--primary);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 620;
  animation: drawLine 4.8s ease-in-out infinite;
}

.workflow-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.workflow-mini i {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(30, 144, 255, 0.18);
  border: 1px solid rgba(30, 144, 255, 0.36);
}

.workflow-mini b {
  width: 34px;
  height: 2px;
  background: rgba(30, 144, 255, 0.42);
}

.report-card-mini p {
  margin-top: 12px;
  color: var(--white);
  font-weight: 750;
}

.section {
  padding: 118px 0;
}

.light-band {
  background: var(--light);
}

.split,
.why-layout,
.faq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 72px;
  align-items: start;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

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

.section-heading.align-left {
  margin-bottom: 0;
}

h2 {
  color: var(--text);
  font-size: clamp(2.25rem, 4.6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
}

h3 {
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.section-heading p:not(.section-kicker),
.text-stack,
.surface-card p,
.solution-large p,
.compare-card li,
.why-item span,
.price-card p,
.price-card li,
.case-card p,
.faq-list p,
.contact-copy p,
.form-note,
.site-footer p {
  color: var(--secondary);
}

.text-stack {
  display: grid;
  gap: 18px;
  font-size: 1.06rem;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.surface-card,
.solution-large,
.compare-card,
.price-card,
.case-card,
.contact-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.surface-card {
  padding: 24px;
  min-height: 228px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.surface-card:hover,
.price-card:hover,
.case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 144, 255, 0.28);
  box-shadow: var(--shadow-soft);
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  color: var(--primary);
  border: 1px solid rgba(30, 144, 255, 0.18);
  border-radius: 14px;
  background: rgba(30, 144, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 850;
}

.surface-card p,
.compact p {
  margin-top: 12px;
}

.solutions-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.solution-large {
  display: grid;
  align-content: space-between;
  min-height: 540px;
  padding: 32px;
  overflow: hidden;
  background: var(--dark);
}

.solution-large h3,
.solution-large p {
  color: var(--white);
}

.solution-large p {
  color: rgba(255, 255, 255, 0.68);
  max-width: 620px;
  margin-top: 14px;
}

.pill {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--primary);
  border: 1px solid rgba(30, 144, 255, 0.25);
  border-radius: 999px;
  background: rgba(30, 144, 255, 0.10);
  font-size: 0.78rem;
  font-weight: 800;
}

.workflow-illustration {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.flow-node {
  min-width: 92px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  text-align: center;
  font-weight: 750;
}

.flow-node.active {
  color: var(--white);
  border-color: rgba(30, 144, 255, 0.45);
  background: rgba(30, 144, 255, 0.18);
}

.flow-line {
  height: 2px;
  flex: 1;
  min-width: 32px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  background-size: 200% 100%;
  animation: flow 2.8s linear infinite;
}

.solution-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.surface-card.compact {
  min-height: 126px;
}

.dark-section {
  color: var(--white);
  background: var(--dark);
}

.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.dark-section .section-heading p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.70);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dark-card {
  min-height: 188px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--dark-card);
  transition: transform 180ms ease, border-color 180ms ease;
}

.dark-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 144, 255, 0.42);
}

.dark-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
}

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

.compare-card {
  padding: 30px;
}

.compare-card.featured {
  color: var(--white);
  background: var(--dark);
}

.compare-card.featured h3 {
  color: var(--white);
}

.compare-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare-card ul,
.price-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.compare-card li,
.price-card li {
  position: relative;
  padding-left: 26px;
}

.compare-card li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--primary);
  border-radius: 999px;
}

.compare-card.featured li {
  color: rgba(255, 255, 255, 0.72);
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-item {
  padding: 20px 0 20px 24px;
  border-left: 3px solid rgba(30, 144, 255, 0.36);
}

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

.why-item span {
  margin-top: 7px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
}

.price-card.preferred {
  border-color: rgba(30, 144, 255, 0.38);
  box-shadow: 0 24px 80px rgba(30, 144, 255, 0.16);
}

.price-card .btn {
  width: 100%;
}

.popular {
  align-self: flex-start;
  padding: 7px 10px;
  color: var(--primary);
  border-radius: 999px;
  background: rgba(30, 144, 255, 0.10);
  font-size: 0.78rem;
  font-weight: 820;
}

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

.case-card {
  padding: 24px;
}

.mock-report {
  height: 142px;
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 18px;
  background: var(--light);
}

.mock-report span {
  display: block;
  border-radius: 999px;
  background: rgba(30, 144, 255, 0.24);
}

.mock-report span:nth-child(1) {
  width: 68%;
}

.mock-report span:nth-child(2) {
  width: 92%;
}

.mock-report span:nth-child(3) {
  width: 46%;
}

.mock-report.bars {
  display: flex;
  align-items: end;
}

.mock-report.bars span {
  width: 30%;
  border-radius: 14px 14px 6px 6px;
}

.mock-report.bars span:nth-child(1) {
  height: 42%;
}

.mock-report.bars span:nth-child(2) {
  height: 82%;
}

.mock-report.bars span:nth-child(3) {
  height: 62%;
}

.mock-report.nodes {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-report.nodes span {
  width: 46px;
  height: 46px;
  border-radius: 16px;
}

.case-card p {
  margin-top: 12px;
}

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

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 780;
  list-style: none;
}

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

.faq-list p {
  padding: 0 24px 24px;
}

.contact-section {
  padding: 118px 0;
  color: var(--white);
  background: var(--dark);
}

.contact-section h2 {
  color: var(--white);
}

.contact-copy p {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.70);
}

.contact-email {
  display: inline-flex;
  margin-top: 28px;
  color: var(--white);
  font-weight: 800;
}

.contact-panel {
  padding: 28px;
  background: var(--dark-card);
  border-color: var(--line-dark);
  box-shadow: none;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(30, 144, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.18);
}

.contact-form textarea {
  min-height: 138px;
  resize: vertical;
}

.form-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 30px;
  align-items: center;
}

.footer-brand {
  width: 96px;
  height: 62px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  color: var(--secondary);
  font-size: 0.92rem;
  font-weight: 650;
}

.footer-email {
  color: var(--text);
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes drawLine {
  0% {
    stroke-dashoffset: 620;
  }
  45%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes flow {
  to {
    background-position: -200% 0;
  }
}

@media (max-width: 1080px) {
  .hero-layout,
  .solutions-layout,
  .split,
  .why-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .card-grid.four,
  .industry-grid,
  .pricing-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 880px) {
  .nav {
    min-height: 72px;
    grid-template-columns: auto 1fr;
  }

  .nav-actions {
    grid-column: 2;
    justify-self: end;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-soft);
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu a,
  .site-header .nav-menu a,
  .site-header.is-scrolled .nav-menu a {
    color: var(--text);
    border-radius: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 13vw, 5.3rem);
  }

  .workflow-illustration {
    align-items: stretch;
    flex-direction: column;
  }

  .flow-line {
    width: 2px;
    min-width: 2px;
    min-height: 36px;
    margin-left: 45px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    background-size: 100% 200%;
  }
}

@media (max-width: 640px) {
  .container,
  .nav {
    width: min(100% - 64px, var(--container));
  }

  .brand {
    width: 80px;
    height: 54px;
  }

  .language-toggle {
    min-width: 44px;
    height: 44px;
    padding: 0 10px;
  }

  .nav-actions {
    gap: 8px;
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero h1 {
    letter-spacing: -0.045em;
    font-size: clamp(2.85rem, 12vw, 4.55rem);
  }

  .hero-lede {
    font-size: 1.02rem;
  }

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

  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .dashboard-grid,
  .card-grid.four,
  .industry-grid,
  .compare-grid,
  .pricing-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-grid {
    padding: 12px;
  }

  .section,
  .contact-section {
    padding: 78px 0;
  }

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

  h2 {
    font-size: clamp(2.05rem, 12vw, 3.35rem);
  }

  .surface-card,
  .solution-large,
  .compare-card,
  .price-card,
  .case-card,
  .contact-panel {
    padding: 22px;
  }
}

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