@font-face {
  font-family: Manrope;
  src: url("assets/manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: Grotesk;
  src: url("assets/grotesk.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}
:root {
  --paper: #f4f2e9;
  --ink: #281e2a;
  --muted: #6c626c;
  --acid: #d8ed72;
  --line: #d7d2cd;
  --plum: #39283d;
  --white: #fffcf6;
  --radius: 14px;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #7b3ea2;
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  padding: 12px;
  background: var(--acid);
  z-index: 100;
}
.skip:focus {
  top: 10px;
}
.header {
  max-width: 1440px;
  margin: auto;
  padding: 25px 48px;
  display: flex;
  gap: 36px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: Grotesk, sans-serif;
  font-size: 33px;
  font-weight: 700;
  letter-spacing: -1.8px;
}
.brand-dot {
  font-family: Arial;
  font-size: 12px;
  align-self: flex-start;
  margin-top: 9px;
  letter-spacing: 0;
}
.header nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
}
.header nav a {
  position: relative;
}
.header nav a:after {
  content: "";
  position: absolute;
  height: 1px;
  background: var(--ink);
  bottom: -6px;
  left: 0;
  width: 0;
  transition: width 0.25s;
}
.header nav a:hover:after {
  width: 100%;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 17px 23px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  transition:
    transform 0.25s,
    background 0.25s;
  line-height: 1.3;
}
.button:hover {
  transform: translateY(-3px);
}
.button span {
  font-size: 22px;
  line-height: 1;
}
.button-dark {
  background: var(--ink);
  color: var(--white);
}
.button-dark:hover {
  background: #4a3550;
}
.nav-cta {
  padding: 13px 18px;
  font-size: 13px;
}
.menu-toggle {
  display: none;
}
.section-wrap {
  max-width: 1344px;
  margin: auto;
  padding: 0 48px;
}
.hero {
  padding-top: 62px;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: #89993d;
  border-radius: 50%;
  box-shadow: 0 0 0 5px #e5e8cf;
}
.hero h1 {
  font-size: clamp(64px, 8.4vw, 124px);
  font-family: Grotesk, sans-serif;
  letter-spacing: -7px;
  font-weight: 500;
  line-height: 0.99;
  margin: 28px 0 38px;
}
.headline-second {
  position: relative;
  display: inline-block;
}
.hero h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -6px;
}
.headline-second svg {
  position: absolute;
  width: 43%;
  height: 35px;
  right: -3px;
  bottom: -28px;
  fill: none;
  stroke: #8b9843;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 700;
  animation: underline 2s ease both;
}
.hero-bottom {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.62fr;
  gap: 30px;
  align-items: center;
  margin: 48px 0 46px;
}
.hero-bottom > p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}
.hero-bottom strong {
  color: var(--ink);
  font-weight: 600;
}
.hero-actions {
  justify-self: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.text-button {
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  padding: 5px;
}
.play-small {
  font-size: 11px;
  display: inline-grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-right: 6px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 17px;
  justify-self: end;
}
.asterisk {
  font-size: 64px;
  line-height: 1;
  display: block;
  animation: turn 36s linear infinite;
  color: #8d9b46;
}
.hero-note p {
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}
.product-hero {
  background: var(--ink);
  border: 7px solid var(--ink);
  border-radius: 17px;
  overflow: hidden;
  box-shadow: 0 22px 55px #281e2a18;
  position: relative;
}
.product-bar {
  height: 37px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #e3dce5;
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 0 14px 7px;
}
.window-dots {
  display: flex;
  gap: 5px;
}
.window-dots i {
  width: 7px;
  height: 7px;
  background: #796a7c;
  border-radius: 50%;
}
.live-label {
  display: flex;
  gap: 7px;
  align-items: center;
}
.live-label i {
  height: 5px;
  width: 5px;
  background: var(--acid);
  border-radius: 50%;
}
.product-hero > img {
  border-radius: 6px;
  width: 100%;
  height: auto;
}
.image-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #e3dce5;
  padding: 18px 15px 10px;
  font-size: 13px;
}
.image-caption button {
  background: none;
  color: var(--acid);
  border: 0;
  font-size: 13px;
}
.image-caption button span {
  margin-left: 12px;
}
@keyframes turn {
  to {
    transform: rotate(360deg);
  }
}
@keyframes underline {
  from {
    stroke-dashoffset: 700;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@media (max-width: 900px) {
  .header {
    padding: 20px 24px;
  }
  .header nav {
    gap: 16px;
  }
  .nav-cta {
    display: none;
  }
  .section-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero h1 {
    letter-spacing: -4px;
  }
  .hero-bottom {
    grid-template-columns: 1fr 1fr;
  }
  .hero-note {
    display: none;
  }
}
@media (max-width: 600px) {
  .header {
    padding: 18px 20px;
  }
  .header nav {
    display: none;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
    background: none;
    border: 0;
    font-size: 24px;
  }
  .section-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero {
    padding-top: 38px;
  }
  .hero h1 {
    font-size: 64px;
    letter-spacing: -4px;
  }
  .hero h1 em {
    letter-spacing: -3px;
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 1.3px;
  }
  .hero-bottom {
    display: block;
    margin-top: 46px;
  }
  .hero-bottom > p {
    font-size: 16px;
  }
  .hero-actions {
    align-items: flex-start;
    margin-top: 25px;
    gap: 14px;
  }
  .product-hero {
    border-width: 4px;
    border-radius: 9px;
  }
  .product-bar {
    font-size: 8px;
    padding: 0 6px 4px;
    height: 28px;
  }
  .live-label {
    display: none;
  }
  .image-caption {
    font-size: 11px;
    padding: 12px 7px;
    gap: 12px;
  }
  .image-caption > span {
    max-width: 57%;
  }
  .image-caption button {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
[hidden] {
  display: none !important;
}
.section-space {
  padding-top: 112px;
  padding-bottom: 32px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 1.8px;
  font-weight: 700;
  margin: 0 0 25px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 44px;
}
h2 {
  font-family: Grotesk, sans-serif;
  font-size: clamp(38px, 4.1vw, 59px);
  font-weight: 500;
  letter-spacing: -2.5px;
  line-height: 1.08;
  margin: 0;
}
h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
h3 {
  font-family: Grotesk, sans-serif;
  font-weight: 500;
  letter-spacing: -0.8px;
}
.section-heading > p {
  max-width: 350px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 4px;
}
.signal-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}
.signal-strip i {
  font-size: 25px;
  color: #8b9843;
  font-style: normal;
}
.feature-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.feature-tabs button {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 6px;
  padding: 20px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  color: var(--ink);
  transition: background 0.2s;
}
.feature-tabs button[aria-selected="true"] {
  background: var(--acid);
  border-color: var(--acid);
}
.feature-tabs span {
  font-family: monospace;
  font-size: 12px;
  opacity: 0.65;
}
.feature-tabs b {
  margin-left: auto;
  font-size: 20px;
  font-weight: 400;
}
.feature-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.65fr;
  align-items: center;
  gap: 30px;
  background: #eae6dd;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 35px 0 35px 35px;
  overflow: hidden;
}
.feature-copy {
  padding-right: 6px;
}
.mini-mark {
  font-size: 39px;
  font-family: Grotesk, sans-serif;
  line-height: 1;
}
.feature-copy h3 {
  font-size: 30px;
  line-height: 1.15;
  margin: 23px 0 18px;
}
.feature-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.feature-copy ul {
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 2;
}
.feature-copy li:before {
  content: "↳";
  margin-right: 10px;
  color: #707e31;
}
.capture-label {
  display: block;
  font-family: monospace;
  font-size: 10px;
  letter-spacing: 1px;
  margin-top: 30px;
  color: var(--muted);
}
.feature-panel > a {
  border: 6px solid var(--ink);
  border-right: 0;
  border-radius: 9px 0 0 9px;
  box-shadow: 0 15px 25px #281e2a20;
  transition: transform 0.3s;
}
.feature-panel > a:hover {
  transform: translateX(-5px);
}
.feature-panel img {
  width: 100%;
  height: auto;
}
.ownership {
  background: var(--ink);
  color: var(--paper);
  margin-top: 90px;
  padding-top: 92px;
  overflow: hidden;
}
.ownership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}
.ownership .eyebrow {
  color: var(--acid);
}
.ownership h2 {
  font-size: clamp(42px, 4.5vw, 66px);
}
.ownership h2 em {
  color: var(--acid);
}
.ownership-intro {
  max-width: 430px;
  line-height: 1.8;
  color: #c8beca;
  margin: 30px 0;
}
.button-acid {
  background: var(--acid);
  color: var(--ink);
}
.button-acid:hover {
  background: #e5f69d;
}
.ownership-list article {
  display: flex;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid #584959;
}
.ownership-list article:first-child {
  padding-top: 8px;
}
.ownership-list article > span {
  font-family: monospace;
  font-size: 12px;
  color: var(--acid);
  padding-top: 7px;
}
.ownership-list h3 {
  font-size: 25px;
  margin: 0 0 12px;
}
.ownership-list p {
  font-size: 16px;
  line-height: 1.8;
  color: #c8beca;
  margin: 0;
}
.ownership-watermark {
  font-family: Grotesk, sans-serif;
  font-size: clamp(65px, 13.3vw, 200px);
  letter-spacing: -0.06em;
  white-space: nowrap;
  text-align: center;
  line-height: 0.85;
  margin-top: 86px;
  color: #57455b;
  transform: translateY(8px);
  user-select: none;
}
.tour-cover {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  text-align: left;
  isolation: isolate;
}
.tour-cover > img {
  width: 100%;
  height: auto;
  max-height: 530px;
  object-fit: cover;
  object-position: top;
  opacity: 0.65;
  transition:
    transform 0.7s,
    opacity 0.7s;
}
.tour-cover:hover > img {
  transform: scale(1.025);
  opacity: 0.82;
}
.tour-overlay {
  display: flex;
  align-items: center;
  gap: 26px;
  position: absolute;
  inset: 0;
  padding: 45px;
  background: linear-gradient(0deg, #281e2aee, transparent 85%);
  font-family: Grotesk, sans-serif;
  font-size: clamp(23px, 3vw, 40px);
}
.large-play {
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  font-size: 25px;
  flex-shrink: 0;
  padding-left: 4px;
  box-shadow: 0 0 0 12px #d8ed7220;
}
.tour-overlay small {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  margin-top: 14px;
}
.tour-arrow {
  margin-left: auto;
  font-size: 55px;
  color: var(--acid);
}
.tour-footnote {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
}
.tour-footnote a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps article {
  padding: 32px 30px 35px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.steps article:first-child {
  padding-left: 0;
}
.steps article:last-child {
  border: 0;
  padding-right: 0;
}
.step-number {
  font-family: Grotesk, sans-serif;
  font-size: 42px;
  color: #8c9177;
  letter-spacing: -2px;
}
.steps h3 {
  font-size: 25px;
  margin: 34px 0 5px;
}
.steps p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 30px;
}
.step-tag {
  font-size: 10px;
  letter-spacing: 1.3px;
  font-weight: 700;
  margin-top: auto;
}
.deployment-note {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.deployment-note .mini-mark {
  color: #7d8939;
}
.deployment-note p {
  line-height: 1.8;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.deployment-note strong {
  font-weight: 600;
  color: var(--ink);
}
.text-link {
  font-size: 13px;
  font-weight: 600;
  margin-left: auto;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  padding-bottom: 110px;
}
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 23px 0;
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 25px;
  font-weight: 400;
  transition: transform 0.2s;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 95%;
  margin: 20px 0 0;
}
.closing-inner {
  position: relative;
  border-radius: 12px;
  padding: 55px 60px;
  background: var(--acid);
  overflow: hidden;
}
.closing h2 {
  font-size: clamp(44px, 5.7vw, 82px);
  position: relative;
  z-index: 1;
}
.closing-inner > div {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 35px;
  position: relative;
  z-index: 1;
}
.closing-inner > div p {
  font-size: 16px;
  line-height: 1.8;
}
.closing-star {
  position: absolute;
  right: -25px;
  top: 45px;
  font-size: 340px;
  line-height: 1;
  color: #bccf5f;
  animation: turn 60s linear infinite;
}
.closing .eyebrow {
  position: relative;
  z-index: 1;
}
.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 12px;
  color: var(--muted);
}
.footer .brand {
  color: var(--ink);
  font-size: 28px;
}
.footer > a:not(.brand) {
  margin-left: auto;
  color: var(--ink);
}
.footer p {
  font-size: 13px;
}
.modal-open {
  overflow: hidden;
}
dialog {
  width: min(1160px, 94vw);
  max-height: 94dvh;
  overflow: auto;
  padding: 24px;
  border: 1px solid #69566d;
  border-radius: 14px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 30px 150px #0008;
}
dialog::backdrop {
  background: #150e1cdd;
  backdrop-filter: blur(8px);
}
.dialog-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}
.dialog-heading .eyebrow {
  font-size: 10px;
  color: var(--acid);
  margin-bottom: 8px;
}
.dialog-heading h2 {
  font-size: 28px;
  letter-spacing: -1px;
}
.close-dialog {
  width: 42px;
  height: 42px;
  border: 1px solid #78697c;
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  font-size: 20px;
  flex-shrink: 0;
}
video {
  display: block;
  width: 100%;
  max-height: 70dvh;
  background: #100e14;
  border-radius: 5px;
}
.video-description {
  font-size: 13px;
  line-height: 1.6;
  color: #c8beca;
  margin-bottom: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.revealed {
  opacity: 1;
  transform: none;
}
@media (min-width: 1500px) {
  .hero h1 {
    font-size: 124px;
  }
}
@media (max-width: 1000px) {
  .ownership-grid {
    gap: 55px;
  }
  .feature-panel {
    grid-template-columns: 1fr 1.35fr;
    gap: 15px;
    padding-left: 25px;
  }
  .feature-tabs button {
    padding: 17px 12px;
    gap: 8px;
    font-size: 13px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading > p {
    max-width: 300px;
  }
  .faq {
    gap: 40px;
  }
  .steps article {
    padding-left: 22px;
    padding-right: 22px;
  }
}
@media (max-width: 700px) {
  .section-space {
    padding-top: 70px;
    padding-bottom: 15px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    max-width: 100%;
    margin-top: 24px;
  }
  h2 {
    letter-spacing: -1.7px;
  }
  .signal-strip {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
    font-size: 12px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .signal-strip i {
    display: none;
  }
  .feature-tabs {
    gap: 5px;
  }
  .feature-tabs button {
    display: block;
    padding: 13px 8px;
    font-size: 12px;
    line-height: 1.5;
  }
  .feature-tabs span {
    display: block;
    margin-bottom: 5px;
  }
  .feature-tabs b {
    display: none;
  }
  .feature-panel {
    display: block;
    padding: 25px;
  }
  .feature-panel > a {
    display: block;
    margin: 25px -25px -25px 0;
    border-radius: 7px 0 0 0;
  }
  .feature-copy h3 br {
    display: none;
  }
  .feature-copy h3 {
    font-size: 28px;
  }
  .capture-label {
    margin-top: 20px;
  }
  .ownership {
    margin-top: 60px;
    padding-top: 60px;
  }
  .ownership-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .ownership-list article {
    padding: 24px 0;
  }
  .ownership-watermark {
    margin-top: 50px;
  }
  .tour-overlay {
    padding: 22px;
    gap: 20px;
    font-size: 23px;
  }
  .large-play {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }
  .tour-overlay small {
    font-size: 9px;
    letter-spacing: 1px;
    line-height: 1.7;
  }
  .tour-arrow {
    display: none;
  }
  .tour-footnote {
    font-size: 11px;
    line-height: 1.7;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps article,
  .steps article:first-child,
  .steps article:last-child {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .steps article:last-child {
    border-bottom: 0;
  }
  .steps h3 {
    margin-top: 20px;
  }
  .steps p {
    margin-bottom: 20px;
  }
  .deployment-note {
    align-items: flex-start;
    gap: 15px;
    flex-wrap: wrap;
  }
  .text-link {
    margin-left: 54px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 65px;
  }
  .closing-inner {
    padding: 35px 25px;
  }
  .closing-inner > div {
    display: block;
    margin-top: 22px;
  }
  .closing-inner > div .button {
    margin-top: 12px;
  }
  .closing-star {
    right: -100px;
    top: 30px;
    opacity: 0.5;
  }
  .footer {
    flex-wrap: wrap;
    gap: 15px 25px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .footer p {
    display: none;
  }
  .footer > span {
    width: 100%;
    font-size: 11px;
  }
  .header {
    position: relative;
  }
  .header nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 25px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 24px #281e2a15;
  }
  .header nav a {
    padding: 8px;
  }
  .dialog-heading h2 {
    font-size: 22px;
  }
  dialog {
    padding: 15px;
  }
  .video-description {
    font-size: 12px;
  }
}
@media (max-width: 380px) {
  .hero h1 {
    font-size: 54px;
  }
  .hero-eyebrow {
    font-size: 9px;
  }
  .tour-overlay {
    font-size: 18px;
    gap: 15px;
  }
  .tour-overlay small {
    font-size: 8px;
  }
  .large-play {
    width: 42px;
    height: 42px;
  }
  .feature-tabs button {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.feature-copy p,
details p {
  font-size: 16px;
}

.gitops-stages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}
.gitops-stages li {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.gitops-stages li:not(:last-child)::after {
  content: " →";
  margin-left: 12px;
  color: var(--muted);
}
.gitops-capture {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.gitops-capture img {
  width: 100%;
  height: auto;
}
.gitops-capture figcaption {
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.gitops-capture strong {
  color: var(--ink);
}
.gitops-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 28px;
  margin-top: 36px;
}
.gitops-benefits article {
  border-top: 2px solid var(--ink);
  padding-top: 24px;
}
.gitops-benefits .eyebrow {
  display: block;
  margin-bottom: 18px;
}
.gitops-benefits h3 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.2;
}
.gitops-benefits p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}
.gitops-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}
.gitops-duration {
  font-size: 13px;
  color: var(--muted);
}
