:root {
  --page: #f3f2f1;
  --ink: #2b2d2d;
  --muted: #666;
  --soft: #8c8c8c;
  --line: #e7e6e4;
  --lime: #d8f9b8;
  --card: #fff;
  --panel: rgba(247, 247, 247, 0.9);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --font: Inter, "Inter Placeholder", sans-serif;
}

/* Contact page: intentionally reuses homepage rhythm and visual scale. */
.contact-page {
  background: var(--page);
}

.contact-page .contact-hero {
  width: auto;
  min-height: 560px;
  display: block;
  margin: 0;
  padding: 178px 40px 84px;
  text-align: left;
}

.contact-page .contact-hero .hero-container {
  min-height: 250px;
}

.contact-page .contact-ops-panel {
  align-self: flex-end;
  width: min(420px, 100%);
  border: 1px solid rgba(43, 45, 45, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 247, 244, 0.86)),
    #fff;
  padding: 16px;
  box-shadow: 0 24px 70px rgba(43, 45, 45, 0.08);
}

.contact-page .contact-ops-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  border-radius: 16px;
  background: var(--ink);
  padding: 0 16px;
  color: white;
}

.contact-page .contact-ops-top span,
.contact-page .contact-ops-rows span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.contact-page .contact-ops-top strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: var(--lime);
  padding: 0 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.contact-page .contact-ops-rows {
  display: grid;
  gap: 0;
  margin-top: 8px;
}

.contact-page .contact-ops-rows div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  border-bottom: 1px dashed rgba(43, 45, 45, 0.14);
  padding: 0 4px;
}

.contact-page .contact-ops-rows div:last-child {
  border-bottom: 0;
}

.contact-page .contact-ops-rows span {
  color: var(--muted);
}

.contact-page .contact-ops-rows strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: right;
  white-space: nowrap;
}

.contact-page .contact-ops-actions {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 10px;
  margin-top: 14px;
}

.contact-page .contact-ops-actions .button {
  width: 100%;
}

.contact-page .contact-hero h1 {
  max-width: 760px;
  font-size: clamp(50px, 3.9vw, 56px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.contact-page .contact-hero p {
  width: min(560px, 100%);
  max-width: none;
  margin: -4px 0 0;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.55;
}

.contact-page .contact-hub {
  width: min(1280px, calc(100% - 40px));
  display: grid;
  justify-items: center;
  gap: 24px;
  margin: 0 auto 120px;
}

.contact-page .contact-switch {
  border: 1px solid rgba(43, 45, 45, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 28px rgba(43, 45, 45, 0.045);
}

.contact-page .contact-switch button {
  min-height: 40px;
  padding: 0 16px;
  color: rgba(43, 45, 45, 0.62);
  font-size: 14px;
  font-weight: 600;
}

.contact-page .contact-switch button.is-active {
  background: var(--lime);
  color: var(--ink);
}

.contact-page .contact-switch button:focus-visible,
.contact-page .contact-form input:focus-visible,
.contact-page .contact-form textarea:focus-visible,
.contact-page .application-modal-close:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--ink) 72%, var(--lime));
  outline-offset: 3px;
}

.contact-page .contact-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(43, 45, 45, 0.07);
  border-radius: 30px;
  background: linear-gradient(180deg, #f9f9f6 0%, #f3f3f0 58%, #eeeeeb 100%);
  box-shadow: 0 26px 80px rgba(43, 45, 45, 0.06);
}

.contact-page .contact-card::before {
  z-index: 0;
}

.contact-page .contact-panel-tab {
  position: relative;
  z-index: 1;
  min-height: 620px;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}

.contact-page .contact-panel-copy {
  justify-content: flex-start;
  border-right: 1px solid rgba(43, 45, 45, 0.07);
  background: transparent;
  padding: clamp(44px, 5.5vw, 76px) clamp(22px, 4.4vw, 72px);
}

.contact-page .contact-eyebrow {
  min-height: 29px;
  border-radius: 999px;
  background: rgba(216, 249, 184, 0.7);
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
}

.contact-page .contact-panel-copy h2 {
  max-width: 520px;
  margin-top: 24px;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 1.03;
}

.contact-page .contact-panel-copy p {
  max-width: 540px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.contact-page .contact-proof-list {
  gap: 14px;
  margin-top: 42px;
}

.contact-page .contact-proof-list .workflow-step {
  background: #ededeb;
}

.contact-page .contact-form {
  justify-content: flex-start;
  gap: 24px;
  padding: clamp(44px, 5.5vw, 76px) clamp(22px, 4.4vw, 72px);
}

.contact-page .contact-form label,
.contact-page .contact-form legend {
  font-size: 14px;
  font-weight: 500;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
  border-bottom-color: rgba(43, 45, 45, 0.2);
  font-size: 15px;
}

.contact-page .contact-form fieldset label {
  background: #fff;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.contact-page .contact-form fieldset label:has(input:checked) {
  border-color: rgba(96, 148, 55, 0.28);
  background: rgba(216, 249, 184, 0.58);
  color: var(--ink);
}

.contact-page .contact-channel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: clamp(44px, 5.5vw, 76px) clamp(22px, 4.4vw, 72px);
  padding: 0;
}

.contact-page .contact-channel-card {
  min-height: auto;
  display: grid;
  grid-template-columns: 36px minmax(132px, 0.32fr) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  margin: 0 -12px;
  border: 0;
  border-top: 1px dashed color-mix(in srgb, var(--lime) 46%, rgba(43, 45, 45, 0.22));
  border-radius: 14px;
  background: transparent;
  padding: 18px 12px 24px;
  box-shadow: none;
}

.contact-page .contact-channel-card:hover {
  background: rgba(216, 249, 184, 0.16);
  transform: translateY(-1px);
}

.contact-page .contact-channel-card h3 {
  margin: 1px 0 0;
}

.contact-page .contact-channel-card p {
  margin: 0;
}

.contact-page .contact-channel-card em {
  margin-top: 2px;
  font-size: 13px;
}

.contact-page .application-preview-card {
  justify-content: flex-start;
  gap: 26px;
  padding: clamp(44px, 5.5vw, 76px) clamp(22px, 4.4vw, 72px);
}

.contact-page .application-table-preview {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(43, 45, 45, 0.09);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 245, 0.92)),
    #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 20px 54px rgba(43, 45, 45, 0.055);
}

.contact-page .application-table-toolbar {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(43, 45, 45, 0.08);
  background:
    linear-gradient(180deg, rgba(216, 249, 184, 0.52), rgba(216, 249, 184, 0.2)),
    rgba(255, 255, 255, 0.9);
  padding: 0 20px;
}

.contact-page .application-table-toolbar span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 620;
  letter-spacing: -0.02em;
}

.contact-page .application-table-toolbar i {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(43, 45, 45, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0 12px;
  color: rgba(43, 45, 45, 0.62);
  font-size: 13px;
  font-style: normal;
  font-weight: 560;
}

.contact-page .application-table-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-page .application-table-grid div {
  min-height: 84px;
  display: grid;
  align-content: center;
  gap: 9px;
  border-right: 1px solid rgba(43, 45, 45, 0.07);
  border-bottom: 1px solid rgba(43, 45, 45, 0.07);
  padding: 17px 20px;
}

.contact-page .application-table-grid div:nth-child(2n) {
  border-right: 0;
}

.contact-page .application-table-grid div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.contact-page .application-table-grid small {
  color: rgba(43, 45, 45, 0.48);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-page .application-table-grid span {
  min-width: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 560;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.contact-page .application-preview-card .button {
  margin-top: 0;
  width: fit-content;
}

.contact-page .contact-final-cta {
  margin-bottom: 8px;
}

.contact-page .contact-footer {
  margin-top: 0;
}

@media (max-width: 980px) {
  .contact-page .contact-hero {
    min-height: 0;
    padding: 148px 24px 72px;
  }

  .contact-page .contact-hero .hero-container {
    flex-direction: column;
  }

  .contact-page .contact-ops-panel {
    align-self: stretch;
    width: 100%;
  }

  .contact-page .contact-panel-tab,
  .contact-page .contact-panel-tab.is-active {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-panel-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(43, 45, 45, 0.07);
  }

  .contact-page .contact-channel-card {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .contact-page .contact-channel-card p,
  .contact-page .contact-channel-card em {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .contact-page .contact-hero {
    padding: 124px 16px 56px;
  }

  .contact-page .contact-hero h1 {
    font-size: 48px;
  }

  .contact-page .contact-ops-panel {
    border-radius: 20px;
    padding: 12px;
  }

  .contact-page .contact-ops-rows div {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 12px 4px;
  }

  .contact-page .contact-ops-rows strong {
    text-align: left;
    white-space: normal;
  }

  .contact-page .contact-ops-actions {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-hub {
    width: calc(100% - 24px);
    margin-bottom: 84px;
  }

  .contact-page .contact-switch {
    max-width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .contact-page .contact-switch button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .contact-page .contact-card {
    border-radius: 24px;
  }

  .contact-page .contact-panel-tab {
    min-height: 0;
  }

  .contact-page .contact-panel-copy,
  .contact-page .contact-form,
  .contact-page .application-preview-card {
    padding: 28px 22px;
  }

  .contact-page .contact-panel-copy h2 {
    font-size: 36px;
  }

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

  .contact-page .contact-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-page .contact-form-footer .button,
  .contact-page .application-preview-card .button {
    width: 100%;
  }

  .contact-page .application-table-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .application-table-grid div,
  .contact-page .application-table-grid div:nth-child(2n) {
    border-right: 0;
  }

  .contact-page .application-table-grid div:nth-last-child(2) {
    border-bottom: 1px solid rgba(43, 45, 45, 0.07);
  }
}

.contact-page .contact-ops-panel {
  align-self: flex-end;
  width: min(420px, 100%);
  border: 1px solid rgba(43, 45, 45, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 247, 244, 0.86)),
    #fff;
  padding: 16px;
  box-shadow: 0 24px 70px rgba(43, 45, 45, 0.08);
}

.contact-page .contact-ops-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  border-radius: 16px;
  background: var(--ink);
  padding: 0 16px;
  color: white;
}

.contact-page .contact-ops-top span,
.contact-page .contact-ops-rows span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.contact-page .contact-ops-top strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: var(--lime);
  padding: 0 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.contact-page .contact-ops-rows {
  display: grid;
  gap: 0;
  margin-top: 8px;
}

.contact-page .contact-ops-rows div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  border-bottom: 1px dashed rgba(43, 45, 45, 0.14);
  padding: 0 4px;
}

.contact-page .contact-ops-rows div:last-child {
  border-bottom: 0;
}

.contact-page .contact-ops-rows span {
  color: var(--muted);
}

.contact-page .contact-ops-rows strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: right;
  white-space: nowrap;
}

.contact-page .contact-ops-actions {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 10px;
  margin-top: 14px;
}

.contact-page .contact-ops-actions .button {
  width: 100%;
}

.contact-page .contact-switch button:focus-visible,
.contact-page .contact-form input:focus-visible,
.contact-page .contact-form textarea:focus-visible,
.contact-page .application-modal-close:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--ink) 72%, var(--lime));
  outline-offset: 3px;
}

.contact-page .contact-form fieldset label {
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.contact-page .contact-form fieldset label:has(input:checked) {
  border-color: rgba(96, 148, 55, 0.28);
  background: rgba(216, 249, 184, 0.58);
  color: var(--ink);
}

@media (max-width: 980px) {
  .contact-page .contact-ops-panel {
    align-self: stretch;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .contact-page .contact-ops-panel {
    border-radius: 20px;
    padding: 12px;
  }

  .contact-page .contact-ops-rows div {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 12px 4px;
  }

  .contact-page .contact-ops-rows strong {
    text-align: left;
    white-space: normal;
  }

  .contact-page .contact-ops-actions {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.floating-nav {
  position: fixed;
  z-index: 20;
  top: 24px;
  left: 50%;
  width: max-content;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 6px 6px 8px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  transform: translateX(-50%);
}

.floating-nav a:not(.logo) {
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0 9px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease;
}

.floating-nav a:not(.logo):hover {
  background: rgba(255, 255, 255, 0.08);
}

.floating-nav a.nav-current {
  background: rgba(255, 255, 255, 0.1);
}

.floating-nav a.nav-login {
  padding: 0 16px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
}

.floating-nav a.nav-login:hover {
  background: #cfff9b;
  color: var(--ink);
}

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

.logo,
.sidebar-logo,
.crumb-logo {
  display: grid;
  place-items: center;
  background: var(--lime);
  color: #232525;
  font-weight: 800;
  overflow: hidden;
}

.logo {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 9px;
}

.logo-glyph,
.mini-f,
.crumb-logo {
  font-size: 31px;
  line-height: 1;
  font-style: italic;
  transform: rotate(-3deg);
}

.logo-image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: contain;
}

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

.hero {
  min-height: 627px;
  padding: 220px 40px 120px;
}

.hero-container {
  width: min(1280px, 100%);
  min-height: 287px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto;
}

.hero-copy {
  width: min(891px, 100%);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.announcement {
  width: max-content;
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  line-height: 17px;
  box-shadow: 0 1px 0 rgba(43, 45, 45, 0.04);
}

h1 {
  max-width: 960px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(50px, 3.9vw, 56px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.hero-copy p {
  width: min(520px, 100%);
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.55;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
}

.stars {
  letter-spacing: 1px;
  font-size: 11px;
}

.hero-ctas {
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

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

.button-light {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.contact-panel {
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  width: max-content;
}

.contact-panel p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: right;
}

.contact-options {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.contact-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  appearance: none;
  color: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.contact-icon-link:hover {
  transform: translateY(-2px);
  opacity: 0.72;
}

.contact-icon-link svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.dashboard-stage {
  min-height: 950px;
  display: flex;
  justify-content: center;
  padding: 0 40px;
}

.dashboard-shell {
  position: relative;
  width: 1280px;
  height: 800px;
  display: flex;
  padding: 48px;
  border-radius: var(--radius-xl);
  background: var(--lime);
  overflow: hidden;
}

.dashboard-shell::after {
  position: absolute;
  inset: auto 48px 36px 48px;
  height: 72px;
  background: linear-gradient(180deg, rgba(216, 249, 184, 0), rgba(216, 249, 184, 0.96));
  pointer-events: none;
  content: "";
}

.dashboard-shell.internal-demo {
  display: block;
  height: 708px;
  padding: 44px;
}

.internal-demo-shot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: contain;
  object-position: left top;
  background: #f8f8f8;
  box-shadow: 0 20px 52px rgba(43, 45, 45, 0.08);
}

.internal-demo-cursor {
  position: absolute;
  z-index: 6;
  left: 0;
  top: 0;
  width: 14px;
  aspect-ratio: 204 / 289;
  pointer-events: none;
  transform: translate3d(96px, 110px, 0);
  animation: internal-cursor-path 11s cubic-bezier(0.2, 0.8, 0.24, 1) infinite;
}

.internal-demo-cursor img {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 3px 6px rgba(43, 45, 45, 0.18));
  animation: internal-cursor-press 11s ease infinite;
}

@keyframes internal-cursor-path {
  0% {
    transform: translate3d(96px, 110px, 0);
  }
  12% {
    transform: translate3d(96px, 110px, 0);
  }
  23% {
    transform: translate3d(300px, 116px, 0);
  }
  31% {
    transform: translate3d(300px, 116px, 0);
  }
  44% {
    transform: translate3d(632px, 240px, 0);
  }
  52% {
    transform: translate3d(632px, 240px, 0);
  }
  66% {
    transform: translate3d(748px, 374px, 0);
  }
  78% {
    transform: translate3d(748px, 374px, 0);
  }
  90% {
    transform: translate3d(96px, 110px, 0);
  }
  100% {
    transform: translate3d(96px, 110px, 0);
  }
}

@keyframes internal-cursor-press {
  21%, 42%, 64% {
    transform: scale(1);
  }
  24%, 45%, 67% {
    transform: scale(0.9);
  }
  27%, 48%, 70% {
    transform: scale(1);
  }
}

@keyframes internal-cursor-path-mobile {
  0%, 12%, 90%, 100% {
    transform: translate3d(42px, 58px, 0);
  }
  23%, 31% {
    transform: translate3d(118px, 62px, 0);
  }
  44%, 52% {
    transform: translate3d(214px, 116px, 0);
  }
  66%, 78% {
    transform: translate3d(262px, 172px, 0);
  }
}

.sidebar {
  width: 188px;
  height: 704px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 8px;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  background: rgba(247, 247, 247, 0.9);
}

.sidebar-logo {
  width: 20px;
  height: 20px;
  margin: 0 0 0 2px;
  border-radius: 4px;
  background: transparent;
}

.mini-f {
  font-size: 21px;
}

.side-group {
  display: grid;
  gap: 4px;
}

.side-item {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 11px;
  border-radius: 7px;
  color: #444;
  font-size: 14px;
  letter-spacing: -0.015em;
}

.side-item span {
  width: 14px;
  color: #333;
  text-align: center;
}

.side-item.active {
  background: rgba(217, 217, 217, 0.4);
  color: var(--ink);
}

.side-item.muted {
  color: #767676;
}

.divider {
  height: 1px;
  background: var(--line);
}

.side-bottom {
  display: grid;
  gap: 4px;
  margin-top: auto;
}

.app-window {
  width: calc(100% - 188px);
  height: 704px;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.app-topbar {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid #eeeeed;
}

.breadcrumbs,
.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #565656;
  font-size: 14px;
}

.back {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: #8b8b8b;
}

.crumb-logo {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  font-size: 20px;
}

.breadcrumbs strong {
  color: var(--ink);
  font-weight: 500;
}

.avatar {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -7px;
  background: #d9d9d9;
  color: #2b2d2d;
  font-size: 11px;
  font-weight: 500;
}

.image-a {
  background:
    radial-gradient(circle at 45% 30%, #f2c9a0 0 14%, transparent 15%),
    linear-gradient(135deg, #e8b489, #725042);
}

.image-b {
  background:
    radial-gradient(circle at 48% 28%, #f2c59e 0 15%, transparent 16%),
    linear-gradient(135deg, #9d6f57, #33221d);
}

.initials {
  background: #c2c6f2;
}

.search,
.bell,
.dots {
  width: 24px;
  text-align: center;
  color: #222;
  font-size: 24px;
}

.transactions {
  padding: 20px;
}

.transactions h2 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.02em;
}

.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.summary-card,
.card,
.bank-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.summary-card {
  min-height: 85px;
  position: relative;
  padding: 16px;
}

.summary-card > div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #383838;
  font-size: 14px;
}

.summary-card button,
.card-heading button {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #777;
  font-size: 17px;
}

.summary-card > strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.summary-card em {
  color: #555;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.currency-tag,
.calendar {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  background: #f3f3f3;
  font-size: 12px;
  font-weight: 600;
}

.currency-tag.green {
  background: var(--lime);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 222px;
  gap: 12px;
}

.overview {
  height: 224px;
  position: relative;
  padding: 16px;
}

.card-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}

.card-heading strong {
  font-weight: 500;
}

.chart {
  height: 154px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 15px;
  padding: 42px 10px 0;
}

.tooltip {
  position: absolute;
  top: 16px;
  left: 50%;
  border-radius: 7px;
  background: #303030;
  color: #fff;
  transform: translateX(-10%);
  padding: 7px 10px;
  font-size: 12px;
  white-space: nowrap;
}

.bar {
  height: 102px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.bar span {
  width: 34px;
  height: var(--h);
  min-height: 28px;
  border-radius: 7px 7px 2px 2px;
  background:
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.45) 0 4px, transparent 4px 8px),
    var(--lime);
}

.bar small {
  color: #666;
  font-size: 13px;
}

.active-bar span {
  outline: 2px solid #2b2d2d;
}

.accounts {
  display: grid;
  gap: 12px;
}

.accounts .card-heading {
  height: 26px;
  padding-left: 2px;
}

.bank-card {
  height: 120px;
  position: relative;
  padding: 16px;
  overflow: hidden;
}

.green-card {
  background: linear-gradient(180deg, var(--lime) 0 51%, #fff 51% 100%);
}

.bank-card strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
}

.bank-card span,
.bank-card small {
  color: #555;
  font-size: 12px;
}

.mastercard {
  position: absolute;
  right: 28px;
  bottom: 38px;
  display: flex;
}

.mastercard i {
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 50%;
  background: #f24c2e;
  opacity: 0.94;
}

.mastercard i + i {
  margin-left: -6px;
  background: #f3b120;
}

.bank-card small {
  position: absolute;
  right: 28px;
  bottom: 19px;
}

.tasks {
  height: 210px;
  margin-top: 12px;
  padding: 16px;
}

.tasks h3 {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 500;
}

.task-header,
.task-row {
  display: grid;
  grid-template-columns: 2.3fr 1fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: center;
  color: #666;
  font-size: 13px;
}

.task-header {
  margin-bottom: 16px;
}

.task-section,
.task-row {
  min-height: 34px;
  border-bottom: 1px solid #eee;
}

.task-section {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #4d4d4d;
  font-size: 13px;
}

.task-section span {
  padding: 2px 7px;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #777;
}

.task-row {
  color: #333;
}

.tiny-avatars i {
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -5px;
  background: linear-gradient(135deg, #e8b489, #725042);
}

.urgent {
  width: max-content;
  border-radius: 999px;
  background: #fff5f8;
  color: #c14766;
  padding: 2px 8px;
}

.cursor-note {
  position: absolute;
  z-index: 5;
  height: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 11px 4px 4px;
  border-radius: 999px;
  background: #303030;
  color: white;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  font-size: 15px;
}

.cursor-note::before {
  position: absolute;
  left: -20px;
  top: -13px;
  width: 0;
  height: 0;
  border-left: 18px solid #303030;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: rotate(-30deg);
  content: "";
}

.cursor-note span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #c2c6f2;
  color: #2b2d2d;
  font-size: 11px;
  font-weight: 600;
}

.cursor-note .face {
  background:
    radial-gradient(circle at 50% 30%, #f1bd93 0 18%, transparent 19%),
    linear-gradient(135deg, #e8b489, #725042);
}

.cursor-note strong {
  font-weight: 500;
}

.note-david {
  top: 247px;
  left: 378px;
}

.note-sam {
  right: 181px;
  top: 459px;
}

.trust-strip {
  width: min(1280px, calc(100% - 40px));
  margin: -72px auto 120px;
  text-align: center;
}

.trust-strip p {
  margin: 0 0 28px;
  color: #5f6060;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.logos {
  display: flex;
  width: 100%;
  overflow: hidden;
  gap: 0;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-marquee:hover .logo-marquee-inner {
  animation-play-state: paused;
}

.logo-marquee-inner {
  display: flex;
  width: max-content;
  animation: paymentLogoScroll 48s linear infinite;
}

.logo-track {
  flex: 0 0 max-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(42px, 6vw, 76px);
  padding-right: clamp(42px, 6vw, 76px);
}

.payment-logo {
  height: 36px;
  min-width: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.payment-logo img {
  width: auto;
  max-width: 140px;
  height: 30px;
  display: block;
  object-fit: contain;
  opacity: 0.9;
}

.payment-logo span {
  color: #2b2d2d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  opacity: 0.78;
}

.logo-visa img {
  height: 34px;
  max-width: 154px;
}

.logo-mastercard img {
  height: 28px;
  max-width: 120px;
}

.logo-mastercard span {
  font-size: 14px;
  opacity: 0.82;
}

.logo-apple img {
  height: 28px;
  max-width: 120px;
}

.logo-google img {
  height: 30px;
  max-width: 128px;
}

.logo-wechat img {
  height: 30px;
}

.logo-crypto {
  min-width: 142px;
}

.logo-crypto img {
  height: 29px;
}

@keyframes paymentLogoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.quote-section.reveal,
.workflow-section.reveal,
.dark-cta.reveal,
.site-footer.reveal {
  opacity: 1;
  transform: none;
}

.section-kicker {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 26px;
  border-radius: 999px;
  background: #fff;
  padding: 6px 10px;
  color: #444;
  font-size: 14px;
  line-height: 1;
}

.mini-badge {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 7px;
  background: var(--lime);
  font-style: italic;
  font-weight: 800;
  overflow: hidden;
}

.features-intro,
.image-features,
.benefits,
.workflow-section,
.pricing-section,
.testimonial-marquee {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

#why-tiance {
  scroll-margin-top: 56px;
}

#how-it-works {
  scroll-margin-top: 86px;
}

#pricing {
  scroll-margin-top: 132px;
}

.features-intro {
  padding: 76px 0 88px;
  text-align: center;
}

.features-intro h2,
.image-features h2,
.benefits h2,
.pricing-section h2,
.testimonial-marquee h2,
.site-footer h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(40px, 3.4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 72px;
  text-align: left;
}

.feature-panel {
  display: flex;
  flex-direction: column;
  min-height: 545px;
  padding: 58px 40px 40px;
  border-radius: 24px;
  background: #e9e8e6;
}

.feature-panel h3 {
  min-height: 109px;
  margin: 0 0 20px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.feature-panel p {
  min-height: 54px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.feature-illustration {
  width: calc(100% + 18px);
  height: 226px;
  display: grid;
  place-items: center;
  justify-content: center;
  margin: auto -9px 0;
  border: 1px dashed rgba(43, 45, 45, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.12)),
    rgba(43, 45, 45, 0.035);
}

.feature-illustration-photo {
  display: block;
  overflow: hidden;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
}

.feature-illustration-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.feature-panel:nth-child(1) .feature-illustration-photo img {
  object-position: center 28%;
}

.feature-panel:nth-child(2) .feature-illustration-photo img {
  object-position: center top;
}

.feature-panel:nth-child(3) .feature-illustration-photo img {
  object-position: center 26%;
}

.feature-illustration span {
  color: rgba(43, 45, 45, 0.44);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.currency-search {
  height: 48px;
  display: none;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: #fff;
  padding: 0 18px;
  color: #9a9a9a;
}

.currency-list,
.workspace-card,
.qr-card {
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.currency-list div,
.workspace-card div {
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #ecebe9;
  font-size: 15px;
}

.currency-list em,
.workspace-card em {
  border-radius: 6px;
  background: #f7f7f6;
  padding: 4px 7px;
  color: #777;
  font-size: 12px;
  font-style: normal;
}

.qr-card {
  padding: 16px;
}

.qr-card strong {
  display: block;
  margin-bottom: 14px;
  font-weight: 500;
}

.qr-grid {
  width: 100%;
  aspect-ratio: 1.35;
  border-radius: 12px;
  background:
    linear-gradient(90deg, #111 10px, transparent 10px 22px, #111 22px 34px, transparent 34px),
    linear-gradient(#111 10px, transparent 10px 22px, #111 22px 34px, transparent 34px),
    #f4f4f4;
  background-size: 44px 44px;
  image-rendering: pixelated;
}

.qr-card button {
  width: 100%;
  height: 40px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.pill-button {
  height: 40px;
  margin: 2px 0 12px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0 18px;
}

.workspace-card {
  padding: 12px 0;
}

.workspace-card small {
  display: block;
  padding: 0 16px 12px;
  color: #777;
}

.square-logo {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
  border-radius: 8px;
  background: var(--lime);
  font-style: italic;
  font-weight: 800;
  overflow: hidden;
}

.square-logo.dark {
  background: #2b2d2d;
  color: #fff;
}

.square-logo.green {
  background: #c8f7a9;
}

.dashboard-repeat {
  width: min(1280px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 46px;
  align-items: center;
  margin: 0 auto 120px;
}

.repeat-copy h3 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.repeat-copy p {
  color: var(--muted);
  line-height: 1.5;
}

.dashboard-screenshot {
  height: 510px;
  border-radius: 24px;
  background: #f7f7f4;
  box-shadow: 0 24px 70px rgba(30, 35, 35, 0.08);
  overflow: hidden;
}

.dashboard-screenshot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left top;
}

.capabilities-showcase {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto 120px;
}

.capabilities-showcase-inner {
  position: relative;
  border: 1px solid rgba(43, 45, 45, 0.07);
  border-radius: 30px;
  background: linear-gradient(180deg, #f9f9f6 0%, #f3f3f0 58%, #eeeeeb 100%);
  padding: clamp(44px, 5.5vw, 76px) clamp(22px, 4.4vw, 72px) clamp(34px, 4vw, 56px);
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(43, 45, 45, 0.06);
}

.capabilities-showcase-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(43, 45, 45, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 45, 45, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.34;
}

.capabilities-showcase-header {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.capabilities-showcase-header h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 1.03;
}

.capabilities-showcase-header p {
  max-width: 610px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.capability-product-proof {
  position: relative;
  z-index: 1;
  width: min(860px, 82%);
  margin: clamp(38px, 5vw, 64px) auto 0;
}

.capability-product-proof::before {
  display: none;
}

.capability-product-proof::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -1px;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(243, 243, 240, 0), rgba(243, 243, 240, 0.94) 76%, #f3f3f0 100%);
}

.dashboard-proof-frame {
  position: relative;
  border: 1px solid rgba(43, 45, 45, 0.075);
  border-radius: 20px;
  background: #fffefa;
  padding: 10px;
  box-shadow: 0 22px 60px rgba(43, 45, 45, 0.09);
  overflow: hidden;
}

.dashboard-proof-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 13px;
  object-fit: cover;
  object-position: left top;
  filter: saturate(0.9) contrast(0.96) brightness(1.02);
  opacity: 0.86;
}

.capability-feature-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 38px;
  margin-top: clamp(34px, 4.5vw, 54px);
}

.capability-feature-list article {
  display: grid;
  grid-template-columns: 36px minmax(132px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin: 0 -12px;
  border-top: 1px dashed color-mix(in srgb, var(--lime) 46%, rgba(43, 45, 45, 0.22));
  border-radius: 14px;
  padding: 18px 12px 24px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.capability-feature-list article:hover {
  border-color: color-mix(in srgb, var(--lime) 68%, rgba(43, 45, 45, 0.14));
  background: rgba(216, 249, 184, 0.16);
  transform: translateY(-1px);
}

.capability-feature-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--lime) 58%, rgba(43, 45, 45, 0.16));
  border-radius: 7px;
  background: color-mix(in srgb, var(--lime) 42%, rgba(255, 255, 255, 0.88));
  color: color-mix(in srgb, var(--ink) 72%, #2f8b54);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(83, 185, 106, 0.1);
}

.capability-feature-list h3 {
  margin: 1px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.capability-feature-list p {
  margin: 0;
  color: color-mix(in srgb, var(--ink) 66%, transparent);
  font-size: 15px;
  line-height: 1.48;
}

.image-features {
  padding: 70px 0 150px;
  text-align: center;
}

.image-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 82px;
  text-align: left;
}

.spend-card {
  position: relative;
  transition: transform 280ms ease;
}

.spend-card:hover {
  transform: translateY(-10px);
}

.spend-card img {
  width: 100%;
  aspect-ratio: 0.94;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.spend-overlay {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 78%;
  color: white;
  text-align: center;
  transform: translate(-50%, -50%);
}

.spend-overlay span {
  display: inline-block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  padding: 8px 14px;
}

.spend-overlay strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.spend-card h3 {
  margin: 26px 0 10px;
  font-size: 20px;
  font-weight: 500;
}

.spend-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.benefits {
  padding: 70px 0 120px;
  text-align: center;
}

.benefit-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  margin-top: 80px;
  text-align: left;
}

.benefit-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 280px 64px;
}

.benefit-copy article {
  position: relative;
}

.line-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--lime);
}

.benefit-copy h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 500;
}

.benefit-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.phone-stack {
  position: relative;
  min-height: 700px;
}

.phone-card {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.68), rgba(255,255,255,.1)),
    radial-gradient(circle at 50% 18%, var(--lime), transparent 23%),
    #eeeeec;
  box-shadow: 0 24px 80px rgba(43,45,45,.08);
}

.phone-card.tall {
  width: 260px;
  height: 560px;
  right: 230px;
  top: 20px;
  transform: rotate(-8deg);
}

.phone-card.middle {
  width: 250px;
  height: 520px;
  right: 100px;
  top: 96px;
  transform: rotate(7deg);
}

.phone-card.small {
  width: 210px;
  height: 430px;
  right: 0;
  top: 210px;
  transform: rotate(16deg);
}

.quote-section {
  width: min(1280px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 64px;
  align-items: center;
  margin: 0 auto;
  padding: 80px 0 120px;
}

.quote-section img {
  width: 100%;
  height: 430px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 48px rgba(43, 45, 45, 0.08);
}

.quote-section h2 {
  max-width: 850px;
  margin: 0 0 28px;
  font-size: clamp(30px, 2.5vw, 36px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.quote-section p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.quote-section span {
  color: var(--muted);
}

.workflow-section {
  padding: 40px 0 120px;
}

.workflow-header {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.workflow-header .section-kicker {
  margin: 0 auto 24px;
}

.workflow-header h2 {
  margin: 0 0 20px;
  font-size: clamp(40px, 3.4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.workflow-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.workflow-board {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.workflow-board-human {
  grid-template-columns: 1fr;
  gap: 0;
}

.workflow-steps {
  display: grid;
  gap: 12px;
}

.workflow-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(43, 45, 45, 0.08);
  border-radius: 18px;
  background: #ededeb;
  padding: 22px;
}

.human-flow {
  align-content: start;
  gap: 16px;
}

.apply-step {
  grid-template-columns: auto 1fr;
  min-height: 184px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(216, 249, 184, 0.34), rgba(255, 255, 255, 0.58)),
    #ededeb;
  padding: 28px;
}

.apply-step-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.apply-step-cta {
  flex: 0 0 auto;
}

.workflow-step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.workflow-step.active span {
  background: var(--lime);
}

.workflow-step.active .step-badge {
  background: #fff;
}

.workflow-step .step-badge {
  width: auto;
  min-width: 0;
  height: auto;
  padding: 8px 11px;
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.workflow-step h3,
.stage-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.workflow-step p,
.stage-card p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.stage-connector {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: center;
  margin: 2px 0;
}

.stage-connector > .connector-line {
  justify-self: center;
  width: 2px;
  height: 88px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(216, 249, 184, 0.95), rgba(13, 17, 23, 0.12));
}

.support-callout {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(13, 17, 23, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(216, 249, 184, 0.34), rgba(255, 255, 255, 0.82)),
    #f7f8f5;
  padding: 16px 18px 16px 22px;
}

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

.support-copy strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.support-copy em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.35;
}

.support-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.support-actions a {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(13, 17, 23, 0.08);
  border-radius: 12px;
  background: #fff;
  padding: 0 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 1px 0 rgba(43, 45, 45, 0.05);
  transition: transform 180ms ease, background 180ms ease;
}

.support-actions a:hover {
  background: #f8faf7;
  transform: translateY(-1px);
}

.support-actions svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.stage-lanes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stage-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(43, 45, 45, 0.08);
  border-radius: 18px;
  background: #ededeb;
  padding: 24px;
}

.stage-card small {
  width: max-content;
  margin-bottom: 72px;
  border-radius: 999px;
  background: #fff;
  padding: 8px 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stage-card:nth-child(2) {
  background: rgba(216, 249, 184, 0.46);
}

.workflow-board-human {
  display: block;
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: stretch;
  border: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff 0%, #f7f7f4 56%, #efefec 100%);
  padding: clamp(16px, 2.8vw, 28px);
  box-shadow: 0 26px 70px rgba(43, 45, 45, 0.06);
  overflow: hidden;
}

.workflow-list-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.workflow-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 88px;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 16px 18px;
}

.workflow-list li.is-active {
  border-color: rgba(43, 45, 45, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 34px rgba(43, 45, 45, 0.05);
}

.workflow-index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(216, 249, 184, 0.7);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.workflow-list li:not(.is-active) .workflow-index {
  border: 1px solid rgba(174, 236, 113, 0.38);
  background: rgba(216, 249, 184, 0.34);
  color: color-mix(in srgb, var(--ink) 72%, transparent);
  box-shadow: none;
}

.workflow-step-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.workflow-step-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.workflow-step-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.workflow-step-time {
  width: max-content;
  margin-top: 4px;
  border: 1px solid rgba(43, 45, 45, 0.08);
  border-radius: 999px;
  background: #fff;
  padding: 5px 9px;
  color: color-mix(in srgb, var(--ink) 72%, transparent);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.workflow-step-action {
  min-height: 42px;
  padding: 0 18px;
  white-space: nowrap;
}

.workflow-support-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(43, 45, 45, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(216, 249, 184, 0.38), rgba(255, 255, 255, 0.74)),
    #f8faf7;
  padding: 16px 16px 16px 20px;
}

.workflow-support-note > div:first-child {
  display: grid;
  gap: 5px;
}

.workflow-support-note strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.workflow-support-note span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.workflow-support-note .support-actions span {
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
}

.workflow-review-visual {
  position: relative;
  display: block;
  justify-self: stretch;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  min-height: 0;
  margin: 0;
  border: 0;
  border-radius: 26px;
  aspect-ratio: auto;
  background: #edf4e8;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(43, 45, 45, 0.08);
}

.workflow-review-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
  object-position: 50% 44%;
  filter: saturate(1.03) contrast(1.02);
}

.collab-panel {
  position: relative;
  min-height: 610px;
  margin: 0;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(13, 17, 23, 0), rgba(13, 17, 23, 0.58)),
    linear-gradient(135deg, #dfe7df, #f7f8f5 46%, #cfe9b9);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(43, 45, 45, 0.08);
}

.collab-photo-placeholder {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.person {
  position: absolute;
  bottom: 72px;
  width: 230px;
  height: 390px;
  border-radius: 110px 110px 42px 42px;
  background:
    radial-gradient(circle at 50% 18%, #e8bc95 0 13%, transparent 14%),
    linear-gradient(180deg, #263f36 0 42%, #1e2b2d 42% 100%);
  filter: drop-shadow(0 18px 32px rgba(43, 45, 45, 0.14));
}

.person-left {
  left: 13%;
  transform: rotate(-5deg);
}

.person-right {
  left: 34%;
  bottom: 88px;
  background:
    radial-gradient(circle at 50% 18%, #e9c09c 0 13%, transparent 14%),
    linear-gradient(180deg, #172a37 0 42%, #111c23 42% 100%);
  transform: rotate(4deg);
}

.laptop-scene {
  position: absolute;
  right: 10%;
  bottom: 78px;
  width: 44%;
  min-width: 260px;
  height: 250px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 54px rgba(43, 45, 45, 0.16);
  transform: perspective(900px) rotateY(-10deg) rotateX(2deg);
}

.laptop-scene::before {
  position: absolute;
  inset: 22px 22px auto;
  height: 42px;
  border-radius: 14px;
  background: var(--ink);
  content: "";
}

.screen-lines {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  display: grid;
  gap: 14px;
}

.screen-lines i {
  height: 26px;
  border-radius: 999px;
  background: #eef0ec;
}

.screen-lines i:nth-child(2),
.screen-lines i:nth-child(4) {
  width: 74%;
  background: var(--lime);
}

.collab-panel figcaption {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 30px;
  display: grid;
  gap: 10px;
  color: #fff;
}

.collab-panel figcaption span {
  width: max-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.collab-panel figcaption strong {
  max-width: 560px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.workflow-operations {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background:
    radial-gradient(circle at 74% 12%, rgba(216, 249, 184, 0.62), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 237, 235, 0.96));
  padding: 28px;
  box-shadow: 0 24px 70px rgba(43, 45, 45, 0.08);
  overflow: hidden;
}

.ops-topbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
  padding: 18px 20px;
}

.ops-topbar small,
.ops-card small {
  display: block;
  margin-bottom: 7px;
  color: inherit;
  opacity: 0.66;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ops-topbar strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.ops-topbar span {
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
}

.ops-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.ops-card {
  border: 1px solid rgba(43, 45, 45, 0.07);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  padding: 24px;
}

.ops-card h3 {
  max-width: 360px;
  margin: 0 0 26px;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.12;
}

.merchant-profile {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.ops-checklist {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.ops-checklist span,
.setup-modules span,
.support-row {
  border-radius: 999px;
  background: #f5f5f3;
  color: #4b4d4d;
  padding: 12px 14px;
  font-size: 14px;
}

.ops-checklist span::before {
  color: var(--ink);
  content: "✓ ";
}

.setup-modules {
  display: grid;
  gap: 10px;
}

.setup-modules span:nth-child(2),
.setup-modules span:nth-child(3) {
  background: var(--lime);
  color: var(--ink);
}

.support-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.support-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 14px;
}

.support-row b {
  color: var(--ink);
  font-weight: 500;
}

.support-row span {
  color: var(--muted);
  font-size: 13px;
}

.pricing-section {
  padding: 64px 0 128px;
  text-align: center;
}

.pricing-section h2 {
  margin-bottom: 24px;
}

.pricing-section p {
  max-width: 760px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.contact-page {
  background:
    radial-gradient(circle at 18% 16%, rgba(216, 249, 184, 0.34), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.88), transparent 30%),
    var(--page);
}

.contact-hero {
  width: min(1080px, calc(100% - 48px));
  display: grid;
  justify-items: center;
  gap: 20px;
  margin: 0 auto;
  padding: 178px 0 52px;
  text-align: center;
}

.contact-hero h1 {
  max-width: 840px;
  font-size: clamp(58px, 7vw, 104px);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.contact-hero p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.55;
}

.contact-hub {
  width: min(1120px, calc(100% - 48px));
  display: grid;
  justify-items: center;
  gap: 28px;
  margin: 0 auto 96px;
}

.contact-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(43, 45, 45, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(43, 45, 45, 0.06);
  backdrop-filter: blur(16px);
}

.contact-switch button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  color: rgba(43, 45, 45, 0.64);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.contact-switch button:hover {
  color: var(--ink);
}

.contact-switch button.is-active {
  background: var(--lime);
  color: var(--ink);
}

.contact-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(43, 45, 45, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 247, 0.92)),
    #fffefa;
  box-shadow: 0 32px 80px rgba(43, 45, 45, 0.08);
}

.contact-panel-tab {
  min-height: 580px;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.contact-panel-tab.is-active {
  display: grid;
}

.contact-panel-tab[hidden] {
  display: none;
}

.contact-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  border-right: 1px solid rgba(43, 45, 45, 0.08);
  background:
    linear-gradient(145deg, rgba(216, 249, 184, 0.42), rgba(255, 255, 255, 0) 52%),
    rgba(247, 247, 244, 0.62);
}

.contact-eyebrow {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(216, 249, 184, 0.76);
  padding: 0 11px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.contact-panel-copy h2 {
  max-width: 430px;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 3.3vw, 52px);
  font-weight: 500;
  letter-spacing: -0.064em;
  line-height: 0.98;
}

.contact-panel-copy p {
  max-width: 430px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1.58;
}

.contact-proof-list {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact-proof-list span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(43, 45, 45, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  padding: 0 14px 0 36px;
  color: rgba(43, 45, 45, 0.74);
  font-size: 14px;
  font-weight: 550;
  letter-spacing: -0.015em;
}

.contact-proof-list span::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(216, 249, 184, 0.34);
}

.contact-proof-list-inline {
  display: flex;
  flex-wrap: wrap;
}

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 44px;
}

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

.contact-form label {
  display: grid;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 560;
  letter-spacing: -0.015em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(43, 45, 45, 0.18);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 10px 0 12px;
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  outline: none;
  transition: border-color 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: color-mix(in srgb, var(--ink) 48%, var(--lime));
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(43, 45, 45, 0.32);
}

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

.contact-form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  border: 0;
  padding: 0;
}

.contact-form legend {
  width: 100%;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 560;
}

.contact-form fieldset label {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(43, 45, 45, 0.1);
  border-radius: 999px;
  background: rgba(247, 247, 244, 0.72);
  padding: 0 14px;
  color: rgba(43, 45, 45, 0.66);
  font-size: 14px;
  font-weight: 560;
}

.contact-form input[type="radio"] {
  width: 14px;
  height: 14px;
  accent-color: #9fdb69;
}

.contact-form-footer {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 44px;
  align-content: center;
}

.contact-channel-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(43, 45, 45, 0.08);
  border-radius: 24px;
  background: rgba(247, 247, 244, 0.72);
  padding: 24px;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.contact-channel-card:hover {
  border-color: rgba(96, 148, 55, 0.26);
  background: rgba(216, 249, 184, 0.18);
  transform: translateY(-3px);
}

.contact-channel-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--lime);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.contact-channel-card strong,
.application-preview-card h3 {
  margin-top: 28px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.contact-channel-card p,
.application-preview-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.contact-channel-card em {
  margin-top: auto;
  color: var(--ink);
  font-size: 14px;
  font-style: normal;
  font-weight: 650;
}

.application-preview-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
}

.mini-application-window {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(43, 45, 45, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(216, 249, 184, 0.92), rgba(216, 249, 184, 0.24) 42%, #fff 42%),
    #fff;
}

.mini-application-window div {
  position: absolute;
  inset: 22px 22px auto;
  height: 82px;
  border-radius: 18px;
  background: rgba(43, 45, 45, 0.88);
}

.mini-application-window span {
  position: absolute;
  left: 24px;
  right: 24px;
  height: 18px;
  border-radius: 999px;
  background: rgba(43, 45, 45, 0.1);
}

.mini-application-window span:nth-child(2) {
  top: 132px;
}

.mini-application-window span:nth-child(3) {
  top: 170px;
  right: 35%;
}

.mini-application-window span:nth-child(4) {
  top: 208px;
  right: 18%;
  background: var(--lime);
}

.application-preview-card .button {
  width: max-content;
  margin-top: 28px;
}

.application-modal {
  width: min(920px, calc(100% - 32px));
  max-height: min(760px, calc(100vh - 40px));
  border: 0;
  border-radius: 28px;
  padding: 0;
  background: transparent;
  color: var(--ink);
}

.application-modal::backdrop {
  background: rgba(43, 45, 45, 0.45);
  backdrop-filter: blur(8px);
}

.application-modal-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(43, 45, 45, 0.08);
  border-radius: 28px;
  background: var(--page);
  box-shadow: 0 40px 120px rgba(43, 45, 45, 0.24);
}

.application-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.application-modal-header {
  padding: 32px 34px 24px;
  border-bottom: 1px solid rgba(43, 45, 45, 0.08);
  background: #fffefa;
}

.application-modal-header h2 {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.application-modal-header p,
.application-modal-body p {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.application-modal-body {
  min-height: 360px;
  padding: 34px;
  background: var(--page);
}

.application-modal-body iframe {
  width: 100%;
  height: min(560px, 68vh);
  border: 0;
  border-radius: 18px;
  background: #fff;
}

.application-modal-body code {
  border-radius: 6px;
  background: #fff;
  padding: 3px 6px;
  color: var(--ink);
}

.application-modal-body .button {
  margin-top: 24px;
}

.contact-final-cta {
  margin-bottom: 8px;
}

.contact-footer {
  margin-top: 0;
}

@media (max-width: 980px) {
  .contact-hero {
    padding-top: 148px;
  }

  .contact-switch {
    width: min(100%, 640px);
    overflow-x: auto;
    justify-content: flex-start;
  }

  .contact-switch button {
    flex: 0 0 auto;
  }

  .contact-panel-tab,
  .contact-panel-tab.is-active {
    grid-template-columns: 1fr;
  }

  .contact-panel-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(43, 45, 45, 0.08);
  }

  .contact-channel-grid {
    grid-template-columns: 1fr;
  }

  .contact-channel-card {
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .contact-hero {
    width: min(100% - 32px, 1080px);
    padding: 124px 0 38px;
  }

  .contact-hero h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

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

  .contact-hub {
    width: min(100% - 24px, 1120px);
    margin-bottom: 64px;
  }

  .contact-switch {
    padding: 4px;
  }

  .contact-switch button {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .contact-card {
    border-radius: 22px;
  }

  .contact-panel-tab {
    min-height: 0;
  }

  .contact-panel-copy,
  .contact-form,
  .contact-channel-grid,
  .application-preview-card {
    padding: 24px;
  }

  .contact-panel-copy h2 {
    font-size: clamp(32px, 11vw, 44px);
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form fieldset {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form-footer .button,
  .application-preview-card .button {
    width: 100%;
  }

  .mini-application-window {
    min-height: 210px;
  }

  .application-modal {
    width: calc(100% - 18px);
  }

  .application-modal-header,
  .application-modal-body {
    padding: 24px;
  }
}

.contact-shell {
  width: min(1120px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  margin: 0 auto 24px;
}

.contact-primary-card,
.contact-side-grid article,
.contact-help-grid article {
  border: 1px solid rgba(43, 45, 45, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 247, 0.92)),
    #fffefa;
  box-shadow: 0 18px 48px rgba(43, 45, 45, 0.055);
}

.contact-primary-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  border-radius: 28px;
}

.contact-eyebrow {
  width: max-content;
  display: inline-flex;
  margin-bottom: auto;
  border-radius: 999px;
  background: rgba(216, 249, 184, 0.62);
  padding: 7px 11px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.contact-primary-card h2,
.contact-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.contact-primary-card p {
  max-width: 600px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.contact-side-grid article {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 22px;
}

.contact-side-grid span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.contact-side-grid h3,
.contact-help-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.contact-side-grid p,
.contact-help-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.contact-help-grid {
  width: min(1120px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto 120px;
}

.contact-help-grid article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 22px;
}

.contact-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(96, 148, 55, 0.22);
  border-radius: 10px;
  background: rgba(216, 249, 184, 0.7);
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.contact-cta {
  width: min(1120px, calc(100% - 48px));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto 120px;
  padding: 44px;
  border-radius: 28px;
  background: var(--ink);
  color: white;
}

.contact-cta .section-kicker {
  color: #d4d4d4;
  background: rgba(255, 255, 255, 0.08);
}

.contact-cta h2 {
  max-width: 760px;
  margin-top: 16px;
  color: white;
  font-size: clamp(34px, 4vw, 54px);
}

.contact-footer {
  margin-top: 0;
}

.contact-clone-page {
  min-height: 100vh;
  background: var(--page);
}

.clone-contact-hero {
  min-height: 782px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 190px 24px 96px;
  text-align: center;
}

.clone-contact-photo {
  width: 250px;
  height: 212px;
  margin: 0 0 54px;
  overflow: hidden;
  border-radius: 58% 18px 58% 18px;
}

.clone-contact-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center top;
}

.clone-contact-hero h1 {
  max-width: 540px;
  margin: 0 0 34px;
  color: var(--ink);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.clone-email-button,
.clone-footer-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.015em;
  box-shadow: 0 10px 24px rgba(43, 45, 45, 0.08);
  transition: transform 200ms ease, background 200ms ease;
}

.clone-email-button:hover,
.clone-footer-button:hover {
  background: #202222;
  transform: translateY(-2px);
}

.clone-email-button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.clone-availability {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 46px;
}

.clone-avatar-stack,
.clone-footer-avatars {
  display: flex;
  align-items: center;
}

.clone-avatar-stack img,
.clone-footer-avatars img {
  width: 48px;
  height: 48px;
  display: block;
  border: 3px solid #ffd8d9;
  border-radius: 50%;
  object-fit: cover;
  background: #ffd8d9;
}

.clone-avatar-stack img + img,
.clone-footer-avatars img + img {
  margin-left: -14px;
}

.clone-availability div:last-child {
  display: grid;
  gap: 3px;
  text-align: left;
}

.clone-availability strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.clone-availability span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.2;
}

.clone-contact-footer {
  width: calc(100% - 16px);
  min-height: 850px;
  margin: 0 auto 8px;
  border-radius: 24px;
  background: var(--line);
  color: var(--ink);
}

.clone-footer-inner {
  width: min(1280px, 100%);
  min-height: inherit;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 60px 40px 30px;
}

.clone-footer-cta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 136px;
}

.clone-footer-cta h2 {
  max-width: 520px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 4.2vw, 64px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.clone-footer-button {
  margin-top: 10px;
}

.clone-footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 68px;
  padding-bottom: 116px;
}

.clone-footer-links div {
  display: grid;
  gap: 16px;
  align-content: start;
}

.clone-footer-links strong {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.clone-footer-links a {
  color: rgba(43, 45, 45, 0.58);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.clone-footer-links em {
  display: inline-flex;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--lime);
  padding: 3px 7px;
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
  line-height: 1;
}

.clone-footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-bottom: 70px;
}

.clone-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.clone-wordmark .logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.clone-wordmark strong {
  color: var(--ink);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.clone-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.clone-footer-bottom p {
  margin: 0;
  color: rgba(43, 45, 45, 0.56);
  font-size: 14px;
  line-height: 1.4;
}

.clone-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.clone-socials a {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.capabilities-layout {
  display: block;
}

.capabilities-copy {
  grid-template-columns: repeat(4, 1fr);
  gap: 64px 34px;
}

.capabilities-section .phone-stack {
  display: none;
}

.dark-cta {
  width: min(1280px, calc(100% - 40px));
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 160px;
  border-radius: 0 0 24px 24px;
  background: var(--ink);
  color: white;
  text-align: center;
}

.dark-cta .section-kicker {
  color: #d4d4d4;
  background: transparent;
}

.cta-logo {
  width: 36px;
  height: 36px;
  aspect-ratio: 1;
  margin-bottom: 8px;
}

.dark-cta h2 {
  max-width: 1120px;
  margin: 0 0 36px;
  font-size: clamp(40px, 3.3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.dark-cta h2 span {
  display: block;
}

.dark-cta h2 span + span {
  margin-top: 10px;
}

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

.dark-cta-actions {
  align-self: center;
  justify-content: center;
  flex-wrap: wrap;
}

.dark-cta-actions .button-light {
  border-color: transparent;
}

.legal-page {
  width: min(760px, calc(100% - 40px));
  margin: 140px auto 120px;
}

.legal-page h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}

.legal-page .legal-updated {
  color: #6f6f6f;
  font-size: 13px;
  margin: 0 0 40px;
}

.legal-page h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 36px 0 12px;
}

.legal-page p,
.legal-page li {
  font-size: 15px;
  line-height: 1.65;
  color: #333;
}

.legal-page ul {
  padding-left: 20px;
  margin: 12px 0;
}

.testimonial-marquee {
  padding: 0 0 120px;
  text-align: center;
  overflow: hidden;
}

.centered {
  justify-content: center;
  margin-bottom: 28px;
}

.testimonial-track {
  display: flex;
  gap: 16px;
  margin-top: 82px;
  animation: slideTrack 72s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-track article {
  width: 360px;
  min-width: 360px;
  height: 286px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(43, 45, 45, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 250, 247, 0.96)),
    #fffefa;
  padding: 24px;
  color: var(--ink);
  text-align: left;
  line-height: 1.45;
  box-shadow: 0 14px 38px rgba(43, 45, 45, 0.055);
}

.review-stars {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.testimonial-track article p {
  margin: 0;
  color: color-mix(in srgb, var(--ink) 82%, transparent);
  font-size: 15px;
  line-height: 1.52;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.review-person {
  min-height: 58px;
  display: grid;
  grid-template-columns: 42px minmax(96px, 118px) 74px auto;
  justify-content: start;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid rgba(43, 45, 45, 0.12);
  padding-top: 16px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.review-person span {
  display: grid;
  gap: 1px;
  min-width: 0;
  margin: 0;
  color: var(--ink);
}

.review-person strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.15;
}

.review-person em,
.review-person small {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.2;
}

.review-person small {
  border-left: 1px solid rgba(43, 45, 45, 0.12);
  padding-left: 8px;
  max-width: none;
  white-space: normal;
}

.review-person b {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  background: rgba(216, 249, 184, 0.56);
  padding: 6px 9px;
  color: color-mix(in srgb, var(--ink) 86%, #2f8b54);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.review-person b::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #53b96a;
  box-shadow: 0 0 0 2px rgba(83, 185, 106, 0.14);
}

.image-testimonial {
  position: relative;
  padding: 0 !important;
  overflow: hidden;
}

.image-testimonial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(1px) brightness(.82);
}

.image-testimonial strong {
  position: absolute;
  top: 22px;
  right: 22px;
  color: white;
  font-size: 24px;
  font-family: Georgia, serif;
  font-weight: 400;
}

@keyframes slideTrack {
  from { transform: translateX(0); }
  to { transform: translateX(-1630px); }
}

.site-footer {
  width: calc(100% - 16px);
  min-height: 800px;
  margin: 0 auto 8px;
  border-radius: 24px;
  background: var(--line);
  padding: 64px 40px 32px;
}

.footer-top,
.footer-links,
.footer-bottom {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 170px;
}

.footer-top h2 {
  margin: 0;
  font-size: clamp(44px, 4vw, 60px);
  font-weight: 600;
  letter-spacing: -0.06em;
  color: #000;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 210px;
}

.footer-links div {
  display: grid;
  gap: 14px;
}

.footer-links strong {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-links a,
.footer-links span {
  color: #666;
  font-size: 14px;
}

.footer-links em {
  border-radius: 999px;
  background: var(--lime);
  padding: 2px 7px;
  color: var(--ink);
  font-style: normal;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666;
  font-size: 14px;
}

.footer-disclosure {
  margin-top: 24px;
  font-size: 12px;
  color: #999;
  line-height: 1.6;
}

.footer-logo {
  width: 120px;
  height: 120px;
  border-radius: 30px;
  overflow: hidden;
}

.floating-nav.is-scrolled {
  box-shadow: 0 18px 50px rgba(43,45,45,.18);
}

.button,
.pill-button,
.qr-card button,
.summary-card,
.workflow-ui,
.footer-links a {
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.button:hover,
.pill-button:hover,
.qr-card button:hover {
  transform: translateY(-2px);
}

.summary-card:hover,
.workflow-ui:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(43,45,45,.07);
}

.dashboard-shell,
.phone-card.tall,
.phone-card.middle,
.phone-card.small {
  animation: gentleFloat 7s ease-in-out infinite;
}

.phone-card.middle {
  animation-delay: -1.5s;
}

.phone-card.small {
  animation-delay: -3s;
}

@keyframes gentleFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@media (max-width: 1180px) {
  .features-intro,
  .image-features,
  .benefits,
  .workflow-section,
  .pricing-section,
  .testimonial-marquee {
    width: min(100% - 40px, 860px);
  }

  .feature-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 56px;
  }

  .feature-panel {
    min-height: 0;
    padding: clamp(30px, 4vw, 44px);
  }

  .feature-panel h3,
  .feature-panel p {
    min-height: 0;
  }

  .feature-panel h3 {
    max-width: 680px;
    font-size: clamp(25px, 3.2vw, 32px);
    line-height: 1.18;
  }

  .feature-panel p {
    max-width: 760px;
    margin-bottom: clamp(28px, 4vw, 40px);
  }

  .feature-illustration {
    width: 100%;
    height: clamp(260px, 42vw, 360px);
    margin: 0;
  }

  .feature-panel:nth-child(1) .feature-illustration-photo img {
    object-position: center 28%;
  }

  .feature-panel:nth-child(2) .feature-illustration-photo img {
    object-position: center top;
  }

  .feature-panel:nth-child(3) .feature-illustration-photo img {
    object-position: center 26%;
  }

  .dashboard-stage {
    min-height: auto;
    padding: 0 28px 76px;
  }

  .dashboard-shell.internal-demo {
    width: min(100%, 1040px);
    height: auto;
    padding: 36px;
  }

  .dashboard-shell.internal-demo::after {
    inset: auto 36px 30px 36px;
    height: 64px;
  }
}

@media (max-width: 980px) {
  .floating-nav {
    width: calc(100% - 32px);
    justify-content: center;
  }

  .floating-nav a:not(.logo) {
    font-size: 13px;
    padding: 0 6px;
  }

  .hero {
    min-height: auto;
    padding: 120px 20px 56px;
  }

  .hero-container {
    display: grid;
  }

  .hero-ctas {
    align-self: start;
  }

  .dashboard-stage {
    min-height: auto;
    padding: 0 20px 72px;
    overflow: hidden;
  }

  .stage-card {
    min-height: auto;
  }

  .collab-panel {
    min-height: 520px;
  }

  .person {
    width: 160px;
    height: 290px;
  }

  .person-right {
    left: 38%;
  }

  .laptop-scene {
    min-width: 200px;
    width: 48%;
  }

  .dashboard-shell {
    width: 1120px;
    transform: scale(0.72);
    transform-origin: top left;
  }

  .dashboard-shell.internal-demo {
    width: min(100%, 960px);
    transform: none;
  }

  .trust-strip {
    margin: 0 auto 96px;
  }

  .dashboard-shell.internal-demo {
    height: auto;
    padding: 24px;
  }

  .internal-demo-shot {
    width: min(100%, 920px);
    margin: 0 auto;
    border-radius: 18px;
  }

  .internal-demo-cursor {
    display: block;
    width: 13px;
  }

  .dashboard-shell::after {
    display: none;
  }

  .feature-cards,
  .image-card-grid,
  .benefit-layout,
  .capabilities-copy,
  .capability-feature-list,
  .workflow-row,
  .footer-top,
  .footer-links,
  .quote-section,
  .dashboard-repeat {
    grid-template-columns: 1fr;
  }

  .benefit-copy,
  .capabilities-copy {
    gap: 40px;
  }

  .capabilities-showcase-inner {
    padding-inline: 28px;
  }

  .capability-product-proof {
    width: min(900px, 92%);
  }

  .capability-feature-list article {
    grid-template-columns: 36px minmax(150px, 0.36fr) minmax(0, 1fr);
  }

  .phone-stack {
    display: none;
  }

  .footer-top {
    display: grid;
    gap: 32px;
  }

  .quote-section img {
    width: 100%;
    height: clamp(260px, 42vw, 360px);
    justify-self: stretch;
    border-radius: 18px;
    object-position: center 42%;
  }

  .feature-panel h3 {
    min-height: 0;
  }

  .workflow-board,
  .workflow-board-human,
  .ops-grid,
  .stage-lanes {
    grid-template-columns: 1fr;
  }

  .workflow-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .workflow-review-visual {
    height: clamp(220px, 38vw, 320px);
    align-self: auto;
    background: #eef1ea;
  }

  .workflow-review-visual img {
    object-fit: contain;
    object-position: center center;
  }

  .collab-panel {
    min-height: 560px;
  }

  .stage-card {
    min-height: auto;
  }

  .workflow-operations {
    min-height: auto;
  }

  .merchant-profile {
    grid-row: auto;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

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

  .contact-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .clone-contact-hero {
    min-height: 700px;
    padding-top: 170px;
  }

  .clone-footer-cta {
    padding-bottom: 96px;
  }

  .clone-footer-links {
    gap: 36px;
  }
}

@media (max-width: 760px) {
  .floating-nav {
    top: 22px;
    left: 50%;
    right: auto;
    width: min(280px, calc(100% - 64px));
    height: 52px;
    justify-content: space-between;
    gap: 0;
    padding: 6px 8px;
    border-radius: 10px;
    transform: translateX(-50%);
  }

  .floating-nav > a:not(.logo),
  .floating-nav .nav-cta {
    display: none;
  }

  .mobile-nav-disclosure {
    display: block;
    margin-left: auto;
  }

  .nav-menu-toggle {
    width: 42px;
    height: 40px;
    display: grid;
    place-items: center;
    position: relative;
    color: #fff;
    cursor: pointer;
    list-style: none;
  }

  .nav-menu-toggle::-webkit-details-marker {
    display: none;
  }

  .nav-menu-toggle span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, translate 180ms ease;
  }

  .nav-menu-toggle span:first-child {
    translate: 0 -4px;
  }

  .nav-menu-toggle span:last-child {
    translate: 0 4px;
  }

  .mobile-nav-disclosure[open] .nav-menu-toggle span:first-child {
    translate: 0 0;
    transform: rotate(45deg);
  }

  .mobile-nav-disclosure[open] .nav-menu-toggle span:last-child {
    translate: 0 0;
    transform: rotate(-45deg);
  }

  .mobile-nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    min-height: 176px;
    display: grid;
    place-items: center;
    gap: 0;
    padding: 16px 0;
    border-radius: 14px;
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-nav-menu a {
    width: 100%;
    min-height: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
  }

  .mobile-nav-menu a.nav-login {
    background: transparent;
    color: var(--lime);
    font-weight: 650;
  }

  .mobile-nav-menu a.nav-login:hover {
    background: rgba(216, 249, 184, 0.08);
    color: var(--lime);
  }

  .mobile-nav-menu a.nav-current {
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-nav-disclosure[open] .mobile-nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .features-intro,
  .image-features,
  .benefits,
  .workflow-section,
  .pricing-section,
  .testimonial-marquee {
    width: calc(100% - 24px);
  }

  .features-intro h2,
  .image-features h2,
  .benefits h2,
  .pricing-section h2,
  .testimonial-marquee h2,
  .site-footer h2 {
    font-size: clamp(34px, 10vw, 42px);
    letter-spacing: -0.045em;
  }

  .feature-cards {
    margin-top: 40px;
  }

  .feature-panel {
    padding: 28px 22px 22px;
    border-radius: 22px;
  }

  .feature-panel h3 {
    font-size: 26px;
    line-height: 1.16;
  }

  .feature-panel p {
    margin-bottom: 26px;
    font-size: 15px;
  }

  .feature-illustration {
    height: clamp(176px, 42vw, 220px);
    border-radius: 16px;
  }

  .feature-panel:nth-child(1) .feature-illustration-photo img {
    object-position: center 28%;
  }

  .feature-panel:nth-child(2) .feature-illustration-photo img {
    object-position: center top;
  }

  .feature-panel:nth-child(3) .feature-illustration-photo img {
    object-position: center 26%;
  }

  .hero {
    padding: 138px 24px 44px;
  }

  .announcement {
    display: none;
  }

  .hero-copy {
    width: 100%;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  h1 {
    max-width: 100%;
    margin-inline: auto;
    font-size: 40px;
    letter-spacing: 0;
    line-height: 1.04;
    text-wrap: balance;
  }

  .hero-copy p {
    margin-inline: auto;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.5;
  }

  .hero-ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

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

  .contact-hero {
    width: calc(100% - 32px);
    gap: 16px;
    padding: 136px 0 44px;
  }

  .contact-hero h1 {
    font-size: clamp(42px, 12vw, 54px);
    letter-spacing: -0.055em;
    line-height: 0.98;
  }

  .contact-hero p {
    font-size: 16px;
    line-height: 1.5;
  }

  .contact-shell,
  .contact-help-grid,
  .contact-cta {
    width: calc(100% - 24px);
  }

  .contact-shell {
    margin-bottom: 14px;
  }

  .contact-primary-card {
    min-height: 380px;
    padding: 26px 22px;
    border-radius: 24px;
  }

  .contact-primary-card h2,
  .contact-cta h2 {
    font-size: 36px;
    letter-spacing: -0.05em;
    line-height: 1.02;
  }

  .contact-primary-card p {
    margin: 18px 0 24px;
    font-size: 15px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .button,
  .contact-cta .button {
    width: 100%;
  }

  .contact-side-grid article {
    padding: 20px;
  }

  .contact-help-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 72px;
  }

  .contact-help-grid article {
    min-height: 0;
    padding: 20px;
  }

  .contact-cta {
    gap: 26px;
    margin-bottom: 72px;
    padding: 30px 22px;
    border-radius: 24px;
  }

  .clone-contact-hero {
    min-height: 660px;
    padding: 132px 20px 64px;
  }

  .clone-contact-photo {
    width: 198px;
    height: 168px;
    margin-bottom: 42px;
  }

  .clone-contact-hero h1 {
    max-width: 330px;
    margin-bottom: 28px;
    font-size: 43px;
    letter-spacing: -0.055em;
    line-height: 1;
  }

  .clone-email-button {
    min-height: 48px;
    padding-inline: 18px;
  }

  .clone-availability {
    gap: 14px;
    margin-top: 34px;
  }

  .clone-avatar-stack img,
  .clone-footer-avatars img {
    width: 40px;
    height: 40px;
    border-width: 2px;
  }

  .clone-avatar-stack img + img,
  .clone-footer-avatars img + img {
    margin-left: -12px;
  }

  .clone-availability strong {
    font-size: 15px;
  }

  .clone-availability span {
    font-size: 13px;
  }

  .clone-contact-footer {
    width: calc(100% - 12px);
    min-height: 860px;
    border-radius: 20px;
  }

  .clone-footer-inner {
    padding: 36px 24px 26px;
  }

  .clone-footer-cta {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 76px;
  }

  .clone-footer-cta h2 {
    max-width: 320px;
    font-size: 40px;
    letter-spacing: -0.055em;
    line-height: 1;
  }

  .clone-footer-button {
    width: max-content;
    margin-top: 0;
  }

  .clone-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
    padding-bottom: 76px;
  }

  .clone-footer-links a,
  .clone-footer-links strong {
    font-size: 14px;
  }

  .clone-footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
    padding-bottom: 54px;
  }

  .clone-wordmark strong {
    font-size: 26px;
  }

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

  .workflow-section {
    padding: 24px 0 76px;
  }

  .workflow-header {
    margin-bottom: 36px;
  }

  .workflow-layout {
    border-radius: 22px;
    padding: 12px;
  }

  .workflow-list li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    min-height: auto;
    padding: 15px 14px;
  }

  .workflow-index {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .workflow-step-action {
    grid-column: 2;
    justify-self: start;
    min-height: 38px;
    margin-top: 4px;
  }

  .workflow-support-note {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }

  .workflow-support-note .support-actions {
    width: 100%;
  }

  .workflow-support-note .support-actions a {
    flex: 1;
    justify-content: center;
  }

  .workflow-review-visual {
    display: none;
  }

  .quote-section img {
    height: clamp(190px, 45vw, 240px);
    border-radius: 20px;
    object-position: center 42%;
  }

  .capabilities-showcase {
    width: min(100% - 24px, 1280px);
    margin-bottom: 84px;
  }

  .capabilities-showcase-inner {
    border-radius: 24px;
    padding: 36px 18px 30px;
  }

  .capabilities-showcase-header h2 {
    font-size: 38px;
    letter-spacing: -0.045em;
  }

  .capabilities-showcase-header p {
    font-size: 16px;
  }

  .capability-product-proof {
    width: 100%;
    margin-top: 32px;
  }

  .dashboard-proof-frame {
    padding: 7px;
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(43, 45, 45, 0.08);
  }

  .dashboard-proof-frame img {
    border-radius: 10px;
  }

  .capability-feature-list {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .capability-feature-list article {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px 12px;
    margin-inline: 0;
    padding: 16px 14px 18px;
  }

  .capability-feature-list p {
    grid-column: 2;
    font-size: 14px;
  }

  .dark-cta {
    width: calc(100% - 24px);
    min-height: 500px;
    padding: 44px 24px 46px;
    box-sizing: border-box;
  }

  .dark-cta h2 {
    max-width: 100%;
    font-size: 32px;
    letter-spacing: -0.035em;
    line-height: 1.08;
  }

  .dark-cta h2 span:first-child {
    font-size: inherit;
    line-height: inherit;
  }

  .dark-cta h2 span + span {
    margin-top: 14px;
  }

  .cta-logo {
    width: 34px;
    height: 34px;
    aspect-ratio: 1;
    flex: 0 0 34px;
    margin-right: 0;
  }

  .workflow-board,
  .workflow-board-human,
  .ops-grid,
  .stage-lanes {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    grid-template-columns: 38px 1fr;
    padding: 20px;
  }

  .apply-step {
    grid-template-columns: auto 1fr;
  }

  .workflow-step span {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .workflow-step .step-badge {
    width: auto;
    min-width: 0;
    height: auto;
    border-radius: 999px;
  }

  .apply-step-content {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .apply-step-cta {
    width: 100%;
  }

  .stage-connector {
    grid-template-columns: 38px 1fr;
  }

  .support-callout {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }

  .support-actions {
    width: 100%;
  }

  .support-actions a {
    flex: 1;
    justify-content: center;
  }

  .stage-card {
    min-height: auto;
  }

  .stage-card small {
    margin-bottom: 48px;
  }

  .workflow-operations {
    min-height: auto;
    padding: 18px;
  }

  .dashboard-stage {
    padding: 0 12px 44px;
  }

  .dashboard-shell.internal-demo {
    padding: 12px;
    border-radius: 28px;
  }

  .internal-demo-shot {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(43, 45, 45, 0.08);
  }

  .internal-demo-cursor {
    width: 11px;
    animation-name: internal-cursor-path-mobile;
  }

  .trust-strip {
    width: calc(100% - 24px);
    margin: 0 auto 84px;
  }

  .logos {
    width: calc(100% + 24px);
    margin-left: -12px;
  }

  .ops-topbar,
  .support-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .ops-card h3 {
    font-size: 26px;
  }

  .logos {
    width: 100%;
    margin-left: 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  }

  .logo-marquee-inner {
    animation-duration: 26s;
  }

  .payment-logo {
    height: 36px;
    min-width: 86px;
  }

  .payment-logo img {
    max-width: 118px;
    height: 28px;
  }

  .logo-visa img {
    height: 32px;
    max-width: 142px;
  }

  .logo-mastercard img {
    height: 27px;
    max-width: 138px;
  }

  .logo-apple img {
    height: 27px;
    max-width: 112px;
  }

  .logo-google img {
    height: 28px;
    max-width: 124px;
  }

  .testimonial-track article {
    width: 320px;
    min-width: 320px;
    padding: 20px;
  }

  .review-person {
    grid-template-columns: 40px minmax(0, 1fr) max-content max-content;
    gap: 8px;
  }

  .review-person small {
    max-width: 78px;
    margin-left: -8px;
    padding-left: 8px;
  }

  .review-person b {
    grid-column: auto;
    justify-self: end;
    padding-inline: 8px;
  }
}

/* Contact page final overrides: keep it visually tied to the homepage. */
.contact-page {
  background: var(--page);
}

.contact-page .contact-hero {
  width: auto;
  min-height: 340px;
  display: block;
  margin: 0;
  padding: 150px 40px 38px;
  text-align: center;
}

.contact-page .contact-hero .hero-container {
  min-height: 0;
  display: grid;
  place-items: center;
  justify-content: center;
}

.contact-page .contact-hero .hero-copy {
  width: min(760px, 100%);
  align-items: center;
  text-align: center;
}

.contact-page .contact-hero h1 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(50px, 3.9vw, 56px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.contact-page .contact-hero p {
  width: min(560px, 100%);
  max-width: none;
  margin: -4px 0 0;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.55;
}

.contact-page .contact-hub {
  width: min(1280px, calc(100% - 40px));
  display: grid;
  justify-items: center;
  gap: 24px;
  margin: -4px auto 120px;
}

.contact-page .contact-switch {
  border: 1px solid rgba(43, 45, 45, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 28px rgba(43, 45, 45, 0.045);
}

.contact-page .contact-switch button {
  min-height: 40px;
  padding: 0 16px;
  color: rgba(43, 45, 45, 0.62);
  font-size: 14px;
  font-weight: 600;
}

.contact-page .contact-switch button.is-active {
  background: var(--lime);
  color: var(--ink);
}

.contact-page .contact-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(43, 45, 45, 0.07);
  border-radius: 30px;
  background: linear-gradient(180deg, #f9f9f6 0%, #f3f3f0 58%, #eeeeeb 100%);
  box-shadow: 0 26px 80px rgba(43, 45, 45, 0.06);
}

.contact-page .contact-card::before {
  z-index: 0;
}

.contact-page .contact-panel-tab {
  position: relative;
  z-index: 1;
  min-height: 620px;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}

.contact-page .contact-panel-copy {
  justify-content: flex-start;
  border-right: 1px solid rgba(43, 45, 45, 0.07);
  background: transparent;
  padding: clamp(44px, 5.5vw, 76px) clamp(22px, 4.4vw, 72px);
}

.contact-page .contact-eyebrow {
  min-height: 29px;
  border-radius: 999px;
  background: rgba(216, 249, 184, 0.7);
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
}

.contact-page .contact-panel-copy h2 {
  max-width: 520px;
  margin-top: 24px;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 1.03;
}

.contact-page .contact-panel-copy p {
  max-width: 540px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.contact-page .contact-proof-list {
  gap: 14px;
  margin-top: 42px;
}

.contact-page .contact-proof-list .workflow-step {
  background: #ededeb;
}

.contact-page .contact-form {
  justify-content: flex-start;
  gap: 24px;
  padding: clamp(44px, 5.5vw, 76px) clamp(22px, 4.4vw, 72px);
}

.contact-page .contact-form label,
.contact-page .contact-form legend {
  font-size: 14px;
  font-weight: 500;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
  border-bottom-color: rgba(43, 45, 45, 0.2);
  font-size: 15px;
}

.contact-page .contact-form fieldset label {
  background: #fff;
}

.contact-page .contact-channel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: clamp(44px, 5.5vw, 76px) clamp(22px, 4.4vw, 72px);
  padding: 0;
}

.contact-page .contact-channel-card {
  min-height: auto;
  display: grid;
  grid-template-columns: 36px minmax(132px, 0.32fr) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  margin: 0 -12px;
  border: 0;
  border-top: 1px dashed color-mix(in srgb, var(--lime) 46%, rgba(43, 45, 45, 0.22));
  border-radius: 14px;
  background: transparent;
  padding: 18px 12px 24px;
  box-shadow: none;
}

.contact-page .contact-channel-card:hover {
  background: rgba(216, 249, 184, 0.16);
  transform: translateY(-1px);
}

.contact-page .contact-channel-card h3 {
  margin: 1px 0 0;
}

.contact-page .contact-channel-card p {
  margin: 0;
}

.contact-page .contact-channel-card em {
  margin-top: 2px;
  font-size: 13px;
}

.contact-page .application-preview-card {
  justify-content: flex-start;
  padding: clamp(44px, 5.5vw, 76px) clamp(22px, 4.4vw, 72px);
}

.contact-page .mini-application-window {
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(216, 249, 184, 0.95), rgba(216, 249, 184, 0.16) 38%, #fff 38%),
    #fff;
  box-shadow: 0 22px 60px rgba(43, 45, 45, 0.09);
}

.contact-page .application-preview-card h3 {
  margin-top: 24px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.contact-page .application-preview-card .button {
  margin-top: 24px;
}

.contact-page .contact-final-cta {
  margin-bottom: 8px;
}

.contact-page .contact-footer {
  margin-top: 0;
}

@media (max-width: 980px) {
  .contact-page .contact-hero {
    min-height: 0;
    padding: 132px 24px 34px;
  }

  .contact-page .contact-hero .hero-container {
    display: grid;
  }

  .contact-page .contact-panel-tab,
  .contact-page .contact-panel-tab.is-active {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-panel-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(43, 45, 45, 0.07);
  }

  .contact-page .contact-channel-card {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .contact-page .contact-channel-card p,
  .contact-page .contact-channel-card em {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .contact-page .contact-hero {
    padding: 116px 16px 30px;
  }

  .contact-page .contact-hero h1 {
    font-size: 48px;
  }

  .contact-page .contact-hub {
    width: calc(100% - 24px);
    margin-bottom: 84px;
  }

  .contact-page .contact-switch {
    max-width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .contact-page .contact-switch button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .contact-page .contact-card {
    border-radius: 24px;
  }

  .contact-page .contact-panel-tab {
    min-height: 0;
  }

  .contact-page .contact-panel-copy,
  .contact-page .contact-form,
  .contact-page .application-preview-card {
    padding: 28px 22px;
  }

  .contact-page .contact-panel-copy h2 {
    font-size: 36px;
  }

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

  .contact-page .contact-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-page .contact-form-footer .button,
  .contact-page .application-preview-card .button {
    width: 100%;
  }
}

/* Absolute final override: submit-application button centered after legacy preview rules. */
.contact-page #contact-panel-apply .application-preview-card {
  width: 100%;
  display: flex;
  justify-content: center;
  justify-items: center;
  margin: 0;
  padding: 0;
}

.contact-page #contact-panel-apply .application-preview-card .button {
  width: fit-content;
  min-width: 230px;
  margin-inline: auto;
  justify-content: center;
}

@media (max-width: 720px) {
  .contact-page #contact-panel-apply .application-preview-card .button {
    width: 100%;
    min-width: 0;
  }
}

/* Final override: keep the submit-application CTA centered. */
.contact-page #contact-panel-apply.contact-panel-tab {
  grid-template-columns: 1fr;
  align-content: center;
  justify-items: center;
}

.contact-page #contact-panel-apply .application-preview-card {
  width: 100%;
  display: flex;
  justify-content: center;
  justify-items: center;
  margin: 0;
  padding: 0;
}

.contact-page #contact-panel-apply .application-preview-card .button {
  width: fit-content;
  min-width: 230px;
  margin: 0 auto;
  justify-content: center;
}

@media (max-width: 720px) {
  .contact-page #contact-panel-apply .application-preview-card .button {
    width: 100%;
    min-width: 0;
  }
}

/* Contact page final interaction polish. Keep last so legacy contact overrides do not flatten it. */
#contact-panel-message .contact-panel-copy {
  justify-content: center;
}

#contact-panel-message .contact-panel-copy h2 {
  margin-top: 0;
}

.contact-page .contact-form fieldset {
  gap: 9px;
}

.contact-page .contact-form fieldset label {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(43, 45, 45, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0 15px 0 13px;
  color: rgba(43, 45, 45, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  cursor: pointer;
  transition:
    background 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1),
    color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-page .contact-form fieldset label::before {
  content: "";
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border: 1px solid rgba(43, 45, 45, 0.26);
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 3px #fff;
  transition:
    background 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-page .contact-form fieldset label:hover {
  border-color: rgba(43, 45, 45, 0.16);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  transform: translateY(-1px);
}

.contact-page .contact-form fieldset label:has(input:checked) {
  border-color: rgba(43, 45, 45, 0.16);
  background:
    linear-gradient(180deg, rgba(216, 249, 184, 0.44), rgba(216, 249, 184, 0.22)),
    rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 26px rgba(43, 45, 45, 0.055);
}

.contact-page .contact-form fieldset label:has(input:checked)::before {
  border-color: rgba(43, 45, 45, 0.52);
  background: var(--lime);
  box-shadow: inset 0 0 0 4px #fff;
}

.contact-page .contact-form fieldset label:has(input:focus-visible) {
  outline: 2px solid color-mix(in srgb, var(--ink) 72%, var(--lime));
  outline-offset: 3px;
}

.contact-page .contact-form input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.contact-page .contact-social-card {
  position: relative;
  width: min(560px, calc(100% - 88px));
  min-height: 420px;
  align-self: start;
  display: grid;
  align-content: space-between;
  gap: 28px;
  margin: clamp(44px, 5.5vw, 76px);
  border: 1px solid rgba(43, 45, 45, 0.07);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 245, 0.96)),
    #f7f8f5;
  padding: 22px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 24px 70px rgba(43, 45, 45, 0.07);
}

.contact-page .contact-social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(43, 45, 45, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(43, 45, 45, 0.025) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), transparent 78%);
  pointer-events: none;
}

.contact-page .contact-social-main {
  position: relative;
  z-index: 1;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(43, 45, 45, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 18px 18px 18px 22px;
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.contact-page .contact-social-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 1;
}

.contact-page .contact-social-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.contact-page .contact-social-actions a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(43, 45, 45, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(43, 45, 45, 0.045);
  transition:
    background 180ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-page .contact-social-actions a:hover {
  background: var(--lime);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 30px rgba(43, 45, 45, 0.075);
  transform: translateY(-2px);
}

.contact-page .contact-social-actions a:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--ink) 72%, var(--lime));
  outline-offset: 3px;
}

.contact-page .contact-social-actions svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.contact-page .contact-panel-copy,
#contact-panel-message .contact-panel-copy {
  justify-content: flex-start;
}

.contact-page .contact-panel-copy h2,
#contact-panel-message .contact-panel-copy h2 {
  margin-top: 0;
}

.contact-page .contact-form-row > label,
.contact-page .contact-form > label {
  position: relative;
}

.contact-page .contact-form-row:has(.has-field-error),
.contact-page .contact-form > label.has-field-error {
  margin-bottom: 22px;
}

.contact-page .contact-form label.has-field-error input,
.contact-page .contact-form label.has-field-error textarea {
  border-bottom-color: color-mix(in srgb, #d97706 46%, var(--ink));
}

.contact-page .field-error-popover {
  position: absolute;
  z-index: 5;
  left: 0;
  top: calc(100% + 2px);
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(43, 45, 45, 0.1);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 247, 0.94)),
    var(--card);
  padding: 0 12px 0 10px;
  color: color-mix(in srgb, var(--ink) 86%, #d97706);
  font-size: 13px;
  font-weight: 560;
  letter-spacing: -0.015em;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 12px 30px rgba(43, 45, 45, 0.08);
  animation: contact-field-error-in 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-page .field-error-popover::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #f6c85f;
  box-shadow: 0 0 0 4px rgba(246, 200, 95, 0.18);
}

@keyframes contact-field-error-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .contact-page .contact-social-card {
    width: auto;
    gap: 18px;
    margin: 28px 22px;
    padding: 16px;
  }

  .contact-page .contact-social-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
  }

  .contact-page .contact-social-actions {
    width: 100%;
    justify-content: space-between;
  }
}

/* Final homepage closing CTA treatment. */
.dark-cta {
  position: relative;
  width: min(1180px, calc(100% - 80px));
  min-height: 430px;
  justify-content: center;
  margin-bottom: 140px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #252828 0%, #202322 58%, #181b1b 100%);
  padding: 76px clamp(48px, 7vw, 112px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 80px rgba(43, 45, 45, 0.12);
  overflow: hidden;
}

.dark-cta::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(216, 249, 184, 0.1);
  border-radius: 22px;
  pointer-events: none;
}

.dark-cta .section-kicker {
  position: relative;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.dark-cta .cta-logo {
  position: relative;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}

.dark-cta h2 {
  position: relative;
  max-width: 860px;
  margin: 22px auto 34px;
  font-size: clamp(36px, 4.1vw, 58px);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.dark-cta h2 span + span {
  margin-top: 8px;
}

.dark-cta-actions {
  position: relative;
  width: 100%;
  align-self: center;
  justify-content: center;
  gap: 16px;
  margin-top: 0;
}

.dark-cta-actions .button {
  min-width: 210px;
  height: 56px;
  padding-inline: 26px;
  font-size: 16px;
  font-weight: 560;
}

.dark-cta-actions .button-light {
  background: rgba(255, 255, 255, 0.92);
}

@media (max-width: 980px) {
  .dark-cta {
    width: min(100% - 64px, 1040px);
    min-height: 0;
    padding: 66px 42px 68px;
  }

  .dark-cta h2 {
    max-width: 720px;
    font-size: clamp(32px, 5vw, 44px);
  }
}

@media (max-width: 720px) {
  .dark-cta {
    width: calc(100% - 24px);
    padding: 52px 22px 54px;
  }

  .dark-cta::before {
    inset: 12px;
  }

  .dark-cta h2 {
    font-size: 31px;
  }

  .dark-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dark-cta-actions .button {
    width: 100%;
    min-width: 0;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .dark-cta {
    width: min(100% - 80px, 1040px);
    padding: 70px 56px 72px;
  }

  .dark-cta h2 {
    max-width: 760px;
    margin-inline: auto;
    font-size: clamp(34px, 4.2vw, 40px);
  }
}

@media (max-width: 980px) {
  .workflow-review-visual {
    display: none;
  }
}

/* Final application form preview: table-led, no decorative mockup block. */
.contact-page .application-preview-card {
  display: grid;
  align-content: start;
  gap: 28px;
  padding: clamp(44px, 5.5vw, 76px) clamp(22px, 4.4vw, 72px);
}

.contact-page .application-table-preview {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(43, 45, 45, 0.09);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 245, 0.92)),
    #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 20px 54px rgba(43, 45, 45, 0.055);
}

.contact-page .application-table-toolbar {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(43, 45, 45, 0.08);
  background:
    linear-gradient(180deg, rgba(216, 249, 184, 0.52), rgba(216, 249, 184, 0.2)),
    rgba(255, 255, 255, 0.9);
  padding: 0 20px;
}

.contact-page .application-table-toolbar span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 620;
  letter-spacing: -0.02em;
}

.contact-page .application-table-toolbar i {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(43, 45, 45, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0 12px;
  color: rgba(43, 45, 45, 0.62);
  font-size: 13px;
  font-style: normal;
  font-weight: 560;
}

.contact-page .application-table-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-page .application-table-grid div {
  min-height: 84px;
  display: grid;
  align-content: center;
  gap: 9px;
  border-right: 1px solid rgba(43, 45, 45, 0.07);
  border-bottom: 1px solid rgba(43, 45, 45, 0.07);
  padding: 17px 20px;
}

.contact-page .application-table-grid div:nth-child(2n) {
  border-right: 0;
}

.contact-page .application-table-grid div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.contact-page .application-table-grid small {
  color: rgba(43, 45, 45, 0.48);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-page .application-table-grid span {
  min-width: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 560;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.contact-page .application-preview-card .button {
  width: fit-content;
  margin-top: 0;
}

@media (max-width: 720px) {
  .contact-page .application-preview-card {
    padding: 28px 22px;
  }

  .contact-page .application-table-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .application-table-grid div,
  .contact-page .application-table-grid div:nth-child(2n) {
    border-right: 0;
  }

  .contact-page .application-table-grid div:nth-last-child(2) {
    border-bottom: 1px solid rgba(43, 45, 45, 0.07);
  }

  .contact-page .application-preview-card .button {
    width: 100%;
  }
}

/* Final social contact treatment: minimal, premium, and icon-led. */
.contact-page .contact-social-card {
  width: min(680px, calc(100% - 88px));
  min-height: 236px;
  display: grid;
  align-content: center;
  gap: 24px;
  margin: clamp(44px, 5.5vw, 76px);
  border: 1px solid rgba(43, 45, 45, 0.07);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 245, 0.9)),
    #f7f8f5;
  padding: 28px 32px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 20px 54px rgba(43, 45, 45, 0.055);
}

.contact-page .contact-social-card::before {
  display: none;
}

.contact-page .contact-social-main {
  width: 100%;
  min-height: 0;
  display: grid;
  gap: 18px;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.contact-page .contact-social-row {
  position: relative;
  z-index: 1;
  width: 100%;
}

.contact-page .contact-email-row {
  display: none;
}

.contact-page .contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  width: 100%;
  color: var(--ink);
  font-size: clamp(21px, 1.9vw, 24px);
  font-weight: 620;
  letter-spacing: -0.03em;
  line-height: 1;
  text-decoration: none;
}

.contact-page .contact-email-link span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-page .contact-social-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(43, 45, 45, 0.065);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(43, 45, 45, 0.045);
}

.contact-page .contact-email-link:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--ink) 72%, var(--lime));
  outline-offset: 5px;
  border-radius: 16px;
}

.contact-page .contact-social-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 1.9vw, 24px);
  font-weight: 620;
  letter-spacing: -0.03em;
  line-height: 1;
  text-align: left;
}

.contact-page .contact-social-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.contact-page .contact-social-actions a {
  min-width: 0;
  min-height: 132px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 16px 10px;
  border: 1px solid rgba(43, 45, 45, 0.065);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 620;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(43, 45, 45, 0.045);
}

.contact-page .contact-social-actions svg {
  width: 25px;
  height: 25px;
}

.contact-page .contact-social-icon svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: currentColor;
}

@media (max-width: 720px) {
  .contact-page .contact-social-card {
    width: auto;
    min-height: 0;
    margin: 28px 22px;
    padding: 22px;
    gap: 18px;
  }

  .contact-page .contact-social-main {
    gap: 16px;
  }

  .contact-page .contact-email-link,
  .contact-page .contact-social-card h3 {
    font-size: 20px;
  }

  .contact-page .contact-social-icon,
  .contact-page .contact-social-actions a {
    width: auto;
    height: auto;
  }

  .contact-page .contact-social-icon svg,
  .contact-page .contact-social-actions svg {
    width: 23px;
    height: 23px;
  }

  .contact-page .contact-social-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-page .contact-social-actions a {
    min-height: 0;
    grid-template-columns: 54px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    padding: 12px 14px;
    text-align: left;
  }

  .contact-page .contact-social-icon {
    width: 54px;
    height: 54px;
  }
}

/* Talk tab: centered heading with three left-aligned contact rows. */
.contact-page #contact-panel-talk.contact-panel-tab {
  grid-template-columns: 1fr;
  align-content: center;
  justify-items: center;
  gap: clamp(28px, 3vw, 42px);
  padding: clamp(50px, 6vw, 86px) clamp(24px, 5vw, 72px);
}

.contact-page #contact-panel-talk .contact-panel-copy {
  width: 100%;
  display: block;
  border-right: 0;
  background: transparent;
  padding: 0;
  text-align: center;
}

.contact-page #contact-panel-talk .contact-panel-copy h2 {
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.contact-page #contact-panel-talk .contact-social-card {
  width: min(680px, 100%);
  min-height: 0;
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
}

.contact-page #contact-panel-talk .contact-social-actions {
  grid-template-columns: 1fr;
  gap: 14px;
}

.contact-page #contact-panel-talk .contact-social-item {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  align-items: center;
  gap: 10px;
  padding: 9px 10px 9px 9px;
  border: 1px solid rgba(43, 45, 45, 0.065);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(43, 45, 45, 0.045);
}

.contact-page #contact-panel-talk .contact-social-link {
  width: 100%;
  height: auto;
  min-height: 50px;
  display: grid;
  grid-template-columns: 54px auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 620;
  letter-spacing: -0.025em;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
  word-break: normal;
  box-shadow: none;
}

.contact-page #contact-panel-talk .contact-social-item:hover {
  background:
    linear-gradient(180deg, rgba(216, 249, 184, 0.48), rgba(216, 249, 184, 0.22)),
    rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
}

.contact-page #contact-panel-talk .contact-social-link:focus-visible,
.contact-page #contact-panel-talk .contact-copy-button:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--ink) 72%, var(--lime));
  outline-offset: 3px;
}

.contact-page #contact-panel-talk .contact-social-icon {
  width: 50px;
  height: 50px;
}

.contact-page #contact-panel-talk .contact-social-separator {
  color: rgba(43, 45, 45, 0.42);
  font-weight: 500;
}

.contact-page #contact-panel-talk .contact-social-value {
  min-width: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
  white-space: normal;
}

.contact-page #contact-panel-talk .contact-copy-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(43, 45, 45, 0.065);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(43, 45, 45, 0.62);
  cursor: pointer;
  transition:
    background 180ms cubic-bezier(0.22, 1, 0.36, 1),
    color 180ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-page #contact-panel-talk .contact-copy-button:hover,
.contact-page #contact-panel-talk .contact-copy-button.is-copied {
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-1px);
}

.contact-page #contact-panel-talk .contact-copy-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 720px) {
  .contact-page #contact-panel-talk.contact-panel-tab {
    padding: 36px 20px;
  }

  .contact-page #contact-panel-talk .contact-social-item {
    grid-template-columns: minmax(0, 1fr) 44px;
    min-height: 62px;
  }

  .contact-page #contact-panel-talk .contact-social-link {
    grid-template-columns: 48px auto minmax(0, 1fr);
    min-height: 62px;
    gap: 11px;
    font-size: 15px;
  }

  .contact-page #contact-panel-talk .contact-social-icon {
    width: 46px;
    height: 46px;
  }

  .contact-page #contact-panel-talk .contact-copy-button {
    width: 40px;
    height: 40px;
  }
}

/* Submit Application tab: match the centered Talk tab treatment. */
.contact-page #contact-panel-apply.contact-panel-tab {
  grid-template-columns: 1fr;
  align-content: center;
  justify-items: center;
  gap: clamp(28px, 3vw, 42px);
  padding: clamp(50px, 6vw, 86px) clamp(24px, 5vw, 72px);
}

.contact-page #contact-panel-apply .contact-panel-copy {
  width: 100%;
  display: block;
  border-right: 0;
  background: transparent;
  padding: 0;
  text-align: center;
}

.contact-page #contact-panel-apply .contact-panel-copy h2 {
  max-width: min(960px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-page #contact-panel-apply .application-preview-card {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
}

.contact-page #contact-panel-apply .application-preview-card .button {
  width: fit-content;
  min-width: 230px;
  justify-content: center;
}

@media (max-width: 720px) {
  .contact-page #contact-panel-apply.contact-panel-tab {
    padding: 36px 20px;
  }

  .contact-page #contact-panel-apply .application-preview-card .button {
    width: 100%;
    min-width: 0;
  }
}

/* Final contact hub refinement: compact tabs and purposeful application intake. */
.contact-page .contact-switch {
  width: fit-content;
  max-width: calc(100% - 44px);
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-inline: auto;
  padding: 8px;
}

.contact-page .contact-switch button {
  flex: 0 0 auto;
  white-space: nowrap;
  padding-inline: 22px;
}

.contact-page .application-preview-card {
  width: min(760px, calc(100% - 88px));
  display: grid;
  justify-items: start;
  gap: 22px;
  margin: clamp(44px, 5vw, 72px) auto 0;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.contact-page .application-intake-panel {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  gap: 14px;
  border: 1px solid rgba(43, 45, 45, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 244, 0.92)),
    #fff;
  padding: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 24px 68px rgba(43, 45, 45, 0.075);
}

.contact-page .application-intake-main {
  overflow: hidden;
  border: 1px solid rgba(43, 45, 45, 0.065);
  border-radius: 20px;
  background: #fff;
}

.contact-page .application-intake-header {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(43, 45, 45, 0.07);
  background:
    linear-gradient(90deg, rgba(213, 255, 177, 0.45), rgba(255, 255, 255, 0.95));
  padding: 0 22px;
}

.contact-page .application-intake-header span {
  color: var(--ink);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.contact-page .application-intake-header strong {
  flex: 0 0 auto;
  border: 1px solid rgba(43, 45, 45, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: rgba(43, 45, 45, 0.64);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  padding: 9px 12px;
}

.contact-page .application-intake-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-page .application-intake-fields div {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 10px;
  border-right: 1px solid rgba(43, 45, 45, 0.065);
  border-bottom: 1px solid rgba(43, 45, 45, 0.065);
  padding: 20px 22px;
}

.contact-page .application-intake-fields div:nth-child(2n) {
  border-right: 0;
}

.contact-page .application-intake-fields div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.contact-page .application-intake-fields small,
.contact-page .application-review-rail > span {
  color: rgba(43, 45, 45, 0.46);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-page .application-intake-fields span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 570;
  letter-spacing: -0.02em;
  line-height: 1.32;
}

.contact-page .application-review-rail {
  display: grid;
  align-content: space-between;
  gap: 22px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(43, 45, 45, 0.96), rgba(43, 45, 45, 0.9));
  color: #fff;
  padding: 22px;
}

.contact-page .application-review-rail ol {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: application-step;
}

.contact-page .application-review-rail li {
  position: relative;
  display: grid;
  gap: 6px;
  padding-left: 34px;
  counter-increment: application-step;
}

.contact-page .application-review-rail li::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  content: counter(application-step);
  font-size: 12px;
  font-weight: 720;
}

.contact-page .application-review-rail strong {
  color: #fff;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.contact-page .application-review-rail small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 450;
  line-height: 1.35;
}

.contact-page .application-preview-card .button {
  width: fit-content;
  margin-top: 0;
}

@media (max-width: 900px) {
  .contact-page .contact-switch {
    max-width: calc(100% - 32px);
  }

  .contact-page .application-preview-card {
    width: min(680px, calc(100% - 44px));
  }

  .contact-page .application-intake-panel {
    grid-template-columns: 1fr;
  }

  .contact-page .application-review-rail {
    align-content: start;
  }

  .contact-page .application-review-rail ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .contact-page .contact-switch {
    width: calc(100% - 32px);
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .contact-page .contact-switch::-webkit-scrollbar {
    display: none;
  }

  .contact-page .contact-switch button {
    padding-inline: 18px;
  }

  .contact-page .application-preview-card {
    width: auto;
    justify-items: stretch;
    margin: 34px 22px 0;
  }

  .contact-page .application-intake-panel {
    border-radius: 24px;
    padding: 12px;
  }

  .contact-page .application-intake-fields {
    grid-template-columns: 1fr;
  }

  .contact-page .application-intake-fields div,
  .contact-page .application-intake-fields div:nth-child(2n) {
    min-height: 92px;
    border-right: 0;
  }

  .contact-page .application-intake-fields div:nth-last-child(2) {
    border-bottom: 1px solid rgba(43, 45, 45, 0.065);
  }

  .contact-page .application-review-rail ol {
    grid-template-columns: 1fr;
  }

  .contact-page .application-preview-card .button {
    width: 100%;
  }
}
