:root {
  --bg: #f7f8fb;
  --bg-deep: #0e1728;
  --text: #0f172a;
  --muted: #4b556d;
  --brand: #2563eb;
  --brand-dark: #1e40af;
  --surface: #ffffff;
  --border: #e2e8f0;
  --accent: #0ea5a6;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: #f1f3f8;
  line-height: 1.55;
}

.container {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(241, 243, 248, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  z-index: 40;
}

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

.brand {
  text-decoration: none;
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.2px;
}

.brand span {
  color: var(--brand);
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
  margin-right: 0.75rem;
  justify-content: flex-end;
}

.nav-links a {
  color: #111827;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.3rem 0.45rem;
  border-radius: 8px;
  transition: background-color 0.14s ease, color 0.14s ease;
}

.nav-links a:hover {
  color: #1e40af;
  background: #e6edf8;
}

.sign-in-btn {
  min-width: 110px;
  padding: 0.62rem 0.9rem;
  border-radius: 14px;
  border: 1px solid #d9dde7;
  background: #ffffff;
  color: #111827;
  box-shadow: none;
}

.sign-in-btn:hover {
  background: #f8fafc;
  box-shadow: none;
  transform: none;
}

.hero {
  position: relative;
  padding: 1.7rem 0 1.2rem;
  margin-bottom: 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(241, 243, 248, 0.84) 0%,
      rgba(241, 243, 248, 0.7) 40%,
      rgba(241, 243, 248, 0.8) 100%
    ),
    url("https://42f2671d685f51e10fc6-b9fcecea3e50b3b59bdc28dead054ebc.ssl.cf5.rackcdn.com/illustrations/on_the_office_fbfs.svg")
      center 70% / cover no-repeat;
  opacity: 0.92;
  z-index: 0;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.2rem;
}

.eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.78rem;
  color: #1d4ed8;
  margin: 0 0 0.55rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 6.2vw, 5.15rem);
  max-width: 18ch;
  letter-spacing: -0.03em;
}

.headline-highlight {
  color: #1d4ed8;
}

.hero-copy {
  max-width: 980px;
}

.hero-copy-centered {
  text-align: center;
  margin-inline: auto;
  padding-top: 0.5rem;
}

.hero-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.1rem, 4.8vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 15ch;
  margin: 0 auto;
}

.hero-lead {
  color: #1f2937;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 500;
  max-width: 33ch;
  margin: 0.62rem auto 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  padding: 0.82rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.24);
}

.btn:active {
  transform: translateY(0);
}

.btn-small {
  padding: 0.6rem 0.95rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

.btn-ghost {
  background: #ffffff;
  border-color: #d5deea;
  color: #1e293b;
}

.btn-ghost:hover {
  background: #f8fafc;
  box-shadow: none;
}

.hero-scene {
  position: relative;
  margin-top: 1.1rem;
  border-radius: 0;
  border: none;
  background: transparent;
  min-height: 350px;
  overflow: visible;
  display: grid;
  place-items: end center;
}

.laptop-wrap {
  position: relative;
  width: min(760px, 88%);
  z-index: 2;
  margin-bottom: 10px;
}

.laptop-screen {
  background: #0b1529;
  border: 6px solid #101827;
  border-bottom-width: 10px;
  border-radius: 18px 18px 8px 8px;
  min-height: 280px;
  overflow: hidden;
  box-shadow: 0 32px 58px rgba(15, 23, 42, 0.35);
}

.laptop-app {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: linear-gradient(180deg, #dbe7fb 0%, #cad8f3 100%);
  padding: 0.4rem;
}

.browser-shell {
  border: 1px solid #c7d4ea;
  border-radius: 13px;
  background: #f8fbff;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.2);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.34rem 0.5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f8 100%);
  border-bottom: 1px solid #d4deeb;
}

.browser-dots {
  display: inline-flex;
  gap: 0.25rem;
}

.browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.browser-dots span:nth-child(1) {
  background: #ff5f57;
}

.browser-dots span:nth-child(2) {
  background: #febc2e;
}

.browser-dots span:nth-child(3) {
  background: #28c840;
}

.browser-url {
  margin: 0;
  background: #ffffff;
  border: 1px solid #d5deea;
  color: #334155;
  font-size: 0.62rem;
  border-radius: 999px;
  padding: 0.16rem 0.42rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
}

.app-shell {
  padding: 0.36rem;
  background: #eef4ff;
  border-radius: 10px;
  border: 1px solid #d6e2f4;
}

.app-layout {
  display: grid;
  grid-template-columns: 1.34fr 0.98fr;
  gap: 0.44rem;
  margin-top: 0;
  align-items: stretch;
}

.main-panel {
  width: 100%;
  display: grid;
  gap: 0.36rem;
}

.video-window {
  position: relative;
  border: 1px solid #d4deec;
  border-radius: 11px;
  background: #ffffff;
  padding: 0.3rem;
}

.recording-badge {
  position: absolute;
  top: 0.58rem;
  right: 0.58rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(248, 250, 252, 0.35);
  border-radius: 999px;
  padding: 0.14rem 0.34rem;
}

.recording-badge i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ef4444;
  animation: rec-pulse 1s ease-in-out infinite;
}

@keyframes rec-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(0.7);
  }
}

.video-window img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  object-position: center 24%;
  min-height: 0;
  filter: saturate(0.92) contrast(1.02);
}

.speaker-tag {
  position: absolute;
  left: 0.72rem;
  bottom: 0.64rem;
  background: rgba(15, 23, 42, 0.58);
  color: #f8fafc;
  font-size: 0.58rem;
  border-radius: 999px;
  padding: 0.14rem 0.42rem;
}

.video-inset {
  position: absolute;
  right: 0.7rem;
  bottom: 0.72rem;
  width: 54px;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.36);
  background: #0f172a;
  z-index: 2;
}

.video-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center 6%;
}

.chat-stack {
  display: grid;
  gap: 0.45rem;
}

.chat-panel {
  border: 1px solid #d4deec;
  border-radius: 10px;
  background: #ffffff;
  padding: 0.42rem;
}

.chat-panel-title {
  display: block;
  margin: -0.42rem -0.42rem 0.34rem;
  font-size: 0.66rem;
  letter-spacing: 0.65px;
  color: #1e293b;
  background: #dde5f2;
  border-bottom: 1px solid #c7d2e6;
  border-radius: 10px 10px 0 0;
  padding: 0.2rem 0.42rem;
}

.chat-row {
  display: flex;
  align-items: start;
  gap: 0.42rem;
}

.chat-row-ai {
  flex-direction: row;
}

.chat-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.54rem;
  font-weight: 700;
  line-height: 1;
}

.chat-avatar-user {
  color: #1e3a8a;
  background: #dbeafe;
}

.chat-avatar-ai {
  color: #0f766e;
  background: #ccfbf1;
}

.chat-block {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  max-width: calc(100% - 28px);
}

.chat-row-ai .chat-block {
  align-items: flex-start;
}

.chat-meta {
  display: block;
  font-size: 0.58rem;
  color: #475569;
  margin: 0;
  line-height: 1.2;
}

.chat-msg {
  margin: 0;
  padding: 0;
  font-size: 0.72rem;
  line-height: 1.34;
  color: #0f172a;
  background: transparent;
  border: none;
  max-width: 100%;
}

.user-msg {
  color: #0f172a;
}

.ai-msg {
  color: #0f172a;
  text-align: left;
}

.chat-link {
  color: #2563eb;
  text-decoration: none;
}

.right-rail {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  height: 100%;
}

.notes-panel {
  width: 100%;
  border: 1px solid #d4deec;
  border-radius: 10px;
  background: #ffffff;
  color: #334155;
  padding: 0.52rem;
}

.notes-panel p {
  display: block;
  margin: -0.52rem -0.52rem 0.28rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #1e3a8a;
  background: #e6edf8;
  border-bottom: 1px solid #d2dcee;
  border-radius: 10px 10px 0 0;
  padding: 0.2rem 0.42rem;
}

.notes-panel ul {
  margin: 0.06rem 0 0;
  padding-left: 1rem;
}

.notes-panel li {
  font-size: 0.68rem;
  margin-bottom: 0.2rem;
  color: #475569;
}

.docs-panel {
  flex: 1;
  width: 100%;
  border: 1px solid #d4deec;
  border-radius: 10px;
  background: #ffffff;
  color: #334155;
  padding: 0.44rem;
}

.docs-panel p {
  display: block;
  margin: -0.44rem -0.44rem 0.34rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #1e3a8a;
  background: #e6edf8;
  border-bottom: 1px solid #d2dcee;
  border-radius: 10px 10px 0 0;
  padding: 0.2rem 0.42rem;
}

.docs-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
}

.docs-panel li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.32rem;
  align-items: start;
}

.docs-panel strong {
  display: block;
  font-size: 0.62rem;
  color: #0f172a;
  line-height: 1.2;
}

.docs-panel span {
  display: block;
  font-size: 0.56rem;
  color: #64748b;
  line-height: 1.2;
}

.doc-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #cbd5e1;
  margin-top: 1px;
}

.doc-sheet {
  background: linear-gradient(180deg, #d1fae5 0%, #86efac 100%);
}

.doc-doc {
  background: linear-gradient(180deg, #dbeafe 0%, #93c5fd 100%);
}

.doc-pdf {
  background: linear-gradient(180deg, #fee2e2 0%, #fca5a5 100%);
}

.doc-video {
  background: linear-gradient(180deg, #ede9fe 0%, #c4b5fd 100%);
}

.note-item {
  opacity: 1;
}

.note-incoming {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
}

.note-typing {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  padding: 0.12rem 0.2rem;
  border-radius: 999px;
  background: #e6edf8;
  border: 1px solid #d2dcee;
}

.note-typing i {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #64748b;
  animation: note-dot 1s ease-in-out infinite;
}

.note-typing i:nth-child(2) {
  animation-delay: 0.15s;
}

.note-typing i:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes note-dot {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-1px);
  }
}

.laptop-notch {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 98px;
  height: 14px;
  border-radius: 0 0 12px 12px;
  background: #0a0f19;
}

.laptop-base {
  width: 112%;
  margin-left: -6%;
  margin-top: -2px;
  height: 20px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(180deg, #a8acb4 0%, #818690 100%);
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.2);
}

.proof {
  padding-bottom: 1.2rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  align-items: start;
}

#why-exitwise {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

#why-exitwise .proof-grid {
  margin-top: 1.25rem;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  gap: 0.8rem;
}

.proof-grid article {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 1.2rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.proof-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2563eb 0%, #06b6d4 100%);
  opacity: 0.9;
}

.stat-label {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #64748b;
}

.proof-grid h3.stat-value {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  margin-top: 0.35rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 18px rgba(37, 99, 235, 0.15);
}

.proof-grid p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
  max-width: 21ch;
}

.steps,
.features {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
}

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

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

.steps article,
.features article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.steps article {
  position: relative;
}

.steps article::after {
  content: "";
  position: absolute;
  right: -0.95rem;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid #cbdaf5;
  background-color: #eff4ff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12h12M13 8l4 4-4 4' stroke='%231d4ed8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  transform: translateY(-50%);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.14);
}

.steps article:last-child::after {
  content: none;
}

.steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: #e8efff;
  color: #1e40af;
  font-weight: 800;
  font-size: 0.9rem;
}

.steps h3,
.features h3 {
  margin-top: 0.75rem;
  font-size: 1.07rem;
}

.steps p,
.features p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

#financial-impact .features {
  gap: 1rem;
  margin-top: 0;
}

#financial-impact {
  padding-top: 3rem;
  background: linear-gradient(180deg, #f6f9ff 0%, #edf4ff 100%);
}

#financial-impact .brain-drain-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.6rem;
  align-items: start;
}

#financial-impact .brain-drain-copy {
  position: static;
}

#financial-impact .section-title {
  text-align: left;
  margin: 0;
}

#financial-impact .eyebrow {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#financial-impact .brain-drain-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0.35rem;
}

#financial-impact .source-note {
  text-align: left;
  margin-top: 0.65rem;
  max-width: 48ch;
}

#what-gets-lost {
  background: #f1f3f8;
  padding-bottom: 3.4rem;
}

#what-gets-lost .eyebrow {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.95rem;
}

#what-gets-lost .features article {
  position: relative;
  overflow: hidden;
  border: 1px solid #d8e3f2;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

#what-gets-lost .features article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #2563eb 0%, #06b6d4 100%);
  transition: width 0.18s ease;
}

#what-gets-lost .features article:hover {
  transform: translateY(-3px);
  border-color: #bcd0ef;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.1);
}

#what-gets-lost .features article:hover::before {
  width: 6px;
}

#what-gets-lost .features h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0;
}

#what-gets-lost .risk-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  background: #e6efff;
  border: 1px solid #c7d7f3;
}

#what-gets-lost .risk-icon svg {
  width: 14px;
  height: 14px;
}

#financial-impact .features article {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid #d8e3f2;
  border-radius: 14px;
  padding: 1.15rem;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

#financial-impact .features article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, #2563eb 0%, #06b6d4 100%);
  transition: height 0.18s ease;
}

#financial-impact .features article:hover {
  transform: translateY(-3px);
  border-color: #bcd0ef;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.1);
}

#financial-impact .features article:hover::before {
  height: 5px;
}

#financial-impact .features h3 {
  margin-top: 0.2rem;
  font-size: 1.04rem;
  color: #0f172a;
}

#financial-impact .features p {
  margin-top: 0.45rem;
  color: #475569;
}

#features .feature-list {
  margin-top: 1.8rem;
  display: grid;
  gap: 0.2rem;
}

#features {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

#features .feature-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 0;
  border-bottom: 1px solid #dbe3ee;
}

#features .feature-row:last-child {
  border-bottom: none;
}

#features .feature-row h3 {
  margin: 0;
  font-size: 1.05rem;
}

#features .feature-row p {
  margin: 0.34rem 0 0;
}

#features .what-is-cta {
  margin-top: 1.3rem;
  text-align: center;
}

#features .feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1e40af;
  background: #e8efff;
  border: 1px solid #cbdaf7;
  font-size: 0.9rem;
  font-weight: 700;
}

#features .icon-intelligence::before {
  content: "AI";
}

#features .icon-docs::before {
  content: "DOC";
  font-size: 0.55rem;
  letter-spacing: 0.25px;
}

#features .icon-video::before {
  content: "▶";
  font-size: 0.72rem;
}

#features .icon-risk::before {
  content: "!";
  font-size: 0.95rem;
}

.source-note {
  margin: 0.9rem 0 0;
  font-size: 0.84rem;
  color: #64748b;
}

.feature-subtext {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #334155;
  max-width: 64ch;
}

.hero-cta {
  padding: 0.95rem 0 1.1rem;
  background: linear-gradient(180deg, #feffff 0%, #f8fbff 100%);
  border-top: 1px solid #e8eef7;
  border-bottom: 1px solid #e8eef7;
}

.hero-cta-copy .eyebrow {
  margin-bottom: 0.4rem;
}

.hero-cta-copy .section-title {
  max-width: 24ch;
}

.hero-cta-copy p:not(.eyebrow) {
  margin: 0.55rem 0 0;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 66ch;
}

.hero-cta-grid {
  display: block;
}

.hero-cta-copy .btn {
  margin-top: 0.9rem;
  width: fit-content;
}

.pitch-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}

.quote {
  position: relative;
  background: linear-gradient(150deg, #0f172a 0%, #1f2f46 100%);
  color: #fff;
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.quote-avatar {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.3);
}

.quote p {
  margin: 0;
  font-size: 1.05rem;
}

.quote span {
  display: block;
  margin-top: 0.9rem;
  color: #dbe6f3;
  font-size: 0.9rem;
}

.cta-band {
  padding: 0.6rem 0 4.5rem;
}

.cta-band-wrap {
  background: linear-gradient(115deg, #1e40af 0%, #0f766e 100%);
  color: #fff;
  border-radius: 18px;
  padding: 1.65rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cta-band h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.cta-band p {
  margin: 0.5rem 0 0;
  color: #d7e8ff;
}

.cta-band .btn {
  background: #fff;
  color: #1e3a8a;
  white-space: nowrap;
}

.cta-band .btn:hover {
  background: #eef4ff;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
}

.form-section {
  padding-top: 0.3rem;
}

.form-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: start;
}

.signup-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.3rem;
  display: grid;
  gap: 0.42rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.signup-form label {
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.signup-form input,
.signup-form select {
  width: 100%;
  border: 1px solid #d4dce8;
  background: #fcfdff;
  color: #0a162d;
  border-radius: 10px;
  padding: 0.72rem 0.78rem;
  font: inherit;
}

.signup-form input:focus,
.signup-form select:focus {
  outline: 2px solid rgba(37, 99, 235, 0.2);
  border-color: #93c5fd;
}

.signup-form button {
  margin-top: 0.5rem;
}

.mailing-cta {
  padding: 0.5rem 0;
  margin: 0;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border-top: 1px solid #d4deec;
  border-bottom: 1px solid #d4deec;
}

.mailing-wrap {
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: center;
}

.mailing-wrap h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.mailing-wrap p {
  margin: 0.45rem 0 0;
  color: #475569;
  max-width: 40ch;
}

.mailing-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.mailing-form input {
  flex: 1;
  min-width: 210px;
  border: 1px solid #d4dce8;
  background: #ffffff;
  color: #0a162d;
  border-radius: 10px;
  padding: 0.72rem 0.78rem;
  font: inherit;
}

.mailing-form input:focus {
  outline: 2px solid rgba(37, 99, 235, 0.2);
  border-color: #93c5fd;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.9rem;
  position: relative;
}

.footer-wrap p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.back-to-top {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.86rem;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.back-to-top:hover {
  text-decoration: underline;
}

.get-started-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(
      180deg,
      rgba(241, 243, 248, 0.84) 0%,
      rgba(241, 243, 248, 0.7) 40%,
      rgba(241, 243, 248, 0.8) 100%
    ),
    url("https://42f2671d685f51e10fc6-b9fcecea3e50b3b59bdc28dead054ebc.ssl.cf5.rackcdn.com/illustrations/on_the_office_fbfs.svg")
      center 70% / cover no-repeat;
}

.get-started-page main {
  flex: 1;
  display: flex;
  align-items: center;
}

.get-started-page .form-section {
  width: 100%;
  padding: 2rem 0;
}

.get-started-page .form-wrap {
  align-items: center;
}

.get-started-page .form-wrap > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.get-started-page .form-wrap > div .lead {
  max-width: 34ch;
}

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

  .sign-in-btn {
    min-width: 92px;
  }

  .pitch-grid,
  .form-wrap,
  .mailing-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-scene {
    min-height: auto;
  }

  .laptop-wrap {
    width: 100%;
    margin-bottom: 0;
  }

  .laptop-screen {
    aspect-ratio: auto;
    min-height: auto;
    border: none;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
    background: transparent;
    overflow: visible;
  }

  .laptop-app {
    min-height: auto;
    padding: 0;
    background: transparent;
  }

  .laptop-notch,
  .laptop-base {
    display: none;
  }

  .browser-shell {
    border-radius: 14px;
    box-shadow: none;
  }

  .browser-url {
    display: none;
  }

  .app-layout {
    grid-template-columns: 1fr;
    margin-top: 0.4rem;
    gap: 0.5rem;
  }

  .app-shell {
    padding: 0.45rem;
  }

  .browser-bar {
    padding: 0.34rem 0.5rem;
  }

  .main-panel {
    gap: 0.5rem;
  }

  .video-window img {
    min-height: 190px;
  }

  .video-inset {
    display: none;
  }

  .chat-panel {
    display: block;
  }

  .right-rail {
    display: grid;
    gap: 0.5rem;
  }

  .docs-panel {
    display: none;
  }

  .notes-panel ul li:nth-child(n + 4) {
    display: none;
  }

  .chat-msg {
    font-size: 0.78rem;
  }

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

  .steps article::after {
    content: "";
    right: 50%;
    top: auto;
    bottom: -1rem;
    transform: translateX(50%) rotate(90deg);
  }

  .steps article:last-child::after {
    content: none;
  }

  #financial-impact .brain-drain-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  #financial-impact .brain-drain-copy {
    position: static;
  }

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

  .footer-wrap {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.3rem;
  }

  .footer-wrap p {
    width: 100%;
    text-align: center;
  }

  .back-to-top {
    position: static;
    transform: none;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
}
