:root {
  --ink: #102332;
  --muted: #546373;
  --soft: #eef5f8;
  --line: #d9e4e9;
  --teal: #007895;
  --teal-deep: #005c75;
  --teal-dark: #003f52;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(16, 35, 50, .12);
  --radius-soft: 24px;
  --radius-card: 8px;
  --radius-pill: 999px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

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

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

.mansventures-page .container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 max(32px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, .96);
  border-radius: 0 0 var(--radius-soft) var(--radius-soft);
  box-shadow: 0 1px 14px rgba(15, 38, 52, .12);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: #1c2935;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mans,
.footer-brand span {
  color: var(--teal);
}

.brand-technic {
  color: #556270;
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #314253;
  font-size: 13px;
  font-weight: 600;
}

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

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

.nav-cta {
  min-width: 92px;
  padding: 11px 18px;
  color: var(--white) !important;
  text-align: center;
  background: var(--teal-dark);
  border-radius: var(--radius-pill);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  margin-top: var(--site-header-height, 96px);
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
  background: #0b1a25;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-bridge.png");
  background-position: center right;
  background-size: cover;
  filter: saturate(.9) contrast(1.03);
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 17, 26, .92) 0%, rgba(8, 24, 34, .84) 34%, rgba(8, 24, 34, .45) 63%, rgba(8, 24, 34, .12) 100%),
    linear-gradient(180deg, rgba(5, 17, 26, .15) 0%, rgba(5, 17, 26, .38) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 720px;
  padding: 92px 0 108px;
}

.ventures-mark {
  display: block;
  width: min(430px, 82vw);
  height: 142px;
  margin-bottom: 10px;
  overflow: hidden;
}

.ventures-logo {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  transform: translateY(-100px);
}

.hero h1 {
  width: min(640px, 100%);
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1::after {
  content: "";
  display: block;
  width: 86px;
  height: 2px;
  margin: 28px 0 20px;
  background: var(--teal);
  border-radius: var(--radius-pill);
}

.hero-copy {
  width: min(560px, 100%);
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .93);
  font-size: 18px;
  line-height: 1.7;
}

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

.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 55px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #008ead, #006f8b);
}

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

.hero-actions .btn,
.cta-actions .btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: var(--animated-btn-border, transparent);
  background: transparent;
  transition: transform .2s ease, border-color .3s ease, color .3s ease;
}

.hero-actions .btn::before,
.hero-actions .btn::after,
.cta-actions .btn::before,
.cta-actions .btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.hero-actions .btn::after,
.cta-actions .btn::after {
  z-index: -2;
  background: var(--animated-btn-base);
}

.hero-actions .btn::before,
.cta-actions .btn::before {
  z-index: -1;
  width: 0%;
  background: var(--animated-btn-hover);
  transition: width .3s ease;
}

.hero-actions .btn:hover::before,
.cta-actions .btn:hover::before {
  width: 100%;
}

.hero-actions .btn-primary {
  --animated-btn-base: linear-gradient(135deg, #008ead, #006f8b);
  --animated-btn-hover: #004f66;
  --animated-btn-border: transparent;
}

.hero-actions .btn-secondary {
  --animated-btn-base: rgba(255, 255, 255, .06);
  --animated-btn-hover: rgba(0, 120, 149, .95);
  --animated-btn-border: rgba(255, 255, 255, .78);
}

.hero-actions .btn-secondary:hover {
  border-color: rgba(0, 204, 255, .65);
}

.section {
  padding: 78px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.15fr);
  gap: 72px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr);
}

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

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  color: #142436;
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.12;
}

h3 {
  margin: 0;
  color: #172637;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.28;
}

.accent-line {
  display: block;
  width: 70px;
  height: 2px;
  margin: 24px 0 28px;
  background: var(--teal);
  border-radius: var(--radius-pill);
}

.section-copy p:not(.eyebrow) {
  margin: 0 0 19px;
  color: #344252;
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1.45fr .9fr;
  grid-template-rows: repeat(3, 145px);
  gap: 10px;
  min-height: 455px;
}

.mosaic-panel,
.strategy-photo {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow);
}

.mosaic-panel {
  background-image: url("assets/industrial-collage.png");
  background-repeat: no-repeat;
}

.mosaic-large {
  grid-row: 1 / 4;
  background-position: left center;
  background-size: 200% 100%;
}

.mosaic-lab {
  background-position: right top;
  background-size: 200% 300%;
}

.mosaic-port {
  background-position: right center;
  background-size: 200% 300%;
}

.mosaic-robot {
  background-position: right bottom;
  background-size: 200% 300%;
}

.focus-band,
.partner-band {
  background: linear-gradient(90deg, #f8fbfc 0%, #eaf4f8 52%, #f8fbfc 100%);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 36px;
}

.focus-item {
  min-height: 246px;
  padding: 0 30px;
  text-align: center;
  border-radius: var(--radius-card);
  border-right: 1px solid var(--line);
}

.focus-item:last-child {
  border-right: 0;
}

.focus-item svg,
.partner-features svg,
.timeline svg {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  color: var(--teal-deep);
}

.focus-item p,
.partner-features p,
.timeline p {
  margin: 11px 0 0;
  color: #465666;
  font-size: 13px;
  line-height: 1.58;
}

.strategy-photo {
  aspect-ratio: 1.48 / 1;
  display: block;
  height: auto;
  min-height: 320px;
  object-fit: cover;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 32px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-grid li {
  position: relative;
  padding-left: 27px;
  color: #263747;
  font-size: 14px;
  font-weight: 600;
}

.check-grid li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--teal);
  font-weight: 800;
}

.partner-layout {
  display: grid;
  grid-template-columns: .82fr 1.38fr;
  gap: 52px;
  align-items: start;
}

.partner-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: center;
}

.partner-features article {
  padding: 18px 14px;
  border-radius: var(--radius-card);
}

.notice {
  grid-column: 1 / -1;
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding: 20px 24px;
  border: 1px solid #bfd3dc;
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, .36);
}

.notice span {
  display: inline-flex;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #102332;
  border: 2px solid #102332;
  border-radius: 50%;
  font-weight: 800;
  font-style: italic;
}

.notice p {
  margin: 0;
  color: #253443;
  font-size: 13px;
  line-height: 1.55;
}

.process {
  padding-top: 68px;
  padding-bottom: 78px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  margin-top: 38px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: #c8d9e1;
}

.timeline article {
  position: relative;
  text-align: center;
}

.step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.timeline h3 {
  font-size: 15px;
}

.timeline svg {
  margin-bottom: 16px;
}

.cta-band {
  color: var(--white);
  background: linear-gradient(135deg, #007e9c 0%, #005f78 52%, #00455a 100%);
  border-radius: var(--radius-soft) var(--radius-soft) 0 0;
}

.cta-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center;
  min-height: 170px;
  padding: 36px 0;
}

.cta-layout h2 {
  color: var(--white);
}

.cta-layout p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .92);
  font-weight: 600;
}

.btn-light {
  color: #163043;
  background: var(--white);
}

.cta-actions .btn-light {
  --animated-btn-base: var(--white);
  --animated-btn-hover: #d9f4fa;
  --animated-btn-border: transparent;
}

.cta-actions .btn-light:hover {
  color: var(--teal-dark);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .04);
}

.cta-actions .btn-outline-light {
  --animated-btn-base: rgba(255, 255, 255, .04);
  --animated-btn-hover: rgba(255, 255, 255, .18);
  --animated-btn-border: rgba(255, 255, 255, .8);
}

.cta-actions .btn-outline-light:hover {
  border-color: rgba(255, 255, 255, .95);
}

.site-footer {
  color: var(--white);
  background: #121d27;
}

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

.footer-brand {
  color: var(--white);
  font-size: 22px;
}

.footer-copy {
  display: grid;
  gap: 6px;
}

.footer-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.footer-copy a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-copy a:hover {
  color: rgba(255, 255, 255, .82);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.legal-links button {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-links button:hover {
  color: rgba(255, 255, 255, .82);
}

.social-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 800;
}

body.application-open {
  overflow: hidden;
}

.application-modal[hidden] {
  display: none;
}

.application-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 32px;
}

.application-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 30, .66);
  backdrop-filter: blur(10px);
}

.application-dialog {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  max-height: min(860px, calc(100vh - 64px));
  overflow: auto;
  padding: 34px;
  background: #ffffff;
  border: 1px solid rgba(188, 211, 222, .8);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(5, 17, 26, .34);
}

.application-close {
  appearance: none;
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #203243;
  background: #eef5f8;
  border: 1px solid #d5e4ea;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.application-close:hover {
  background: #dff0f5;
  transform: translateY(-1px);
}

.application-close .material-symbols-outlined {
  font-size: 22px;
}

.application-form-panel[aria-hidden="true"] {
  display: none;
}

.application-head {
  max-width: 680px;
  padding-right: 54px;
}

.application-head h2 {
  font-size: clamp(25px, 3vw, 36px);
}

.application-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0 26px;
}

.application-progress span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  color: #526170;
  background: #f2f7f9;
  border: 1px solid #dce8ee;
  border-radius: var(--radius-card);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.application-progress span.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #007e9c, #005f78);
  border-color: transparent;
}

.application-form {
  display: grid;
  gap: 24px;
}

.application-feedback {
  padding: 14px 16px;
  color: #8a1f1f;
  background: #fff1f1;
  border: 1px solid #f1c4c4;
  border-radius: var(--radius-card);
  font-size: 13px;
  font-weight: 700;
}

.application-feedback[hidden] {
  display: none;
}

.application-step {
  display: none;
}

.application-step.is-active {
  display: block;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  color: #263747;
  font-size: 13px;
  font-weight: 800;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: #162839;
  background: #fbfdfe;
  border: 1px solid #cfdde4;
  border-radius: var(--radius-card);
  font: 500 14px/1.45 "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  background: #ffffff;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 120, 149, .12);
}

.form-grid input:disabled,
.form-grid select:disabled,
.form-grid textarea:disabled {
  color: #7b8a96;
  background: #eef4f7;
  border-color: #d8e4ea;
  cursor: not-allowed;
}

.checkbox-field {
  display: flex !important;
  grid-template-columns: none;
  gap: 12px !important;
  align-items: flex-start;
  padding: 16px;
  background: #f5fafc;
  border: 1px solid #d5e4ea;
  border-radius: var(--radius-card);
  font-weight: 600 !important;
  line-height: 1.55;
}

.checkbox-field input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
}

.application-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 4px;
}

.form-nav-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 118px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  border: 1px solid #cbdde5;
  background: #ffffff;
  color: #203243;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.form-nav-btn:hover {
  transform: translateY(-1px);
  border-color: var(--teal);
}

.form-nav-btn:disabled {
  opacity: .62;
  cursor: not-allowed;
  transform: none;
}

.form-back[disabled] {
  visibility: hidden;
}

.form-next,
.form-submit {
  margin-left: auto;
  color: #ffffff;
  background: linear-gradient(135deg, #008ead, #006f8b);
  border-color: transparent;
}

.application-success {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 36px 24px 24px;
  text-align: center;
}

.application-success[hidden] {
  display: none;
}

.application-success .material-symbols-outlined {
  color: var(--teal);
  font-size: 54px;
}

.application-success h3 {
  font-size: 24px;
}

.application-success p {
  max-width: 520px;
  margin: 0;
  color: #465666;
}

@media (max-width: 1040px) {
  .site-header {
    padding: 0 24px;
  }

  .site-nav {
    gap: 20px;
  }

  .split,
  .split.reverse,
  .partner-layout,
  .cta-layout {
    grid-template-columns: 1fr;
  }

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

  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 0;
  }

  .focus-item:nth-child(2n) {
    border-right: 0;
  }

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

  .timeline::before {
    display: none;
  }
}

@media (max-width: 760px) {
  body.menu-open {
    overflow: hidden;
  }

  .mansventures-page .container {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    height: 64px;
  }

  .brand {
    font-size: 18px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 64px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 24px 28px;
    background: rgba(255, 255, 255, .98);
    border-radius: 0 0 var(--radius-soft) var(--radius-soft);
    box-shadow: 0 18px 35px rgba(16, 35, 50, .18);
    transform: translateY(-120%);
    transition: transform .25s ease;
  }

  body.menu-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 14px;
    padding: 13px 18px !important;
    border-bottom: 0 !important;
  }

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 17, 26, .96) 0%, rgba(8, 24, 34, .78) 70%, rgba(8, 24, 34, .48) 100%),
      linear-gradient(180deg, rgba(5, 17, 26, .15) 0%, rgba(5, 17, 26, .62) 100%);
  }

  .ventures-mark {
    width: min(340px, 88vw);
    height: 112px;
    margin-bottom: 10px;
  }

  .ventures-logo {
    transform: translateY(-79px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions,
  .cta-actions {
    gap: 14px;
  }

  .btn {
    width: 100%;
    padding: 0 18px;
  }

  .section {
    padding: 58px 0;
  }

  .split,
  .split.reverse {
    gap: 38px;
  }

  .image-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 132px 132px;
    min-height: auto;
  }

  .mosaic-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .mosaic-robot {
    grid-column: 1 / -1;
  }

  .focus-grid,
  .partner-features,
  .timeline,
  .check-grid,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .focus-item {
    min-height: auto;
    padding: 0 10px 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .focus-item:last-child {
    border-bottom: 0;
  }

  .partner-features {
    gap: 34px;
  }

  .notice {
    align-items: flex-start;
    padding: 18px;
  }

  .timeline {
    gap: 36px;
  }

  .step-number {
    margin-bottom: 18px;
  }

  .cta-layout {
    gap: 24px;
    padding: 42px 0;
  }

  .footer-layout {
    gap: 18px;
    justify-items: start;
    padding: 26px 0;
  }

  .application-modal {
    padding: 12px;
    place-items: end center;
  }

  .application-dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 24px 18px 18px;
    border-radius: 18px 18px 0 0;
  }

  .application-head {
    padding-right: 46px;
  }

  .application-progress {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 22px 0;
  }

  .application-progress span {
    min-height: 38px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .application-actions {
    position: sticky;
    bottom: -18px;
    margin: 0 -18px -18px;
    padding: 14px 18px 18px;
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid #dce8ee;
    backdrop-filter: blur(12px);
  }

  .form-nav-btn {
    min-width: 104px;
    padding: 0 18px;
  }
}
