:root {
  --ink: #151d1c;
  --ink-soft: #35413f;
  --paper: #f4f5f1;
  --white: #ffffff;
  --line: #d6dcd7;
  --muted: #69736f;
  --yellow: #dce95a;
  --yellow-dark: #a3b02e;
  --green: #3f746b;
  --green-dark: #1d4540;
  --blue: #526f78;
  --blue-soft: #e5eceb;
  --focus: #edf473;
  --shadow: 0 18px 50px rgba(21, 29, 28, 0.14);
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

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

.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;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 72px;
  background: rgba(247, 247, 242, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 5px 22px rgba(23, 32, 31, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--green-dark);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 4px;
}

.nav-cta:hover {
  background: var(--green-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-lines {
  display: grid;
  gap: 4px;
}

.menu-lines span {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(86svh - 72px);
  max-height: 820px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  background: rgba(12, 18, 17, 0.42);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 76px 68px;
}

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

.eyebrow-light {
  color: var(--yellow);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 68px;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-positioning {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--yellow);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: #edf56d;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.68);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

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

.button-dark:hover {
  background: var(--green-dark);
}

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

.button-light:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

.launch-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.launch-note span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(242, 201, 76, 0.18);
}

.signal-band {
  background: var(--yellow);
  color: var(--ink);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signal-grid > div {
  display: grid;
  gap: 2px;
  min-height: 104px;
  align-content: center;
  padding: 18px 28px;
  border-right: 1px solid rgba(23, 32, 31, 0.24);
}

.signal-grid > div:first-child {
  border-left: 1px solid rgba(23, 32, 31, 0.24);
}

.signal-grid strong {
  font-size: 15px;
}

.signal-grid span {
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding-block: 108px;
}

.section h2,
.final-cta h2,
.content-hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.7fr);
  gap: 96px;
  align-items: start;
}

.prose-large p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.65;
}

.prose-large p + p {
  margin-top: 18px;
}

.products-section {
  background: var(--white);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 72px;
}

.product-row {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: center;
  padding-block: 68px;
  border-top: 1px solid var(--line);
}

.product-row:last-child {
  border-bottom: 1px solid var(--line);
}

.product-desktop {
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
}

.product-number {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.status-label {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #34555d;
  font-size: 12px;
  font-weight: 800;
}

.product-copy h3,
.audience-card h3 {
  margin: 0;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
}

.product-copy > p:not(.product-number):not(.status-label) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 10px;
  height: 3px;
  background: var(--green);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.product-visual {
  margin: 0;
}

.product-preview {
  width: 100%;
}

.mobile-stage,
.desktop-stage {
  position: relative;
  width: 100%;
  min-height: 390px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e1e6e2;
  box-shadow: var(--shadow);
}

.mobile-stage::before,
.desktop-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 18px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.phone-preview {
  position: absolute;
  top: 8%;
  width: 29%;
  height: 84%;
  padding: 12px 11px 10px;
  overflow: hidden;
  border: 5px solid #121918;
  border-radius: 22px;
  background: #fbfcfa;
  color: var(--ink);
  box-shadow: 0 18px 34px rgba(21, 29, 28, 0.2);
  font-size: 9px;
  line-height: 1.3;
  transform-origin: center bottom;
}

.phone-planning {
  left: 4.5%;
  transform: rotate(-3deg) translateY(2%);
}

.phone-request {
  z-index: 2;
  top: 4%;
  left: 35.5%;
  height: 90%;
}

.phone-availability {
  right: 4.5%;
  transform: rotate(3deg) translateY(2%);
}

.phone-preview strong,
.phone-preview small,
.phone-preview em,
.phone-preview span {
  letter-spacing: 0;
}

.phone-preview small {
  display: block;
  color: #77817e;
  font-size: 8px;
  font-style: normal;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  color: #56615e;
  font-size: 7px;
  font-weight: 800;
}

.phone-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.phone-heading strong {
  display: block;
  margin-top: 1px;
  font-size: 13px;
  line-height: 1.1;
}

.mini-avatar {
  display: inline-flex;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #dfe7e4;
  color: var(--green-dark);
  font-size: 8px;
  font-weight: 900;
}

.notification-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(220, 233, 90, 0.24);
}

.phone-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 11px;
  padding: 3px;
  border-radius: 5px;
  background: #edf0ed;
  color: #76807d;
  text-align: center;
}

.phone-tabs span {
  padding: 4px 2px;
  border-radius: 3px;
}

.phone-tabs .is-active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(21, 29, 28, 0.1);
}

.phone-date-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 11px;
  text-align: center;
}

.phone-date-row span {
  padding: 5px 2px;
  border: 1px solid #e3e7e3;
  border-radius: 4px;
  color: #66716d;
}

.phone-date-row b {
  color: var(--ink);
  font-size: 10px;
}

.phone-date-row .is-today {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: var(--white);
}

.phone-date-row .is-today b {
  color: var(--white);
}

.phone-mission {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  margin-bottom: 8px;
  padding: 9px 8px;
  border-left: 3px solid var(--blue);
  border-radius: 4px;
  background: #eef2f2;
}

.phone-mission strong {
  display: block;
  margin-bottom: 3px;
  font-size: 9px;
}

.phone-mission em,
.availability-slot em {
  display: inline-flex;
  margin-top: 5px;
  padding: 2px 5px;
  border-radius: 999px;
  background: #dcebe5;
  color: var(--green-dark);
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
}

.mission-time {
  color: var(--blue);
  font-size: 8px;
  font-weight: 900;
}

.mission-accent {
  border-left-color: var(--yellow-dark);
  background: #f4f5dc;
}

.phone-nav {
  position: absolute;
  right: 11px;
  bottom: 9px;
  left: 11px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 8px;
  border-top: 1px solid #e4e7e4;
  color: #8a9390;
  font-size: 7px;
  text-align: center;
}

.phone-nav .is-active {
  color: var(--green-dark);
  font-weight: 900;
}

.request-company {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px;
  border: 1px solid #dfe4e0;
  border-radius: 5px;
  background: var(--white);
}

.request-company strong {
  display: block;
  font-size: 10px;
}

.request-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 8px;
}

.request-facts > div {
  padding: 8px;
  border: 1px solid #dfe4e0;
  border-radius: 4px;
}

.request-facts strong {
  display: block;
  margin-top: 3px;
  font-size: 8px;
}

.request-note {
  margin-top: 8px;
  padding: 9px;
  border-radius: 4px;
  background: #eef2f2;
}

.request-note p {
  margin: 4px 0 0;
  font-size: 8px;
}

.privacy-hint {
  margin-top: 8px;
  padding: 7px;
  border: 1px solid #d8e4df;
  border-radius: 4px;
  color: var(--green-dark);
  font-size: 7px;
  text-align: center;
}

.phone-actions {
  position: absolute;
  right: 11px;
  bottom: 10px;
  left: 11px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.phone-actions span {
  padding: 7px 2px;
  border: 1px solid #d8ddda;
  border-radius: 4px;
  background: var(--white);
  font-size: 7px;
  font-weight: 800;
  text-align: center;
}

.phone-actions .accept {
  grid-column: 1 / -1;
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: var(--white);
}

.availability-month {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  padding: 8px;
  border-bottom: 1px solid #e2e6e2;
}

.availability-month > span {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.mini-calendar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  text-align: center;
}

.mini-calendar span,
.mini-calendar b {
  display: flex;
  min-height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 7px;
}

.mini-calendar b {
  background: var(--yellow);
  color: var(--ink);
}

.availability-slot {
  position: relative;
  margin-top: 10px;
  padding: 9px;
  border-left: 3px solid var(--green);
  border-radius: 4px;
  background: #e8efec;
}

.availability-slot span,
.availability-slot strong {
  display: block;
}

.availability-slot strong {
  margin-top: 3px;
  font-size: 9px;
}

.availability-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 9px;
  padding: 8px 0;
}

.availability-toggle > span {
  position: relative;
  width: 24px;
  height: 13px;
  border-radius: 999px;
  background: var(--green-dark);
}

.availability-toggle > span::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
}

.desktop-stage {
  padding: 22px;
  background: #dce3df;
}

.browser-preview {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid #bcc6c1;
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 22px 42px rgba(21, 29, 28, 0.2);
  color: var(--ink);
}

.browser-bar {
  display: flex;
  height: 30px;
  align-items: center;
  gap: 18px;
  padding: 0 12px;
  border-bottom: 1px solid #dce1de;
  background: #eef1ef;
}

.browser-dots {
  display: flex;
  gap: 4px;
}

.browser-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9aa6a1;
}

.browser-dots i:nth-child(2) {
  background: var(--yellow-dark);
}

.browser-address {
  min-width: 210px;
  padding: 3px 18px;
  border-radius: 4px;
  background: var(--white);
  color: #7c8682;
  font-size: 8px;
  text-align: center;
}

.desktop-app-preview {
  display: grid;
  grid-template-columns: 116px 1fr;
  height: calc(100% - 30px);
}

.desktop-sidebar {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 16px 11px 12px;
  background: #182322;
  color: var(--white);
}

.desktop-brand-mark {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 5px 16px;
  font-size: 10px;
}

.desktop-brand-mark > span {
  width: 19px;
  height: 19px;
  border: 5px solid var(--yellow);
  border-top-color: transparent;
  border-radius: 50%;
}

.desktop-sidebar nav {
  display: grid;
  gap: 4px;
}

.desktop-sidebar nav span {
  padding: 7px 8px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
}

.desktop-sidebar nav .is-active {
  background: rgba(220, 233, 90, 0.14);
  color: var(--yellow);
  font-weight: 900;
}

.desktop-profile {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.desktop-profile strong,
.desktop-profile small {
  display: block;
  font-size: 7px;
}

.desktop-profile small {
  color: rgba(255, 255, 255, 0.52);
}

.desktop-content {
  min-width: 0;
  padding: 15px 17px 16px;
  background: #f5f6f3;
}

.desktop-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.desktop-topbar small,
.desktop-topbar strong {
  display: block;
}

.desktop-topbar small {
  color: var(--muted);
  font-size: 7px;
}

.desktop-topbar strong {
  font-size: 15px;
  line-height: 1.2;
}

.desktop-action {
  padding: 7px 10px;
  border-radius: 4px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 7px;
  font-weight: 900;
}

.desktop-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 10px;
}

.desktop-summary > div {
  padding: 8px 10px;
  border: 1px solid #dde2de;
  border-radius: 4px;
  background: var(--white);
}

.desktop-summary small,
.desktop-summary strong {
  display: block;
}

.desktop-summary small {
  color: var(--muted);
  font-size: 7px;
}

.desktop-summary strong {
  margin-top: 2px;
  font-size: 11px;
}

.desktop-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 165px;
  gap: 9px;
  min-height: 0;
}

.schedule-panel,
.requests-panel {
  min-width: 0;
  padding: 10px;
  border: 1px solid #dde2de;
  border-radius: 5px;
  background: var(--white);
}

.panel-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 9px;
}

.panel-heading strong,
.panel-heading small {
  display: block;
}

.panel-heading strong {
  font-size: 9px;
}

.panel-heading small,
.panel-heading > span {
  color: var(--muted);
  font-size: 6px;
}

.panel-heading > span {
  color: var(--green-dark);
  font-weight: 800;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 34px repeat(4, minmax(0, 1fr));
  min-height: 168px;
  border-top: 1px solid #e4e8e5;
}

.schedule-hours {
  display: grid;
  align-content: space-around;
  padding-top: 17px;
  color: #89938f;
  font-size: 6px;
}

.schedule-day {
  position: relative;
  padding: 8px 5px;
  border-left: 1px solid #e4e8e5;
}

.schedule-day > strong {
  display: block;
  color: #6d7773;
  font-size: 7px;
  text-align: center;
}

.schedule-day.is-current {
  background: #f6f8ec;
}

.event {
  position: absolute;
  right: 5px;
  left: 5px;
  padding: 6px;
  border-left: 3px solid var(--green);
  border-radius: 3px;
  background: #e5efeb;
}

.event b,
.event small {
  display: block;
}

.event b {
  font-size: 6px;
  line-height: 1.2;
}

.event small {
  margin-top: 2px;
  color: #68736f;
  font-size: 5px;
}

.event-green {
  top: 32px;
}

.event-blue {
  top: 62px;
  border-left-color: var(--blue);
  background: #e4ecef;
}

.event-lime {
  top: 102px;
  border-left-color: var(--yellow-dark);
  background: #f1f4d4;
}

.event-outline {
  top: 48px;
  border: 1px solid #ccd5d1;
  border-left: 3px solid #91a09a;
  background: var(--white);
}

.requests-panel article {
  display: flex;
  gap: 7px;
  margin-top: 7px;
  padding: 8px 0;
  border-top: 1px solid #e3e7e4;
}

.requests-panel article strong,
.requests-panel article small,
.requests-panel article em {
  display: block;
}

.requests-panel article strong {
  font-size: 7px;
}

.requests-panel article small {
  color: var(--muted);
  font-size: 6px;
}

.requests-panel article em {
  width: max-content;
  margin-top: 4px;
  padding: 2px 4px;
  border-radius: 999px;
  background: #f2edcf;
  color: #716d1d;
  font-size: 5px;
  font-style: normal;
  font-weight: 900;
}

.requests-panel article em.is-confirmed {
  background: #dceae4;
  color: var(--green-dark);
}

.desktop-note {
  margin-top: 8px;
  padding: 8px;
  border-radius: 4px;
  background: #e8efec;
}

.desktop-note strong,
.desktop-note small {
  display: block;
}

.desktop-note strong {
  color: var(--green-dark);
  font-size: 7px;
}

.desktop-note small {
  margin-top: 2px;
  color: #66736e;
  font-size: 6px;
}

.product-visual figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}

.workflow-section {
  background: var(--ink);
  color: var(--white);
}

.compact-heading {
  max-width: 760px;
}

.compact-heading > p:last-child {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  min-height: 210px;
  padding: 30px 24px 24px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.workflow-list li + li {
  padding-left: 24px;
}

.workflow-list li:last-child {
  border-right: 0;
}

.workflow-list li > span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.workflow-list strong {
  display: block;
  font-size: 20px;
}

.workflow-list p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.audiences-section {
  background: #e7ebe7;
}

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

.audience-card {
  min-height: 420px;
  padding: 48px;
  border-radius: 6px;
}

.audience-card p:not(.audience-label) {
  max-width: 520px;
  margin: 20px 0 30px;
  font-size: 17px;
}

.audience-label {
  margin: 0 0 72px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.audience-ae {
  background: var(--yellow);
  color: var(--ink);
}

.audience-company {
  background: var(--green-dark);
  color: var(--white);
}

.privacy-section {
  background: var(--white);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 80px;
  align-items: center;
}

.privacy-mark {
  margin: 0;
  color: var(--yellow-dark);
  font-size: 92px;
  font-weight: 900;
  line-height: 1;
}

.privacy-layout > div > p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: 96px;
}

.faq-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 8px;
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 48px 26px 0;
  color: var(--muted);
}

.final-cta {
  padding-block: 88px;
  background: var(--blue);
  color: var(--white);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 72px;
  align-items: center;
}

.final-cta h2 {
  max-width: 820px;
  font-size: 42px;
}

.site-footer {
  padding-top: 68px;
  background: #101716;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  padding-bottom: 60px;
}

.brand-footer {
  color: var(--white);
}

.footer-brand > p {
  max-width: 340px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

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

.footer-links strong {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 13px;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

/* Interior pages */
.content-hero {
  padding-block: 94px 76px;
  background: var(--ink);
  color: var(--white);
}

.content-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 72px;
  align-items: center;
}

.content-hero h1 {
  font-size: 58px;
}

.content-hero .lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
}

.content-hero .hero-actions {
  margin-top: 30px;
}

.content-hero-media {
  margin: 0;
}

.product-preview-hero .mobile-stage,
.product-preview-hero .desktop-stage {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.content-section {
  padding-block: 96px;
}

.content-section.alt {
  background: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 84px;
}

.content-grid h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
}

.content-body > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.content-body > p + p {
  margin-top: 18px;
}

.content-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.content-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.content-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.content-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.boundary-band {
  padding-block: 80px;
  background: var(--yellow);
}

.boundary-band .content-grid {
  align-items: center;
}

.boundary-band p {
  margin: 0;
  font-size: 19px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.breadcrumb a {
  color: inherit;
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 58px;
  }

  .section h2,
  .final-cta h2,
  .content-hero h1 {
    font-size: 42px;
  }

  .product-row,
  .product-desktop {
    gap: 44px;
  }

  .product-copy h3,
  .audience-card h3 {
    font-size: 30px;
  }

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

  .workflow-list li:nth-child(2) {
    border-right: 0;
  }

  .workflow-list li:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .privacy-mark {
    font-size: 72px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    max-height: calc(100svh - 72px);
    overflow-y: auto;
    padding: 22px 18px 28px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(23, 32, 31, 0.14);
  }

  .main-nav.is-open {
    display: grid;
    gap: 0;
  }

  .main-nav a {
    padding: 15px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .main-nav .nav-cta {
    justify-content: center;
    margin-top: 14px;
    border-bottom: 0;
  }

  .hero {
    min-height: calc(84svh - 72px);
  }

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

  .hero-overlay {
    background: rgba(12, 18, 17, 0.56);
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-positioning {
    font-size: 24px;
  }

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

  .signal-grid > div,
  .signal-grid > div:first-child {
    min-height: 82px;
    padding-inline: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(23, 32, 31, 0.24);
  }

  .signal-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 82px;
  }

  .split-intro,
  .privacy-layout,
  .faq-layout,
  .content-grid,
  .content-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-heading {
    position: static;
  }

  .product-row,
  .product-desktop {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-desktop .product-visual {
    order: 2;
  }

  .product-desktop .product-copy {
    order: 1;
  }

  .audience-card {
    min-height: 380px;
    padding: 36px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .final-cta-inner .button {
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    font-size: 16px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: calc(88svh - 72px);
    max-height: none;
  }

  .hero-content {
    padding-block: 56px 48px;
  }

  .hero-media {
    object-position: 68% center;
  }

  .hero-overlay {
    background: rgba(10, 16, 15, 0.66);
  }

  .hero h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.04;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-positioning {
    font-size: 21px;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-block: 68px;
  }

  .section h2,
  .final-cta h2,
  .content-hero h1,
  .content-grid h2 {
    font-size: 34px;
  }

  .prose-large p {
    font-size: 18px;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .product-row {
    padding-block: 52px;
  }

  .product-copy h3,
  .audience-card h3 {
    font-size: 28px;
  }

  .mobile-stage {
    min-height: 340px;
    aspect-ratio: auto;
  }

  .phone-planning,
  .phone-availability {
    top: 12%;
    width: 36%;
    height: 76%;
  }

  .phone-planning {
    left: 1%;
  }

  .phone-request {
    left: 27%;
    width: 46%;
    height: 91%;
  }

  .phone-availability {
    right: 1%;
  }

  .desktop-stage {
    min-height: 320px;
    aspect-ratio: auto;
    padding: 10px;
  }

  .desktop-stage::before,
  .mobile-stage::before {
    border-width: 9px;
  }

  .desktop-app-preview {
    grid-template-columns: 72px 1fr;
  }

  .desktop-sidebar {
    padding-inline: 7px;
  }

  .desktop-sidebar nav span {
    padding-inline: 5px;
    font-size: 6px;
  }

  .desktop-profile > div,
  .desktop-brand-mark strong {
    display: none;
  }

  .desktop-content {
    padding: 11px;
  }

  .desktop-workspace {
    grid-template-columns: 1fr;
  }

  .requests-panel {
    display: none;
  }

  .workflow-list,
  .audience-grid,
  .footer-links,
  .content-cards {
    grid-template-columns: 1fr;
  }

  .workflow-list li,
  .workflow-list li + li {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .workflow-list li:first-child {
    border-top: 0;
  }

  .audience-card {
    min-height: 340px;
    padding: 28px;
  }

  .audience-label {
    margin-bottom: 48px;
  }

  .privacy-mark {
    font-size: 56px;
  }

  .faq-list summary {
    padding-right: 40px;
  }

  .final-cta {
    padding-block: 66px;
  }

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

  .content-hero {
    padding-block: 68px 58px;
  }

  .content-hero .lead {
    font-size: 18px;
  }

  .content-section {
    padding-block: 70px;
  }

  .content-hero-media .product-preview {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Commercial pilot entrypoints */
.nav-login {
  color: var(--green-dark);
  font-weight: 800;
}

.pilot-section {
  background: #1f2b29;
  color: var(--white);
}

.pilot-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: end;
  gap: 84px;
}

.pilot-copy h2,
.pilot-copy p {
  color: inherit;
}

.pilot-copy h2 {
  margin: 0;
}

.pilot-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.pilot-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.pilot-metrics > div {
  min-width: 0;
  padding: 28px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.pilot-metrics > div:first-child {
  padding-left: 0;
}

.pilot-metrics > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.pilot-metrics dt {
  color: var(--yellow);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.pilot-metrics dd {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.45;
}

.demo-intro {
  max-width: 760px;
}

.demo-intro .lead {
  max-width: 720px;
}

.demo-section {
  padding-block: 90px 110px;
  background: var(--paper);
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  align-items: start;
  gap: 76px;
}

.demo-copy h2 {
  margin: 0 0 22px;
  font-size: 36px;
  line-height: 1.14;
}

.demo-copy > p {
  color: var(--muted);
  font-size: 17px;
}

.demo-steps {
  display: grid;
  padding: 0;
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.demo-steps li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  gap: 12px;
}

.demo-steps span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.demo-steps strong {
  display: block;
}

.demo-steps p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.demo-account-link {
  margin-top: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.demo-account-link p {
  margin: 0 0 8px;
  color: var(--muted);
}

.demo-account-link a {
  color: var(--green-dark);
  font-weight: 800;
}

.demo-form {
  display: grid;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(21, 29, 28, 0.08);
  gap: 20px;
}

.demo-form > header {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.demo-form > header h2 {
  margin: 0 0 6px;
  font-size: 26px;
}

.demo-form > header p {
  margin: 0;
  color: var(--muted);
}

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

.demo-field {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.demo-field--full {
  grid-column: 1 / -1;
}

.demo-field label,
.demo-field > span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.demo-field small {
  color: var(--muted);
  font-size: 12px;
}

.demo-field input,
.demo-field select,
.demo-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #b9c2bc;
  border-radius: 6px;
  background: #fbfcfa;
  color: var(--ink);
}

.demo-field textarea {
  min-height: 142px;
  resize: vertical;
}

.demo-field input:focus,
.demo-field select:focus,
.demo-field textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(63, 116, 107, 0.17);
  outline-offset: 0;
}

.demo-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  color: var(--muted);
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.demo-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--green-dark);
}

.demo-consent a {
  color: var(--green-dark);
  font-weight: 700;
}

.demo-submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.demo-form-note,
.demo-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.demo-status {
  padding: 12px 14px;
  border-left: 3px solid var(--green);
  background: var(--blue-soft);
  color: var(--green-dark);
  font-weight: 700;
}

.legal-section {
  padding-block: 80px 110px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 1fr);
  align-items: start;
  gap: 72px;
}

.legal-nav {
  position: sticky;
  top: 104px;
  display: grid;
  padding-top: 16px;
  border-top: 3px solid var(--yellow-dark);
  gap: 10px;
}

.legal-nav a {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 750;
}

.legal-content {
  max-width: 800px;
}

.legal-content section {
  padding-block: 28px;
  border-top: 1px solid var(--line);
}

.legal-content section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: 27px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--green-dark);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
    font-size: 13px;
  }

  .pilot-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .pilot-layout,
  .demo-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 700px) {
  .pilot-metrics,
  .demo-field-grid {
    grid-template-columns: 1fr;
  }

  .pilot-metrics > div,
  .pilot-metrics > div:first-child,
  .pilot-metrics > div:last-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .pilot-metrics > div:last-child {
    border-bottom: 0;
  }

  .demo-section {
    padding-block: 64px 80px;
  }

  .demo-form {
    padding: 24px 20px;
  }

  .demo-field--full {
    grid-column: auto;
  }
}
/* Real product proof */
:root {
  --app-primary: #1246a0;
  --app-accent: #ff7a00;
  --app-success: #23845f;
  --app-canvas: #e7ecf3;
  --app-border: #cfd8e6;
  --app-text: #132a45;
}

.product-proof-section {
  overflow: hidden;
  padding-top: 88px;
}

.proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.48fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 48px;
}

.proof-heading h2 {
  max-width: 760px;
}

.proof-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.portal-proof,
.real-portal-hero {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--app-border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 64px rgba(19, 42, 69, 0.16);
}

.proof-toolbar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 16px;
  border-bottom: 1px solid #dde4ef;
  background: #f7f8fc;
  color: #607086;
  font-size: 13px;
  font-weight: 700;
}

.proof-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--app-text);
  font-weight: 850;
}

.proof-status i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--app-success);
  box-shadow: 0 0 0 4px rgba(35, 132, 95, 0.12);
}

.portal-proof > img,
.real-portal-hero > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.proof-caption {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #dde4ef;
  background: var(--white);
}

.proof-caption > div {
  min-width: 0;
  padding: 22px 24px 24px;
  border-right: 1px solid #dde4ef;
}

.proof-caption > div:last-child {
  border-right: 0;
}

.proof-caption span {
  display: block;
  margin-bottom: 12px;
  color: var(--app-primary);
  font-size: 12px;
  font-weight: 900;
}

.proof-caption strong {
  display: block;
  color: var(--app-text);
  font-size: 18px;
}

.proof-caption p {
  margin: 7px 0 0;
  color: #607086;
  font-size: 14px;
  line-height: 1.55;
}

.mobile-proof {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: 56px;
  align-items: center;
  margin-top: 88px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.mobile-proof-copy h3 {
  margin: 0;
  font-size: 36px;
  line-height: 1.12;
}

.mobile-proof-copy > p:not(.product-number) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.proof-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 28px;
}

.proof-links .text-link {
  margin-top: 17px;
}

.real-phone-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

.real-phone-item {
  min-width: 0;
  margin: 0;
}

.screen-label-real {
  display: grid;
  gap: 2px;
  min-height: 48px;
  align-content: end;
  margin-bottom: 10px;
}

.screen-label-real span {
  color: var(--app-primary);
  font-size: 11px;
  font-weight: 900;
}

.screen-label-real strong {
  color: var(--app-text);
  font-size: 13px;
  line-height: 1.25;
}

.real-phone-item img,
.real-mobile-hero img {
  width: 100%;
  border: 1px solid var(--app-border);
  border-radius: 24px;
  background: #f7f8fc;
  box-shadow: 0 18px 42px rgba(19, 42, 69, 0.18);
}

.real-phone-item figcaption {
  margin-top: 12px;
  color: #607086;
  font-size: 12px;
  line-height: 1.45;
}

.real-mobile-hero-figure {
  min-width: 0;
  margin: 0;
}

.real-mobile-hero {
  display: flex;
  min-height: 510px;
  align-items: flex-end;
  justify-content: center;
  padding: 8px 8px 0;
  overflow: hidden;
}

.real-mobile-hero img {
  width: min(46%, 235px);
  flex: 0 0 auto;
}

.real-mobile-hero img:first-child {
  z-index: 2;
  transform: rotate(-3deg) translateX(14px);
}

.real-mobile-hero img:last-child {
  transform: rotate(3deg) translate(-14px, 24px);
}

.real-portal-hero .proof-toolbar {
  min-height: 44px;
}

.real-portal-hero > img {
  display: block;
}

@media (max-width: 1100px) {
  .proof-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .proof-heading > p {
    max-width: 760px;
  }

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

  .mobile-proof-copy {
    max-width: 680px;
  }
}

@media (max-width: 700px) {
  .product-proof-section {
    padding-top: 66px;
  }

  .proof-heading {
    margin-bottom: 34px;
  }

  .proof-heading > p {
    font-size: 16px;
  }

  .proof-toolbar {
    min-height: 56px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 10px 12px;
  }

  .portal-proof > img {
    min-height: 260px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 10% top;
  }

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

  .proof-caption > div {
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid #dde4ef;
  }

  .proof-caption > div:last-child {
    border-bottom: 0;
  }

  .mobile-proof {
    gap: 34px;
    margin-top: 62px;
    padding-top: 54px;
  }

  .mobile-proof-copy h3 {
    font-size: 31px;
  }

  .real-phone-strip {
    display: flex;
    width: calc(100% + 18px);
    gap: 16px;
    padding: 0 18px 18px 0;
    overflow-x: auto;
    scroll-padding-inline: 0 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .real-phone-item {
    width: min(72vw, 274px);
    flex: 0 0 min(72vw, 274px);
    scroll-snap-align: start;
  }

  .real-phone-item img {
    border-radius: 22px;
  }

  .real-mobile-hero {
    min-height: 390px;
    padding-inline: 0;
  }

  .real-mobile-hero img {
    width: min(45%, 178px);
    border-radius: 20px;
  }

  .real-portal-hero > img {
    min-height: 250px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 8% top;
  }
}
