:root {
  --bg-deep: #07111d;
  --bg-night: #0d1a2b;
  --bg-soft: #f4f5f7;
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-card-strong: #ffffff;
  --line-soft: rgba(11, 33, 56, 0.1);
  --line-strong: rgba(119, 163, 209, 0.28);
  --text-main: #102238;
  --text-soft: #5e7187;
  --text-light: rgba(240, 247, 255, 0.82);
  --white: #ffffff;
  --cyan: #53d4ff;
  --cyan-deep: #1aa4cf;
  --lime: #87f0c0;
  --amber: #ffb357;
  --amber-deep: #ff7e45;
  --rose: #ff8d77;
  --shadow-xl: 0 28px 80px rgba(6, 15, 28, 0.18);
  --shadow-lg: 0 20px 55px rgba(13, 27, 46, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(83, 212, 255, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 179, 87, 0.14), transparent 28%),
    linear-gradient(180deg, var(--bg-night) 0 46rem, var(--bg-soft) 46rem 100%);
}

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

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

.site-body {
  overflow-x: hidden;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.page-glow {
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(45px);
  opacity: 0.46;
  pointer-events: none;
  z-index: -1;
}

.page-glow-left {
  top: 7rem;
  left: -10rem;
  background: rgba(83, 212, 255, 0.18);
}

.page-glow-right {
  top: 12rem;
  right: -10rem;
  background: rgba(255, 126, 69, 0.16);
}

.content-wrap {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0 0;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(150, 189, 229, 0.16);
  border-radius: 999px;
  background: rgba(7, 17, 29, 0.56);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 50px rgba(2, 8, 16, 0.18);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  display: block;
  margin-top: 0.15rem;
  color: rgba(240, 247, 255, 0.74);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark strong {
  display: block;
  color: var(--white);
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: 1rem;
}

.brand-mark-footer strong {
  display: block;
  color: var(--text-main);
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: 1rem;
}

.brand-mark-footer .brand-subtitle {
  color: var(--text-soft);
}

.brand-icon {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(135, 240, 192, 0.95), rgba(83, 212, 255, 0.9) 48%, rgba(255, 179, 87, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 12px 24px rgba(83, 212, 255, 0.28);
  position: relative;
}

.brand-icon::before,
.brand-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(7, 17, 29, 0.76);
}

.brand-icon::before {
  width: 1rem;
  height: 1rem;
  top: 0.55rem;
  left: 0.55rem;
}

.brand-icon::after {
  width: 1.2rem;
  height: 0.28rem;
  right: 0.45rem;
  bottom: 0.58rem;
  transform: rotate(-32deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav a {
  color: rgba(240, 247, 255, 0.8);
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.96rem;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 34, 56, 0.12);
}

.button-small {
  min-height: 2.7rem;
  padding: 0.72rem 1.1rem;
  font-size: 0.88rem;
}

.button-primary {
  color: #06111e;
  background: linear-gradient(135deg, var(--lime), var(--cyan) 48%, var(--amber));
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.button-ghost,
.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

.button-surface {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(16, 34, 56, 0.12);
}

.button-full {
  width: 100%;
}

.hero-section {
  position: relative;
  padding: 4.5rem 0 5.5rem;
  background:
    radial-gradient(circle at top left, rgba(83, 212, 255, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 179, 87, 0.14), transparent 28%),
    linear-gradient(180deg, var(--bg-night) 0%, #111f31 100%);
}

.hero-section-inner {
  padding-bottom: 4rem;
}

.hero-grid,
.hero-inner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.thanks-card h1 {
  margin: 0;
  color: var(--white);
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: clamp(2.85rem, 5vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-copy h1 span {
  display: block;
  color: rgba(240, 247, 255, 0.84);
}

.hero-text {
  max-width: 42rem;
  margin: 1.45rem 0 0;
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.75;
}

.eyebrow-row,
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.eyebrow-row {
  margin-bottom: 1.2rem;
}

.eyebrow-pill,
.status-pill,
.sector-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eyebrow-pill {
  color: #05111e;
  background: rgba(135, 240, 192, 0.92);
}

.eyebrow-pill-soft {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.hero-actions {
  margin-top: 1.75rem;
}

.proof-grid {
  margin-top: 1.85rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.proof-card {
  padding: 1.2rem 1.2rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(164, 205, 247, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.proof-card strong {
  display: block;
  color: var(--white);
  font-size: 0.98rem;
}

.proof-card p {
  margin: 0.6rem 0 0;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
}

.signal-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
  margin: 0 0 1rem;
}

.signal-cloud span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 600;
}

.browser-mockup,
.thanks-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(166, 208, 247, 0.18);
  background: linear-gradient(180deg, rgba(10, 21, 37, 0.88), rgba(9, 18, 31, 0.96));
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.browser-topbar {
  display: flex;
  gap: 0.4rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-topbar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.browser-layout {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  min-height: 31rem;
}

.mock-sidebar {
  padding: 1.35rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.mock-sidebar p {
  margin: 0 0 0.7rem;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  color: rgba(240, 247, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}

.mock-sidebar p.active {
  color: #04101c;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
}

.mock-main {
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
  background:
    radial-gradient(circle at top right, rgba(83, 212, 255, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.mock-panel,
.spotlight-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
}

.mock-split,
.two-column-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.panel-heading strong,
.spotlight-card strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.tiny-label {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: rgba(240, 247, 255, 0.6);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill,
.sector-badge {
  color: #06111e;
  background: rgba(83, 212, 255, 0.9);
}

.chart-layers {
  position: relative;
  min-height: 11rem;
  padding: 1.1rem 0.4rem 0.1rem;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: end;
  gap: 0.55rem;
  min-height: 8rem;
}

.chart-bars span {
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(135, 240, 192, 0.95), rgba(83, 212, 255, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.chart-wave {
  position: absolute;
  inset: 1.25rem 0.2rem 0.4rem;
  border-bottom: 2px dashed rgba(255, 179, 87, 0.8);
  transform: perspective(50rem) rotateX(30deg);
  opacity: 0.8;
}

.coverage-stack {
  display: grid;
  gap: 0.8rem;
}

.coverage-row {
  display: grid;
  gap: 0.5rem;
}

.coverage-row span,
.assignment-list span {
  color: rgba(240, 247, 255, 0.65);
  font-size: 0.86rem;
}

.coverage-bar {
  height: 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.coverage-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--amber), var(--amber-deep));
}

.coverage-bar-good i {
  background: linear-gradient(90deg, var(--lime), var(--cyan));
}

.coverage-bar-warm i {
  background: linear-gradient(90deg, #ffc476, #ff8b57);
}

.assignment-list {
  display: grid;
  gap: 0.75rem;
}

.assignment-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.assignment-list b {
  color: var(--white);
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background:
    radial-gradient(circle at top right, rgba(83, 212, 255, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
}

.section-contrast {
  background:
    radial-gradient(circle at top left, rgba(83, 212, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #0c1827, #0a1522);
}

.section-contact {
  padding-bottom: 6rem;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--text-main);
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-heading p,
.contact-copy p,
.footer-copy,
.footer-meta,
.form-note,
.thanks-card p {
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--cyan-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading-light h2,
.section-heading-light p {
  color: var(--white);
}

.section-heading-light p {
  color: var(--text-light);
}

.workflow-grid,
.algorithm-grid,
.industry-grid,
.insight-grid,
.sector-grid {
  display: grid;
  gap: 1.15rem;
}

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

.algorithm-grid,
.industry-grid,
.insight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sector-grid-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.workflow-card,
.workflow-highlight,
.algorithm-card,
.industry-card,
.insight-card,
.sector-card,
.detail-card,
.contact-form {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.workflow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  color: #04101c;
  font-weight: 800;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
}

.workflow-card h3,
.workflow-highlight h3,
.algorithm-card h3,
.industry-card h3,
.insight-card h3,
.sector-card h3,
.detail-card h3 {
  margin: 1rem 0 0;
  font-size: 1.22rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.workflow-card p,
.workflow-highlight p,
.algorithm-card p,
.industry-card p,
.insight-card p,
.sector-card p,
.detail-card p {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.card-icon-cyan {
  background: linear-gradient(135deg, rgba(83, 212, 255, 0.9), rgba(135, 240, 192, 0.88));
}

.card-icon-amber {
  background: linear-gradient(135deg, rgba(255, 179, 87, 0.95), rgba(255, 126, 69, 0.88));
}

.card-icon-lime {
  background: linear-gradient(135deg, rgba(135, 240, 192, 0.95), rgba(83, 212, 255, 0.72));
}

.feature-list {
  margin: 0.95rem 0 0;
  padding: 0 0 0 1.1rem;
  color: var(--text-soft);
  line-height: 1.75;
}

.feature-list li + li {
  margin-top: 0.45rem;
}

.workflow-highlight,
.detail-card-wide {
  margin-top: 1.15rem;
  background:
    radial-gradient(circle at top right, rgba(83, 212, 255, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(235, 246, 255, 0.9));
}

.insight-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

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

.insight-card p {
  color: var(--text-light);
}

.industry-card,
.sector-card,
.detail-card {
  background: rgba(255, 255, 255, 0.9);
}

.section-cta {
  margin-top: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.4rem;
  align-items: start;
}

.contact-copy h2 {
  color: var(--text-main);
}

.contact-points {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
}

.contact-points article {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.7);
}

.contact-points strong {
  display: block;
  font-size: 1rem;
}

.contact-points p {
  margin-top: 0.45rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.88rem 1rem;
  border: 1px solid rgba(16, 34, 56, 0.12);
  border-radius: 16px;
  color: var(--text-main);
  font: inherit;
  background: rgba(255, 255, 255, 0.96);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(26, 164, 207, 0.5);
  box-shadow: 0 0 0 4px rgba(83, 212, 255, 0.15);
}

.form-note a,
.contact-copy a,
.footer-links a {
  color: var(--cyan-deep);
  font-weight: 700;
}

.hidden-field {
  position: absolute;
  inset: auto auto auto -999rem;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) auto;
  gap: 1rem;
  align-items: end;
  padding-top: 2rem;
  border-top: 1px solid rgba(16, 34, 56, 0.08);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-copy,
.footer-meta {
  margin: 0.85rem 0 0;
}

.brand-mark-footer .brand-icon {
  width: 2.4rem;
  height: 2.4rem;
}

.page-shell-inner {
  background:
    radial-gradient(circle at top left, rgba(83, 212, 255, 0.1), transparent 22%),
    linear-gradient(180deg, var(--bg-night) 0 28rem, var(--bg-soft) 28rem 100%);
}

.industry-hero-stack {
  display: grid;
  gap: 1rem;
}

.spotlight-card strong {
  line-height: 1.45;
}

.spotlight-card .tiny-label {
  margin-bottom: 0.45rem;
}

.sector-top {
  display: grid;
  gap: 0.75rem;
}

.thanks-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.thanks-card {
  width: min(42rem, 100%);
  padding: 2.25rem;
  text-align: center;
}

.thanks-card p {
  color: var(--text-light);
  max-width: 32rem;
  margin-inline: auto;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1100px) {
  .header-row,
  .footer-row,
  .hero-grid,
  .hero-inner-grid,
  .contact-grid,
  .workflow-grid,
  .algorithm-grid,
  .industry-grid,
  .insight-grid,
  .sector-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-row {
    border-radius: 28px;
  }

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

  .footer-row {
    align-items: start;
  }
}

@media (max-width: 860px) {
  body {
    background: linear-gradient(180deg, var(--bg-night) 0 72rem, var(--bg-soft) 72rem 100%);
  }

  .site-header {
    position: static;
    padding-top: 1rem;
  }

  .header-row {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: start;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 24px;
  }

  .brand-mark {
    width: 100%;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 0.7rem 1.1rem;
    justify-content: start;
  }

  .header-row .button-small {
    width: 100%;
    justify-content: center;
  }

  .header-row,
  .hero-grid,
  .hero-inner-grid,
  .workflow-grid,
  .algorithm-grid,
  .industry-grid,
  .insight-grid,
  .sector-grid-wide,
  .contact-grid,
  .mock-split,
  .two-column-grid,
  .footer-row {
    grid-template-columns: 1fr;
  }

  .header-row {
    justify-items: start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-section {
    padding-top: 2.8rem;
  }

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

  .mock-sidebar {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mock-sidebar p {
    white-space: nowrap;
    margin-bottom: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .content-wrap {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  .site-nav {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

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

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

  .hero-copy h1,
  .thanks-card h1 {
    font-size: 2.45rem;
  }

  .section {
    padding: 3.7rem 0;
  }

  .workflow-card,
  .algorithm-card,
  .industry-card,
  .insight-card,
  .sector-card,
  .detail-card,
  .contact-form,
  .proof-card,
  .contact-points article {
    padding: 1.2rem;
  }

  .browser-topbar {
    padding: 0.9rem 1rem;
  }

  .mock-main,
  .mock-sidebar {
    padding: 1rem;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.7;
  }
}
