:root {
  --canvas: #f4f1e8;
  --canvas-deep: #e9eee6;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #17251f;
  --muted: #5d6963;
  --line: rgba(23, 37, 31, 0.12);
  --green: #287d5c;
  --green-dark: #15563f;
  --green-deep: #0e3d2e;
  --green-soft: #d9eade;
  --mint: #a9d4b8;
  --amber: #d69a43;
  --blue: #4e71b8;
  --shadow-sm: 0 12px 30px rgba(24, 52, 41, 0.08);
  --shadow-lg: 0 30px 80px rgba(20, 52, 39, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font: inherit;
}

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

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

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

button,
input {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(40, 125, 92, 0.42);
  outline-offset: 4px;
}

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

.section {
  padding: 112px 0;
}

.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;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: white;
  background: var(--green-deep);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 20px;
  color: #dbece2;
  background: var(--green-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.announcement-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: #7ee0a5;
  box-shadow: 0 0 0 4px rgba(126, 224, 165, 0.13);
}

.announcement a {
  margin-left: 5px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(244, 241, 232, 0.84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(130%);
  transition: box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(250, 248, 242, 0.94);
  border-color: var(--line);
  box-shadow: 0 8px 26px rgba(26, 50, 40, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 21px;
  font-weight: 780;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(40, 125, 92, 0.2);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #3f4c46;
  font-size: 14px;
  font-weight: 610;
}

.primary-nav > a:not(.button) {
  transition: color 160ms ease;
}

.primary-nav > a:not(.button):hover {
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

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

.button-small {
  min-height: 40px;
  padding-inline: 17px;
  border-radius: 11px;
  font-size: 14px;
}

.button-primary {
  color: white;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(40, 125, 92, 0.23);
}

.button-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 16px 34px rgba(40, 125, 92, 0.28);
}

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

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

.button-light {
  color: var(--green-deep);
  background: white;
  box-shadow: 0 10px 30px rgba(2, 21, 14, 0.16);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 92px;
  padding-bottom: 100px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -260px;
  left: -250px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 212, 184, 0.36), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #9cdbb4;
}

.eyebrow-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 8px;
  font-size: 12px;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 660px;
  margin-bottom: 25px;
  font-size: clamp(48px, 5.7vw, 78px);
  line-height: 0.99;
  letter-spacing: -0.065em;
  font-weight: 790;
}

h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 31px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -0.018em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 690;
}

.text-link:hover {
  color: var(--green);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 23px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 13px;
  font-weight: 600;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof span {
  color: var(--green);
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 48px 0 56px;
}

.ambient-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.ambient-one {
  width: 420px;
  height: 420px;
  right: 0;
  top: 0;
  background: rgba(165, 211, 178, 0.38);
}

.ambient-two {
  width: 260px;
  height: 260px;
  left: 20px;
  bottom: 10px;
  background: rgba(223, 192, 132, 0.18);
}

.product-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 480px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 37, 31, 0.12);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.window-topbar {
  height: 55px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 17px;
  background: #f8f6ef;
  border-bottom: 1px solid var(--line);
}

.traffic-lights {
  display: flex;
  gap: 6px;
}

.traffic-lights span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d6d3ca;
}

.traffic-lights span:first-child { background: #e98879; }
.traffic-lights span:nth-child(2) { background: #e8bd62; }
.traffic-lights span:last-child { background: #72bd7e; }

.window-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 750;
}

.mini-wave {
  display: inline-block;
  width: 21px;
  height: 21px;
  background: var(--green);
  border-radius: 6px;
  position: relative;
}

.mini-wave::before {
  content: "";
  position: absolute;
  inset: 5px;
  background: repeating-linear-gradient(90deg, white 0 1px, transparent 1px 3px);
}

.recording-pill {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  color: #8b3129;
  background: #f5ded9;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 730;
}

.recording-pill > span {
  width: 5px;
  height: 5px;
  background: #c34c40;
  border-radius: 50%;
}

.window-body {
  min-height: 425px;
  display: grid;
  grid-template-columns: 150px 1fr;
}

.meeting-list {
  padding: 23px 10px;
  background: #f2f3ed;
  border-right: 1px solid var(--line);
}

.meeting-list > p {
  margin: 0 9px 10px;
  color: #849089;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.meeting-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px;
  margin-bottom: 3px;
  border-radius: 9px;
  color: #65716b;
}

.meeting-item.active {
  color: var(--ink);
  background: white;
  box-shadow: 0 4px 12px rgba(20, 50, 38, 0.06);
}

.meeting-item > span:last-child {
  min-width: 0;
}

.meeting-item strong,
.meeting-item small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.meeting-item strong {
  max-width: 83px;
  font-size: 9px;
}

.meeting-item small {
  margin-top: 1px;
  color: #8a948f;
  font-size: 7px;
}

.meeting-icon,
.platform-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
}

.meeting-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  font-size: 9px;
}

.teams { background: #666cc7; }
.meet { background: #347c63; }
.slack { background: #ac6a80; }

.transcript-panel {
  padding: 25px 24px;
  min-width: 0;
}

.transcript-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.overline {
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.transcript-heading h2 {
  margin: 3px 0 0;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.transcript-heading button {
  align-self: center;
  padding: 7px 10px;
  color: var(--muted);
  background: #f2f4ef;
  border-radius: 8px;
  font-size: 8px;
}

.people-strip {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 10px 12px;
  background: var(--green-soft);
  border-radius: 11px;
}

.avatar {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  margin-right: -5px;
  border: 2px solid var(--green-soft);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
}

.avatar-a { color: #13583e; background: #9fd5b6; }
.avatar-n { color: #384d8f; background: #b8c7ed; }
.avatar-f { color: #815b1e; background: #eed39d; }

.people-copy {
  margin-left: 13px;
}

.people-copy strong,
.people-copy small {
  display: block;
}

.people-copy strong { font-size: 9px; }
.people-copy small { color: var(--muted); font-size: 7px; }

.transcript-lines {
  padding-top: 19px;
}

.transcript-line {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(23, 37, 31, 0.07);
}

.transcript-line time {
  padding-top: 3px;
  color: #929b96;
  font-size: 7px;
}

.speaker {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 99px;
  font-size: 7px;
  font-weight: 800;
}

.speaker-a { color: #176044; background: #d8eee0; }
.speaker-you { color: #285391; background: #dfe8f7; }
.speaker-n { color: #7b561f; background: #f2e5c8; }

.transcript-line p {
  margin: 5px 0 0;
  color: #34443c;
  font-size: 9px;
  line-height: 1.45;
}

.transcript-line.faded { opacity: 0.6; }

.bot-free-card {
  position: absolute;
  z-index: 4;
  right: -20px;
  bottom: 20px;
  width: 250px;
  display: grid;
  grid-template-columns: 38px 1fr 24px;
  align-items: center;
  gap: 10px;
  padding: 13px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}

.bot-free-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 11px;
}

.bot-free-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bot-free-card strong,
.bot-free-card small { display: block; }
.bot-free-card strong { font-size: 11px; }
.bot-free-card small { color: var(--muted); font-size: 8px; }

.status-check {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.platforms {
  padding: 25px 0;
  background: rgba(255, 255, 255, 0.54);
  border-block: 1px solid var(--line);
}

.platforms-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.platforms-inner > p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.platform-list {
  display: flex;
  gap: 34px;
}

.platform {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 710;
}

.platform-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  font-size: 10px;
}

.meet-icon { background: #377f64; }
.teams-icon { background: #666cc7; }
.slack-icon { background: #a9607a; }

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.people-copy h2,
.native-copy h2,
.cta-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.people-copy > p,
.native-copy > p {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.contrast-section {
  background: var(--surface);
}

.comparison {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.comparison-column {
  min-height: 410px;
  padding: 48px;
}

.comparison-column.old-way {
  color: #4a504d;
  background: #f1f0eb;
}

.comparison-column.meetingstow-way {
  color: white;
  background: var(--green-dark);
}

.comparison-label {
  display: inline-flex;
  padding: 6px 10px;
  margin-bottom: 24px;
  border-radius: 99px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.meetingstow-way .comparison-label {
  color: #bfe4cc;
  background: rgba(255, 255, 255, 0.1);
}

.comparison-column h3 {
  max-width: 400px;
  margin-bottom: 29px;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.comparison-column ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-column li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 15px;
}

.comparison-column li > span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.old-way li > span {
  color: #8b5a52;
  background: #e9dcd7;
}

.meetingstow-way li > span {
  color: var(--green-dark);
  background: #9dd3b0;
}

.comparison-divider {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 2;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.comparison-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(20, 40, 32, 0.12);
  transform: translate(-50%, -50%);
  font-size: 9px;
  font-weight: 820;
}

.features-section {
  background: var(--canvas);
}

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

.feature-card {
  min-height: 330px;
  padding: 34px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 35px rgba(25, 50, 40, 0.045);
}

.feature-card h3 {
  max-width: 520px;
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.feature-card > p,
.feature-copy > p:last-child,
.feature-card > div > p:last-child {
  max-width: 560px;
  color: var(--muted);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 13px;
}

.feature-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-kicker {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 790;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.feature-large {
  grid-column: 1 / -1;
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 55px;
  padding: 50px;
  background: linear-gradient(135deg, #fbfaf5, #e8f0e8);
}

.feature-large > div:first-of-type {
  grid-column: 1;
}

.feature-large > .feature-icon {
  position: absolute;
  opacity: 0;
}

.feature-large h3 {
  font-size: 38px;
}

.auto-card {
  padding: 25px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 37, 31, 0.1);
  border-radius: 19px;
  box-shadow: var(--shadow-sm);
}

.auto-top {
  display: flex;
  align-items: center;
  gap: 18px;
}

.pulse-ring {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  background: rgba(40, 125, 92, 0.1);
  border: 1px solid rgba(40, 125, 92, 0.18);
  border-radius: 50%;
}

.pulse-ring i {
  width: 28px;
  height: 28px;
  background: repeating-linear-gradient(90deg, var(--green) 0 3px, transparent 3px 6px);
  border-radius: 3px;
}

.auto-top strong,
.auto-top small { display: block; }
.auto-top strong { font-size: 15px; }
.auto-top small { color: var(--muted); font-size: 11px; }

.auto-platforms {
  display: flex;
  gap: 7px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.auto-platforms span {
  padding: 5px 9px;
  color: var(--muted);
  background: #f1f3ee;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 700;
}

.feature-wide {
  grid-column: 1 / -1;
  min-height: 370px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 55px;
}

.mini-transcript {
  padding: 10px 22px;
  background: #f5f6f1;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.mini-transcript > div {
  display: grid;
  grid-template-columns: 42px 67px 1fr;
  align-items: center;
  gap: 9px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(23, 37, 31, 0.08);
}

.mini-transcript > div:last-child { border-bottom: 0; }
.mini-transcript p { margin: 0; color: #3f4c46; font-size: 11px; }
.mini-time { color: #8a948f; font-size: 9px; font-variant-numeric: tabular-nums; }
.mini-name { padding: 3px 7px; border-radius: 99px; font-size: 8px; font-weight: 800; text-align: center; }
.mini-name.green { color: #176044; background: #d5ecdd; }
.mini-name.blue { color: #365695; background: #dce5f7; }
.mini-name.gold { color: #79521b; background: #f0e0be; }

.steps-section {
  color: white;
  background: var(--green-deep);
}

.steps-section .section-heading > p:last-child {
  margin-inline: auto;
  color: #b6c9bf;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.step {
  position: relative;
  min-height: 390px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

.step-number {
  display: inline-flex;
  margin-bottom: 26px;
  color: #85b99a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.step-visual {
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  background: rgba(255, 255, 255, 0.045);
  border-radius: 15px;
}

.step h3 {
  margin-bottom: 11px;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.step p {
  margin: 0;
  color: #b6c9bf;
  font-size: 14px;
}

.app-tile,
.meetingstow-tile {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
}

.app-tile { color: white; background: #347c63; }
.meetingstow-tile { background: #f3f0e7; }
.connection-line { width: 52px; height: 1px; background: linear-gradient(90deg, #5e9d7d, #96c5a7); }

.record-orbit {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(126, 224, 165, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 11px rgba(126, 224, 165, 0.06);
}

.record-orbit i { width: 19px; height: 19px; background: #78d89d; border-radius: 50%; }
.record-bars { display: flex; align-items: center; gap: 3px; margin-left: 24px; }
.record-bars b { width: 3px; height: 18px; background: #87c99f; border-radius: 2px; }
.record-bars b:nth-child(2), .record-bars b:nth-child(4) { height: 32px; }
.record-bars b:nth-child(3) { height: 43px; }

.remember-person {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--green-deep);
  background: #a9d8ba;
  border-radius: 50%;
  font-weight: 800;
}

.remember-line { width: 32px; height: 1px; background: #6b9e7e; }
.remember-text { display: grid; gap: 7px; }
.remember-text i { width: 70px; height: 4px; background: #719584; border-radius: 4px; }
.remember-text i:nth-child(2) { width: 50px; }
.remember-text i:nth-child(3) { width: 62px; }

.people-section {
  background: var(--surface);
}

.people-grid,
.native-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  align-items: center;
  gap: 88px;
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 11px;
  color: var(--muted);
}

.check-list li > span:first-child {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.check-list strong { color: var(--ink); }

.people-ui {
  position: relative;
  padding: 24px;
  background: #f7f5ee;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.people-ui-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 800;
}

.people-ui-header button {
  padding: 8px 11px;
  color: white;
  background: var(--green);
  border-radius: 9px;
  font-size: 9px;
  font-weight: 740;
}

.profile-card {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 15px;
  margin-bottom: 9px;
  background: white;
  border: 1px solid rgba(23, 37, 31, 0.08);
  border-radius: 14px;
}

.profile-featured { border-color: rgba(40, 125, 92, 0.28); box-shadow: 0 8px 24px rgba(40, 125, 92, 0.08); }
.profile-avatar { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; font-size: 13px; font-weight: 800; }
.profile-copy strong, .profile-copy small { display: block; }
.profile-copy strong { font-size: 12px; }
.profile-copy small { display: flex; align-items: center; gap: 5px; margin-top: 4px; color: var(--green); font-size: 8px; font-weight: 650; }
.profile-copy small i { width: 5px; height: 5px; background: var(--green); border-radius: 50%; }
.profile-meta { color: #8c9691; font-size: 8px; text-align: right; }
.profile-meta strong { color: #53605a; font-size: 9px; }

.recognition-toast {
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 310px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 11px;
  padding: 14px;
  background: var(--green-dark);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  color: white;
}

.recognition-toast > span:first-child {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: #a2d7b5;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.recognition-toast strong,
.recognition-toast small { display: block; }
.recognition-toast strong { font-size: 10px; }
.recognition-toast small { margin-top: 2px; color: #b9cec2; font-size: 7px; }

.native-section {
  overflow: hidden;
  background: var(--canvas-deep);
}

.native-grid {
  grid-template-columns: minmax(480px, 1.1fr) minmax(0, 0.9fr);
}

.native-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}

.native-visual::before {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(40, 125, 92, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(40, 125, 92, 0.035), 0 0 0 140px rgba(40, 125, 92, 0.025);
}

.mac-chip {
  position: relative;
  z-index: 2;
  width: 300px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.mac-chip svg {
  width: 38px;
  fill: var(--ink);
}

.mac-chip strong,
.mac-chip small { display: block; }
.mac-chip strong { font-size: 15px; }
.mac-chip small { color: var(--muted); font-size: 9px; }

.privacy-orbit {
  position: absolute;
  z-index: 3;
  padding: 8px 11px;
  color: var(--green-dark);
  background: #eef6ef;
  border: 1px solid rgba(40, 125, 92, 0.16);
  border-radius: 99px;
  box-shadow: 0 8px 20px rgba(25, 55, 42, 0.08);
  font-size: 9px;
  font-weight: 720;
}

.orbit-one { top: 88px; left: 18px; }
.orbit-two { top: 96px; right: 10px; }
.orbit-three { bottom: 83px; left: 80px; }

.privacy-lock {
  position: absolute;
  z-index: 3;
  right: 78px;
  bottom: 77px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(40, 125, 92, 0.23);
}

.privacy-lock svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.native-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 35px;
}

.native-points div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.native-points strong,
.native-points span { display: block; }
.native-points strong { margin-bottom: 5px; font-size: 14px; }
.native-points span { color: var(--muted); font-size: 12px; }

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 90px;
}

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 690;
  letter-spacing: -0.02em;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--green); font-size: 21px; font-weight: 400; transition: transform 160ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 650px; padding: 0 45px 22px 0; margin: 0; color: var(--muted); }

.final-cta {
  padding-top: 78px;
  padding-bottom: 78px;
  background: var(--surface);
}

.cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
  padding: 65px;
  color: white;
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta-card > *:not(.cta-glow) { position: relative; z-index: 2; }
.cta-glow { position: absolute; width: 550px; height: 550px; left: -180px; top: -260px; background: radial-gradient(circle, rgba(126, 224, 165, 0.2), transparent 68%); }
.cta-copy h2 { max-width: 620px; margin-bottom: 14px; }
.cta-copy > p:last-child { margin: 0; color: #bdd0c5; font-size: 16px; }

.form-row {
  display: flex;
  gap: 9px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
}

.form-row input {
  min-width: 0;
  flex: 1;
  padding: 0 14px;
  color: white;
  background: transparent;
  outline: none;
  font-size: 14px;
}

.form-row input::placeholder { color: #acc1b5; }
.form-row input:focus-visible { outline: none; }
.form-note { margin: 10px 4px 0; color: #9eb5a8; font-size: 10px; }
.hidden-field { position: absolute; left: -9999px; }

.site-footer {
  padding: 62px 0 24px;
  color: #c2d1c8;
  background: #0a2d22;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 70px;
}

.footer-brand { color: white; }
.footer-brand + p { margin: 12px 0 0; color: #89a597; font-size: 13px; }
.site-footer nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; font-size: 13px; }
.site-footer nav a:hover { color: white; }
.footer-meta { justify-self: end; text-align: right; color: #89a597; font-size: 12px; }
.footer-meta p { margin-bottom: 7px; }
.legal-note { padding-top: 34px; margin-top: 35px; border-top: 1px solid rgba(255, 255, 255, 0.09); color: #718f80; font-size: 10px; }
.legal-note p { margin: 0; }

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

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-delay { transition-delay: 100ms; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  background: radial-gradient(circle at 30% 20%, #e0eee2, var(--canvas) 55%);
}

.thanks-card {
  width: min(100%, 650px);
  padding: 55px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.thanks-check {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 65px 0 22px;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-size: 24px;
}

.thanks-card h1 { font-size: clamp(42px, 7vw, 62px); }
.thanks-card > p:not(.eyebrow) { margin-bottom: 30px; color: var(--muted); font-size: 18px; }

@media (max-width: 1050px) {
  .primary-nav { gap: 20px; }
  .hero-grid { grid-template-columns: 0.9fr 1.1fr; gap: 25px; }
  .hero { padding-top: 70px; }
  .product-window { min-height: 440px; }
  .window-body { grid-template-columns: 125px 1fr; }
  .meeting-list { padding-inline: 7px; }
  .transcript-panel { padding-inline: 17px; }
  .people-grid, .native-grid { gap: 50px; }
  .cta-card { padding: 50px; gap: 40px; }
}

@media (max-width: 880px) {
  :root { --header-height: 68px; }
  .section { padding: 84px 0; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: #fffdf8;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a:not(.button) { padding: 12px 10px; }
  .primary-nav .button { margin-top: 8px; }
  .hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { max-width: 720px; width: 100%; margin-inline: auto; }
  .platforms-inner { flex-direction: column; gap: 18px; text-align: center; }
  .platform-list { flex-wrap: wrap; justify-content: center; }
  .comparison-column { padding: 38px; }
  .feature-large, .feature-wide { grid-template-columns: 1fr; gap: 30px; }
  .feature-large > div:first-of-type { grid-column: auto; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 0; display: grid; grid-template-columns: 180px 1fr; column-gap: 28px; }
  .step-number { grid-column: 1 / -1; }
  .step-visual { grid-row: 2 / span 2; margin: 0; }
  .step h3 { align-self: end; }
  .people-grid, .native-grid, .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .people-ui { width: min(100%, 650px); }
  .native-visual { grid-row: 2; }
  .faq-grid .section-heading { margin-bottom: 0; }
  .cta-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; justify-self: start; text-align: left; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .announcement { font-size: 11px; }
  .announcement a { display: none; }
  .hero { padding-top: 56px; padding-bottom: 65px; }
  h1 { font-size: clamp(45px, 15vw, 62px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .hero-proof { gap: 10px 15px; }
  .hero-visual { padding-bottom: 32px; }
  .product-window { min-height: 405px; transform: none; }
  .window-topbar { grid-template-columns: 1fr auto; }
  .traffic-lights { display: none; }
  .window-brand { justify-self: start; }
  .window-body { grid-template-columns: 1fr; }
  .meeting-list { display: none; }
  .transcript-panel { padding: 20px 16px; }
  .transcript-heading button { display: none; }
  .bot-free-card { right: 10px; width: 235px; }
  .platform-list { gap: 14px; }
  .platform { font-size: 11px; }
  .comparison { grid-template-columns: 1fr; }
  .comparison-column { min-height: 0; padding: 31px 25px; }
  .comparison-divider { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-large { grid-column: auto; min-height: 0; padding: 28px 24px; }
  .feature-wide { grid-column: auto; padding: 28px 20px; }
  .feature-large h3 { font-size: 29px; }
  .mini-transcript > div { grid-template-columns: 34px 58px 1fr; gap: 6px; }
  .mini-transcript p { font-size: 9px; }
  .step { display: block; padding: 25px; }
  .step-number { margin-bottom: 20px; }
  .step-visual { margin-bottom: 22px; }
  .people-ui { padding: 15px; }
  .profile-card { grid-template-columns: 44px 1fr; }
  .profile-meta { display: none; }
  .recognition-toast { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 12px; }
  .native-visual { min-height: 390px; transform: scale(0.86); margin: -30px; }
  .native-points { grid-template-columns: 1fr; gap: 12px; }
  .cta-card { width: calc(100% - 20px); padding: 38px 24px; border-radius: 24px; }
  .form-row { flex-direction: column; padding: 8px; }
  .form-row input { min-height: 48px; }
  .form-row .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .site-footer nav { max-width: 300px; }
  .footer-meta { grid-column: auto; }
  .thanks-card { padding: 35px 25px; }
  .thanks-check { margin-top: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* MeetingStow's marketing system: compact SaaS navigation, oversized sans
   typography, tilted product framing, bento features, and editorial steps. */
body {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

h1,
h2,
h3,
.brand,
.button,
.primary-nav {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

.section {
  padding: 118px 0;
}

.site-header {
  height: 80px;
  background: rgba(244, 241, 232, 0.9);
}

.brand {
  gap: 10px;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px 11px 11px 4px;
  transform: rotate(-4deg);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
}

.primary-nav {
  gap: 28px;
  font-size: 13px;
  font-weight: 680;
}

.button {
  min-height: 50px;
  padding-inline: 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.button-small {
  min-height: 48px;
  padding-inline: 22px;
  border-radius: 999px;
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.54);
  border-color: var(--line);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--green-dark);
  background: white;
  box-shadow: var(--shadow-sm);
}

.hero {
  padding-top: 68px;
  padding-bottom: 100px;
}

.hero::before {
  top: -230px;
  right: -180px;
  left: auto;
  width: 610px;
  height: 610px;
  background: #dbe9dc;
  opacity: 0.72;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 62px;
}

.hero .eyebrow {
  width: max-content;
  padding: 8px 12px;
  margin-bottom: 25px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.hero .eyebrow::before {
  display: none;
}

.hero .eyebrow-icon {
  width: auto;
  height: auto;
  color: inherit;
  background: transparent;
}

h1 {
  max-width: 720px;
  margin-bottom: 25px;
  font-size: clamp(60px, 7vw, 94px);
  font-weight: 870;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

h1 em {
  position: relative;
  display: inline;
}

h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -2px;
  left: 1%;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.72;
  transform: rotate(-1deg);
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.65;
}

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

.hero-proof {
  margin-top: 19px;
  font-size: 11px;
}

.hero-visual {
  padding: 34px 0 42px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 62px -27px 15px 10px;
  z-index: 1;
  background: linear-gradient(135deg, #cce3d2, #ead9b8);
  border-radius: 38px;
  transform: rotate(2deg);
}

.ambient-shape {
  display: none;
}

.product-window {
  min-height: 0;
  margin: 0;
  border-radius: 23px;
  transform: none;
}

.product-screenshot {
  display: block;
  width: 100%;
  height: auto;
}

.bot-free-card {
  right: -20px;
  bottom: 0;
  border-radius: 17px;
}

.platforms {
  padding: 0;
}

.platforms-inner {
  min-height: 80px;
  justify-content: space-between;
}

.platforms-inner > p {
  max-width: 360px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.eyebrow:not(.hero .eyebrow) {
  font-weight: 850;
}

.eyebrow:not(.hero .eyebrow)::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: currentColor;
  border-radius: 50%;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 52px;
}

.section-heading h2,
.people-copy h2,
.native-copy h2,
.cta-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-heading > p:last-child,
.people-copy > p,
.native-copy > p {
  font-size: 17px;
  line-height: 1.7;
}

.comparison {
  border-radius: 24px;
}

.comparison-column {
  min-height: 400px;
  padding: 45px;
}

.feature-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-rows: 300px 300px auto;
  gap: 15px;
}

.feature-card {
  min-height: 300px;
  padding: 30px;
  border-radius: 24px;
}

.feature-card h3 {
  font-size: 26px;
}

.feature-large {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 615px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 24px;
  padding: 38px;
  color: white;
  background: var(--green-deep);
}

.feature-large > .feature-icon {
  position: static;
  flex: 0 0 auto;
  opacity: 1;
  color: var(--green-dark);
  background: white;
}

.feature-large > div:first-of-type {
  grid-column: auto;
}

.feature-large h3 {
  color: white;
  font-size: 38px;
}

.feature-large > div > p:last-child {
  color: #b8cec2;
}

.feature-large .feature-kicker {
  color: #98d2ad;
}

.feature-large .auto-card {
  margin-top: auto;
  color: var(--ink);
}

.feature-wide {
  grid-column: 1 / -1;
  grid-row: 3;
  min-height: 370px;
  border-radius: 24px;
}

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

.steps-section > .container {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 80px;
}

.steps-section .section-heading {
  position: sticky;
  top: 120px;
  margin: 0;
  text-align: left;
}

.steps-section .section-heading .eyebrow {
  justify-content: flex-start;
  color: var(--green);
}

.steps-section .section-heading > p:last-child {
  margin-inline: 0;
  color: var(--muted);
}

.steps {
  display: block;
}

.step {
  min-height: 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 18px;
  padding: 28px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

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

.step-number {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--green);
}

.step-visual {
  display: none;
}

.step h3,
.step p {
  grid-column: 2;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.people-grid,
.native-grid {
  gap: 80px;
}

.people-ui {
  border-radius: 24px;
}

.native-section {
  color: white;
  background: var(--green-deep);
}

.native-copy h2 {
  color: white;
}

.native-copy > p,
.native-points span {
  color: #b7cbc0;
}

.native-points div {
  border-color: rgba(255, 255, 255, 0.15);
}

.native-visual::before {
  border-color: rgba(169, 212, 184, 0.25);
  box-shadow: 0 0 0 70px rgba(169, 212, 184, 0.045), 0 0 0 140px rgba(169, 212, 184, 0.025);
}

.faq-grid {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 80px;
}

.faq-list summary {
  padding-block: 25px;
}

.cta-card {
  grid-template-columns: 1fr;
  gap: 34px;
  padding: 78px 65px;
  text-align: center;
  border-radius: 28px;
}

.cta-copy h2,
.cta-copy > p:last-child {
  max-width: 850px;
  margin-inline: auto;
}

.waitlist-form {
  width: min(100%, 620px);
  margin-inline: auto;
  text-align: left;
}

@media (max-width: 1050px) {
  h1 {
    font-size: clamp(58px, 7.4vw, 78px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
    gap: 32px;
  }
}

@media (max-width: 880px) {
  .section {
    padding: 92px 0;
  }

  .hero-grid,
  .steps-section > .container,
  .people-grid,
  .native-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .feature-large,
  .feature-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-large {
    min-height: 560px;
  }

  .steps-section .section-heading {
    position: static;
  }

  .native-visual {
    grid-row: auto;
  }
}

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

  .brand {
    font-size: 20px;
  }

  .hero {
    padding-top: 55px;
  }

  h1 {
    font-size: clamp(53px, 15vw, 66px);
    line-height: 0.97;
  }

  .hero .eyebrow {
    font-size: 10px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual::before {
    inset: 50px -9px 5px 8px;
    border-radius: 26px;
  }

  .product-window {
    min-height: 0;
  }

  .section-heading h2,
  .people-copy h2,
  .native-copy h2,
  .cta-copy h2 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .feature-large {
    min-height: 510px;
  }

  .step {
    display: grid;
    grid-template-columns: 40px 1fr;
    padding: 26px 0;
  }

  .step-number {
    margin: 0;
  }

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