:root {
  --ink: #0d1512;
  --muted: #5e6b65;
  --soft: #f4f7f5;
  --line: #dfe7e2;
  --paper: #fbfcfb;
  --white: #ffffff;
  --green-950: #061a13;
  --green-900: #0a271d;
  --green-800: #0d3a2a;
  --green-700: #116149;
  --green-600: #07845e;
  --green-500: #12ad7b;
  --green-400: #34d399;
  --green-200: #a7f3d0;
  --green-100: #d8f8e8;
  --lime: #c7f36b;
  --shadow: 0 24px 70px rgba(7, 35, 25, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shell: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.brand-mark,
.mini-mark {
  position: relative;
  display: inline-grid;
  flex: none;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px 13px 13px 9px;
  background: var(--green-400);
  transform: rotate(-4deg);
}

.brand-mark::before,
.mini-mark::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1.5px solid rgba(5, 41, 29, 0.62);
  border-radius: 50%;
}

.brand-mark__dot,
.mini-mark > span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-950);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-left: auto;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.status-pill > span,
.build-status > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.13);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 830px;
  padding: 170px 0 112px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(4, 22, 16, 0.98), rgba(7, 36, 26, 0.96)),
    var(--green-950);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 72%, transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.hero-glow--one {
  top: -260px;
  right: -100px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(31, 191, 135, 0.2), transparent 68%);
}

.hero-glow--two {
  bottom: -340px;
  left: -180px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(134, 239, 172, 0.12), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(610px, 1.22fr);
  align-items: center;
  gap: 44px;
}

.hero-copy {
  padding-bottom: 12px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 21px;
  color: var(--green-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 25px;
  height: 1px;
  background: currentColor;
}

.hero .eyebrow,
.eyebrow--light {
  color: var(--green-400);
}

.hero h1,
.section-heading h2,
.ownership-copy h2,
.faq-heading h2,
.closing-inner h2 {
  margin: 0;
  font-size: clamp(49px, 5.1vw, 74px);
  font-weight: 650;
  letter-spacing: -0.066em;
  line-height: 0.99;
}

h1 em,
h2 em {
  color: var(--green-400);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 18px;
  line-height: 1.72;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 49px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
.main-nav a:focus-visible,
.site-footer a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--primary {
  background: var(--green-400);
  color: var(--green-950);
}

.button--primary:hover {
  background: #54e5ad;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 600;
  list-style: none;
}

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

.hero-proof svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--green-400);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-scene {
  position: relative;
  min-height: 518px;
  margin-right: -145px;
  perspective: 1200px;
}

.scene-orbit {
  position: absolute;
  border: 1px solid rgba(52, 211, 153, 0.13);
  border-radius: 50%;
}

.scene-orbit--one {
  top: -46px;
  right: 25px;
  width: 560px;
  height: 560px;
}

.scene-orbit--two {
  top: 15px;
  right: 86px;
  width: 438px;
  height: 438px;
}

.app-window {
  position: absolute;
  top: 31px;
  left: 14px;
  width: 718px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: #f9faf9;
  color: #142019;
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.39), 0 0 0 8px rgba(255, 255, 255, 0.025);
  transform: rotateY(-5deg) rotateX(1.5deg);
  transform-origin: center left;
}

.app-bar {
  height: 50px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 17px;
  border-bottom: 1px solid #e4ebe7;
  background: var(--white);
}

.app-bar__brand {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 120px;
  font-size: 12px;
  letter-spacing: -0.03em;
}

.mini-mark {
  width: 19px;
  height: 19px;
  border-radius: 6px 8px 8px 6px;
}

.mini-mark::before {
  inset: 4px;
  border-width: 1px;
}

.mini-mark > span {
  width: 3px;
  height: 3px;
}

.app-bar__search {
  width: 224px;
  margin-inline: auto;
  padding: 7px 12px;
  border: 1px solid #e4ebe7;
  border-radius: 8px;
  color: #93a098;
  background: #f8faf9;
  font-size: 9px;
}

.app-bar__search span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border: 1px solid #93a098;
  border-radius: 50%;
}

.avatar {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--white);
  background: #173e30;
  font-size: 8px;
  font-weight: 800;
}

.app-layout {
  display: grid;
  grid-template-columns: 126px 1fr;
  min-height: 408px;
}

.app-sidebar {
  padding: 20px 10px;
  border-right: 1px solid #e5ece8;
  background: #f3f6f4;
}

.side-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  border-radius: 6px;
  color: #65736b;
  font-size: 8px;
  font-weight: 650;
}

.side-item i {
  width: 9px;
  height: 9px;
  border: 1px solid currentColor;
  border-radius: 3px;
}

.side-item--active {
  color: #0b6e4f;
  background: #dff4e9;
}

.side-divider {
  display: block;
  height: 1px;
  margin: 12px 4px;
  background: #dfe6e2;
}

.side-label {
  display: block;
  padding: 0 9px 5px;
  color: #a1aca6;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-content {
  padding: 22px;
}

.content-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.content-heading div {
  display: grid;
  gap: 3px;
}

.content-heading small {
  color: #8b9991;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.content-heading strong {
  font-size: 16px;
  letter-spacing: -0.035em;
}

.record-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border-radius: 7px;
  color: var(--white);
  background: #087554;
  font-size: 7px;
  font-weight: 750;
}

.record-button b {
  width: 6px;
  height: 6px;
  border: 1.5px solid var(--white);
  border-radius: 50%;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 17px;
}

.metric-row > div {
  display: grid;
  padding: 11px 12px;
  border: 1px solid #e4eae6;
  border-radius: 9px;
  background: var(--white);
}

.metric-row span {
  color: #849087;
  font-size: 7px;
}

.metric-row strong {
  margin: 1px 0;
  font-size: 17px;
  letter-spacing: -0.04em;
}

.metric-row small {
  color: #16825f;
  font-size: 6px;
}

.workspace-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 10px;
  margin-top: 10px;
}

.video-panel,
.insight-panel {
  min-width: 0;
  padding: 13px;
  border: 1px solid #e4eae6;
  border-radius: 10px;
  background: var(--white);
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 9px;
  border-bottom: 1px solid #edf1ee;
  font-size: 8px;
}

.panel-title span {
  color: #07845e;
  font-size: 6px;
}

.video-row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding-top: 10px;
}

.video-row + .video-row {
  margin-top: 9px;
  border-top: 1px solid #edf1ee;
}

.thumb {
  position: relative;
  height: 36px;
  overflow: hidden;
  border-radius: 6px;
  background: linear-gradient(145deg, #245e48, #8fd7b7);
}

.thumb::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 9px;
  width: 20px;
  height: 24px;
  border-radius: 12px 12px 7px 7px;
  background: rgba(255, 255, 255, 0.3);
}

.thumb--two {
  background: linear-gradient(145deg, #253d59, #9ab4cf);
}

.play {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
}

.play::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 7px;
  border-width: 3.5px 0 3.5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #0d6148;
}

.thumb small {
  position: absolute;
  right: 3px;
  bottom: 3px;
  padding: 1px 3px;
  border-radius: 3px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.58);
  font-size: 5px;
}

.video-meta {
  display: grid;
  min-width: 0;
  font-size: 6px;
}

.video-meta strong {
  overflow: hidden;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-meta span {
  color: #89948e;
}

.video-meta i {
  color: #14815e;
  font-style: normal;
}

.video-row time {
  color: #97a19c;
  font-size: 6px;
}

.insight-panel {
  background: #f0faf5;
}

.insight-head {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #0c6248;
  font-size: 8px;
}

.spark {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  color: var(--green-950);
  background: var(--green-200);
}

.insight-panel > p {
  margin: 9px 0;
  color: #637068;
  font-size: 7px;
}

.ai-answer {
  display: grid;
  gap: 2px;
  padding: 8px;
  border: 1px solid #d8ece1;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.78);
}

.ai-answer + .ai-answer {
  margin-top: 6px;
}

.ai-answer span {
  color: #0b7b58;
  font-size: 5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-answer strong {
  font-size: 7px;
}

.ai-answer small {
  color: #7d8982;
  font-size: 6px;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 12px;
  color: var(--white);
  background: rgba(10, 34, 26, 0.93);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.floating-card--live {
  z-index: 3;
  top: 4px;
  left: 400px;
  width: 227px;
  padding: 12px 14px;
}

.live-dot {
  width: 9px;
  height: 9px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: #ff5d67;
  box-shadow: 0 0 0 4px rgba(255, 93, 103, 0.15);
}

.floating-card div {
  display: grid;
}

.floating-card small {
  color: var(--green-400);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.floating-card strong {
  font-size: 9px;
}

.wave {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.wave i {
  width: 2px;
  height: 9px;
  border-radius: 2px;
  background: var(--green-400);
}

.wave i:nth-child(2),
.wave i:nth-child(4) {
  height: 15px;
}

.wave i:nth-child(3) {
  height: 6px;
}

.floating-card--view {
  z-index: 3;
  right: 20px;
  bottom: 4px;
  width: 232px;
  padding: 13px;
}

.view-icon {
  display: grid;
  flex: none;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  color: var(--green-950);
  background: var(--green-400);
  font-size: 15px;
  font-weight: 900;
}

.floating-card--view div > span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 7px;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-inner {
  min-height: 89px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.trust-inner > span {
  color: #8a958f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-inner strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 8px;
  color: var(--green-800);
  background: var(--green-100);
  font-size: 10px;
  font-style: normal;
}

.trust-icon--outline,
.trust-icon--spark,
.trust-icon--lock {
  background: #edf3f0;
}

.section {
  padding: 122px 0;
}

.product-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: 30px;
  margin-bottom: 58px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.section-heading h2,
.ownership-copy h2,
.faq-heading h2,
.closing-inner h2 {
  font-size: clamp(43px, 4.6vw, 64px);
}

.section-heading > p:last-child,
.faq-heading > p:last-child {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

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

.feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(15, 48, 35, 0.045);
}

.feature-visual {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.recorder-visual {
  background: linear-gradient(140deg, #eef9f3, #dbeee4);
}

.record-screen {
  position: absolute;
  right: -10px;
  bottom: -3px;
  width: 90%;
  height: 82%;
  overflow: hidden;
  border: 1px solid #cedbd3;
  border-radius: 12px 0 0 0;
  background: #fff;
  box-shadow: 0 20px 40px rgba(14, 58, 41, 0.12);
}

.record-browser-bar {
  display: block;
  height: 20px;
  border-bottom: 1px solid #e6ede8;
  background: #f8faf9;
}

.record-browser-bar::before {
  content: "•••";
  padding-left: 8px;
  color: #a8b5ad;
  font-size: 10px;
  letter-spacing: 3px;
}

.record-copy {
  display: grid;
  gap: 13px;
  padding: 28px 35px;
}

.record-copy i {
  display: block;
  width: 75%;
  height: 8px;
  border-radius: 10px;
  background: #e9efeb;
}

.record-copy i:first-child {
  width: 48%;
  height: 14px;
  background: #183e31;
}

.record-copy i:last-child {
  width: 58%;
}

.camera-bubble {
  position: absolute;
  right: 15px;
  bottom: 34px;
  display: grid;
  place-items: center;
  width: 73px;
  height: 73px;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, #1c5943, #56bc91);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.18);
  font-weight: 800;
}

.record-control {
  position: absolute;
  bottom: 14px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 9px;
  color: var(--white);
  background: #101915;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
  font-size: 8px;
}

.record-control b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fb4554;
}

.record-control i {
  color: #a9b6ae;
  font-size: 6px;
  font-style: normal;
}

.meeting-visual {
  background: linear-gradient(140deg, #0a2d22, #124937);
}

.meeting-visual::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.18), transparent 68%);
  transform: translate(60%, -35%);
}

.meeting-grid {
  position: absolute;
  inset: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.person {
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  color: var(--white);
  background: linear-gradient(145deg, #2d7159, #153c2e);
  font-size: 19px;
  font-weight: 750;
}

.person--two {
  background: linear-gradient(145deg, #617a95, #293d54);
}

.person small {
  position: absolute;
  bottom: 8px;
  left: 9px;
  font-size: 7px;
  font-weight: 600;
}

.meeting-controls {
  position: absolute;
  right: 50%;
  bottom: 12px;
  display: flex;
  gap: 5px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(3, 13, 9, 0.75);
  transform: translateX(50%);
}

.meeting-controls i {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 10px;
  font-style: normal;
}

.meeting-controls .hangup {
  background: #e94f5b;
}

.intelligence-visual {
  background: linear-gradient(140deg, #f1f5f3, #e2ebe6);
}

.transcript-card {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 76%;
  padding: 18px;
  border: 1px solid #d5dfd9;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(11, 55, 39, 0.08);
}

.transcript-card > span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.transcript-card > span + span {
  margin-top: 13px;
}

.transcript-card i {
  flex: none;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #d8eee3;
}

.transcript-card b {
  display: block;
  width: 80%;
  height: 17px;
  border-radius: 3px;
  background: repeating-linear-gradient(to bottom, #dfe6e2 0 3px, transparent 3px 7px);
}

.search-answer {
  position: absolute;
  right: 19px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 78%;
  padding: 12px;
  border: 1px solid #bce8d1;
  border-radius: 10px;
  background: #e8faef;
  box-shadow: 0 10px 24px rgba(11, 82, 57, 0.1);
}

.search-answer > span {
  display: grid;
  flex: none;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 8px;
  color: #0b5d44;
  background: var(--green-200);
}

.search-answer div {
  display: grid;
}

.search-answer small {
  color: #248465;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.search-answer strong {
  font-size: 9px;
}

.feature-copy {
  padding: 27px 28px 30px;
}

.feature-number {
  display: block;
  margin-bottom: 14px;
  color: var(--green-600);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
}

.feature-copy h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.feature-copy > p {
  min-height: 79px;
  margin: 11px 0 19px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.feature-copy ul,
.price-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 17px 0 0;
  border-top: 1px solid var(--line);
  color: #48554f;
  font-size: 12px;
  list-style: none;
}

.feature-copy li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 9px 2px 0;
  border-radius: 50%;
  background: var(--green-500);
}

.ownership-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.ownership-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.5) 1px, transparent 0);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 55%, #000);
}

.ownership-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 90px;
}

.ownership-copy > p:not(.eyebrow) {
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.75;
}

.ownership-points {
  display: grid;
  gap: 1px;
  margin-top: 35px;
}

.ownership-points > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ownership-points > div > span {
  color: var(--green-400);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.ownership-points p {
  display: grid;
  gap: 2px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.ownership-points strong {
  color: var(--white);
  font-size: 14px;
}

.architecture-card {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.27);
  backdrop-filter: blur(8px);
}

.architecture-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.architecture-head i {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--green-300, #6ee7b7);
  background: rgba(52, 211, 153, 0.1);
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0;
}

.architecture-domain {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.15);
}

.architecture-domain div {
  display: grid;
}

.architecture-domain small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.architecture-domain strong {
  font-size: 12px;
}

.architecture-domain > i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-left: auto;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--green-400);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.architecture-line {
  height: 55px;
  display: grid;
  place-items: center;
}

.architecture-line span {
  position: relative;
  width: 1px;
  height: 100%;
  background: rgba(52, 211, 153, 0.44);
}

.architecture-line span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 78px;
  height: 1px;
  background: rgba(52, 211, 153, 0.44);
  transform: translateX(-50%);
}

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

.architecture-services > div {
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: 18px 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  margin-bottom: 11px;
  border-radius: 10px;
  color: #103e2e;
  background: var(--green-200);
  font-size: 10px;
}

.service-icon--rings {
  color: #35526d;
  background: #dceaf7;
  font-size: 17px;
}

.service-icon--db {
  color: #574b18;
  background: #f4eab3;
  font-size: 16px;
}

.architecture-services small {
  color: rgba(255, 255, 255, 0.35);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.architecture-services strong {
  overflow: hidden;
  width: 100%;
  margin-top: 2px;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.architecture-services i {
  color: var(--green-400);
  font-size: 7px;
  font-style: normal;
}

.architecture-card > p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px 14px;
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
}

.architecture-card > p span {
  color: var(--green-400);
}

.pricing-section {
  background: #f3f6f4;
}

.section-heading--center {
  display: block;
  max-width: 700px;
  margin: 0 auto 61px;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
  margin-bottom: 21px;
}

.section-heading--center > p:last-child {
  max-width: 560px;
  margin: 23px auto 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 17px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid #dce5df;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(15, 48, 35, 0.04);
}

.price-card--featured {
  border: 1.5px solid var(--green-600);
  box-shadow: 0 20px 55px rgba(7, 132, 94, 0.12);
}

.popular-tag {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 6px 13px;
  border-radius: 0 0 9px 9px;
  color: var(--white);
  background: var(--green-700);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.price-top {
  display: flex;
  flex-direction: column;
  min-height: 184px;
}

.plan-name {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-top > p {
  min-height: 48px;
  margin: 10px 0 19px;
  color: var(--muted);
  font-size: 13px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.price strong {
  font-size: 42px;
  letter-spacing: -0.065em;
  line-height: 1;
}

.price span {
  color: #76827c;
  font-size: 11px;
  font-weight: 650;
}

.price--enterprise strong {
  font-size: 37px;
}

.price-top > small {
  margin-top: 8px;
  color: #7a867f;
  font-size: 10px;
}

.price-divider {
  height: 1px;
  background: var(--line);
}

.price-card ul {
  flex: 1;
  gap: 12px;
  padding: 23px 0;
  border-top: 0;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12px;
}

.price-card li span {
  display: grid;
  flex: none;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: var(--green-700);
  background: var(--green-100);
  font-size: 8px;
  font-weight: 900;
}

.availability {
  display: grid;
  place-items: center;
  min-height: 43px;
  border: 1px solid #dbe5df;
  border-radius: 9px;
  color: #6f7b74;
  background: #f4f7f5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.availability--featured {
  border-color: var(--green-800);
  color: var(--white);
  background: var(--green-800);
}

.pricing-note {
  margin: 28px 0 0;
  color: #8a958f;
  font-size: 11px;
  text-align: center;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.66fr 1fr;
  gap: 95px;
}

.faq-heading {
  position: sticky;
  top: 40px;
  align-self: start;
}

.faq-heading > p:last-child {
  max-width: 360px;
  margin-top: 25px;
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 680;
  letter-spacing: -0.025em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
  border: 1px solid #cfd9d3;
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  background: var(--green-700);
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > p {
  max-width: 650px;
  margin: -7px 45px 25px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.closing-section {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  color: var(--white);
  background: var(--green-800);
}

.closing-section::before,
.closing-section::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(52, 211, 153, 0.16);
  border-radius: 50%;
}

.closing-section::before {
  top: -280px;
  right: -100px;
  width: 650px;
  height: 650px;
}

.closing-section::after {
  right: 43px;
  bottom: -340px;
  width: 650px;
  height: 650px;
}

.closing-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.closing-mark {
  position: absolute;
  top: -24px;
  left: 50%;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(52, 211, 153, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -25%);
}

.closing-mark::before,
.closing-mark::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(52, 211, 153, 0.1);
  border-radius: 50%;
}

.closing-mark::before {
  inset: 48px;
}

.closing-mark::after {
  inset: 96px;
}

.closing-inner .eyebrow {
  position: relative;
  z-index: 2;
  justify-content: center;
}

.closing-inner h2 {
  position: relative;
  z-index: 2;
}

.closing-inner > p:not(.eyebrow) {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.63);
}

.build-status {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.11);
  font-size: 11px;
  font-weight: 750;
}

.site-footer {
  color: rgba(255, 255, 255, 0.6);
  background: #04110c;
}

.footer-inner {
  min-height: 105px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
}

.brand--footer {
  color: var(--white);
  font-size: 20px;
}

.brand--footer .brand-mark {
  width: 24px;
  height: 24px;
}

.footer-inner p {
  margin: 0;
  font-size: 11px;
}

.footer-inner p a,
.footer-inner nav a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 3px;
}

.footer-inner nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: 11px;
}

@media (max-width: 1100px) {
  .hero {
    padding-bottom: 90px;
  }

  .hero-grid {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 25px;
  }

  .product-scene {
    margin-right: -270px;
    transform: scale(0.9);
    transform-origin: left center;
  }

  .ownership-grid {
    gap: 48px;
  }

  .trust-inner {
    justify-content: center;
    flex-wrap: wrap;
    padding: 24px 0;
  }

  .trust-inner > span {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .nav-shell {
    gap: 20px;
  }

  .main-nav {
    display: none;
  }

  .status-pill {
    margin-left: auto;
  }

  .hero {
    padding-top: 145px;
  }

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

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

  .product-scene {
    min-height: 485px;
    margin: 20px -215px 0 0;
    transform: scale(0.94);
  }

  .section {
    padding: 92px 0;
  }

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

  .section-heading .eyebrow {
    margin-bottom: -4px;
  }

  .section-heading > p:last-child {
    max-width: 560px;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
  }

  .feature-visual {
    min-height: 330px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .feature-copy {
    align-self: center;
  }

  .feature-copy > p {
    min-height: 0;
  }

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

  .architecture-card {
    max-width: 650px;
  }

  .pricing-grid {
    max-width: 610px;
    margin-inline: auto;
  }

  .price-top,
  .price-top > p {
    min-height: 0;
  }

  .price-top > p {
    margin-bottom: 18px;
  }

  .price-top > small {
    margin-bottom: 23px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq-heading {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    padding: 28px 0;
  }

  .footer-inner p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .site-header {
    position: absolute;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand {
    font-size: 21px;
  }

  .brand-mark {
    width: 25px;
    height: 25px;
  }

  .status-pill {
    padding: 7px 10px;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 76px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-proof {
    display: grid;
    gap: 8px;
  }

  .product-scene {
    min-height: 315px;
    margin: 27px -336px -10px 0;
    transform: scale(0.67);
    transform-origin: left top;
  }

  .floating-card--view {
    right: 120px;
  }

  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .trust-inner > span {
    grid-column: 1 / -1;
  }

  .trust-inner strong {
    font-size: 11px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .ownership-copy h2,
  .faq-heading h2,
  .closing-inner h2 {
    font-size: 42px;
  }

  .feature-card {
    display: block;
  }

  .feature-visual {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-copy {
    padding: 25px 24px 27px;
  }

  .feature-copy > p {
    font-size: 13px;
  }

  .ownership-grid {
    gap: 42px;
  }

  .architecture-card {
    padding: 17px;
  }

  .architecture-head i {
    display: none;
  }

  .architecture-services strong {
    font-size: 7px;
  }

  .architecture-card > p {
    justify-content: flex-start;
  }

  .section-heading--center {
    text-align: left;
  }

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

  .section-heading--center > p:last-child {
    margin-left: 0;
  }

  .price-card {
    padding: 26px 23px;
  }

  .faq-list summary {
    font-size: 15px;
  }

  .closing-section {
    padding: 90px 0;
  }

  .footer-inner nav {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
