:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #5c6678;
  --soft: #f4f7fb;
  --panel: #ffffff;
  --line: #dce4ef;
  --line-strong: #c4cfdd;
  --red: #ff3b35;
  --coral: #f06556;
  --green: #238f66;
  --blue: #2e6bd9;
  --cyan: #18a9c5;
  --yellow: #f7bd24;
  --shadow: 0 18px 55px rgba(25, 35, 55, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 38%, #f8fafc 100%);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(220, 228, 239, 0.82);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1120px, calc(100% - 40px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 52% 52%, #fff 0 18%, transparent 19%),
    conic-gradient(from 24deg, #ff443b, #ffb827, #59c86f, #20bfd1, #5368e8, #f05fae, #ff443b);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.82), 0 8px 18px rgba(46, 107, 217, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 750;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.04);
}

.button.primary {
  border-color: #101826;
  background: #101826;
  color: #fff;
}

.button.subtle {
  background: rgba(255,255,255,0.7);
}

.button.disabled {
  pointer-events: none;
  color: #7a8495;
  background: #edf2f7;
}

.page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  min-width: 0;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  align-items: center;
  gap: 64px;
  padding: clamp(38px, 6vh, 72px) 0 clamp(56px, 8vh, 96px);
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

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

.hero-note {
  margin-top: 18px;
  color: #7a8495;
  font-size: 13px;
}

.product-visual {
  justify-self: end;
  width: 100%;
  max-width: 470px;
  min-width: 0;
}

.app-icon {
  display: block;
  width: 116px;
  height: 116px;
  margin: 0 auto 24px;
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(46, 107, 217, 0.18);
}

.recorder-mock {
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow);
  padding: 22px;
  min-width: 0;
}

.mock-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 820;
}

.record-dot {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  border-radius: 50%;
  background: var(--red);
  border: 11px solid #fff;
  box-shadow: 0 0 0 10px rgba(255, 59, 53, 0.12), 0 15px 35px rgba(255, 59, 53, 0.22);
}

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

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

.pill {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  border-radius: 13px;
  background: #eef3f8;
  color: #49505d;
  font-size: 18px;
  font-weight: 780;
}

.pill.active {
  background: #101826;
  color: #fff;
}

.hint {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 15px;
  background: #edf8f1;
  color: #1e6046;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 760;
  overflow-wrap: break-word;
}

.section {
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: end;
  margin-bottom: 30px;
}

.section h2 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section h2 span,
.story-copy h2 span {
  display: block;
}

.section-lede {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 860;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.product-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 56px;
  align-items: end;
  min-width: 0;
}

.product-proof > * {
  min-width: 0;
}

.product-proof h2 {
  max-width: 780px;
}

.proof-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.proof-points li {
  min-height: 58px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 720;
}

.story-section {
  padding: 78px 0;
  border-top: 1px solid var(--line);
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 58px;
  align-items: center;
  min-width: 0;
}

.story-split > * {
  min-width: 0;
}

.story-reverse .story-media {
  order: 2;
}

.story-copy h2 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.story-copy {
  min-width: 0;
}

.story-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.story-copy .section-kicker {
  margin-top: 0;
  color: var(--green);
}

.story-media {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 48px rgba(25, 35, 55, 0.09);
  width: 100%;
  min-width: 0;
}

.story-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.story-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.story-points li {
  position: relative;
  padding-left: 24px;
  color: #344054;
  line-height: 1.48;
}

.story-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.story-points li:nth-child(2)::before {
  background: var(--green);
}

.story-points li:nth-child(3)::before {
  background: var(--coral);
}

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

.feature {
  min-height: 214px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.feature strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.mini-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #eef3f8;
  display: grid;
  place-items: center;
}

.mini-icon::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--blue);
}

.feature:nth-child(2) .mini-icon::before { background: var(--coral); border-radius: 50%; }
.feature:nth-child(3) .mini-icon::before { background: var(--green); }
.feature:nth-child(4) .mini-icon::before { background: var(--cyan); }
.feature:nth-child(5) .mini-icon::before { background: var(--yellow); }
.feature:nth-child(6) .mini-icon::before { background: #7a63dc; }

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

.capability {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.9));
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.03);
}

.capability span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 860;
}

.capability strong {
  display: block;
  margin-top: auto;
  padding-top: 34px;
  font-size: 21px;
  line-height: 1.14;
}

.capability p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.capability:nth-child(2) span { color: var(--coral); }
.capability:nth-child(3) span { color: var(--green); }
.capability:nth-child(4) span { color: var(--cyan); }

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.review-mock {
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.window-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: #f5f7fa;
  border-bottom: 1px solid var(--line);
}

.traffic {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.traffic.red { background: #ff5f57; }
.traffic.yellow { background: #ffbd2e; }
.traffic.green { background: #28c840; }

.video-area {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(140deg, rgba(46, 107, 217, 0.16), rgba(24, 169, 197, 0.12)),
    linear-gradient(180deg, #111827, #25364e);
  position: relative;
}

.capture-window {
  position: absolute;
  left: 13%;
  right: 13%;
  top: 15%;
  bottom: 20%;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 28px);
}

.playbar {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 20px;
  height: 42px;
  border-radius: 8px;
  background: rgba(8, 13, 23, 0.72);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 14px;
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #fff;
}

.track {
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff 0 56%, rgba(255,255,255,0.28) 56%);
}

.fullscreen-glyph {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.78);
  border-radius: 3px;
}

.meta-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px;
  background: #f7f9fc;
}

.meta {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.meta span {
  display: block;
  color: #7a8495;
  font-size: 12px;
  margin-bottom: 4px;
}

.meta b {
  font-size: 15px;
}

.list {
  display: grid;
  gap: 14px;
}

.list-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.check {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  background: #e7f7ef;
  position: relative;
}

.check::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 6px;
  width: 6px;
  height: 10px;
  border: solid var(--green);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.list-row strong {
  display: block;
  margin-bottom: 4px;
}

.list-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.page-title {
  padding: 74px 0 42px;
}

.page-title h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 72px);
}

.content {
  max-width: 820px;
  padding-bottom: 90px;
}

.content h2 {
  margin: 42px 0 12px;
  font-size: 28px;
}

.content p,
.content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.content ul {
  padding-left: 21px;
}

.notice {
  margin: 28px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: #7a8495;
  font-size: 14px;
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1180px) {
  .product-proof,
  .story-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-copy {
    order: 1;
    max-width: 900px;
  }

  .story-media,
  .story-reverse .story-media {
    order: 2;
  }

  .story-copy h2 {
    max-width: 900px;
    font-size: clamp(42px, 6vw, 68px);
  }

  .story-copy > p:not(.section-kicker),
  .section-lede {
    max-width: 850px;
    font-size: clamp(22px, 2.55vw, 28px);
    line-height: 1.42;
  }

  .story-copy .section-kicker,
  .section-kicker {
    font-size: 15px;
  }

  .proof-points {
    gap: 10px;
  }

  .proof-points li {
    min-height: 64px;
    font-size: clamp(21px, 2.25vw, 25px);
  }

  .story-points {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .story-points li {
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,0.74);
    color: #344054;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 720;
    line-height: 1.2;
  }

  .story-points li::before {
    display: none;
  }

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

@media (max-width: 880px) {
  .nav {
    width: min(1120px, calc(100% - 28px));
  }

  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 42px;
  }

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

  .product-visual {
    justify-self: center;
    width: 100%;
    max-width: 470px;
  }

  .section-head,
  .split {
    display: block;
  }

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

  .section-lede {
    margin-top: 14px;
  }

  .review-mock {
    margin-top: 28px;
  }

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

@media (max-width: 620px) {
  .nav {
    width: calc(100vw - 28px);
  }

  .nav-links {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .nav-links .button {
    min-width: 94px;
    padding: 0 12px;
  }

  .page {
    width: calc(100% - 28px);
  }

  .brand span:not(.brand-mark) {
    display: none;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .hero-copy {
    font-size: 17px;
    max-width: 330px;
  }

  .section {
    padding: 54px 0;
  }

  .story-section {
    padding: 54px 0;
  }

  h1 {
    max-width: 100%;
    font-size: 40px;
  }

  .section h2,
  .story-copy h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .section-kicker,
  .story-copy .section-kicker {
    font-size: 12px;
  }

  .section-lede,
  .story-copy > p:not(.section-kicker) {
    font-size: 17px;
    line-height: 1.55;
  }

  .proof-points li {
    min-height: 52px;
    font-size: 17px;
  }

  .story-points {
    gap: 8px;
  }

  .story-points li {
    padding: 8px 10px;
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 330px;
  }

  .hero-actions .button {
    width: 100%;
    flex: 0 0 auto;
    padding: 0 12px;
    text-align: center;
  }

  .app-icon {
    width: 92px;
    height: 92px;
    border-radius: 20px;
  }

  .recorder-mock {
    padding: 16px;
  }

  .product-visual {
    max-width: 330px;
    justify-self: start;
  }

  .segmented {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

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

  .pill {
    min-height: 42px;
    border-radius: 10px;
    font-size: 13px;
    text-align: center;
    white-space: normal;
  }

  .hint {
    padding: 14px;
    font-size: 14px;
  }

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

  .capability {
    min-height: auto;
  }

  .capability strong {
    margin-top: 34px;
    padding-top: 0;
  }

  .mock-title {
    font-size: 21px;
  }

  .record-dot {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .meta-strip {
    grid-template-columns: 1fr;
  }
}
