:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #c5d2e2;
  background: #08111f;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  --background: #08111f;
  --surface: #0f1b2d;
  --surface-strong: #13233a;
  --surface-muted: rgba(15, 27, 45, 0.5);
  --text-strong: #f8fafc;
  --text: #c5d2e2;
  --text-muted: #8da2bb;
  --border: #22324a;
  --accent: #3cc8b4;
  --accent-dark: #2ea694;
  --accent-soft: rgba(60, 200, 180, 0.12);
  --shadow: 0 24px 54px rgba(2, 8, 23, 0.36);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--background);
}

#root {
  min-height: 100vh;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--text-strong);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 5rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
}

h3 {
  line-height: 1.25;
}

p {
  font-size: 1rem;
  line-height: 1.65;
}

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

img {
  max-width: 100%;
  height: auto;
}

ul {
  padding: 0;
  list-style: none;
}

::selection {
  background: rgba(60, 200, 180, 0.25);
}
.app {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(60, 200, 180, 0.16), transparent 25rem),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.1), transparent 24rem),
    linear-gradient(180deg, #08111f 0%, #0b1525 42%, #08111f 100%);
}

.container {
  width: min(100% - 2rem, 1160px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 17, 31, 0.86);
  backdrop-filter: blur(14px);
}

.nav {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo,
.footer-brand {
  display: inline-flex;
  color: var(--text-strong);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-strong);
  font-size: 1.12rem;
  font-weight: 800;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-menu {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-links a,
.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(141, 162, 187, 0.22);
  border-radius: 8px;
  padding: 0.35rem 0.45rem;
  background: rgba(15, 27, 45, 0.72);
}

.language-switcher select {
  min-height: 2rem;
  border: 0;
  border-radius: 6px;
  padding: 0.28rem 1.7rem 0.28rem 0.55rem;
  background: transparent;
  color: var(--text-strong);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
}

.language-switcher select option {
  background: #0b1525;
  color: var(--text-strong);
}

.language-switcher select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.language-label {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(141, 162, 187, 0.28);
  border-radius: 8px;
  background: rgba(15, 27, 45, 0.78);
  color: var(--text-strong);
  cursor: pointer;
}

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

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav.is-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.nav.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.85rem 1.2rem;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0.7rem 1rem;
  background: var(--accent);
  color: #03131a;
}

.mobile-header-cta {
  display: none;
}

.button-primary {
  min-width: 150px;
  border-color: rgba(112, 255, 233, 0.35);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 42%),
    var(--accent);
  color: #03131a;
  box-shadow: 0 18px 38px rgba(60, 200, 180, 0.28);
}

.button-primary:hover,
.button-small:hover {
  background: var(--accent-dark);
}

.button-secondary {
  min-width: 150px;
  border-color: var(--border);
  background: rgba(15, 27, 45, 0.9);
  color: var(--text-strong);
}

.button-secondary:hover {
  border-color: rgba(60, 200, 180, 0.42);
  color: var(--accent);
}

.hero-section {
  position: relative;
  padding: 3.5rem 0 3.4rem;
}

.hero-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 82%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(3.2rem, 6vw, 6rem);
}

.hero-content > * {
  min-width: 0;
}

.hero-copy {
  min-width: 0;
  max-width: 610px;
}

.hero-support {
  min-width: 0;
  max-width: 610px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 1px solid rgba(60, 200, 180, 0.22);
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  background: rgba(60, 200, 180, 0.08);
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.hero-copy h1 {
  max-width: 18ch;
  margin-bottom: 0.85rem;
  font-size: clamp(2.75rem, 5vw, 4.1rem);
}

.hero-copy h1 span {
  display: block;
}

@media (min-width: 981px) {
  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.75rem, 3.55vw, 3.25rem);
  }

  .hero-title-main,
  .hero-title-line {
    white-space: nowrap;
  }
}

.hero-proof {
  margin-bottom: 1rem;
  color: var(--text-strong);
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  font-weight: 850;
  line-height: 1.18;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 1.45rem;
  color: var(--text);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.85rem;
}

.hero-cta-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  width: 15.5rem;
  max-width: 100%;
}

.hero-cta-hint {
  color: rgba(197, 210, 226, 0.58);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.hero-pills span {
  border: 1px solid rgba(141, 162, 187, 0.22);
  border-radius: 999px;
  padding: 0.48rem 0.78rem;
  background: rgba(15, 27, 45, 0.72);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-focus {
  max-width: 600px;
  margin: 1.6rem 0 0;
  border: 1px solid rgba(60, 200, 180, 0.2);
  border-radius: 8px;
  padding: 1.25rem;
  background:
    linear-gradient(135deg, rgba(60, 200, 180, 0.1), rgba(56, 189, 248, 0.06)),
    rgba(15, 27, 45, 0.78);
  box-shadow: 0 22px 48px rgba(2, 8, 23, 0.26);
}

.hero-focus > p {
  max-width: 680px;
  margin: 0 0 1rem;
  color: var(--text-strong);
  font-size: 1.02rem;
  font-weight: 750;
  line-height: 1.6;
}

.hero-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-highlight-grid article {
  display: grid;
  gap: 0.35rem;
  border: 1px solid rgba(141, 162, 187, 0.16);
  border-radius: 8px;
  padding: 0.95rem;
  background: rgba(8, 17, 31, 0.5);
  text-align: left;
}

.hero-highlight-grid strong {
  color: var(--accent);
  font-size: 0.92rem;
}

.hero-highlight-grid span {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  max-width: 610px;
  margin-top: 1.5rem;
  text-align: left;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text);
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  content: "";
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.1rem;
  text-align: center;
}

.check-list li::after {
  position: absolute;
  left: 0.34rem;
  top: 0.45rem;
  width: 0.43rem;
  height: 0.24rem;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  content: "";
  transform: rotate(-45deg);
}


.section {
  padding: 3.7rem 0;
}

.section-tinted {
  background: rgba(15, 27, 45, 0.44);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.product-preview {
  position: relative;
  min-width: 0;
  width: min(100%, var(--preview-width, 424px));
  max-width: 100%;
  margin: 0;
  animation: preview-rise 600ms ease both;
  opacity: 1;
}

.product-preview figcaption {
  width: max-content;
  max-width: calc(100% - 1.5rem);
  margin: 0 auto -0.7rem;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(60, 200, 180, 0.28);
  border-radius: 999px;
  padding: 0.44rem 0.8rem;
  background: rgba(8, 17, 31, 0.82);
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(2, 8, 23, 0.34);
}

.preview-shell {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(112, 255, 233, 0.16);
  border-radius: 18px;
  padding: 0.55rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(18, 34, 56, 0.92), rgba(6, 13, 24, 0.96));
  box-shadow:
    0 34px 82px rgba(2, 8, 23, 0.48),
    0 0 54px rgba(60, 200, 180, 0.12);
}

.preview-shell::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(60, 200, 180, 0.18), transparent 28%, rgba(56, 189, 248, 0.12));
  content: "";
  opacity: 0.85;
}

.preview-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.34rem;
  padding: 0.28rem 0.3rem 0.55rem;
}

.preview-toolbar span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(197, 210, 226, 0.34);
}

.preview-shell img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-width: 0;
  border-radius: 12px;
  background: #08111f;
}

.hero-preview {
  --preview-width: 426px;
  grid-row: span 2;
  justify-self: center;
  transform: translateY(-0.5rem);
}

.hero-preview::after,
.calendar-preview::after,
.detail-preview::after {
  position: absolute;
  inset: 12% -8% -8%;
  z-index: -1;
  border-radius: 28px;
  background: radial-gradient(circle, rgba(60, 200, 180, 0.2), transparent 62%);
  content: "";
  filter: blur(18px);
}

.feed-preview {
  --preview-width: 422px;
  margin: 1.35rem auto 0;
}

.features-showcase {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 1.1rem;
}

.calendar-preview {
  --preview-width: 424px;
  position: sticky;
  top: 6.2rem;
}

.section-heading h2 {
  margin: 0 auto;
}

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

.pain-card,
.feature-card,
.step-card,
.role-panel,
.use-case-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(15, 27, 45, 0.98), rgba(12, 22, 38, 0.98));
}

.pain-card {
  display: flex;
  min-height: 118px;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1.15rem;
}

.pain-card span {
  display: inline-flex;
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 1.55rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 138, 125, 0.12);
  color: #ff8a7d;
  font-weight: 900;
}

.pain-card p {
  color: var(--text-strong);
  font-weight: 750;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.feature-card {
  min-height: 168px;
  padding: 1.05rem;
  box-shadow: 0 18px 42px rgba(2, 8, 23, 0.24);
}

.feature-icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(60, 200, 180, 0.2), rgba(56, 189, 248, 0.12)),
    rgba(60, 200, 180, 0.06);
  border: 1px solid rgba(60, 200, 180, 0.18);
}

.feature-icon img {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.feature-card h3,
.step-card h3,
.use-case-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

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

.detail-preview {
  --preview-width: 424px;
  margin: 1.55rem auto 0;
}

.step-card {
  padding: 1.4rem;
}

.step-card span {
  display: inline-flex;
  width: 2.15rem;
  height: 2.15rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: var(--accent);
  color: #03131a;
  font-weight: 900;
}

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

.role-panel {
  padding: 1.7rem;
}

.role-panel h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.role-panel .check-list {
  display: grid;
  gap: 0.8rem;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.use-case-card {
  display: flex;
  min-height: 100px;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem;
}

.use-case-card span {
  width: 0.75rem;
  height: 0.75rem;
  flex: 0 0 0.75rem;
  border-radius: 50%;
  background: var(--accent);
}

.use-case-card h3 {
  margin: 0;
}

.closing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  border: 1px solid rgba(60, 200, 180, 0.24);
  border-radius: 8px;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(60, 200, 180, 0.13), rgba(56, 189, 248, 0.08)),
    linear-gradient(180deg, rgba(15, 27, 45, 1), rgba(11, 21, 37, 1));
  box-shadow: var(--shadow);
}

@keyframes preview-rise {
  from {
    opacity: 0.86;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.closing-cta h2 {
  max-width: 720px;
  margin-bottom: 0.8rem;
}

.closing-cta p:last-child {
  max-width: 650px;
  color: var(--text);
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: transparent;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.legal-hero {
  padding: 5rem 0 2rem;
}

.legal-container {
  max-width: 880px;
}

.legal-hero h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
}

.legal-intro {
  max-width: 720px;
  color: var(--text);
  font-size: 1.08rem;
}

.legal-section {
  padding-top: 1.8rem;
}

.legal-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(15, 27, 45, 0.98), rgba(12, 22, 38, 0.98));
  box-shadow: var(--shadow);
}

.legal-card + .legal-card {
  margin-top: 1rem;
}

.legal-card h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

.legal-card p {
  color: var(--text);
}

.legal-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(141, 162, 187, 0.14);
  padding-top: 0.75rem;
}

.legal-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.legal-list dt {
  color: var(--text-muted);
  font-weight: 800;
}

.legal-list dd {
  margin: 0;
  color: var(--text-strong);
  font-weight: 650;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .hero-copy,
  .hero-support {
    max-width: 760px;
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-preview {
    grid-row: auto;
    margin: 0 auto;
  }

  .hero-actions,
  .hero-pills {
    justify-content: center;
  }

  .hero-focus,
  .trust-list {
    margin-right: auto;
    margin-left: auto;
  }

  .features-showcase {
    grid-template-columns: 1fr;
  }

  .calendar-preview {
    position: relative;
    top: auto;
    margin: 0 auto;
  }

  .closing-cta {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 12ch;
    margin-right: auto;
    margin-left: auto;
  }

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

@media (max-width: 740px) {
  .site-header {
    position: sticky;
  }

  .nav {
    min-height: 56px;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .brand {
    gap: 0.55rem;
    font-size: 1rem;
  }

  .brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    margin-left: 0;
  }

  .mobile-header-cta {
    display: none;
  }

  .desktop-header-cta {
    display: none;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    border: 1px solid var(--border);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    padding: 0.9rem;
    background: rgba(8, 17, 31, 0.98);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  }

  .nav.is-open .nav-menu {
    display: flex;
  }

  .nav-links,
  .nav-actions {
    width: 100%;
    align-items: stretch;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.15rem;
  }

  .nav-links a {
    border-radius: 8px;
    padding: 0.75rem;
    background: rgba(15, 27, 45, 0.56);
  }

  .nav-actions {
    flex-direction: column;
    gap: 0.65rem;
    margin-left: 0;
  }

  .language-switcher {
    justify-content: space-between;
  }

  .language-switcher select {
    min-width: 6rem;
  }

  .hero-section {
    padding: 2.4rem 0 2.8rem;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
  }

  .hero-copy,
  .hero-support,
  .hero-preview {
    width: min(100%, var(--preview-width, 424px));
    max-width: 100%;
  }

  .hero-copy,
  .hero-support {
    width: 100%;
  }

  .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(2.2rem, 10vw, 3.1rem);
    overflow-wrap: break-word;
  }

  .hero-copy .eyebrow {
    max-width: min(100%, 19rem);
  }

  .hero-proof,
  .hero-text {
    max-width: min(100%, 18rem);
    margin-right: auto;
    margin-left: auto;
  }

  .section {
    padding: 2.9rem 0;
  }

  .section-heading {
    margin-bottom: 1.35rem;
  }

  .trust-list,
  .hero-highlight-grid,
  .pain-grid,
  .feature-grid,
  .steps-grid,
  .role-grid,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .button-small {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-cta-stack {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .product-preview figcaption {
    font-size: 0.8rem;
  }

  .preview-shell {
    border-radius: 14px;
    padding: 0.38rem;
  }

  .preview-shell img {
    border-radius: 10px;
  }

  .footer-content,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-hero {
    padding-top: 3.4rem;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 1.25rem, 1160px);
  }

  .mobile-header-cta {
    display: none;
  }

  .hero-copy h1 {
    max-width: 10ch;
    font-size: 2.24rem;
  }

  .hero-proof {
    font-size: 1.12rem;
  }

  .hero-focus {
    padding: 1rem;
  }

  .closing-cta,
  .role-panel {
    padding: 1.25rem;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}
