:root {
  --ink: #081423;
  --ink-2: #132235;
  --ink-3: #20344f;
  --paper: #f7f9fb;
  --surface: #ffffff;
  --line: #dbe3ea;
  --muted: #607084;
  --teal: #069b8f;
  --teal-dark: #057a72;
  --red: #c92d2d;
  --red-dark: #941f1f;
  --amber: #bb6b12;
  --green: #198754;
  --blue: #2864a8;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(8, 20, 35, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-body {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(8, 20, 35, 0.84), rgba(8, 20, 35, 0.18));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--teal);
  color: #fff;
}

.site-nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.84);
}

.site-nav a:hover,
.footer-links a:hover {
  color: #fff;
}

.header-action {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-section {
  position: relative;
  min-height: min(760px, 92vh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  padding: 140px clamp(16px, 6vw, 80px) 88px;
}

.hero-bg,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 20, 35, 0.96), rgba(8, 20, 35, 0.92) 42%, rgba(8, 20, 35, 0.62) 66%, rgba(8, 20, 35, 0.16)),
    linear-gradient(0deg, rgba(8, 20, 35, 0.92), rgba(8, 20, 35, 0.05) 44%);
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 12px;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(56px, 10vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.84);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-dark);
}

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

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-danger {
  background: var(--red);
  color: #fff;
}

.btn.full {
  width: 100%;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  min-height: 128px;
  padding: 28px clamp(18px, 4vw, 44px);
  background: #fff;
}

.metric strong {
  display: block;
  font-size: 26px;
  margin-bottom: 8px;
}

.metric span {
  color: var(--muted);
  line-height: 1.55;
}

.section,
.app-preview-section {
  padding: clamp(56px, 8vw, 104px) clamp(16px, 5vw, 72px);
}

.section-head {
  max-width: 780px;
  margin-bottom: 32px;
}

.section h2,
.app-preview-copy h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.section h3,
.app-preview-copy h3 {
  margin: 0 0 8px;
}

.section p,
.app-preview-copy p,
.clean-list {
  color: var(--muted);
  line-height: 1.65;
}

.steps-grid,
.pilot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step-card,
.pilot-grid > div,
.awareness-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.step-num {
  display: inline-block;
  color: var(--teal);
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 28px;
}

.alt-section {
  background: #edf3f6;
}

.awareness-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.utility-section {
  background: #fff;
}

.utility-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: start;
  gap: clamp(24px, 5vw, 64px);
}

.utility-copy {
  margin-bottom: 0;
}

.utility-copy p {
  max-width: 720px;
  margin: 18px 0 0;
}

.utility-points {
  display: grid;
  gap: 12px;
}

.utility-points article {
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  background: var(--paper);
}

.utility-points h3 {
  margin: 0 0 6px;
}

.utility-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.clean-list {
  padding-left: 20px;
  margin-bottom: 0;
}

.clean-list li + li {
  margin-top: 10px;
}

.app-preview-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 7vw, 80px);
  background: #fff;
  overflow: hidden;
}

.app-preview-copy {
  max-width: 680px;
}

.app-preview-copy .btn {
  margin-top: 14px;
}

.phone-preview {
  justify-self: center;
  width: min(330px, 86vw);
  height: 640px;
  border: 12px solid #111b2a;
  border-radius: 42px;
  background: #111b2a;
  box-shadow: var(--shadow);
  padding: 18px;
}

.phone-top {
  width: 92px;
  height: 8px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: #2b3c55;
}

.phone-screen {
  height: calc(100% - 24px);
  border-radius: 28px;
  background: var(--paper);
  padding: 20px;
}

.mini-status {
  width: 48%;
  height: 12px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--line);
}

.mini-vehicle {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.mini-vehicle span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 22px;
  letter-spacing: 0.08em;
}

.mini-vehicle small {
  color: rgba(255, 255, 255, 0.64);
}

.mini-sos {
  margin-top: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-weight: 800;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.mini-grid span {
  height: 92px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.pilot-grid {
  grid-template-columns: repeat(3, 1fr);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(16px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.compact-header {
  position: static;
}

.legal-page {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.legal-page h1 {
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 64px);
  line-height: .95;
  margin: 8px 0 24px;
}

.legal-page h2 {
  color: var(--ink);
  font-size: 22px;
  margin: 34px 0 10px;
}

.legal-page p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}

.legal-page a {
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 5px;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.app-body {
  min-height: 100vh;
  background: #dfe7ed;
  display: grid;
  place-items: center;
  padding: 18px;
}

.app-shell {
  width: min(430px, 100%);
  min-height: min(860px, calc(100vh - 36px));
  max-height: calc(100vh - 36px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 18px 16px;
  background: var(--ink);
  color: #fff;
}

.app-kicker {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.app-topbar h1 {
  margin: 0;
  font-size: 24px;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.app-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px 18px;
}

.app-screen {
  display: none;
}

.app-screen.active {
  display: block;
}

.vehicle-card,
.wallet-card,
.blood-card,
.form-panel,
.info-panel,
.simple-list,
.document-list,
.spot-list {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.vehicle-card {
  padding: 20px;
  color: #fff;
  background: var(--ink);
  border-color: var(--ink-3);
}

.small-label {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 900;
}

.vehicle-card .small-label {
  color: rgba(255, 255, 255, 0.56);
}

.vehicle-card strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  letter-spacing: 0.1em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.vehicle-card > span:last-of-type {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.pill.ok {
  color: #d8f8e9;
  background: rgba(25, 135, 84, 0.2);
}

.pill.warn {
  color: #ffe0ad;
  background: rgba(187, 107, 18, 0.22);
}

.sos-strip {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 12px 0;
  padding: 16px;
  border-radius: var(--radius);
  text-align: left;
  background: var(--red);
  color: #fff;
  cursor: pointer;
}

.sos-strip small,
.action-tile small,
.simple-list small,
.doc-item small,
.spot-item small,
.blood-card small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.35;
}

.sos-strip small {
  color: rgba(255, 255, 255, 0.72);
}

.sos-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  position: relative;
}

.sos-dot::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: #fff;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.action-tile {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.action-tile svg {
  color: var(--teal);
}

.action-tile span {
  font-weight: 900;
}

.info-panel {
  padding: 16px;
  margin-top: 12px;
}

.info-panel h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.info-panel p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.5;
}

.form-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.form-panel label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 900;
  color: var(--ink-2);
}

.form-panel input,
.form-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
}

.form-panel textarea {
  min-height: 82px;
  resize: vertical;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.toggle-row {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.toggle-row input {
  width: 22px;
  height: 22px;
}

.simple-list {
  margin-top: 12px;
  overflow: hidden;
}

.simple-list > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.simple-list > div:last-child {
  border-bottom: 0;
}

.simple-list span {
  font-weight: 900;
  color: var(--teal-dark);
}

.blood-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  margin-bottom: 12px;
  background: var(--ink);
  border-color: var(--ink-3);
  color: #fff;
}

.blood-card .small-label {
  color: rgba(255, 255, 255, 0.54);
}

.blood-card small {
  color: rgba(255, 255, 255, 0.7);
}

.blood-badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-size: 23px;
  font-weight: 900;
}

.score-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.score-row div {
  padding: 16px 10px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.score-row strong {
  display: block;
  font-size: 28px;
}

.score-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.document-list,
.spot-list {
  overflow: hidden;
}

.doc-item,
.spot-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.spot-item {
  grid-template-columns: 1fr;
}

.doc-item:last-child,
.spot-item:last-child {
  border-bottom: 0;
}

.doc-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.doc-icon.ok {
  background: var(--green);
}

.doc-icon.warn {
  background: var(--amber);
}

.doc-item button {
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: #e6f7f5;
  font-weight: 900;
  cursor: pointer;
}

.map-lite {
  position: relative;
  height: 240px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #d7e0ea;
  border: 1px solid var(--line);
}

.road {
  position: absolute;
  background: #b9c6d5;
}

.road.h {
  left: 0;
  right: 0;
  height: 5px;
}

.road.v {
  top: 0;
  bottom: 0;
  width: 5px;
}

.r1 { top: 36%; }
.r2 { top: 68%; }
.r3 { left: 32%; }
.r4 { left: 70%; }

.pin {
  position: absolute;
  padding: 5px 8px;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.p1 { top: 22%; left: 18%; }
.p2 { top: 44%; left: 58%; background: var(--teal); }
.p3 { top: 72%; left: 36%; background: var(--muted); }

.you-dot {
  position: absolute;
  top: 52%;
  left: 49%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--blue);
}

.wallet-card {
  padding: 18px;
  color: #fff;
  background: var(--ink);
  border-color: var(--ink-3);
}

.wallet-card .small-label {
  color: rgba(255, 255, 255, 0.56);
}

.wallet-card strong {
  display: block;
  margin: 8px 0 18px;
  font-size: 38px;
}

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

.bottom-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 8px 8px max(8px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: #fff;
}

.tab {
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 8px 4px;
  border-radius: var(--radius);
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.tab.active {
  color: var(--teal-dark);
  background: #e6f7f5;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(8, 20, 35, 0.66);
}

.modal.open {
  display: grid;
}

.modal-panel {
  position: relative;
  width: min(390px, 100%);
  padding: 24px;
  text-align: center;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
}

.danger-ring {
  display: block;
  width: 74px;
  height: 74px;
  margin: 12px auto;
  border-radius: 50%;
  border: 10px solid rgba(201, 45, 45, 0.15);
  background: var(--red);
}

.modal-panel h2 {
  margin: 0 0 8px;
}

.modal-panel p {
  color: var(--muted);
  line-height: 1.5;
}

.sos-main {
  width: 140px;
  height: 140px;
  margin: 8px auto 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-weight: 900;
  cursor: pointer;
}

.status-list {
  display: grid;
  gap: 8px;
  text-align: left;
}

.status-list span {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--green);
  background: #e9f7ef;
  font-weight: 800;
  font-size: 13px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 60;
  width: min(420px, calc(100vw - 32px));
  padding: 12px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 14px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.scan-body {
  min-height: 100vh;
  background: #fff4f4;
}

.scan-shell {
  max-width: 760px;
  margin: 0 auto;
  min-height: 100vh;
  background: #fff;
}

.scan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  color: #fff;
  background: var(--red-dark);
}

.scan-header a {
  font-weight: 900;
}

.scan-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.scan-alert {
  padding: 34px 18px;
  color: #fff;
  background: var(--red);
}

.scan-alert .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.scan-alert h1 {
  margin: 0;
  font-size: clamp(34px, 8vw, 68px);
  letter-spacing: 0.06em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.scan-alert p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

.scan-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.scan-hospital {
  padding: 18px;
  border-top: 1px solid var(--line);
  background: #f4f9ff;
}

.scan-hospital strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 20px;
}

.scan-hospital p {
  color: var(--muted);
  line-height: 1.5;
}

.scan-hospital .btn {
  display: inline-flex;
  margin-top: 8px;
}

.scan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.scan-grid article {
  min-height: 154px;
  padding: 18px;
  background: #fff;
}

.scan-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.scan-grid p,
.scan-grid a {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .metrics-band,
  .steps-grid,
  .pilot-grid,
  .awareness-layout,
  .utility-layout,
  .app-preview-section,
  .scan-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: 86vh;
    padding-bottom: 64px;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(8, 20, 35, 0.94), rgba(8, 20, 35, 0.5) 62%, rgba(8, 20, 35, 0.16)),
      linear-gradient(90deg, rgba(8, 20, 35, 0.94), rgba(8, 20, 35, 0.52));
  }

  .app-body {
    padding: 0;
  }

  .app-shell {
    width: 100%;
    min-height: 100vh;
    max-height: none;
    border-radius: 0;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .site-header {
    padding: 12px 14px;
  }

  .header-action {
    padding: 9px 10px;
  }

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

  .two-col {
    grid-template-columns: 1fr;
  }

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

  .action-tile {
    min-height: 116px;
    padding: 14px;
  }

  .doc-item {
    grid-template-columns: auto 1fr;
  }

  .doc-item button {
    grid-column: 2;
    justify-self: start;
  }
}

/* ===== 2026 public website refresh ===== */
:root {
  --brand-navy: #07182f;
  --brand-ink: #0a1930;
  --brand-blue: #12335f;
  --brand-orange: #ff7900;
  --brand-orange-dark: #d95f00;
  --brand-gold: #ffb347;
  --brand-paper: #f8fafc;
  --brand-soft: #edf2f7;
  --brand-line: #d9e2ee;
  --brand-muted: #5c6d82;
  --brand-green: #17845f;
}

.site-body {
  min-height: 100vh;
  color: var(--brand-ink);
  background: var(--brand-paper);
}

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

.site-header {
  min-height: 78px;
  color: var(--brand-navy);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(7, 24, 47, 0.1);
  box-shadow: 0 12px 34px rgba(7, 24, 47, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 146px;
}

.brand-logo {
  width: 148px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  align-items: center;
  gap: 24px;
  color: var(--brand-muted);
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-action {
  color: #fff;
  border: 1px solid var(--brand-orange);
  background: var(--brand-orange);
  box-shadow: 0 12px 24px rgba(255, 121, 0, 0.22);
}

.header-action:hover {
  background: var(--brand-orange-dark);
  border-color: var(--brand-orange-dark);
}

.hero-section {
  min-height: 88svh;
  align-items: center;
  color: #fff;
  background: var(--brand-navy);
  padding: 102px clamp(18px, 6vw, 86px) 46px;
}

.hero-bg {
  display: none;
}

.hero-scrim {
  background:
    radial-gradient(ellipse 900px 520px at 80% 8%, rgba(255, 121, 0, 0.16), transparent 70%),
    linear-gradient(to bottom, rgba(7, 24, 47, 0), rgba(0, 0, 0, 0.18));
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: -6%;
  width: 58%;
  height: 100%;
  opacity: 0.09;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 179, 71, 0.55) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 179, 71, 0.55) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-content {
  max-width: 820px;
}

.hero-logo {
  width: 300px;
  margin: 0 0 18px;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 24, 47, 0.12);
}

.eyebrow {
  color: var(--brand-orange-dark);
  letter-spacing: 0.12em;
}

.hero-content h1 {
  max-width: 860px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-content h1 em {
  color: var(--brand-gold);
  font-style: italic;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.16rem;
}

.btn {
  border-radius: 8px;
}

.btn-primary {
  color: #fff;
  background: var(--brand-orange);
}

.btn-primary:hover {
  background: var(--brand-orange-dark);
}

.btn-light {
  color: var(--brand-navy);
  background: #fff;
  border: 1px solid var(--brand-line);
}

.btn-light:hover {
  background: var(--brand-soft);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof strong {
  color: var(--brand-gold);
  font-size: 1.2rem;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px) 1px;
  background: var(--brand-line);
}

.capability-strip article {
  min-height: 132px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  background: #fff;
}

.capability-strip strong {
  line-height: 1.25;
}

.service-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--brand-orange);
  border: 2px solid rgba(255, 121, 0, 0.35);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  background: #fff8f1;
}

.section {
  padding: 84px clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-head h2,
.split-section h2,
.cta-section h2 {
  margin: 0;
  color: var(--brand-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 3.3rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head h2 em {
  color: var(--brand-orange-dark);
  font-style: italic;
}

.section-head p,
.split-section p,
.cta-section p {
  color: var(--brand-muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.intro-section,
.services-section,
.pilot-section {
  background: #fff;
}

.platform-grid,
.workflow-grid,
.services-grid,
.impact-grid,
.pilot-grid {
  display: grid;
  gap: 14px;
}

.platform-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.platform-grid article,
.workflow-grid article,
.services-grid article,
.pilot-grid > div {
  border: 1px solid var(--brand-line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
}

.platform-grid article,
.services-grid article {
  min-height: 218px;
}

.platform-grid article {
  position: relative;
  overflow: hidden;
  padding: 38px 30px 30px;
  border-radius: 8px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.platform-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--brand-orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.28s ease;
}

.platform-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 121, 0, 0.38);
  box-shadow: 0 28px 58px rgba(7, 24, 47, 0.12);
}

.platform-grid article:hover::before {
  transform: scaleY(1);
}

.platform-grid h3,
.workflow-grid h3,
.services-grid h3,
.pilot-grid h3,
.utility-points h3 {
  color: var(--brand-navy);
}

.platform-grid p,
.workflow-grid p,
.services-grid p,
.pilot-grid p,
.utility-points p {
  color: var(--brand-muted);
}

.step-num {
  display: inline-block;
  color: var(--brand-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
}

.platform-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
}

.problem-section {
  color: #fff;
  background: var(--brand-navy);
}

.problem-section .eyebrow,
.problem-section h2,
.problem-section p {
  color: #fff;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 48px;
  align-items: start;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stat-row div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-row strong {
  display: block;
  color: var(--brand-gold);
  font-size: 2rem;
  line-height: 1;
}

.stat-row span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.solution-section,
.utility-section,
.impact-section {
  background: var(--brand-soft);
}

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

.workflow-grid article {
  border-left: 5px solid var(--brand-orange);
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.services-grid article {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.capability-cards article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.capability-cards h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.cap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.cap-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--brand-navy);
  background: var(--brand-soft);
  font-size: 12px;
  font-weight: 800;
}

.capability-cards a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: var(--brand-orange-dark);
  font-weight: 900;
}

.services-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 121, 0, 0.4);
  box-shadow: 0 22px 50px rgba(7, 24, 47, 0.11);
}

.utility-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.drip-section {
  background: #fff;
}

.drip-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(24px, 5vw, 58px);
  padding: clamp(26px, 5vw, 48px);
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 121, 0, 0.2), transparent 40%),
    var(--brand-navy);
  box-shadow: 0 24px 58px rgba(7, 24, 47, 0.18);
}

.drip-panel h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.drip-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.drip-panel .eyebrow {
  color: var(--brand-gold);
}

.drip-details {
  display: grid;
  gap: 12px;
}

.drip-details article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.drip-details h3 {
  color: #fff;
}

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

.drip-link {
  justify-self: start;
}

.utility-points article {
  background: #fff;
  border-left-color: var(--brand-orange);
}

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

.impact-grid article {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border: 1px solid var(--brand-line);
  border-radius: 8px;
  background: #fff;
}

.impact-grid strong {
  color: var(--brand-orange);
  font-size: 3rem;
  line-height: 1;
}

.impact-grid span {
  margin-top: 10px;
  color: var(--brand-muted);
  font-weight: 800;
}

.mission-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 121, 0, 0.16), transparent 32%),
    var(--brand-navy);
}

.mission-section article {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.mission-section h2,
.mission-section p {
  color: #fff;
}

.mission-section .eyebrow {
  color: var(--brand-gold);
}

.founders-section {
  background: #fff;
}

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

.founder-grid article {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--brand-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 121, 0, 0.08), transparent 34%),
    #fff;
  box-shadow: 0 18px 46px rgba(7, 24, 47, 0.08);
}

.founder-photo {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  background: var(--brand-soft);
  box-shadow: inset 0 0 0 1px rgba(7, 24, 47, 0.1);
}

.founder-photo-suvom {
  object-position: 50% 24%;
}

.founder-photo-tasnim {
  object-position: 50% 16%;
}

.founder-card-head {
  display: flex;
  align-items: center;
}

.founder-card-head h3 {
  margin: 0;
  color: var(--brand-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.1;
}

.founder-card-head p,
.founder-grid article > p {
  margin: 0;
  color: var(--brand-muted);
  line-height: 1.65;
}

.founder-card-head p {
  margin-top: 6px;
  font-weight: 800;
}

.founder-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.founder-focus span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--brand-navy);
  background: var(--brand-soft);
  font-size: 12px;
  font-weight: 900;
}

.founder-grid article > a {
  width: fit-content;
  color: var(--brand-orange-dark);
  font-weight: 900;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 70px clamp(18px, 5vw, 72px);
  background: var(--brand-orange);
}

.cta-section .eyebrow,
.cta-section h2,
.cta-section p {
  color: var(--brand-navy);
}

.cta-section h2 {
  max-width: 780px;
  font-size: 2.8rem;
}

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

.cta-section .btn-primary {
  color: #fff;
  background: var(--brand-navy);
}

.cta-section .btn-light {
  border-color: rgba(7, 24, 47, 0.2);
}

.site-footer {
  background: var(--brand-navy);
}

.footer-links a:hover {
  color: var(--brand-gold);
}

.app-showcase-section {
  background: #fff;
}

.app-showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.46fr) minmax(190px, 0.34fr);
  align-items: center;
  gap: clamp(22px, 5vw, 60px);
}

.app-showcase-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--brand-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.app-showcase-copy p {
  max-width: 640px;
  color: var(--brand-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.app-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 8px;
}

.app-feature-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--brand-navy);
  background: var(--brand-soft);
  font-size: 12px;
  font-weight: 900;
}

.app-primary-shot,
.app-shot-stack a,
.detail-phone,
.screenshot-gallery figure {
  border: 1px solid rgba(7, 24, 47, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(7, 24, 47, 0.14);
}

.app-primary-shot {
  display: block;
  padding: 10px;
  background: var(--brand-navy);
}

.app-primary-shot img,
.app-shot-stack img,
.screenshot-gallery img,
.detail-phone {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.app-shot-stack {
  display: grid;
  gap: 16px;
}

.app-shot-stack a {
  display: block;
  padding: 8px;
}

.app-shot-stack img {
  aspect-ratio: 5 / 7;
  object-fit: cover;
  object-position: top;
}

.app-detail-hero {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(26px, 5vw, 66px);
  padding: clamp(56px, 8vw, 92px) clamp(18px, 6vw, 86px);
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 121, 0, 0.18), transparent 34%),
    radial-gradient(ellipse 680px 420px at 84% 14%, rgba(6, 155, 143, 0.2), transparent 72%),
    var(--brand-navy);
}

.app-detail-copy {
  max-width: 760px;
}

.app-detail-copy .eyebrow {
  color: var(--brand-gold);
}

.app-detail-copy h1 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.4vw, 5.5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.app-detail-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.13rem;
  line-height: 1.65;
}

.app-detail-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.app-detail-metrics span {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.app-detail-metrics strong {
  color: var(--brand-gold);
  font-size: 1.25rem;
}

.app-detail-hero-media {
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.detail-phone {
  max-height: 690px;
  object-fit: cover;
  object-position: top;
  padding: 8px;
}

.detail-phone-main {
  width: min(330px, 56%);
  z-index: 2;
  background: var(--brand-navy);
}

.detail-phone-side {
  width: min(260px, 42%);
  transform: translateY(44px);
  opacity: 0.94;
}

.app-capability-section {
  background: #fff;
}

.app-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.app-capability-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--brand-line);
  border-left: 5px solid var(--brand-orange);
  border-radius: 8px;
  background: #fff;
}

.app-capability-grid h3 {
  margin: 0 0 10px;
  color: var(--brand-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.app-capability-grid p {
  color: var(--brand-muted);
  line-height: 1.6;
}

.app-gallery-section {
  background: var(--brand-soft);
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.screenshot-gallery figure {
  margin: 0;
  padding: 9px;
}

.screenshot-gallery img {
  aspect-ratio: 5 / 9;
  object-fit: cover;
  object-position: top;
}

.screenshot-gallery figcaption {
  padding: 10px 4px 3px;
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.app-video-section {
  background: #fff;
}

.demo-video-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 121, 0, 0.22), transparent 40%),
    var(--brand-navy);
}

.demo-video-panel h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  font-weight: 500;
  line-height: 1.04;
}

.demo-video-panel p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1040px) {
  .capability-strip,
  .workflow-grid,
  .impact-grid,
  .app-capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    min-width: 118px;
  }

  .brand-logo {
    width: 118px;
    height: 44px;
  }

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

  .hero-scrim {
    background:
      radial-gradient(ellipse 560px 360px at 80% 0%, rgba(255, 121, 0, 0.16), transparent 72%),
      linear-gradient(to bottom, rgba(7, 24, 47, 0), rgba(0, 0, 0, 0.2));
  }

  .hero-section::after {
    display: none;
  }

  .hero-logo {
    width: min(420px, 100%);
  }

  .hero-content h1 {
    font-size: 3.25rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .capability-strip,
  .platform-grid,
  .workflow-grid,
  .services-grid,
  .impact-grid,
  .founder-grid,
  .drip-panel,
  .split-section,
  .stat-row,
  .utility-layout,
  .pilot-grid,
  .app-showcase-layout,
  .app-detail-hero,
  .app-capability-grid {
    grid-template-columns: 1fr;
  }

  .app-detail-hero {
    min-height: auto;
  }

  .app-detail-hero-media {
    min-height: auto;
    justify-content: flex-start;
  }

  .detail-phone-main {
    width: min(360px, 58vw);
  }

  .detail-phone-side {
    width: min(260px, 38vw);
  }

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

  .section-head h2,
  .split-section h2,
  .cta-section h2 {
    font-size: 2.35rem;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }

  .demo-video-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .site-header {
    gap: 12px;
  }

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

  .hero-logo {
    width: 260px;
  }

  .hero-content h1 {
    font-size: 2.45rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-proof span,
  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .capability-strip article {
    min-height: 102px;
  }

  .app-shot-stack,
  .screenshot-gallery {
    grid-template-columns: 1fr;
  }

  .app-detail-hero {
    padding-top: 48px;
  }

  .app-detail-copy h1 {
    font-size: 2.45rem;
  }

  .app-detail-hero-media {
    display: block;
  }

  .detail-phone-main {
    width: 100%;
  }

  .detail-phone-side {
    display: none;
  }

  .app-detail-metrics span,
  .app-detail-copy .hero-actions .btn,
  .app-showcase-copy .hero-actions .btn,
  .demo-video-panel .btn {
    width: 100%;
  }

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