:root {
  color-scheme: dark;
  --bg: #08090a;
  --bg-soft: #0c0d0f;
  --panel: #121316;
  --panel-2: #1c1d21;
  --border: #2b2d31;
  --border-bright: #41444a;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --blue: #d4d4d8;
  --blue-bright: #f4f4f5;
  --cyan: #a1a1aa;
  --green: #35d07f;
  --amber: #f3bd52;
  --red: #fb7185;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 72% 4%, rgba(255, 255, 255, 0.035), transparent 28rem),
    linear-gradient(180deg, #08090a 0%, #0a0b0d 42%, #08090a 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.10'/%3E%3C/svg%3E");
  z-index: 20;
  mix-blend-mode: soft-light;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow { max-width: 790px; }
.center { text-align: center; }

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(100px);
  opacity: .14;
  pointer-events: none;
}
.ambient-one { width: 420px; height: 420px; background: var(--blue); top: 70px; right: -230px; }
.ambient-two { width: 350px; height: 350px; background: var(--cyan); top: 760px; left: -290px; opacity: .08; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(8, 9, 10, 0.72);
  backdrop-filter: blur(18px) saturate(130%);
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-color: rgba(65, 68, 74, .7); background: rgba(8, 9, 10, .92); }

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 650; letter-spacing: -.01em; }
.brand strong { color: var(--blue-bright); }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-bright);
  border-radius: 11px;
  background: #121316;
  box-shadow: inset 0 0 18px rgba(255, 255, 255, .04);
}
.brand-mark img { width: 29px; height: 29px; border-radius: 7px; }
.brand-mark img, .window-brand img, .cta-card > img { filter: grayscale(1) saturate(0) brightness(1.18); }

.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a { color: var(--muted); font-size: 14px; font-weight: 520; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--text); }

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 0 19px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(244, 244, 245, .28); outline-offset: 3px; }
.button svg { width: 18px; height: 18px; fill: currentColor; }
.button-primary {
  color: #09090b;
  background: linear-gradient(135deg, #f4f4f5, #c7c7cd);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255,255,255,.52);
}
.button-primary:hover { box-shadow: 0 14px 36px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255,255,255,.62); }
.button-secondary { border-color: var(--border); background: rgba(18, 19, 22, .82); color: var(--text); }
.button-secondary:hover { border-color: var(--border-bright); background: var(--panel-2); }
.button-small { min-height: 38px; padding-inline: 15px; }
.button-large { min-height: 52px; padding-inline: 23px; border-radius: 13px; }

.hero { padding: 124px 0 42px; position: relative; }
.hero-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 52px; align-items: center; }
.status-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: #c4c4c7;
  background: rgba(18, 19, 22, .72);
  font-size: 12px;
  font-weight: 650;
}
.status-dot, .pulse-dot, .good-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px rgba(53, 208, 127, .9); }
.status-dot { animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .45; transform: scale(.85); } }

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-bright);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .15em;
}

h1, h2, h3 { margin: 0; letter-spacing: -.035em; line-height: 1.08; }
h1 { max-width: 680px; font-size: clamp(3.1rem, 5.7vw, 4.9rem); }
h1 span { color: var(--blue-bright); }
h2 { font-size: clamp(2.3rem, 4.5vw, 4rem); }
h3 { font-size: 1.35rem; letter-spacing: -.025em; }

.hero-lead, .section-lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.hero-lead { max-width: 610px; margin: 22px 0 26px; }
.section-lead { margin: 22px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; color: #929298; font-size: 12px; }
.hero-meta span { display: flex; align-items: center; gap: 6px; }
.check { color: var(--green); font-style: normal; font-weight: 800; }

.hero-visual { position: relative; perspective: 1200px; }
.app-window {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.02) inset;
  transform: rotateY(-3deg) rotateX(1deg);
}
.window-bar { min-height: 45px; padding: 0 15px; display: flex; align-items: center; justify-content: space-between; background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.window-brand { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; color: #e4e4e7; }
.window-brand img { border-radius: 5px; }
.window-controls { display: flex; gap: 8px; }
.window-controls span { width: 8px; height: 8px; border-radius: 50%; background: #3f3f46; }
.app-window > img { width: 100%; height: clamp(320px, 35vw, 440px); object-fit: cover; object-position: center 8%; opacity: .98; }

.signal-card {
  position: absolute;
  z-index: 3;
  min-width: 145px;
  padding: 12px 14px;
  border: 1px solid rgba(65, 68, 74, .82);
  border-radius: 12px;
  background: rgba(18, 19, 22, .94);
  box-shadow: 0 16px 36px rgba(0,0,0,.32);
  backdrop-filter: blur(12px);
}
.signal-card-top { top: -18px; right: -12px; }
.signal-card-bottom { bottom: -18px; left: -18px; }
.mini-label { display: block; margin-bottom: 3px; color: #8b8b92; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.signal-card strong { display: flex; align-items: center; gap: 7px; font-size: 12px; }
.good-dot { background: var(--blue); box-shadow: 0 0 12px rgba(212, 212, 216, .36); }

.proof-strip {
  margin-top: 58px;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  border-block: 1px solid rgba(43, 45, 49, .78);
  color: #96969e;
  font-size: 13px;
}
.proof-strip b { color: #d4d4d8; font-size: 13px; }
.proof-divider { width: 3px; height: 3px; border-radius: 50%; background: #52525b; }

.section { padding: 118px 0; position: relative; }
.problem-section { padding-top: 108px; }
.comparison-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.comparison-card, .feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(24,25,28,.96), rgba(12,13,15,.97));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.comparison-card { padding: 34px; min-height: 330px; }
.comparison-card h3 { margin: 8px 0 24px; font-size: 1.7rem; }
.card-kicker { margin: 0 0 8px; color: #8b8b94; font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.comparison-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; color: #b5b5bc; }
.comparison-card li { display: flex; gap: 10px; align-items: flex-start; }
.before-card { opacity: .74; }
.before-card li span { color: var(--red); }
.after-card { border-color: rgba(255, 255, 255, .22); background: linear-gradient(145deg, rgba(28,29,33,.96), rgba(14,15,17,.97)); box-shadow: 0 24px 60px rgba(0,0,0,.28); }
.after-card .card-kicker, .after-card li span { color: var(--blue-bright); }
.comparison-arrow { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 50%; background: var(--bg); color: var(--blue); font-size: 20px; }

.feature-section { background: linear-gradient(180deg, transparent, rgba(16,17,20,.72), transparent); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 46px; }
.section-heading > p { max-width: 420px; margin: 0; color: var(--muted); }
.bento-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.feature-card { padding: 30px; min-height: 300px; }
.feature-card h3 { margin: 10px 0 14px; font-size: 1.7rem; }
.feature-card > p, .feature-card > div > p { color: var(--muted); }
.feature-wide { grid-column: 1 / -1; min-height: 330px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.feature-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 22px; border: 1px solid currentColor; border-radius: 13px; background: color-mix(in srgb, currentColor 10%, transparent); }
.feature-icon svg { width: 23px; height: 23px; fill: currentColor; }
.feature-icon.blue { color: var(--blue); }
.feature-icon.cyan { color: var(--cyan); }
.feature-icon.green { color: var(--green); }
.feature-icon.amber { color: var(--amber); }
.mini-monitor { min-height: 190px; padding: 26px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--border); border-radius: 18px; background: #0c0d0f; box-shadow: inset 0 0 40px rgba(255,255,255,.018); }
.mini-monitor > div:first-child { color: var(--green); font-size: 11px; }
.mini-monitor strong { display: block; margin: 17px 0 4px; font-size: 1.5rem; }
.mini-monitor small { color: var(--blue-bright); }
.monitor-line { height: 4px; margin-top: 24px; overflow: hidden; border-radius: 99px; background: #27272a; }
.monitor-line i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.overlay-feature { grid-template-columns: 1fr .82fr; }
.overlay-mock { padding: 14px; border: 1px solid var(--border); border-radius: 18px; background: #0c0d0f; box-shadow: 0 20px 45px rgba(0,0,0,.28); transform: rotate(1.3deg); }
.overlay-head { display: flex; justify-content: space-between; padding: 5px 4px 12px; color: #e4e4e7; font-size: 12px; font-weight: 700; }
.overlay-head span { display: flex; gap: 7px; align-items: center; }
.overlay-head i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.overlay-head b { color: #8b8b92; }
.player-row { min-height: 38px; margin-top: 4px; padding: 0 11px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; border-radius: 8px; background: #15161a; font-size: 11px; }
.player-row i { width: 6px; height: 6px; border-radius: 50%; }
.player-row small { font-size: 9px; }
.player-row.friend { color: #efd21f; }.player-row.friend i { background: #efd21f; }
.player-row.trusted { color: #a855f7; }.player-row.trusted i { background: #a855f7; }
.player-row.user { color: #35d07f; }.player-row.user i { background: #35d07f; }

.workflow-section { overflow: hidden; }
.steps { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.steps::before { content: ""; position: absolute; top: 27px; left: 16.66%; right: 16.66%; height: 1px; background: linear-gradient(90deg, var(--border), var(--blue), var(--border)); opacity: .7; }
.step { position: relative; z-index: 1; padding: 0 34px; text-align: center; }
.step-number { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 24px; border: 1px solid var(--border-bright); border-radius: 15px; background: #17181b; color: var(--blue-bright); font-size: 12px; font-weight: 800; box-shadow: 0 0 0 8px var(--bg); }
.step p { color: var(--muted); font-size: 14px; }

.trust-section { border-block: 1px solid rgba(43, 45, 49, .8); background: #0b0c0e; }
.trust-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 90px; align-items: center; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; color: var(--blue-bright); font-weight: 700; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.trust-list { display: grid; gap: 5px; }
.trust-list > div { min-height: 82px; display: flex; align-items: center; gap: 16px; padding: 14px 18px; border-bottom: 1px solid #292a2f; }
.trust-check { flex: 0 0 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: rgba(53,208,127,.09); color: var(--green); font-weight: 900; }
.trust-list p { margin: 0; display: grid; }
.trust-list strong { font-size: 14px; }
.trust-list small { color: var(--muted); }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.accordion { border-top: 1px solid var(--border); }
details { border-bottom: 1px solid var(--border); }
summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; color: #e4e4e7; font-weight: 650; }
summary::-webkit-details-marker { display: none; }
summary:focus { outline: none; }
summary:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; border-radius: 8px; }
summary span { color: var(--blue); font-size: 22px; font-weight: 300; transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { margin: -6px 44px 24px 0; color: var(--muted); font-size: 14px; }

.final-cta { padding-top: 70px; }
.cta-card { position: relative; overflow: hidden; min-height: 470px; padding: 70px 30px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 1px solid var(--border-bright); border-radius: 28px; background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.07), transparent 52%), #101113; box-shadow: 0 30px 80px rgba(0,0,0,.3); }
.cta-card > * { position: relative; z-index: 1; }
.cta-card > img { margin-bottom: 18px; border-radius: 18px; box-shadow: 0 10px 34px rgba(0,0,0,.34); }
.cta-card h2 { margin-bottom: 18px; }
.cta-card > p:not(.eyebrow) { margin: 0 0 26px; color: var(--muted); }
.center-actions { justify-content: center; }
.download-note { margin-top: 14px; color: #8b8b92; }
.cta-glow { position: absolute; width: 520px; height: 520px; top: -380px; border-radius: 50%; background: var(--blue); filter: blur(100px); opacity: .18; }

.site-footer { padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-bottom: 54px; }
.footer-brand { margin-bottom: 15px; }
.footer-grid > div > p { max-width: 420px; color: var(--muted); font-size: 13px; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.footer-links > div { display: grid; align-content: start; gap: 9px; }
.footer-links strong { margin-bottom: 5px; font-size: 12px; color: #d4d4d8; }
.footer-links a { width: fit-content; color: var(--muted); font-size: 13px; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid var(--border); color: #85858c; font-size: 11px; }
.footer-bottom span:last-child { max-width: 650px; text-align: right; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

.error-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.error-card { width: min(100%, 580px); padding: 50px; text-align: center; border: 1px solid var(--border); border-radius: 24px; background: var(--panel); }
.error-card img { margin: 0 auto 24px; border-radius: 16px; }
.error-card h1 { font-size: 2.5rem; }
.error-card p:not(.eyebrow) { color: var(--muted); }
.error-card .button { margin-top: 18px; }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; gap: 62px; }
  .hero-copy { text-align: center; }
  .hero-copy .status-pill, .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-visual { width: min(100%, 780px); margin-inline: auto; }
  .trust-grid, .faq-grid { grid-template-columns: 1fr; gap: 54px; }
}

@media (max-width: 780px) {
  .desktop-nav { display: none; }
  .hero { padding-top: 112px; }
  .hero-grid { gap: 52px; }
  .signal-card { display: none; }
  .app-window { transform: none; border-radius: 14px; }
  .proof-strip { gap: 14px; padding-block: 16px; }
  .proof-strip > span:first-child { width: 100%; text-align: center; }
  .section { padding: 86px 0; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-arrow { margin: -4px auto; transform: rotate(90deg); }
  .section-heading { align-items: start; flex-direction: column; }
  .bento-grid { grid-template-columns: 1fr; }
  .feature-wide { grid-column: auto; grid-template-columns: 1fr; gap: 34px; }
  .feature-card { min-height: auto; }
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .steps::before { display: none; }
  .step { display: grid; grid-template-columns: auto 1fr; gap: 18px; text-align: left; padding: 0; }
  .step-number { margin: 0; box-shadow: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom span:last-child { text-align: left; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header .button-small { display: none; }
  .nav-shell { min-height: 64px; }
  h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  h2 { font-size: 2.25rem; }
  .hero-actions { display: grid; width: 100%; }
  .button-large { width: 100%; }
  .hero-meta { gap: 9px 14px; }
  .window-bar { min-height: 38px; }
  .app-window > img { height: 260px; min-height: 0; object-fit: cover; object-position: 18% top; }
  .comparison-card, .feature-card { padding: 24px; }
  .comparison-card { min-height: auto; }
  .overlay-feature { grid-template-columns: 1fr; }
  .cta-card { padding: 58px 20px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
