:root {
  --ink: #0b1f33;
  --muted: #607086;
  --paper: #f4f7fa;
  --surface: #ffffff;
  --line: #dbe4ec;
  --navy: #071b2d;
  --teal: #10a7a2;
  --teal-dark: #087c79;
  --green: #17855e;
  --amber: #d98a11;
  --danger: #c04f42;
  --shadow: 0 24px 70px rgba(11, 31, 51, 0.12);
  --radius: 18px;
  --container: min(1180px, calc(100vw - 40px));
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.nav-wrap {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.nav-wrap.scrolled {
  background: rgba(244, 247, 250, 0.92);
  border-color: rgba(11, 31, 51, 0.08);
  backdrop-filter: blur(16px);
}

.topnav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(11, 31, 51, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #435269;
  font-size: 0.93rem;
  font-weight: 750;
}

.nav-links a:not(.btn):hover {
  color: var(--ink);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 850;
  white-space: nowrap;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(11, 31, 51, 0.18);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(11, 31, 51, 0.16);
  color: var(--ink);
}

.btn-light {
  background: #ffffff;
  color: var(--ink);
}

.mobile-menu {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.mobile-menu span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.mobile-panel {
  display: none;
}

.hero {
  min-height: 820px;
  padding: 150px 0 88px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 7%, rgba(16, 167, 162, 0.15), transparent 27%),
    linear-gradient(180deg, #f8fafc 0%, #f4f7fa 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  right: -330px;
  top: 150px;
  border: 1px solid rgba(11, 31, 51, 0.055);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(11, 31, 51, 0.015), 0 0 0 150px rgba(11, 31, 51, 0.01);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy p {
  max-width: 590px;
  margin-bottom: 30px;
  font-size: 1.15rem;
}

.hero-actions,
.hero-note {
  display: flex;
  flex-wrap: wrap;
}

.hero-actions {
  gap: 12px;
}

.hero-note {
  gap: 20px;
  margin-top: 28px;
  color: #4d5e73;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-note i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.product-stage {
  position: relative;
}

.stage-shadow {
  position: absolute;
  inset: auto 5% -28px;
  height: 54px;
  background: rgba(11, 31, 51, 0.16);
  filter: blur(34px);
  border-radius: 50%;
}

.browser {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 51, 0.12);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.browser-top {
  height: 50px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border-bottom: 1px solid #dde6ee;
  background: #eef3f7;
}

.browser-top > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c7d1da;
}

.address {
  max-width: 320px;
  height: 28px;
  flex: 1;
  display: flex;
  align-items: center;
  margin-left: 10px;
  padding: 0 12px;
  border: 1px solid #dbe4eb;
  border-radius: 8px;
  background: #ffffff;
  color: #728197;
  font-size: 0.72rem;
}

.app-shell {
  min-height: 530px;
  display: grid;
  grid-template-columns: 86px 1fr;
  background: #eef3f7;
}

.sidebar {
  background: var(--navy);
  padding: 18px 12px;
  color: #8ca7bd;
}

.mini-brand,
.side-item {
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.mini-brand {
  width: 38px;
  height: 38px;
  margin: 0 auto 24px;
  overflow: hidden;
  background: #ffffff;
}

.mini-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-item {
  height: 38px;
  margin: 8px 0;
}

.side-item.active {
  background: #123957;
  color: #ffffff;
}

.app-main {
  padding: 20px;
}

.app-head,
.panel-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.app-head {
  margin-bottom: 18px;
}

.app-head h2 {
  margin: 0;
  font-size: 1.05rem;
}

.app-head p {
  margin: 2px 0 0;
  font-size: 0.82rem;
}

.avatar {
  width: 34px;
  height: 34px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #dce7ef;
  box-shadow: 0 0 0 1px #d2dee8;
}

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

.metrics article,
.panel {
  border: 1px solid #dce5ed;
  border-radius: 12px;
  background: #ffffff;
}

.metrics article {
  padding: 13px;
}

.metrics b {
  display: block;
  margin-bottom: 2px;
  font-size: 1.35rem;
}

.metrics span {
  display: block;
  color: #77859a;
  font-size: 0.69rem;
}

.metrics strong {
  display: block;
  margin-top: 7px;
  color: var(--green);
  font-size: 0.65rem;
}

.app-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 12px;
}

.panel {
  padding: 15px;
}

.panel-title {
  align-items: center;
  margin-bottom: 12px;
}

.panel-title b {
  font-size: 0.84rem;
}

.panel-title span {
  color: #748399;
  font-size: 0.68rem;
}

.chart {
  height: 145px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 12px 5px 8px;
  border-bottom: 1px solid #e6edf2;
}

.chart i,
.demo-chart i {
  flex: 1;
  min-width: 6px;
  border-radius: 5px 5px 2px 2px;
  background: #c8e9e7;
}

.chart i:nth-child(3n),
.demo-chart i:nth-child(3n) {
  background: #78cbc7;
}

.chart i:nth-child(4n),
.demo-chart i:nth-child(4n) {
  background: var(--teal);
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  padding-top: 6px;
  color: #8b98a9;
  font-size: 0.58rem;
}

.movement-list {
  display: grid;
  gap: 8px;
}

.movement-list article {
  display: grid;
  gap: 4px;
  padding: 9px;
  border: 1px solid #e3eaf0;
  border-radius: 9px;
}

.movement-list b {
  font-size: 0.72rem;
}

.movement-list span {
  color: #8491a2;
  font-size: 0.62rem;
}

.movement-list em {
  width: max-content;
  padding: 4px 7px;
  border-radius: 999px;
  background: #e8f7f2;
  color: var(--green);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 850;
}

.movement-list em.wait {
  background: #fff4dd;
  color: #a96a08;
}

.floating-card {
  position: absolute;
  right: -18px;
  bottom: 36px;
  width: 188px;
  padding: 14px;
  border: 1px solid #dbe5ed;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(11, 31, 51, 0.18);
  transform: rotate(3deg);
}

.floating-card b {
  font-size: 0.78rem;
}

.floating-card small {
  color: #7d8a9c;
  font-size: 0.64rem;
}

.scan {
  height: 74px;
  display: grid;
  place-items: center;
  margin: 9px 0 10px;
  border: 2px dashed #65c6c1;
  border-radius: 10px;
  color: var(--teal-dark);
  font-size: 2rem;
}

.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof article {
  padding: 30px 20px;
  border-right: 1px solid var(--line);
}

.proof article:first-child {
  padding-left: 0;
}

.proof article:last-child {
  border-right: 0;
  padding-right: 0;
}

.proof b,
.proof span {
  display: block;
}

.proof b {
  margin-bottom: 5px;
  font-size: 1.18rem;
}

.proof span {
  color: var(--muted);
  font-size: 0.9rem;
}

section {
  padding: 110px 0;
}

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

.section-head p:not(.eyebrow) {
  font-size: 1.05rem;
}

.workflow,
.audience {
  background: #ffffff;
}

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

.step {
  min-height: 245px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfcfd;
}

.step::after {
  content: attr(data-step);
  position: absolute;
  right: 14px;
  bottom: -26px;
  color: #eef3f6;
  font-size: 7rem;
  font-weight: 950;
  line-height: 1;
}

.step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 12px;
  background: #e7f7f6;
  color: var(--teal-dark);
}

.step h3,
.step p {
  position: relative;
  z-index: 1;
}

.step p {
  font-size: 0.93rem;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.module {
  min-height: 260px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.module.large {
  grid-column: span 7;
}

.module.small {
  grid-column: span 5;
}

.module.medium {
  grid-column: span 4;
}

.module h3 {
  font-size: 1.35rem;
}

.module p {
  max-width: 460px;
}

.stock-stack {
  width: min(360px, 100%);
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.stock-stack div,
.demo-rows article {
  min-height: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  border: 1px solid #dfe7ee;
  border-radius: 10px;
  background: #f9fbfc;
  font-size: 0.78rem;
}

.stock-stack span,
.demo-rows span {
  color: #66778c;
}

.ring-wrap {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.ring {
  width: 115px;
  height: 115px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--teal) 0 68%, #e6edf2 68%);
}

.ring::after {
  content: "68%";
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  font-weight: 850;
}

.legend {
  display: grid;
  gap: 9px;
  color: #637286;
  font-size: 0.72rem;
}

.people {
  display: flex;
  margin-top: 28px;
}

.people i {
  width: 42px;
  height: 42px;
  margin-left: -9px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #d7e2e9;
}

.people i:first-child {
  margin-left: 0;
}

.people i:nth-child(2) {
  background: #c8d8e3;
}

.people i:nth-child(3) {
  background: #d8ddd0;
}

.people i:nth-child(4) {
  background: #ded5d2;
}

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

.mini-kpis div {
  padding: 12px;
  border-radius: 10px;
  background: #f3f7fa;
}

.mini-kpis b,
.mini-kpis span {
  display: block;
}

.mini-kpis b {
  font-size: 0.9rem;
}

.mini-kpis span {
  margin-top: 8px;
  color: #718196;
  font-size: 0.72rem;
}

.screens {
  overflow: hidden;
  background: var(--navy);
  color: #ffffff;
}

.screens .eyebrow {
  color: #6ed9d4;
}

.screens p {
  color: #a9bdcd;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.tab {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: transparent;
  color: #aec0cf;
  font-weight: 850;
  cursor: pointer;
}

.tab.active {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--ink);
}

.screen-stage {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
}

.screen-copy h3 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.screen-points {
  display: grid;
  gap: 12px;
  margin-top: 25px;
}

.screen-points div {
  display: flex;
  gap: 10px;
  color: #d4e0e8;
  font-size: 0.9rem;
}

.screen-points i {
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #103c56;
  color: #78ddd8;
  font-style: normal;
  font-size: 0.72rem;
}

.screen-window {
  min-height: 430px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: #f2f6f8;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.screen-toolbar {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.screen-toolbar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #becbd5;
}

.screen-content {
  min-height: 350px;
  padding: 18px;
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
}

.demo-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12px;
}

.demo-grid.two {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 12px;
}

.demo-card {
  padding: 13px;
  border: 1px solid #e0e8ee;
  border-radius: 11px;
}

.demo-card p {
  margin: 5px 0 0;
  color: #8491a2;
  font-size: 0.78rem;
}

.demo-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
}

.demo-chart {
  height: 150px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding-top: 15px;
}

.demo-table {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 14px;
  color: #58687d;
  font-size: 0.8rem;
}

.demo-rows {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.demo-bar {
  height: 9px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6edf2;
}

.demo-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--teal);
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.audience-cards {
  display: grid;
  gap: 12px;
}

.audience-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fbfcfd;
}

.audience-card > b {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e8f6f5;
  color: var(--teal-dark);
}

.audience-card h3,
.audience-card p {
  margin: 0;
}

.audience-card p {
  font-size: 0.9rem;
}

.audience-card > span {
  color: #8a9aab;
  font-size: 1.35rem;
}

.cta {
  padding: 88px 0;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 56px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--ink);
  color: #ffffff;
}

.cta-card::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -100px;
  top: -150px;
  border-radius: 50%;
  background: rgba(16, 167, 162, 0.12);
}

.cta-card h2 {
  max-width: 720px;
  margin-bottom: 12px;
}

.cta-card p {
  max-width: 660px;
  margin-bottom: 0;
  color: #b8c6d2;
}

.cta-card .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.cta-card .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.policy-page {
  background:
    radial-gradient(circle at 82% 4%, rgba(16, 167, 162, 0.12), transparent 27%),
    var(--paper);
}

.policy-hero {
  padding: 150px 0 70px;
}

.policy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: 54px;
  align-items: end;
}

.policy-hero h1 {
  max-width: 820px;
}

.policy-hero p {
  max-width: 760px;
  font-size: 1.08rem;
}

.policy-summary {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(11, 31, 51, 0.08);
}

.policy-summary span,
.policy-summary b {
  display: block;
}

.policy-summary span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.policy-summary b {
  margin-top: 8px;
  font-size: 1.28rem;
}

.policy-summary p {
  margin: 14px 0 0;
  font-size: 0.92rem;
}

.policy-content {
  padding: 0 0 100px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
}

.policy-nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: #52657c;
  font-size: 0.9rem;
  font-weight: 750;
}

.policy-nav a:hover {
  background: #ffffff;
  color: var(--ink);
}

.policy-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(11, 31, 51, 0.07);
}

.policy-section {
  padding: 0 0 34px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
}

.policy-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.policy-section p {
  max-width: 860px;
  font-size: 1rem;
}

.policy-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.policy-list li {
  position: relative;
  padding-left: 24px;
  color: #52657c;
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.text-link {
  display: inline-flex;
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

footer {
  padding: 54px 0 32px;
  background: #061625;
  color: #b1c0cc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 35px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand {
  color: #ffffff;
}

.footer-brand p {
  max-width: 320px;
  margin: 16px 0 0;
  color: #9db0bf;
}

.footer-col b {
  display: block;
  margin-bottom: 13px;
  color: #ffffff;
}

.footer-col a {
  display: block;
  margin: 9px 0;
  color: #9fb0be;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .screen-stage,
  .audience-grid {
    grid-template-columns: 1fr;
  }

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

  .product-stage {
    max-width: 760px;
  }

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

  .module.large,
  .module.small {
    grid-column: span 12;
  }

  .module.medium {
    grid-column: span 6;
  }

  .screen-copy {
    max-width: 700px;
  }

  .policy-hero-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(calc(100vw - 28px), 1180px);
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-panel {
    position: fixed;
    inset: 76px 14px auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .mobile-panel.open {
    display: grid;
  }

  .mobile-panel a {
    padding: 12px;
    border-radius: 9px;
    font-weight: 750;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.5rem);
  }

  section {
    padding: 80px 0;
  }

  .browser {
    transform: none;
  }

  .app-shell {
    min-height: 460px;
    grid-template-columns: 58px 1fr;
  }

  .sidebar {
    padding: 14px 8px;
  }

  .metrics,
  .proof,
  .app-grid,
  .demo-grid,
  .demo-grid.two {
    grid-template-columns: 1fr;
  }

  .movement-panel,
  .floating-card {
    display: none;
  }

  .proof article:nth-child(2) {
    border-right: 0;
  }

  .proof article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .module.medium {
    grid-column: span 12;
  }

  .screen-window {
    padding: 10px;
  }

  .policy-hero {
    padding-top: 124px;
  }

  .policy-card {
    padding: 24px;
  }

  .policy-nav {
    grid-template-columns: 1fr;
  }

  .audience-card {
    grid-template-columns: 44px 1fr;
  }

  .audience-card > span {
    display: none;
  }

  .cta-card {
    padding: 38px 24px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 500px) {
  .hero-actions .btn,
  .cta-card .btn,
  .cta-card .actions {
    width: 100%;
  }

  .hero-note {
    display: grid;
    gap: 10px;
  }

  .metrics {
    gap: 7px;
  }

  .metrics article,
  .panel {
    padding: 10px;
  }

  .chart {
    height: 115px;
  }

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

  .proof article {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof article:last-child {
    border-bottom: 0;
  }

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