:root {
  --bg: #090c0a;
  --bg-soft: #0e1310;
  --surface: #131915;
  --surface-2: #18211b;
  --surface-3: #202a23;
  --line: rgba(231, 244, 235, 0.11);
  --line-strong: rgba(231, 244, 235, 0.19);
  --text: #f3f7f4;
  --text-soft: #b5c0b8;
  --muted: #7f8d83;
  --mint: #8bd3a8;
  --mint-strong: #a6e3bd;
  --mint-deep: #214d35;
  --mint-ink: #0c2014;
  --amber: #e8c477;
  --danger: #e58a84;
  --wrap: 1180px;
  --edge: clamp(20px, 4vw, 36px);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, system-ui, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --mono: "SFMono-Regular", "SF Mono", ui-monospace, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 77% 7%, rgba(68, 143, 94, 0.17), transparent 28rem),
    radial-gradient(circle at 12% 31%, rgba(37, 78, 53, 0.14), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.25;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

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

button {
  font: inherit;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--edge);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--mint);
  color: var(--mint-ink);
  font-weight: 750;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(9, 12, 10, 0.74);
  backdrop-filter: blur(18px) saturate(140%);
  transition: border-color 180ms ease, background 180ms ease;
}

.topbar.scrolled {
  border-bottom-color: var(--line);
  background: rgba(9, 12, 10, 0.92);
}

.nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.brand-mark {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(139, 211, 168, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(139, 211, 168, 0.055);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.brand-mark::before {
  width: 10px;
  height: 10px;
  background: var(--mint);
  box-shadow: 0 0 20px rgba(139, 211, 168, 0.55);
}

.brand-mark::after {
  width: 17px;
  height: 17px;
  border: 1px solid rgba(139, 211, 168, 0.35);
}

.nav-center,
.nav-right,
.lang {
  display: flex;
  align-items: center;
}

.nav-center {
  gap: 30px;
  margin-left: auto;
}

.nav-center a {
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.nav-center a:hover {
  color: var(--text);
}

.nav-right {
  gap: 18px;
}

.lang {
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
}

.lang .active {
  color: var(--mint);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 760;
  letter-spacing: -0.02em;
  transition: transform 150ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.btn:active {
  transform: scale(0.985);
}

.btn-primary {
  background: var(--mint);
  color: var(--mint-ink);
  box-shadow: 0 16px 40px rgba(64, 142, 94, 0.25);
}

.btn-primary:hover {
  background: var(--mint-strong);
  box-shadow: 0 20px 50px rgba(64, 142, 94, 0.34);
}

.btn-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(139, 211, 168, 0.4);
  background: rgba(139, 211, 168, 0.055);
}

.btn-small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 12px;
  font-size: 0.88rem;
}

.btn-arrow {
  transition: transform 160ms ease;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}

.hero {
  position: relative;
  padding: clamp(70px, 9vw, 126px) 0 50px;
}

.hero-copy {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  content: "";
}

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

h1 {
  max-width: 11ch;
  margin: 0 auto 24px;
  font-size: clamp(3.55rem, 8.2vw, 7.4rem);
  font-weight: 780;
  letter-spacing: -0.072em;
  line-height: 0.92;
  text-wrap: balance;
}

.serif {
  color: var(--mint);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
  line-height: 1.55;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 20px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.download-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.download-meta span::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.product-stage {
  position: relative;
  max-width: 1080px;
  margin: clamp(52px, 8vw, 90px) auto 0;
  padding: 1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(139, 211, 168, 0.35), rgba(255, 255, 255, 0.05) 35%, rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.product-stage::before {
  position: absolute;
  inset: 16% 8% -9%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(57, 128, 82, 0.24);
  filter: blur(90px);
  content: "";
}

.mac-window {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 1px);
  background: #171918;
}

.window-bar {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 8px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: #1c1f1d;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #4b514d;
}

.window-title {
  margin-left: 6px;
  color: #858d87;
  font-size: 0.82rem;
  font-weight: 650;
}

.dashboard {
  display: grid;
  min-height: 610px;
  grid-template-columns: 206px 1fr;
}

.sidebar {
  padding: 24px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: #202321;
}

.side-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 3px 8px 26px;
  font-size: 1.3rem;
  font-weight: 760;
}

.side-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #245a3b;
  color: var(--mint);
  font-size: 0.72rem;
}

.beta {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(139, 211, 168, 0.14);
  color: var(--mint);
  font-size: 0.59rem;
  letter-spacing: 0.06em;
}

.side-nav {
  display: grid;
  gap: 6px;
}

.side-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  border-radius: 10px;
  color: #b6bdb8;
  font-size: 0.91rem;
  font-weight: 620;
}

.side-item.active {
  background: #303a33;
  color: var(--mint);
}

.side-glyph {
  width: 18px;
  color: #a2aca5;
  text-align: center;
}

.dash-main {
  padding: 42px 42px 34px;
  background: #1b1d1c;
}

.dash-title {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.dash-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(160px, 0.6fr);
  gap: 18px;
}

.hero-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(139, 211, 168, 0.17);
  border-radius: 22px;
  background: linear-gradient(135deg, #17462e, #1d5a39 70%, #244d35);
}

.hero-card h3 {
  max-width: 12ch;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  line-height: 1.04;
}

.hero-card p {
  color: rgba(239, 247, 241, 0.68);
  font-size: 0.9rem;
}

.mini-btn {
  display: inline-flex;
  margin-top: 20px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #eef7f1;
  font-size: 0.77rem;
  font-weight: 650;
}

.wave-bars,
.flow-wave {
  display: flex;
  align-items: center;
  gap: 6px;
}

.wave-bars {
  position: absolute;
  right: 28px;
  bottom: 52px;
  height: 74px;
}

.wave-bars i,
.flow-wave i {
  display: block;
  border-radius: 999px;
  background: var(--mint);
}

.wave-bars i {
  width: 8px;
}

.wave-bars i:nth-child(1) { height: 34%; }
.wave-bars i:nth-child(2) { height: 62%; }
.wave-bars i:nth-child(3) { height: 100%; }
.wave-bars i:nth-child(4) { height: 58%; }
.wave-bars i:nth-child(5) { height: 76%; }

.stat-stack {
  display: grid;
  gap: 12px;
}

.stat-card,
.dict-card,
.chart-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.017);
}

.stat-card {
  display: grid;
  min-height: 98px;
  align-content: center;
  padding: 18px;
}

.stat-card strong {
  font-size: 1.8rem;
  line-height: 1;
}

.stat-card span {
  margin-top: 7px;
  color: #969e98;
  font-size: 0.72rem;
}

.dash-bottom {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
  margin-top: 18px;
}

.chart-card,
.dict-card {
  min-height: 185px;
  padding: 22px;
}

.card-label {
  color: #d9dfdb;
  font-size: 0.82rem;
  font-weight: 650;
}

.bars {
  display: flex;
  height: 112px;
  align-items: end;
  gap: 9px;
  padding-top: 22px;
}

.bars i {
  flex: 1;
  min-width: 5px;
  border-radius: 5px 5px 2px 2px;
  background: rgba(139, 211, 168, 0.82);
}

.bars i:nth-child(1) { height: 12%; }
.bars i:nth-child(2) { height: 24%; }
.bars i:nth-child(3) { height: 43%; }
.bars i:nth-child(4) { height: 89%; }
.bars i:nth-child(5) { height: 35%; }
.bars i:nth-child(6) { height: 67%; }
.bars i:nth-child(7) { height: 100%; }
.bars i:nth-child(8) { height: 21%; }
.bars i:nth-child(9) { height: 46%; }
.bars i:nth-child(10) { height: 71%; }
.bars i:nth-child(11) { height: 37%; }
.bars i:nth-child(12) { height: 84%; }

.dict-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dict-card strong {
  display: block;
  margin-top: 13px;
  color: var(--mint);
  font-size: 1.32rem;
}

.dict-card p {
  margin-bottom: 0;
  color: #8f9891;
  font-size: 0.75rem;
}

.flow-bar {
  position: absolute;
  right: 10%;
  bottom: -22px;
  display: flex;
  min-width: 330px;
  height: 56px;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border: 1px solid rgba(139, 211, 168, 0.22);
  border-radius: 18px;
  background: rgba(19, 25, 21, 0.94);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
}

.mic {
  display: grid;
  width: 31px;
  height: 31px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--mint-ink);
  font-size: 0.8rem;
}

.flow-wave {
  height: 24px;
  gap: 3px;
}

.flow-wave i {
  width: 3px;
  animation: bounce 850ms ease-in-out infinite alternate;
}

.flow-wave i:nth-child(1) { height: 20%; animation-delay: -200ms; }
.flow-wave i:nth-child(2) { height: 55%; animation-delay: -500ms; }
.flow-wave i:nth-child(3) { height: 92%; animation-delay: -320ms; }
.flow-wave i:nth-child(4) { height: 45%; animation-delay: -700ms; }
.flow-wave i:nth-child(5) { height: 72%; animation-delay: -120ms; }
.flow-wave i:nth-child(6) { height: 36%; animation-delay: -620ms; }
.flow-wave i:nth-child(7) { height: 86%; animation-delay: -420ms; }

@keyframes bounce {
  to { height: 18%; opacity: 0.45; }
}

.flow-copy {
  display: grid;
  line-height: 1.2;
}

.flow-copy strong {
  font-size: 0.76rem;
}

.flow-copy span {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.trust {
  padding: 78px 0 50px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.78rem;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px rgba(139, 211, 168, 0.7);
}

section {
  padding: clamp(80px, 10vw, 148px) 0;
}

.section-label {
  margin-bottom: 16px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h2 {
  max-width: 14ch;
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5.6vw, 5.2rem);
  font-weight: 740;
  letter-spacing: -0.062em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-lede {
  max-width: 640px;
  color: var(--text-soft);
  font-size: clamp(1.03rem, 1.8vw, 1.22rem);
}

.demo-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.steps {
  display: grid;
  gap: 4px;
  margin-top: 40px;
}

.step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.step-num {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.step strong {
  display: block;
  margin-bottom: 3px;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.demo-shell {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 15% 14%, rgba(139, 211, 168, 0.1), transparent 38%),
    #111613;
  box-shadow: var(--shadow);
}

.demo-app {
  position: absolute;
  inset: 38px 34px 78px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: #f4f3ef;
  color: #212522;
}

.demo-app-bar {
  display: flex;
  height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid rgba(21, 28, 23, 0.1);
  background: #e9e9e5;
  color: #6e746f;
  font-size: 0.75rem;
}

.demo-note {
  padding: clamp(26px, 5vw, 52px);
}

.demo-note small {
  color: #808781;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-note h3 {
  margin: 10px 0 22px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  letter-spacing: -0.04em;
}

.typed-line {
  min-height: 93px;
  margin: 0;
  color: #2c322e;
  font-size: clamp(1.12rem, 2.4vw, 1.5rem);
  line-height: 1.5;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  margin-left: 2px;
  background: #2f7650;
  vertical-align: -0.15em;
  animation: blink 800ms steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.demo-control {
  position: absolute;
  right: 34px;
  bottom: 26px;
  left: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.demo-pill {
  display: flex;
  min-width: 290px;
  height: 47px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid rgba(139, 211, 168, 0.22);
  border-radius: 16px;
  background: #1d2821;
}

.demo-state {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.play-demo {
  flex: none;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
}

.play-demo:hover {
  border-color: rgba(139, 211, 168, 0.45);
}

.rojak {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0c100d;
}

.rojak-track {
  display: flex;
  width: max-content;
  gap: 13px;
  padding: 22px 0;
  animation: marquee 32s linear infinite;
}

.rojak:hover .rojak-track {
  animation-play-state: paused;
}

.phrase {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.76rem;
  white-space: nowrap;
}

.phrase b {
  color: var(--mint);
  font-weight: 700;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.privacy {
  position: relative;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(50px, 8vw, 115px);
  align-items: center;
}

.privacy h2 {
  max-width: 11ch;
}

.privacy-note {
  margin-top: 25px;
  padding: 15px 17px;
  border: 1px solid rgba(139, 211, 168, 0.17);
  border-radius: 14px;
  background: rgba(139, 211, 168, 0.045);
  color: var(--text-soft);
  font-size: 0.86rem;
}

.privacy-note strong {
  color: var(--text);
}

.privacy-stack {
  display: grid;
  gap: 14px;
}

.privacy-card {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.022);
}

.privacy-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--surface-3);
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.privacy-card strong {
  display: block;
}

.privacy-card p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.privacy-value {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.features {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.018), transparent 28%),
    var(--bg-soft);
}

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

.features-head h2 {
  margin-bottom: 0;
}

.features-head .section-lede {
  max-width: 430px;
}

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

.feature-card {
  min-height: 270px;
  padding: clamp(25px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 0%, rgba(139, 211, 168, 0.07), transparent 50%),
    var(--surface);
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  border-color: rgba(139, 211, 168, 0.27);
  transform: translateY(-3px);
}

.feature-index {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 50px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.69rem;
}

.feature-card h3 {
  margin: 0 0 9px;
  font-size: clamp(1.32rem, 2vw, 1.75rem);
  letter-spacing: -0.035em;
}

.feature-card p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.beta-tag {
  display: inline-flex;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(232, 196, 119, 0.12);
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.55rem;
  vertical-align: middle;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 8vw, 120px);
}

.faq-grid h2 {
  position: sticky;
  top: 115px;
  max-width: 8ch;
}

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

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 680;
}

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

.faq-plus {
  color: var(--mint);
  font-family: var(--mono);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-item[open] .faq-plus {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 62ch;
  margin: -5px 0 25px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.download-section {
  padding-top: 40px;
}

.download-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(45px, 8vw, 96px);
  border: 1px solid rgba(139, 211, 168, 0.24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 20%, rgba(139, 211, 168, 0.16), transparent 32%),
    linear-gradient(135deg, #15241b, #102018 58%, #0d1711);
  text-align: center;
}

.download-panel::after {
  position: absolute;
  right: -70px;
  bottom: -140px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(139, 211, 168, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(139, 211, 168, 0.035),
    0 0 0 96px rgba(139, 211, 168, 0.02);
  content: "";
}

.download-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 13ch;
  margin-inline: auto;
}

.download-panel .section-lede {
  position: relative;
  z-index: 1;
  margin-inline: auto;
}

.download-panel .hero-actions,
.download-panel .download-meta {
  position: relative;
  z-index: 1;
}

.install-note {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.install-note a {
  color: var(--text-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  padding: 45px 0 100px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer-copy {
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.mobile-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 120;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  background: var(--mint);
  color: var(--mint-ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.48);
  font-weight: 800;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-cta.visible {
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 980px) {
  .nav-center {
    display: none;
  }

  .dashboard {
    grid-template-columns: 160px 1fr;
  }

  .sidebar {
    padding-inline: 12px;
  }

  .dash-main {
    padding: 30px 28px;
  }

  .dash-top,
  .dash-bottom {
    grid-template-columns: 1fr;
  }

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

  .dict-card {
    min-height: 145px;
  }

  .demo-grid,
  .privacy-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid h2 {
    position: static;
  }

  .features-head {
    display: block;
  }

  .features-head .section-lede {
    margin-top: 18px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .nav {
    min-height: 64px;
  }

  .nav-right .btn {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(3.55rem, 18vw, 5.2rem);
  }

  .hero-lede {
    text-wrap: pretty;
  }

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

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

  .download-meta {
    gap: 7px 13px;
  }

  .product-stage {
    margin-top: 54px;
    border-radius: 24px;
  }

  .mac-window {
    border-radius: 23px;
  }

  .window-bar {
    height: 38px;
  }

  .dashboard {
    min-height: 480px;
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .dash-main {
    padding: 24px 18px 34px;
  }

  .dash-title {
    margin-bottom: 20px;
    font-size: 1.75rem;
  }

  .hero-card {
    min-height: 190px;
    padding: 25px;
  }

  .hero-card h3 {
    font-size: 1.55rem;
  }

  .wave-bars {
    right: 18px;
    bottom: 42px;
    opacity: 0.7;
  }

  .stat-card {
    min-height: 84px;
  }

  .stat-card strong {
    font-size: 1.45rem;
  }

  .dash-bottom {
    display: none;
  }

  .flow-bar {
    right: 20px;
    bottom: -25px;
    left: 20px;
    min-width: 0;
  }

  .trust {
    padding-top: 72px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  section {
    padding: 88px 0;
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 4.2rem);
  }

  .demo-shell {
    min-height: 500px;
  }

  .demo-app {
    inset: 24px 18px 98px;
  }

  .demo-note {
    padding: 27px 22px;
  }

  .demo-control {
    right: 18px;
    bottom: 24px;
    left: 18px;
  }

  .demo-pill {
    min-width: 0;
    flex: 1;
  }

  .play-demo {
    padding-inline: 12px;
  }

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

  .feature-card {
    min-height: 240px;
  }

  .feature-index {
    margin-bottom: 42px;
  }

  .privacy-card {
    grid-template-columns: 42px 1fr;
  }

  .privacy-icon {
    width: 42px;
    height: 42px;
  }

  .privacy-value {
    grid-column: 2;
  }

  .download-panel {
    padding-inline: 24px;
  }

  .footer {
    padding-bottom: 110px;
  }

  .footer-grid {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (max-width: 410px) {
  .brand {
    font-size: 1.12rem;
  }

  .hero-card {
    min-height: 178px;
  }

  .wave-bars {
    display: none;
  }

  .demo-pill {
    padding-inline: 12px;
  }

  .flow-copy {
    display: none;
  }
}

/* Platform cards (Mac + Windows) dalam download panel — tambahan minimum,
   ikut token sedia ada (line, radius, mono, download-meta, install-note). */
.platform-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 38px auto 0;
  text-align: left;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(22px, 3.4vw, 32px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(9, 12, 10, 0.42);
}

.platform-card h3 {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.platform-card .download-meta {
  justify-content: flex-start;
  margin-top: 0;
}

.platform-card .install-note {
  max-width: none;
  margin: 0;
  text-align: left;
}

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

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

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