:root {

  --coral: #fe7d50;

  --coral-hover: #f56d3d;

  --blue: #b0d0f5;

  --blue-hover: #9cc3f1;

  --lilac: #b0aff4;

  --ink: #000;

  --muted: rgba(0, 0, 0, .62);

  --soft: rgba(0, 0, 0, .09);

  --line: rgba(0, 0, 0, .08);

  --paper: #fff;

  --wash: #f6f7f9;

  --max: 1120px;

  --sans: "Plus Jakarta Sans", "Suisse Int'l", Inter, system-ui, sans-serif;

}



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

html { scroll-behavior: smooth; }

body {

  font-family: var(--sans);

  color: var(--ink);

  background: var(--paper);

  font-size: 16px;

  line-height: 1.5;

  -webkit-font-smoothing: antialiased;

  overflow-x: hidden;

}

img { max-width: 100%; display: block; }

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

button { font-family: inherit; cursor: pointer; border: 0; background: none; }

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

.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }



/* Buttons */

.btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  height: 36px;

  padding: 0 14px;

  border-radius: 999px;

  font-size: 14px;

  font-weight: 600;

  letter-spacing: -.01em;

  transition: background .18s, transform .18s;

  white-space: nowrap;

}

.btn { transition: background .2s, transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s; }

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

.btn:active { transform: translateY(0) scale(.98); }

.btn-coral { background: var(--coral); color: #111; }

.btn-coral:hover { background: var(--coral-hover); }

.btn-blue { background: var(--blue); color: #111; }

.btn-blue:hover { background: var(--blue-hover); }

.btn-soft { background: var(--soft); color: #111; }

.btn-soft:hover { background: rgba(0,0,0,.13); }

.btn-lg { height: 48px; padding: 0 22px; border-radius: 12px; font-size: 15px; }

.btn-hero { height: 48px; padding: 0 22px; border-radius: 14px; font-size: 15px; }



/* Header */

.header {

  position: sticky;

  top: 0;

  z-index: 40;

  background: rgba(255,255,255,.86);

  backdrop-filter: blur(16px);

}

.header-inner {

  height: 72px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

}

.brand {

  display: flex;

  align-items: center;

  gap: 8px;

  font-weight: 700;

  font-size: 18px;

  letter-spacing: -.04em;

}

.brand img, .brand svg { width: 28px; height: 28px; }

.nav { display: flex; align-items: center; gap: 22px; }

.nav a, .nav-dd > button {

  font-size: 14px;

  font-weight: 500;

  color: #111;

  opacity: .78;

}

.nav a:hover, .nav-dd > button:hover { opacity: 1; }

.nav-dd { position: relative; }

.nav-dd > button { display: inline-flex; align-items: center; gap: 5px; }

.caret {

  width: 9px; height: 5px;

  border-right: 1.5px solid currentColor;

  border-bottom: 1.5px solid currentColor;

  transform: rotate(45deg) translateY(-2px);

  opacity: .6;

}

.dd-panel {

  position: absolute;

  top: calc(100% + 12px);

  left: 0;

  min-width: 200px;

  background: #fff;

  border: 1px solid var(--line);

  border-radius: 14px;

  padding: 8px;

  box-shadow: 0 16px 40px rgba(0,0,0,.08);

  display: none;

}

.nav-dd.open .dd-panel { display: grid; }

.dd-panel a {

  padding: 10px 12px;

  border-radius: 10px;

  font-weight: 500;

  opacity: 1;

}

.dd-panel a:hover { background: var(--wash); }

.header-right { display: flex; align-items: center; gap: 8px; }

.lang { position: relative; }

.lang-btn {

  width: 36px; height: 36px; border-radius: 999px;

  background: var(--soft);

  font-size: 12px; font-weight: 700;

}

.lang-list {

  position: absolute; top: calc(100% + 8px); right: 0;

  background: #fff; border: 1px solid var(--line);

  border-radius: 12px; padding: 6px; display: none;

  box-shadow: 0 12px 30px rgba(0,0,0,.08);

}

.lang.open .lang-list { display: grid; }

.lang-list button {

  padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; text-align: left;

}

.lang-list button:hover { background: var(--wash); }

.menu-btn { display: none; width: 40px; height: 40px; border-radius: 10px; background: var(--soft); }

.menu-btn span, .menu-btn span::before, .menu-btn span::after {

  display: block; width: 16px; height: 1.5px; background: #111; position: relative;

}

.menu-btn span::before, .menu-btn span::after { content: ""; position: absolute; left: 0; }

.menu-btn span::before { top: -5px; }

.menu-btn span::after { top: 5px; }



/* Hero */

.hero {

  position: relative;

  padding: 56px 0 0;

  text-align: center;

  overflow: hidden;

  background:

    linear-gradient(156deg, rgba(176,208,245,0) 68%, rgba(176,208,245,.55) 116%),

    linear-gradient(213deg, rgba(176,175,244,0) 41%, rgba(176,175,244,.5) 138%),

    #fff;

}

.trust-row {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 22px;

  color: var(--muted);

  font-size: 14px;

  font-weight: 500;

}

.avatars { display: flex; }

.avatars img, .avatars span {

  width: 28px; height: 28px; border-radius: 50%;

  border: 2px solid #fff; margin-left: -8px; object-fit: cover; background: #111;

}

.avatars img:first-child, .avatars span:first-child { margin-left: 0; }

.hero h1 {

  font-size: clamp(40px, 6.2vw, 64px);

  line-height: 1.2;

  letter-spacing: -.04em;

  font-weight: 600;

  max-width: 740px;

  margin: 0 auto 16px;

}

.hero-lead {

  max-width: 560px;

  margin: 0 auto 28px;

  color: var(--muted);

  font-size: 18px;

}

.hero-cta { display: flex; flex-direction: column; align-items: center; gap: 10px; }

.fine { font-size: 13px; color: var(--muted); }

.orbit {

  position: absolute;

  width: 80px; height: 80px;

  border-radius: 16px;

  overflow: hidden;

  box-shadow: 0 14px 36px rgba(20,30,50,.12);

  background: #f8f8f8;

  will-change: transform;

  z-index: 2;

}

.orbit img { width: 100%; height: 100%; object-fit: cover; }

.orbit-1 { top: 88px; left: 10%; background: #1a8cff; animation: float-a 5.2s ease-in-out infinite; }

.orbit-2 { top: 72px; right: 12%; background: #39ff6a; animation: float-b 6.4s ease-in-out infinite; }

.orbit-3 { top: 268px; left: 14%; animation: float-c 7s ease-in-out infinite; }

.orbit-4 { top: 258px; right: 13%; background: #111; animation: float-d 5.8s ease-in-out infinite; }



@keyframes float-a {

  0%,100% { transform: translate3d(0,0,0) rotate(-2deg); }

  50% { transform: translate3d(8px,-18px,0) rotate(3deg); }

}

@keyframes float-b {

  0%,100% { transform: translate3d(0,0,0) rotate(2deg); }

  50% { transform: translate3d(-10px,-16px,0) rotate(-3deg); }

}

@keyframes float-c {

  0%,100% { transform: translate3d(0,0,0) rotate(-1deg); }

  50% { transform: translate3d(12px,14px,0) rotate(2deg); }

}

@keyframes float-d {

  0%,100% { transform: translate3d(0,0,0) rotate(1deg); }

  50% { transform: translate3d(-8px,16px,0) rotate(-2deg); }

}



.hero-in {

  opacity: 0;

  transform: translateY(20px);

  animation: appear .7s cubic-bezier(.22,1,.36,1) forwards;

}

.hero-in.d1 { animation-delay: .05s; }

.hero-in.d2 { animation-delay: .14s; }

.hero-in.d3 { animation-delay: .24s; }

.hero-in.d4 { animation-delay: .34s; }

@keyframes appear {

  to { opacity: 1; transform: none; }

}



.demo-wrap { margin-top: 56px; padding: 0 20px; }

.demo-card {

  width: min(920px, 100%);

  margin: 0 auto;

  aspect-ratio: 16/9.2;

  border-radius: 28px;

  overflow: hidden;

  position: relative;

  background: #111;

  box-shadow: 0 30px 80px rgba(20,30,50,.18);

  cursor: pointer;

  transition: transform .55s cubic-bezier(.22,1,.36,1), box-shadow .55s;

}

.demo-card:hover { transform: translateY(-8px) scale(1.015); box-shadow: 0 40px 90px rgba(20,30,50,.24); }

.demo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s ease; }

.demo-card:hover img { transform: scale(1.04); }

.play {

  position: absolute; inset: 0;

  display: grid; place-items: center;

}

.play i {

  width: 72px; height: 72px; border-radius: 50%;

  background: #fff;

  display: grid; place-items: center;

  box-shadow: 0 10px 30px rgba(0,0,0,.2);

}

.play i::after {

  content: "";

  width: 0; height: 0;

  border-left: 16px solid #111;

  border-top: 10px solid transparent;

  border-bottom: 10px solid transparent;

  margin-left: 4px;

}



.proof {

  display: flex;

  justify-content: center;

  gap: 56px;

  padding: 36px 0 64px;

  text-align: left;

}

.proof-item { display: flex; gap: 12px; align-items: center; max-width: 280px; }

.proof-item strong { display: block; font-size: 14px; line-height: 1.35; }

.proof-item span { display: block; font-size: 12px; color: var(--muted); }

.laurel { font-size: 22px; }



/* Sections */

.section { padding: 88px 0; }

.section.alt { background: linear-gradient(#fff, #f7f8fb 40%, #fff); }

.center { text-align: center; }

.kicker {

  font-size: 13px; font-weight: 600; color: var(--muted);

  letter-spacing: .04em; text-transform: uppercase; margin-bottom: 10px;

}

h2 {

  font-size: clamp(32px, 4vw, 40px);

  letter-spacing: -.03em;

  font-weight: 600;

  line-height: 1.15;

}

.lead { color: var(--muted); font-size: 17px; margin-top: 12px; max-width: 520px; }

.center .lead { margin-inline: auto; }



.why-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 48px 80px;

  max-width: 820px;

  margin: 56px auto 0;

}

.why-item h3 { font-size: 22px; font-weight: 600; letter-spacing: -.02em; margin: 12px 0 8px; }

.why-item p { color: var(--muted); font-size: 15px; }

.ico {

  width: 28px; height: 28px; color: #111;

}

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



.split {

  display: grid;

  grid-template-columns: 1.1fr .9fr;

  gap: 56px;

  align-items: center;

}

.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px; margin: 36px 0 28px; }

.feat h3 { font-size: 18px; font-weight: 600; letter-spacing: -.02em; margin: 8px 0 6px; }

.feat p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }



.mock {

  background: #fff;

  border-radius: 22px;

  box-shadow: 0 18px 50px rgba(20,30,50,.08);

  padding: 22px;

  min-height: 320px;

}

.mock img { width: 100%; height: auto; }



/* Testimonials */

.quotes { position: relative; }

.quote-track { display: grid; }

.quote {

  background: #fff;

  border: 1px solid var(--line);

  border-radius: 22px;

  padding: 36px;

  max-width: 720px;

  margin: 36px auto 0;

  display: none;

}

.quote.on { display: block; }

.quote p { font-size: 18px; line-height: 1.55; letter-spacing: -.01em; }

.who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }

.who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: #f2f2f2; }

.who b { display: block; font-size: 14px; }

.who span { font-size: 13px; color: var(--muted); }

.q-nav { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }

.q-nav button {

  width: 40px; height: 40px; border-radius: 50%;

  background: var(--soft); font-size: 16px;

}



/* Features */

.feat-cards {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  margin-top: 40px;

}

.fcard {

  border: 1px solid var(--line);

  border-radius: 18px;

  padding: 22px;

  min-height: 170px;

  background: #fff;

}

.fcard .badge {

  display: inline-block;

  font-size: 11px; font-weight: 700;

  background: var(--coral); color: #111;

  border-radius: 999px; padding: 2px 8px; margin-left: 8px;

  vertical-align: middle;

}

.fcard h3 { font-size: 18px; margin: 12px 0 8px; }

.fcard p { color: var(--muted); font-size: 14px; }



/* Community */

.polls { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }

.poll {

  border: 1px solid var(--line);

  border-radius: 20px;

  padding: 24px;

  background: #fff;

}

.poll .meta { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }

.poll .meta img, .poll .av {

  width: 36px; height: 36px; border-radius: 50%; background: #111; color: #fff;

  display: grid; place-items: center; font-size: 12px; font-weight: 700;

}

.poll h3 { font-size: 20px; margin-bottom: 16px; }

.bar { display: flex; align-items: center; gap: 10px; margin: 8px 0; font-size: 13px; }

.bar i {

  flex: 1; height: 8px; border-radius: 99px; background: #eee; overflow: hidden;

}

.bar i b { display: block; height: 100%; background: var(--coral); border-radius: 99px; }

.bar.win i b { background: #111; }

.poll .pct { font-size: 28px; font-weight: 700; letter-spacing: -.03em; margin: 10px 0 4px; }



/* FAQ */

.faq { max-width: 760px; margin: 36px auto 0; }

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

.faq-item button {

  width: 100%;

  display: flex; justify-content: space-between; align-items: center;

  padding: 20px 0;

  font-size: 17px; font-weight: 600; text-align: left; letter-spacing: -.02em;

}

.faq-item .plus { font-size: 22px; font-weight: 400; color: var(--muted); }

.faq-item .ans { display: none; padding: 0 0 20px; color: var(--muted); font-size: 15px; }

.faq-item.open .ans { display: block; }

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



/* CTA */

.cta-band {

  text-align: center;

  padding: 96px 0 80px;

  background:

    linear-gradient(180deg, #fff 0%, rgba(176,208,245,.28) 100%);

}

.cta-band h2 { margin-bottom: 12px; }

.cta-band .lead { margin: 0 auto 24px; }



/* Footer */

.footer { padding: 56px 0 28px; border-top: 1px solid var(--line); }

.foot-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr; gap: 28px; }

.foot-brand { font-weight: 700; display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }

.socials { display: flex; gap: 10px; margin-top: 16px; }

.socials a {

  width: 32px; height: 32px; border-radius: 8px; background: var(--soft);

  display: grid; place-items: center; font-size: 13px; font-weight: 700;

}

.foot-col h4 { font-size: 13px; color: var(--muted); margin-bottom: 12px; font-weight: 600; }

.foot-col a { display: block; font-size: 14px; padding: 5px 0; }

.foot-col a:hover { opacity: .65; }

.foot-bot {

  margin-top: 36px; padding-top: 18px;

  border-top: 1px solid var(--line);

  display: flex; justify-content: space-between; gap: 12px;

  font-size: 13px; color: var(--muted);

}



/* Chat */

.chat {

  position: fixed; right: 20px; bottom: 20px; z-index: 50;

  display: flex; align-items: flex-end; gap: 10px;

}

.chat-bubble {

  background: #fff;

  border-radius: 18px;

  padding: 10px 14px;

  box-shadow: 0 10px 30px rgba(0,0,0,.12);

  font-size: 13px;

  max-width: 230px;

}

.chat-bubble b { display: block; font-weight: 600; }

.chat-bubble span { color: var(--muted); font-size: 12px; }

.chat-fab {

  width: 52px; height: 52px; border-radius: 50%;

  background: #111; color: #fff;

  display: grid; place-items: center;

  box-shadow: 0 10px 24px rgba(0,0,0,.18);

}

.chat-box {

  position: fixed; right: 20px; bottom: 84px; z-index: 50;

  width: 320px; background: #fff; border-radius: 18px;

  box-shadow: 0 18px 50px rgba(0,0,0,.16);

  display: none; overflow: hidden;

}

.chat-box.on { display: block; }

.chat-box header {

  background: #111; color: #fff; padding: 14px 16px;

  font-weight: 600; font-size: 14px;

}

.chat-box .body { padding: 14px; min-height: 160px; font-size: 13px; color: var(--muted); }

.chat-box form { display: flex; border-top: 1px solid var(--line); }

.chat-box input { flex: 1; padding: 12px; border: 0; outline: none; font: inherit; }

.chat-box button { padding: 0 14px; font-weight: 700; }



/* Pricing */

.price-hero { padding: 64px 0 24px; text-align: center; }

.price-hero h1 { font-size: clamp(36px, 5vw, 52px); letter-spacing: -.04em; font-weight: 600; }

.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 40px; }

.pcard {

  border: 1px solid var(--line);

  border-radius: 22px;

  padding: 28px;

  background: #fff;

}

.pcard .plat { font-size: 13px; font-weight: 600; color: var(--muted); }

.pcard h3 { font-size: 22px; margin: 6px 0 18px; }

.pcard .from { font-size: 13px; color: var(--muted); }

.pcard .amt { font-size: 48px; font-weight: 700; letter-spacing: -.04em; line-height: 1; }

.pcard .amt small { font-size: 16px; font-weight: 600; }

.pcard ul { list-style: none; margin: 20px 0; }

.pcard li { padding: 7px 0 7px 22px; position: relative; font-size: 14px; }

.pcard li::before { content: "✓"; position: absolute; left: 0; font-weight: 700; }



/* Signup */

.signup-page { min-height: 100vh; display: grid; place-items: center; padding: 40px 16px; background: linear-gradient(180deg, #fff, #eef3fb); }

.signup-card {

  width: min(440px, 100%);

  background: #fff;

  border-radius: 22px;

  padding: 32px 28px;

  box-shadow: 0 20px 60px rgba(20,30,50,.08);

}

.signup-card h1 { font-size: 28px; letter-spacing: -.03em; margin: 16px 0 6px; }

.field { margin: 12px 0; }

.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }

.field input {

  width: 100%; height: 46px; border: 1px solid var(--line);

  border-radius: 12px; padding: 0 12px; font: inherit;

  outline: none;

}

.field input:focus { border-color: #111; }

.signup-card .btn { width: 100%; margin-top: 8px; }

.switch { text-align: center; margin-top: 16px; font-size: 14px; color: var(--muted); }

.switch a { font-weight: 700; color: #111; }



.modal {

  position: fixed; inset: 0; background: rgba(0,0,0,.6);

  display: none; place-items: center; z-index: 80; padding: 20px;

}

.modal.on { display: grid; }

.modal-card {

  width: min(860px, 100%);

  aspect-ratio: 16/9;

  background: #111;

  border-radius: 18px;

  display: grid; place-items: center; color: #fff;

  position: relative;

}

.modal-card p { opacity: .7; }

.modal-x {

  position: absolute; top: 12px; right: 12px;

  width: 36px; height: 36px; border-radius: 50%; background: #fff; color: #111; font-size: 20px;

}



/* Download / OS detect */

.dl-hero {

  padding: 64px 0 28px;

  text-align: center;

  background:

    linear-gradient(156deg, rgba(176,208,245,0) 68%, rgba(176,208,245,.45) 116%),

    linear-gradient(213deg, rgba(176,175,244,0) 41%, rgba(176,175,244,.4) 138%),

    #fff;

}

.dl-hero h1 {

  font-size: clamp(40px, 6vw, 58px);

  letter-spacing: -.04em;

  font-weight: 600;

  margin: 0 auto 14px;

}

.os-pill {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-top: 8px;

  padding: 8px 14px;

  border-radius: 999px;

  background: var(--soft);

  font-size: 13px;

  font-weight: 500;

  color: var(--muted);

}

.os-pill strong { color: #111; font-weight: 700; }

.os-pill .dot {

  width: 8px; height: 8px; border-radius: 50%;

  background: #22c55e;

  box-shadow: 0 0 0 3px rgba(34,197,94,.18);

}

.dl-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 16px;

  margin-top: 40px;

}

.dl-card {

  border: 1px solid var(--line);

  border-radius: 20px;

  padding: 22px;

  background: #fff;

  transition: border-color .2s, box-shadow .2s;

}

.dl-card:hover { border-color: rgba(254,125,80,.35); }

.dl-card.is-recommended {

  border-color: rgba(254,125,80,.55);

  box-shadow: 0 0 0 1px rgba(254,125,80,.12), 0 18px 40px rgba(20,30,50,.08);

}

.dl-card header {

  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 16px;

  flex-wrap: wrap;

}

.dl-card .os-icon { width: 22px; height: 22px; color: #111; flex-shrink: 0; }

.dl-card .os-name { font-size: 20px; font-weight: 700; letter-spacing: -.02em; }

.dl-card .os-meta {

  margin-left: auto;

  font-size: 12px;

  font-weight: 600;

  color: var(--muted);

}

.rec-badge {

  display: none;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .08em;

  text-transform: uppercase;

  color: #111;

  background: var(--coral);

  border-radius: 999px;

  padding: 3px 8px;

}

.dl-card.is-recommended .rec-badge { display: inline-flex; }

.dl-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }

.dl-btn {

  display: inline-flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 2px;

  padding: 10px 14px;

  border-radius: 12px;

  border: 1px solid var(--line);

  background: var(--wash);

  transition: border-color .2s, background .2s, transform .2s;

}

.dl-btn:hover {

  border-color: rgba(254,125,80,.45);

  background: rgba(254,125,80,.08);

  transform: translateY(-1px);

}

.dl-btn .label { font-size: 14px; font-weight: 600; letter-spacing: -.01em; }

.dl-btn .sub { font-size: 11px; color: var(--muted); font-weight: 500; }

.dl-btn.is-recommended {

  border-color: rgba(254,125,80,.65);

  background: rgba(254,125,80,.12);

}

.dl-btn.is-recommended .label::after {

  content: " · recommended";

  color: var(--coral-hover);

  font-weight: 600;

  font-size: 12px;

}

.dl-foot { font-size: 13px; color: var(--muted); line-height: 1.5; }

.dl-foot code {

  font-size: 12px;

  background: var(--wash);

  border: 1px solid var(--line);

  border-radius: 6px;

  padding: 1px 6px;

}

.steps {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  margin-top: 40px;

}

.steps article {

  border: 1px solid var(--line);

  border-radius: 18px;

  padding: 22px;

  background: #fff;

}

.steps .n {

  display: inline-grid;

  place-items: center;

  width: 28px; height: 28px;

  border-radius: 50%;

  background: #111;

  color: #fff;

  font-size: 13px;

  font-weight: 700;

  margin-bottom: 12px;

}

.steps h3 { font-size: 17px; margin-bottom: 6px; }

.steps p { font-size: 14px; color: var(--muted); }

.steps a { font-weight: 700; text-decoration: underline; }

.sticky-dl {

  position: fixed;

  left: 50%;

  bottom: 20px;

  transform: translateX(-50%) translateY(calc(100% + 2rem));

  z-index: 60;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 10px 10px 10px 18px;

  background: rgba(255,255,255,.96);

  border: 1px solid var(--line);

  border-radius: 999px;

  box-shadow: 0 16px 40px rgba(20,30,50,.16);

  backdrop-filter: blur(12px);

  opacity: 0;

  pointer-events: none;

  transition: transform .35s ease, opacity .35s ease;

  max-width: calc(100vw - 24px);

  font-size: 13px;

  color: var(--muted);

}

.sticky-dl.is-visible {

  transform: translateX(-50%) translateY(0);

  opacity: 1;

  pointer-events: auto;

}

.sticky-dl strong { color: #111; }

.nav a[aria-current="page"] { opacity: 1; font-weight: 700; }



@media (max-width: 980px) {

  .nav { display: none; }

  .nav.open {

    display: flex; flex-direction: column; align-items: flex-start;

    position: absolute; top: 72px; left: 0; right: 0;

    background: #fff; padding: 16px 24px 24px; border-bottom: 1px solid var(--line);

  }

  .menu-btn { display: grid; place-items: center; }

  .header { position: sticky; }

  .header-inner { position: relative; }

  .orbit { display: none; }

  .split, .feat-cards, .polls, .price-grid, .foot-top, .why-grid,

  .dl-grid, .steps { grid-template-columns: 1fr; }

  .proof { flex-direction: column; align-items: center; gap: 20px; text-align: center; }

  .hero { padding-top: 36px; }

  .chat-bubble { display: none; }

  .foot-top { gap: 22px; }

}


/* —— Infloww build upgrades —— */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d2 { transition-delay: .08s; }
.reveal.d3 { transition-delay: .16s; }

body.nav-open { overflow: hidden; }
.menu-btn[aria-expanded="true"] span { background: transparent; }
.menu-btn[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.fcard, .why-item, .feat, .dl-card, .pcard {
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s, border-color .25s;
}
.fcard:hover, .why-item:hover, .pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20,30,50,.08);
}
.quote {
  animation: quoteIn .45s cubic-bezier(.22,1,.36,1);
}
@keyframes quoteIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.signup-card .btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }
.field input.is-invalid { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.12); }
.field .err {
  display: none;
  margin-top: 6px;
  font-size: 12px;
  color: #ef4444;
  font-weight: 600;
}
.field.has-error .err { display: block; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #111;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 100;
}
.skip-link:focus { left: 12px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orbit, .reveal, .hero-in, .demo-card, .btn, .quote { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Download / web-beta page motion */
.dl-hero .btn-hero{
  animation: dl-cta-pulse 2.4s ease-in-out infinite;
}
@keyframes dl-cta-pulse{
  0%,100%{ box-shadow: 0 10px 28px rgba(254,125,80,.22); }
  50%{ box-shadow: 0 14px 36px rgba(254,125,80,.38); }
}
.steps article{
  transition: transform .25s ease, box-shadow .25s ease;
}
.steps article:hover{
  transform: translateY(-3px);
}
@media (prefers-reduced-motion: reduce){
  .dl-hero .btn-hero{ animation: none; }
  .steps article:hover{ transform: none; }
}
