:root {
  --brand: #10b981;
  --brand-light: #34d399;
  --brand-deep: #047857;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #dcefe8;
  --soft: #ecfdf5;
  --surface: #ffffff;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 16px 34px rgba(15, 23, 42, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 4%, rgba(52, 211, 153, 0.2), transparent 30%),
    linear-gradient(180deg, #f8fffc 0%, #f8fafc 46%, #ffffff 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img,
svg {
  display: block;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 16px 20px 0;
}

.site-nav {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(220, 239, 232, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  padding: 12px 14px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.site-brand img {
  width: clamp(174px, 18vw, 240px);
  height: auto;
}

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

.nav-actions .nav-demo-link {
  display: none !important;
}

.nav-link,
.nav-login-link,
.nav-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 12px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.nav-link {
  color: var(--muted);
}

.nav-login-link {
  border-color: rgba(15, 23, 42, 0.09);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.secondary-action {
  border-color: rgba(16, 185, 129, 0.28);
  background: rgba(255, 255, 255, 0.84);
  color: var(--brand-deep);
}

.nav-cta,
.primary-action {
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(16, 185, 129, 0.26);
}

.nav-link:hover,
.nav-login-link:hover,
.nav-cta:hover,
.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.site-shell {
  overflow: hidden;
}

.hero-section,
.content-section,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hero-section {
  padding: 46px 0 46px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(300px, 26vw, 348px);
  grid-template-areas:
    "copy showcase"
    "dashboard showcase";
  gap: clamp(16px, 2.4vw, 28px) clamp(30px, 4vw, 62px);
  align-items: start;
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 16px -4% 8%;
  z-index: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 68% 20%, rgba(52, 211, 153, 0.24), transparent 30%),
    radial-gradient(circle at 36% 78%, rgba(16, 185, 129, 0.14), transparent 38%);
  filter: blur(14px);
  pointer-events: none;
}

.hero-copy-block {
  grid-area: copy;
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: start;
  max-width: 850px;
  margin: 0;
  padding-top: 36px;
  text-align: left;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 12px;
  color: var(--brand-deep);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-copy-block h1,
.section-heading h2,
.solution-lede h2 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

.hero-copy-block h1 {
  max-width: 850px;
  font-size: clamp(2.36rem, 4.25vw, 4.2rem);
  line-height: 1.08;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: #334155;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.primary-action,
.secondary-action {
  min-width: 188px;
}

.trial-badge {
  display: inline-grid;
  gap: 2px;
  margin-top: 18px;
  border: 1px solid rgba(16, 185, 129, 0.24);
  border-radius: 16px;
  background: rgba(236, 253, 245, 0.82);
  color: #064e3b;
  padding: 12px 14px;
  box-shadow: var(--shadow-soft);
}

.trial-badge span {
  font-weight: 950;
}

.trial-badge small {
  color: #047857;
  font-weight: 800;
}

.dashboard-preview {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(220, 239, 232, 0.96);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.dashboard-preview {
  grid-area: dashboard;
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 326px;
  margin: -10px 0 0;
  border-radius: 28px;
  padding: 18px;
  overflow: hidden;
  opacity: 0.93;
  filter: saturate(0.96) contrast(0.98) brightness(1);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.12);
}

.dashboard-preview::after {
  content: "";
  position: absolute;
  inset: auto 20px 0;
  height: 72px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.92));
  pointer-events: none;
}

.dashboard-table article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.dashboard-table small {
  color: var(--muted);
  font-weight: 820;
}

.dashboard-table em {
  width: fit-content;
  border-radius: 999px;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.dashboard-table {
  display: grid;
  gap: 9px;
  margin-top: 0;
}

.dashboard-table-head,
.dashboard-table article {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr 1fr 1fr;
  gap: 10px;
  align-items: center;
}

.dashboard-table-head {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  padding: 0 12px;
  text-transform: uppercase;
}

.dashboard-table article {
  color: var(--ink);
  padding: 12px;
}

.dashboard-table article span {
  color: #475569;
  font-weight: 800;
}

.dashboard-table em {
  font-size: 0.72rem;
  padding: 6px 8px;
}

.status-current {
  background: var(--soft);
  color: var(--brand-deep);
}

.status-warning {
  background: #fef9c3;
  color: #854d0e;
}

.status-danger {
  background: #fee2e2;
  color: #991b1b;
}

.app-preview-showcase {
  grid-area: showcase;
  position: relative;
  z-index: 4;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 16px;
  width: clamp(300px, 26vw, 348px);
  max-width: 100%;
  justify-self: end;
  align-self: start;
  padding-top: 2px;
}

.phone-preview {
  position: relative;
  width: clamp(282px, 22vw, 306px);
  max-width: 100%;
  aspect-ratio: 590 / 1238;
  border: 1px solid rgba(17, 24, 39, 0.88);
  border-radius: clamp(42px, 11.5%, 54px);
  background:
    linear-gradient(135deg, rgba(79, 79, 79, 0.98), rgba(4, 8, 16, 1) 46%, rgba(33, 39, 50, 0.96)),
    #050914;
  box-shadow:
    0 16px 30px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.38) inset;
  overflow: visible;
  padding: 7px;
}

.phone-preview::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.phone-side-button {
  position: absolute;
  z-index: 1;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0.95), rgba(8, 11, 17, 0.98));
}

.phone-side-button-left {
  left: -3px;
  top: 20%;
  height: 46px;
}

.phone-side-button-right {
  right: -3px;
  top: 31%;
  height: 72px;
}

.phone-preview-screen-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: clamp(34px, 9.8%, 46px);
  background: #ffffff;
  overflow: hidden;
}

.phone-preview-screen {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.app-store-promo {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 13px;
  width: 100%;
  max-width: 326px;
  justify-self: center;
  margin: 0;
  border: 1px solid rgba(220, 239, 232, 0.96);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(236, 253, 245, 0.92)),
    #ffffff;
  box-shadow:
    0 24px 46px rgba(15, 23, 42, 0.14),
    0 14px 30px rgba(16, 185, 129, 0.14);
  padding: 14px;
  backdrop-filter: blur(16px);
}

.app-store-promo-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-store-f-logo {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.app-store-f-logo {
  object-fit: cover;
  box-shadow:
    0 12px 24px rgba(16, 185, 129, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.82);
}

.app-store-promo-head span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.app-store-promo small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.1;
}

.app-store-promo strong {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 950;
  line-height: 1.12;
}

.app-store-promo-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.app-store-promo-status small {
  color: #334155;
  font-size: 0.74rem;
  line-height: 1.25;
}

.store-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-badge {
  display: inline-flex;
  flex: 1 1 140px;
  min-width: 140px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(20, 184, 166, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(5, 9, 20, 0.98)),
    #050914;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  padding: 11px 14px;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.1);
}

.content-section {
  padding: 82px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

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

.section-heading h2,
.solution-lede h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
}

.section-heading p,
.solution-lede p,
.solution-mini-grid p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.pain-grid,
.feature-grid,
.flow-grid {
  display: grid;
  gap: 14px;
}

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

.pain-grid article,
.feature-card,
.flow-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.pain-grid article {
  min-height: 190px;
}

.mini-icon,
.flow-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--brand-deep);
  font-weight: 950;
}

.flow-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(16, 185, 129, 0.18);
  background:
    radial-gradient(circle at 72% 20%, rgba(52, 211, 153, 0.22), transparent 34%),
    var(--soft);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.09);
}

.flow-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pain-grid strong,
.flow-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: 1.05rem;
}

.pain-grid p,
.flow-grid p,
.feature-card p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.solution-showcase {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(16, 185, 129, 0.24);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 8%, rgba(52, 211, 153, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(236, 253, 245, 0.72), #ffffff 58%),
    #ffffff;
  box-shadow: var(--shadow);
  padding: clamp(26px, 5vw, 54px);
}

.solution-lede {
  max-width: 850px;
}

.solution-lede p {
  max-width: 760px;
  margin: 14px 0 0;
}

.solution-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.solution-mini-grid article {
  border: 1px solid rgba(220, 239, 232, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  padding: 18px;
}

.solution-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 15px;
  background:
    radial-gradient(circle at 72% 20%, rgba(52, 211, 153, 0.22), transparent 34%),
    var(--soft);
  color: var(--brand-deep);
}

.solution-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.solution-mini-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: 1.02rem;
}

.solution-mini-grid p {
  margin: 8px 0 0;
  font-size: 0.94rem;
  line-height: 1.52;
}

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

.flow-grid article {
  position: relative;
  min-height: 258px;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.flow-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 185, 129, 0.42);
  box-shadow: var(--shadow);
}

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

.feature-card {
  min-height: 246px;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 185, 129, 0.42);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--soft);
  color: var(--brand-deep);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.feature-card h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.site-footer {
  margin-top: 82px;
  padding: 28px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  color: var(--brand-deep);
  font-weight: 900;
}

.web-login-dialog {
  width: min(94vw, 520px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  color: var(--ink);
}

.web-login-dialog::backdrop {
  background:
    radial-gradient(circle at 50% 28%, rgba(16, 185, 129, 0.24), transparent 34%),
    rgba(8, 24, 31, 0.58);
  backdrop-filter: blur(10px);
}

.web-login-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    radial-gradient(circle at 22% 0%, rgba(52, 211, 153, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 253, 248, 0.94));
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.28);
}

.web-login-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 1.4rem;
  font-weight: 800;
  cursor: pointer;
}

.web-login-close:hover {
  color: var(--ink);
  border-color: rgba(16, 185, 129, 0.32);
}

.web-login-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 38px;
}

.web-login-panel[hidden],
.driver-web-access-panel[hidden],
.web-login-form[hidden] {
  display: none !important;
}

.web-login-wordmark {
  width: 156px;
  height: auto;
}

.web-login-kicker {
  width: fit-content;
  margin: 4px 0 0;
  padding: 7px 11px;
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 999px;
  background: rgba(236, 253, 245, 0.84);
  color: var(--brand-deep);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.web-login-panel h2 {
  margin: 0;
  max-width: 380px;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 2.7rem);
  line-height: 1.02;
}

.web-login-subtitle {
  margin: -4px 0 6px;
  max-width: 430px;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.55;
}

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

.web-login-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.web-login-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 0 15px;
  font: inherit;
  font-weight: 760;
  outline: none;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.web-login-form input:focus {
  border-color: rgba(16, 185, 129, 0.7);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.16);
}

.web-login-row {
  display: flex;
  justify-content: flex-end;
  margin-top: -4px;
}

.web-login-text-button,
.web-login-secondary,
.web-login-submit {
  font: inherit;
  cursor: pointer;
}

.web-login-text-button {
  border: 0;
  background: transparent;
  color: var(--brand-deep);
  font-size: 0.9rem;
  font-weight: 900;
  padding: 4px 0;
}

.web-login-text-button:hover {
  text-decoration: underline;
}

.web-login-submit,
.web-login-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 15px;
  padding: 0 18px;
  font-weight: 950;
}

.web-login-submit {
  border: 0;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand), var(--brand-light));
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(16, 185, 129, 0.28);
}

.web-login-submit:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  box-shadow: none;
}

.web-login-secondary {
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.web-login-message {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 780;
  line-height: 1.45;
}

.web-login-message.error {
  color: #b42318;
}

.web-login-message.success {
  color: #047857;
}

.driver-web-access-panel {
  display: grid;
  gap: 12px;
  margin-top: 2px;
  padding: 16px;
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 20px;
  background: rgba(236, 253, 245, 0.88);
}

.driver-web-access-panel strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.driver-web-access-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.5;
}

.web-login-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 318px);
    grid-template-areas:
      "copy showcase"
      "dashboard showcase";
    gap: 24px;
    min-height: auto;
  }

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

  .dashboard-preview {
    width: 100%;
    min-height: 326px;
    margin: -10px 0 0;
    transform: none;
  }

  .app-preview-showcase {
    width: min(100%, 318px);
    padding-top: 12px;
  }

  .phone-preview {
    width: min(100%, 300px);
  }

  .app-store-promo {
    max-width: 318px;
  }

  .pain-grid,
  .flow-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  .site-nav-wrap {
    padding: 10px 12px 0;
  }

  .site-nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-brand img {
    width: min(188px, 54vw);
  }

  .nav-actions {
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    justify-content: stretch;
    gap: 8px;
  }

  .nav-link {
    display: none;
  }

  .nav-login-link,
  .nav-cta {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0.84rem;
  }

  .web-login-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100svh - 24px);
  }

  .web-login-panel {
    padding: 30px 22px 24px;
  }

  .web-login-wordmark {
    width: 136px;
  }

  .web-login-panel h2 {
    font-size: 1.9rem;
  }

  .web-login-actions {
    grid-template-columns: 1fr;
  }

  .nav-cta {
    width: 100%;
  }

  .hero-section,
  .content-section,
  .site-footer {
    width: calc(100% - 28px);
  }

  .hero-section {
    padding-top: 36px;
  }

  .hero-copy-block h1 {
    font-size: clamp(1.86rem, 8.7vw, 2.55rem);
    line-height: 1.1;
  }

  .hero-copy {
    margin-top: 12px;
    line-height: 1.55;
  }

  .site-footer {
    display: grid;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "showcase"
      "dashboard";
    gap: 18px;
  }

  .hero-copy-block {
    padding-top: 8px;
    text-align: center;
    justify-items: center;
  }

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

  .dashboard-preview {
    position: relative;
    width: 100%;
    max-height: 520px;
    min-height: auto;
    margin: 0;
    border-radius: 22px;
    padding: 14px;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .dashboard-table-head,
  .dashboard-table article {
    grid-template-columns: 0.72fr 1fr 0.92fr 0.98fr;
    gap: 6px;
  }

  .dashboard-table-head {
    font-size: 0.56rem;
    padding-inline: 8px;
  }

  .dashboard-table article {
    padding: 10px 8px;
  }

  .dashboard-table article,
  .dashboard-table article span,
  .dashboard-table small {
    font-size: 0.68rem;
  }

  .dashboard-table em {
    font-size: 0.56rem;
    padding: 5px 6px;
  }

  .app-preview-showcase {
    width: min(346px, 100%);
    justify-self: center;
    gap: 14px;
    padding-top: 0;
  }

  .phone-preview {
    width: min(306px, 84vw);
    margin: 0 auto;
  }

  .app-store-promo {
    justify-self: center;
    width: 100%;
    max-width: 336px;
    margin: 0;
  }

  .content-section {
    padding-top: 58px;
  }
}
