:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --bg: #06100a;
  --bg-deep: #030805;
  --surface: #0a1710;
  --surface-raised: #0e2016;
  --surface-hover: #12291c;
  --line: rgba(170, 219, 186, 0.13);
  --line-strong: rgba(111, 237, 160, 0.35);
  --text: #effaf2;
  --text-soft: #b4cbb9;
  --text-muted: #718579;
  --green: #48e487;
  --green-bright: #9affbe;
  --green-deep: #1caf5d;
  --blue: #69b5ff;
  --purple: #b69aff;
  --yellow: #f1c56c;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius: 18px;
  --content-width: 1180px;
  background: var(--bg);
  color: var(--text);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 86% 0%, rgba(44, 178, 91, 0.09), transparent 32rem),
    radial-gradient(circle at 9% 27%, rgba(39, 119, 72, 0.06), transparent 28rem),
    linear-gradient(145deg, #06100a 0%, #08130d 48%, #050c08 100%);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(134, 210, 157, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(134, 210, 157, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body,
button,
a {
  font: inherit;
}

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

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

button {
  border: 0;
}

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

img,
svg {
  display: block;
}

::selection {
  color: #041108;
  background: var(--green-bright);
}

:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 4px;
}

.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;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #041108;
  border-radius: 8px;
  background: var(--green-bright);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.page-shell {
  position: relative;
  overflow: clip;
}

.section-wrap {
  width: min(var(--content-width), calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(72, 228, 135, 0.1), 0 0 18px rgba(72, 228, 135, 0.65);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

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

.button-primary {
  color: #041108;
  border-color: rgba(159, 255, 192, 0.48);
  background: linear-gradient(135deg, var(--green-bright), var(--green));
  box-shadow: 0 9px 28px rgba(39, 201, 98, 0.18), inset 0 1px rgba(255, 255, 255, 0.42);
}

.button-primary:hover {
  background: linear-gradient(135deg, #c1ffd4, #65ee99);
  box-shadow: 0 12px 34px rgba(39, 201, 98, 0.28), inset 0 1px rgba(255, 255, 255, 0.5);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(18, 37, 26, 0.65);
}

.button-secondary:hover {
  border-color: var(--line-strong);
  background: var(--surface-hover);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 160ms ease, gap 160ms ease;
}

.text-link:hover {
  gap: 11px;
  color: var(--green-bright);
}

/* Header */

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: min(var(--content-width), calc(100% - 48px));
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  border-bottom: 1px solid rgba(170, 219, 186, 0.08);
}

.site-header.is-scrolled {
  position: fixed;
  top: 12px;
  width: min(calc(var(--content-width) + 34px), calc(100% - 24px));
  min-height: 64px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(6, 16, 10, 0.82);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  animation: header-in 220ms ease both;
}

@keyframes header-in {
  from { opacity: 0; transform: translateY(-9px); }
  to { opacity: 1; transform: translateY(0); }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(72, 228, 135, 0.35);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(47, 125, 75, 0.35), rgba(8, 29, 17, 0.65));
  box-shadow: 0 0 24px rgba(72, 228, 135, 0.12);
}

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

.brand-mark-line {
  fill: none;
  stroke: #dcffea;
  stroke-linecap: round;
  stroke-width: 2.4;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 780;
  letter-spacing: -0.025em;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.site-navigation a {
  transition: color 160ms ease;
}

.site-navigation a:hover,
.site-navigation a.is-active {
  color: var(--text);
}

.site-navigation .navigation-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 13px;
  color: #041108;
  border-radius: 8px;
  background: var(--green);
}

.site-navigation .navigation-cta:hover {
  color: #041108;
  background: var(--green-bright);
}

.navigation-cta span {
  font-size: 1rem;
  line-height: 0.7;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 10px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(18, 37, 26, 0.65);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 16px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(2.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-2.5px) rotate(-45deg);
}

/* Hero */

.hero {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 0.91fr) minmax(500px, 1.09fr);
  align-items: center;
  gap: 42px;
  padding-top: 78px;
  padding-bottom: 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero h1,
.section-heading h2,
.security-copy h2,
.release-copy h2 {
  margin-top: 20px;
  color: var(--text);
  font-size: clamp(3.25rem, 6vw, 5.7rem);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.hero h1 span,
.section-heading h2 span,
.security-copy h2 span,
.release-copy h2 span {
  color: var(--green);
  text-shadow: 0 0 42px rgba(72, 228, 135, 0.13);
}

.hero-text {
  max-width: 500px;
  margin-top: 27px;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 31px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.hero-note svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 510px;
  perspective: 1100px;
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(48, 191, 94, 0.22), rgba(21, 102, 52, 0.08) 43%, transparent 70%);
  filter: blur(12px);
  transform: translate(-50%, -50%);
}

.visual-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(88, 218, 135, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.visual-orbit--one {
  width: 560px;
  height: 245px;
}

.visual-orbit--two {
  width: 470px;
  height: 190px;
  border-color: rgba(104, 180, 255, 0.09);
  transform: translate(-50%, -50%) rotate(31deg);
}

.launcher-preview {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100%, 570px);
  overflow: hidden;
  border: 1px solid rgba(159, 228, 178, 0.21);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(21, 42, 29, 0.97), rgba(6, 18, 11, 0.97));
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.58), 0 0 80px rgba(50, 193, 93, 0.1), inset 0 1px rgba(255, 255, 255, 0.09);
  transform: translate(-50%, -50%) rotateY(-7deg) rotateX(3deg) rotateZ(1deg);
}

.preview-toolbar {
  display: flex;
  height: 35px;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(170, 219, 186, 0.1);
  background: rgba(2, 10, 5, 0.38);
  font-size: 0.54rem;
  letter-spacing: 0.03em;
}

.window-dots {
  display: flex;
  gap: 4px;
}

.window-dots i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(220, 255, 231, 0.26);
}

.window-dots i:first-child { background: #f08a79; }
.window-dots i:nth-child(2) { background: #e8c876; }
.window-dots i:nth-child(3) { background: #76d99a; }

.preview-title {
  opacity: 0.65;
}

.preview-live {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #8de9a9;
}

.preview-live b,
.state-dot,
.status-pill i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.preview-body {
  display: flex;
  min-height: 355px;
}

.preview-sidebar {
  display: flex;
  width: 74px;
  flex: 0 0 74px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 19px 0 13px;
  border-right: 1px solid rgba(170, 219, 186, 0.08);
  background: rgba(0, 8, 4, 0.22);
}

.preview-logo {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-bottom: 13px;
  border: 1px solid rgba(72, 228, 135, 0.4);
  border-radius: 7px;
  background: rgba(72, 228, 135, 0.12);
}

.preview-logo span {
  display: block;
  width: 8px;
  height: 11px;
  border: 2px solid var(--green);
  border-top: 0;
  border-radius: 0 0 5px 5px;
}

.preview-nav {
  display: flex;
  width: 35px;
  height: 31px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid transparent;
  border-radius: 7px;
}

.preview-nav i {
  display: block;
  width: 10px;
  height: 10px;
  border: 1.5px solid rgba(155, 190, 164, 0.42);
  border-radius: 3px;
}

.preview-nav span {
  display: none;
}

.preview-nav--active {
  border-color: rgba(72, 228, 135, 0.24);
  background: rgba(72, 228, 135, 0.12);
}

.preview-nav--active i {
  border-color: var(--green);
  background: rgba(72, 228, 135, 0.35);
}

.preview-sidebar-bottom {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-top: auto;
  border: 1px solid rgba(170, 219, 186, 0.17);
  border-radius: 50%;
}

.preview-sidebar-bottom i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(180, 218, 190, 0.45);
}

.preview-content {
  flex: 1;
  min-width: 0;
  padding: 27px 27px 22px;
}

.preview-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-welcome > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.preview-kicker,
.preview-card-label,
.preview-stat span {
  color: #7f9e88;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.preview-welcome strong {
  color: #e4f7e9;
  font-size: 1.22rem;
  letter-spacing: -0.04em;
}

.preview-avatar {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: #9effbb;
  border: 1px solid rgba(72, 228, 135, 0.32);
  border-radius: 50%;
  background: rgba(72, 228, 135, 0.12);
  font-size: 0.7rem;
  font-weight: 750;
}

.preview-hero-card {
  display: flex;
  min-height: 120px;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 25px;
  padding: 17px 18px;
  overflow: hidden;
  border: 1px solid rgba(72, 228, 135, 0.25);
  border-radius: 11px;
  background: radial-gradient(circle at 90% 12%, rgba(98, 239, 135, 0.26), transparent 33%), linear-gradient(135deg, rgba(24, 72, 43, 0.75), rgba(13, 39, 23, 0.72));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.preview-card-copy {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.preview-card-copy strong {
  color: #dff9e6;
  font-size: 0.78rem;
  letter-spacing: -0.02em;
}

.preview-card-meta {
  color: #91c49c;
  font-size: 0.54rem;
}

.preview-play {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  padding-left: 2px;
  color: #06120a;
  border-radius: 50%;
  background: var(--green-bright);
  font-size: 0.66rem;
  box-shadow: 0 0 22px rgba(72, 228, 135, 0.3);
}

.preview-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 14px;
}

.preview-stat {
  display: flex;
  min-height: 67px;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  border: 1px solid rgba(170, 219, 186, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.preview-stat strong {
  color: #e1f5e6;
  font-size: 0.95rem;
  letter-spacing: -0.04em;
}

.preview-stat i {
  display: block;
  width: 27px;
  height: 3px;
  border-radius: 10px;
  background: rgba(72, 228, 135, 0.56);
}

.preview-bottom-row {
  display: flex;
  gap: 6px;
  margin-top: 18px;
}

.preview-bottom-row span {
  display: block;
  height: 5px;
  border-radius: 10px;
  background: rgba(170, 219, 186, 0.11);
}

.preview-bottom-row span:first-child { width: 36%; background: rgba(72, 228, 135, 0.35); }
.preview-bottom-row span:nth-child(2) { width: 22%; }
.preview-bottom-row span:nth-child(3) { width: 30%; }

.floating-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px 10px 10px;
  border: 1px solid rgba(159, 228, 178, 0.2);
  border-radius: 10px;
  background: rgba(10, 27, 16, 0.88);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  animation: float-badge 5s ease-in-out infinite;
}

.floating-badge--top {
  top: 10%;
  right: 1%;
}

.floating-badge--bottom {
  bottom: 8%;
  left: 1%;
  animation-delay: -2.3s;
}

.badge-icon,
.badge-check {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #06120a;
  border-radius: 7px;
  background: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
}

.badge-check {
  color: #06120a;
  background: #82eaa7;
  font-size: 0.72rem;
}

.floating-badge > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-badge b {
  color: #d8f2df;
  font-size: 0.64rem;
}

.floating-badge small {
  color: #769181;
  font-size: 0.52rem;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Signal strip */

.signal-strip {
  border-top: 1px solid rgba(170, 219, 186, 0.08);
  border-bottom: 1px solid rgba(170, 219, 186, 0.08);
  background: rgba(4, 12, 7, 0.35);
}

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

.signal-item {
  display: flex;
  min-height: 96px;
  align-items: center;
  gap: 14px;
  padding: 18px 25px;
  border-right: 1px solid rgba(170, 219, 186, 0.08);
}

.signal-item:first-child { padding-left: 0; }
.signal-item:last-child { border-right: 0; }

.signal-icon {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(72, 228, 135, 0.23);
  border-radius: 8px;
  background: rgba(72, 228, 135, 0.08);
  font-size: 0.61rem;
  font-weight: 750;
}

.signal-item > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.signal-item b {
  color: var(--text-soft);
  font-size: 0.75rem;
  font-weight: 700;
}

.signal-item small {
  color: var(--text-muted);
  font-size: 0.65rem;
}

/* Sections */

.section {
  padding-top: 132px;
  padding-bottom: 132px;
}

.section-heading {
  max-width: 620px;
}

.section-heading h2,
.security-copy h2,
.release-copy h2 {
  font-size: clamp(2.65rem, 5vw, 4.35rem);
}

.section-heading > p:not(.eyebrow),
.section-heading--row > p {
  max-width: 530px;
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

.section-heading--row {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.section-heading--row > p {
  max-width: 370px;
  margin-bottom: 5px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 54px;
}

.feature-card {
  position: relative;
  min-height: 270px;
  padding: 25px 24px 23px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(15, 33, 22, 0.74), rgba(7, 20, 12, 0.7));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 228, 135, 0.09), transparent 68%);
  content: "";
  pointer-events: none;
}

.feature-card:hover {
  border-color: var(--line-strong);
  background: linear-gradient(145deg, rgba(19, 46, 29, 0.82), rgba(7, 22, 13, 0.76));
  transform: translateY(-4px);
}

.feature-card--wide {
  display: grid;
  min-height: 215px;
  grid-column: span 2;
  grid-template-columns: 53px 1fr auto;
  align-items: start;
  gap: 19px;
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid currentColor;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.feature-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.feature-icon--green { color: var(--green); background: rgba(72, 228, 135, 0.08); }
.feature-icon--blue { color: var(--blue); background: rgba(105, 181, 255, 0.08); }
.feature-icon--purple { color: var(--purple); background: rgba(182, 154, 255, 0.08); }
.feature-icon--yellow { color: var(--yellow); background: rgba(241, 197, 108, 0.08); }

.feature-card--wide .feature-icon {
  margin-bottom: 0;
}

.card-index {
  display: block;
  color: var(--text-muted);
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.feature-card h3 {
  max-width: 300px;
  margin-top: 12px;
  color: var(--text);
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.feature-card--wide h3 {
  max-width: 390px;
  font-size: 1.4rem;
}

.feature-card p {
  max-width: 355px;
  margin-top: 13px;
  color: var(--text-soft);
  font-size: 0.77rem;
  line-height: 1.65;
}

.card-arrow {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(72, 228, 135, 0.24);
  border-radius: 8px;
  font-size: 1rem;
  transition: transform 160ms ease, background 160ms ease;
}

.feature-card:hover .card-arrow {
  background: rgba(72, 228, 135, 0.12);
  transform: translate(2px, -2px);
}

/* Workflow */

.workflow-section {
  border-top: 1px solid rgba(170, 219, 186, 0.08);
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 62px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-step {
  position: relative;
  display: grid;
  min-height: 210px;
  grid-template-columns: 36px 43px 1fr;
  align-content: start;
  gap: 17px;
  padding: 0 35px 0 0;
}

.workflow-step + .workflow-step {
  padding-left: 35px;
  border-left: 1px solid rgba(170, 219, 186, 0.1);
}

.step-number {
  padding-top: 12px;
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.step-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(72, 228, 135, 0.24);
  border-radius: 11px;
  background: rgba(72, 228, 135, 0.07);
  font-size: 1.1rem;
}

.workflow-step h3 {
  margin-top: 12px;
  color: var(--text);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.workflow-step p {
  max-width: 260px;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.77rem;
  line-height: 1.66;
}

/* Security */

.security-section {
  position: relative;
  border-top: 1px solid rgba(170, 219, 186, 0.08);
  border-bottom: 1px solid rgba(170, 219, 186, 0.08);
  background: linear-gradient(120deg, rgba(9, 27, 16, 0.65), rgba(3, 11, 6, 0.35));
}

.security-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 40%, rgba(42, 148, 79, 0.12), transparent 58%);
  content: "";
  pointer-events: none;
}

.security-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 80px;
}

.security-copy > p:not(.eyebrow) {
  max-width: 460px;
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--text-soft);
  font-size: 0.76rem;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list li span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(72, 228, 135, 0.25);
  border-radius: 50%;
  background: rgba(72, 228, 135, 0.08);
  font-size: 0.65rem;
}

.security-card {
  padding: 18px;
  border: 1px solid rgba(159, 228, 178, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(17, 40, 24, 0.8), rgba(6, 19, 11, 0.85));
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.06);
}

.security-card-top,
.security-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.security-card-top {
  padding: 2px 4px 17px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  color: #91e8ac;
  border: 1px solid rgba(72, 228, 135, 0.18);
  border-radius: 6px;
  background: rgba(72, 228, 135, 0.07);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.security-card-code,
.terminal-muted,
.release-label,
.security-card-bottom,
.code-card-header,
.deployment-list small {
  color: var(--text-muted);
  font-size: 0.58rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.security-terminal {
  display: grid;
  gap: 0;
  padding: 13px 0;
  border-top: 1px solid rgba(170, 219, 186, 0.1);
  border-bottom: 1px solid rgba(170, 219, 186, 0.1);
}

.terminal-line {
  display: grid;
  min-height: 43px;
  grid-template-columns: 27px 75px 1fr 17px;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(170, 219, 186, 0.06);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.67rem;
}

.terminal-line:last-child {
  border-bottom: 0;
}

.terminal-green { color: var(--green); }
.terminal-line b { color: var(--green); font-weight: 500; }

.security-card-bottom {
  justify-content: flex-start;
  gap: 9px;
  padding: 17px 4px 2px;
  letter-spacing: 0.03em;
  text-transform: none;
}

.signal-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(72, 228, 135, 0.08), 0 0 14px var(--green);
}

.security-arrow {
  margin-left: auto;
  color: var(--green);
  font-size: 1rem;
}

/* Release */

.release-section {
  padding-bottom: 112px;
}

.release-panel {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 45px;
  padding: 49px 52px;
  overflow: hidden;
  border: 1px solid rgba(72, 228, 135, 0.22);
  border-radius: 24px;
  background: radial-gradient(circle at 90% 20%, rgba(72, 228, 135, 0.13), transparent 33%), linear-gradient(135deg, rgba(15, 42, 24, 0.88), rgba(6, 20, 11, 0.9));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.08);
}

.release-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 23px;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

.release-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 21px;
  margin-top: 29px;
}

.release-side {
  align-self: center;
  padding: 22px;
  border: 1px solid rgba(170, 219, 186, 0.11);
  border-radius: 14px;
  background: rgba(3, 13, 7, 0.35);
}

.release-label {
  color: #81a58b;
}

.release-state {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 23px;
}

.state-dot {
  width: 9px;
  height: 9px;
  color: var(--yellow);
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(241, 197, 108, 0.09), 0 0 17px rgba(241, 197, 108, 0.6);
}

.release-state > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.release-state b {
  color: var(--text);
  font-size: 0.82rem;
}

.release-state small {
  color: var(--text-muted);
  font-size: 0.65rem;
}

.release-rule {
  height: 1px;
  margin: 22px 0 16px;
  background: rgba(170, 219, 186, 0.1);
}

.release-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  color: var(--text-muted);
  font-size: 0.65rem;
}

.release-meta b {
  color: var(--text-soft);
  font-size: 0.64rem;
  font-weight: 600;
  text-align: right;
}

/* Deployment */

.deployment-section {
  padding-top: 0;
}

.deployment-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 14px;
  margin-top: 50px;
}

.code-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #07130c;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.code-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 17px;
  border-bottom: 1px solid rgba(170, 219, 186, 0.09);
  letter-spacing: 0.04em;
  text-transform: none;
}

.code-card-header > span {
  display: flex;
  gap: 5px;
}

.code-card-header i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(220, 255, 231, 0.18);
}

.code-card-header i:first-child { background: #e88779; }
.code-card-header i:nth-child(2) { background: #e8c876; }
.code-card-header i:nth-child(3) { background: #76d99a; }

.code-card pre {
  margin: 0;
  padding: 24px 22px 28px;
  overflow-x: auto;
  color: var(--text-soft);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.85;
}

.code-muted { color: #8aaa91; }
.code-green { color: #82e6a4; }
.code-blue { color: #8bc7ff; }

.deployment-list {
  display: grid;
  align-content: start;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.deployment-list > div {
  display: grid;
  grid-template-columns: 37px 1fr;
  gap: 13px;
  padding: 23px 21px;
  background: rgba(10, 24, 15, 0.78);
}

.deployment-list > div > span {
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.deployment-list p {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.deployment-list b {
  color: var(--text);
  font-size: 0.84rem;
}

.deployment-list small {
  color: var(--text-soft);
  font-size: 0.68rem;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

/* FAQ */

.faq-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
  padding-top: 16px;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 620px;
  padding: 0 35px 21px 0;
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.7;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(170, 219, 186, 0.09);
  background: rgba(2, 9, 5, 0.3);
}

.footer-inner {
  display: grid;
  min-height: 150px;
  grid-template-columns: 1fr auto auto;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 12px 35px;
  padding-top: 27px;
  padding-bottom: 27px;
}

.footer-inner > p {
  color: var(--text-muted);
  font-size: 0.68rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text-muted);
  font-size: 0.67rem;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-inner > small {
  grid-column: 1 / -1;
  padding-top: 18px;
  color: #536b5a;
  border-top: 1px solid rgba(170, 219, 186, 0.07);
  font-size: 0.6rem;
}

/* Motion */

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* Responsive */

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
    gap: 10px;
  }

  .hero h1,
  .section-heading h2,
  .security-copy h2,
  .release-copy h2 {
    font-size: clamp(3rem, 6vw, 4.6rem);
  }

  .preview-content {
    padding-inline: 20px;
  }

  .security-layout {
    gap: 45px;
  }

  .faq-section {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .section-wrap,
  .site-header {
    width: min(var(--content-width), calc(100% - 36px));
  }

  .site-header {
    min-height: 70px;
  }

  .site-header.is-scrolled {
    width: calc(100% - 24px);
  }

  .menu-toggle {
    display: block;
  }

  .site-navigation {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(6, 16, 10, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-navigation a {
    padding: 12px 11px;
    border-radius: 8px;
  }

  .site-navigation a:hover {
    background: rgba(72, 228, 135, 0.07);
  }

  .site-navigation .navigation-cta {
    justify-content: center;
    margin-top: 4px;
    color: #041108;
    background: var(--green);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 75px;
    padding-bottom: 68px;
  }

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

  .hero-text {
    max-width: 560px;
  }

  .hero-visual {
    width: min(100%, 650px);
    min-height: 480px;
    margin: 20px auto 0;
  }

  .launcher-preview {
    width: min(92%, 570px);
  }

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

  .signal-item,
  .signal-item:first-child {
    min-height: 76px;
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(170, 219, 186, 0.08);
  }

  .signal-item:last-child {
    border-bottom: 0;
  }

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

  .feature-card--wide {
    grid-column: span 2;
  }

  .security-layout,
  .release-panel,
  .deployment-grid,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .security-layout {
    gap: 45px;
  }

  .security-copy {
    max-width: 600px;
  }

  .release-panel {
    gap: 35px;
    padding: 40px;
  }

  .release-side {
    max-width: 500px;
  }

  .faq-section {
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

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

  .footer-links {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-inner > small {
    grid-row: 3;
  }
}

@media (max-width: 570px) {
  .section-wrap,
  .site-header {
    width: calc(100% - 28px);
  }

  .site-header.is-scrolled {
    top: 7px;
    width: calc(100% - 14px);
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1,
  .section-heading h2,
  .security-copy h2,
  .release-copy h2 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .hero-text {
    font-size: 0.9rem;
  }

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

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

  .hero-visual {
    min-height: 350px;
    margin-top: 27px;
  }

  .launcher-preview {
    width: 100%;
    transform: translate(-50%, -50%) rotateY(-4deg) rotateX(2deg);
  }

  .preview-body {
    min-height: 250px;
  }

  .preview-sidebar {
    width: 51px;
    flex-basis: 51px;
    gap: 10px;
    padding-top: 13px;
  }

  .preview-logo {
    width: 21px;
    height: 21px;
    margin-bottom: 8px;
  }

  .preview-nav {
    width: 29px;
    height: 27px;
  }

  .preview-content {
    padding: 17px 12px 15px;
  }

  .preview-welcome strong {
    font-size: 0.87rem;
  }

  .preview-kicker,
  .preview-card-label,
  .preview-stat span {
    font-size: 0.4rem;
  }

  .preview-hero-card {
    min-height: 95px;
    margin-top: 17px;
    padding: 12px;
  }

  .preview-card-copy strong {
    font-size: 0.62rem;
  }

  .preview-card-meta {
    font-size: 0.43rem;
  }

  .preview-play {
    width: 27px;
    height: 27px;
    font-size: 0.52rem;
  }

  .preview-stat-grid {
    gap: 5px;
    margin-top: 9px;
  }

  .preview-stat {
    min-height: 51px;
    padding: 7px;
  }

  .preview-stat strong {
    font-size: 0.72rem;
  }

  .preview-bottom-row {
    margin-top: 12px;
  }

  .floating-badge {
    padding: 7px 9px 7px 7px;
  }

  .floating-badge--top {
    top: 3%;
    right: 0;
  }

  .floating-badge--bottom {
    bottom: 1%;
    left: 0;
  }

  .floating-badge b {
    font-size: 0.55rem;
  }

  .floating-badge small {
    font-size: 0.45rem;
  }

  .badge-icon,
  .badge-check {
    width: 20px;
    height: 20px;
    font-size: 0.62rem;
  }

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section-heading--row {
    display: block;
  }

  .section-heading--row > p {
    margin-top: 23px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 35px;
  }

  .feature-card,
  .feature-card--wide {
    display: block;
    min-height: 0;
    grid-column: auto;
    padding: 21px;
  }

  .feature-card--wide h3 {
    font-size: 1.14rem;
  }

  .feature-icon,
  .feature-card--wide .feature-icon {
    margin-bottom: 28px;
  }

  .card-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .workflow-list {
    grid-template-columns: 1fr;
    margin-top: 39px;
  }

  .workflow-step,
  .workflow-step + .workflow-step {
    min-height: 0;
    grid-template-columns: 35px 43px 1fr;
    padding: 24px 0;
    border-left: 0;
  }

  .workflow-step + .workflow-step {
    border-top: 1px solid rgba(170, 219, 186, 0.1);
  }

  .workflow-step p {
    max-width: none;
  }

  .security-layout {
    gap: 32px;
  }

  .security-card {
    padding: 13px;
  }

  .terminal-line {
    grid-template-columns: 22px 63px 1fr 14px;
    gap: 5px;
    font-size: 0.57rem;
  }

  .release-section {
    padding-bottom: 80px;
  }

  .release-panel {
    padding: 30px 22px;
    border-radius: 18px;
  }

  .release-side {
    padding: 17px;
  }

  .release-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .release-meta b {
    text-align: left;
  }

  .deployment-section {
    padding-top: 0;
  }

  .deployment-grid {
    margin-top: 35px;
  }

  .code-card pre {
    padding: 18px 14px 22px;
    font-size: 0.59rem;
  }

  .faq-section {
    padding-top: 0;
  }

  .footer-inner {
    display: flex;
    min-height: 0;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 25px;
  }

  .footer-inner > p {
    order: 3;
    width: 100%;
  }

  .footer-links {
    order: 2;
  }

  .footer-inner > small {
    width: 100%;
    order: 4;
    padding-top: 17px;
  }
}
