﻿/* ============ Tokens ============ */
:root {
  --paper: #F8F7FC;
  --paper-2: #EFEDF8;
  --card: #FFFFFF;
  --ink: #17142B;
  --ink-2: #474262;
  --muted: #625D80;
  --line: rgba(23, 20, 43, .09);
  --violet: #6A55E6;
  --violet-hi: #8F82FF;
  --violet-deep: #4330AE;
  --violet-soft: #E7E3FF;
  --lav: #D4CCFF;
  --night: #120E2E;
  --night-2: #1C1745;
  --peach: #FFC3A6;
  --mint: #2FB67C;
  --amber: #E7A33E;
  --rose: #E0508A;

  --k-pdf: #E5484D;
  --k-img: #2F9BF0;
  --k-link: #6A55E6;
  --k-txt: #8A8FA3;
  --k-sheet: #2FB67C;
  --k-doc: #3B6FE0;
  --k-zip: #B07C3E;
  --k-audio: #E0508A;
  --k-video: #F2994A;
  --k-code: #0FA3A3;

  --font: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", ui-serif, Georgia, serif;
  --r-sm: 10px;
  --r: 18px;
  --r-lg: 28px;
  --shadow: 0 1px 2px rgba(23,20,43,.05), 0 8px 24px -8px rgba(23,20,43,.12);
  --shadow-lg: 0 2px 6px rgba(23,20,43,.06), 0 30px 60px -20px rgba(67,48,174,.35);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ============ Base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font: 400 17px/1.55 var(--font); -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.i18n-pending main, body.i18n-pending .nav-links { opacity: 0; }
main, .nav-links { transition: opacity .25s; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { margin: 0; letter-spacing: -.02em; line-height: 1.05; font-weight: 600; }
h1 em, h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.01em; color: var(--violet); }
p { margin: 0; }
kbd {
  font: 500 .82em/1 var(--font); padding: .28em .5em; border-radius: 6px;
  background: var(--card); border: 1px solid var(--line); box-shadow: 0 1px 0 var(--line);
}
.wrap { width: min(1180px, 100% - 32px); margin-inline: auto; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -60px; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; border-radius: 6px; }

.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--violet); margin-bottom: 14px; }
.lead { font-size: clamp(17px, 1.6vw, 19px); color: var(--ink-2); max-width: 60ch; }

/* Buttons */
.btn {
  --bg: var(--ink); --fg: #fff;
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  height: 52px; padding: 0 22px; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--bg); color: var(--fg); font: 600 16px var(--font); text-decoration: none;
  transition: transform .2s var(--ease), background .2s, box-shadow .2s; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.btn:hover { background: var(--violet); box-shadow: 0 10px 24px -10px var(--violet); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: scale(.98); }
.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; }
.btn-ghost { --bg: transparent; --fg: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.btn-ghost:hover { background: var(--paper-2); box-shadow: inset 0 0 0 1px var(--line); }
.btn-light { --bg: #fff; --fg: var(--violet-deep); }
.btn-light:hover { background: var(--violet-soft); box-shadow: none; }

/* ============ Nav ============ */
.nav { position: sticky; top: 0; z-index: 50; transition: background .3s, box-shadow .3s; }
.nav.scrolled { background: rgba(248,247,252,.82); backdrop-filter: saturate(1.6) blur(16px); -webkit-backdrop-filter: saturate(1.6) blur(16px); box-shadow: 0 1px 0 var(--line); }
.nav-inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; letter-spacing: -.02em; text-decoration: none; }
.brand-mark { width: 34px; height: 34px; filter: drop-shadow(0 4px 10px rgba(106,85,230,.35)); }
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a { text-decoration: none; font-size: 15px; font-weight: 500; color: var(--ink-2); padding: 8px 12px; border-radius: 999px; transition: background .2s, color .2s; }
.nav-links a:hover { background: var(--paper-2); color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
@media (max-width: 960px) { .nav-links { display: none; } .nav-actions { margin-left: auto; } }

/* Menu do celular */
.menu-btn { display: none; width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--line); background: var(--card); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 0; }
.menu-btn span { width: 18px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .25s var(--ease), opacity .2s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mnav { display: grid; gap: 2px; padding: 8px 16px 20px; background: rgba(248,247,252,.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); box-shadow: 0 20px 30px -20px rgba(23,20,43,.25); }
.mnav[hidden] { display: none; }
.mnav a:not(.btn) { display: flex; align-items: center; min-height: 52px; padding: 0 8px; border-bottom: 1px solid var(--line); text-decoration: none; font-size: 18px; font-weight: 600; letter-spacing: -.01em; }
.mnav a[aria-current="page"] { color: var(--violet); }
.mnav .btn { margin-top: 14px; width: 100%; }
body.menu-open .nav { background: rgba(248,247,252,.97); box-shadow: 0 1px 0 var(--line); }
@media (max-width: 960px) { .menu-btn { display: inline-flex; } }

/* Language */
.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px; height: 40px; padding: 0 12px;
  border-radius: 999px; border: 1px solid var(--line); background: var(--card); color: var(--ink);
  font: 600 13px var(--font); cursor: pointer;
}
.lang-btn svg { width: 17px; height: 17px; }
.lang-list {
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 170px; margin: 0; padding: 6px;
  list-style: none; background: var(--card); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
}
.lang-list li { padding: 10px 12px; border-radius: 9px; cursor: pointer; font-size: 15px; display: flex; justify-content: space-between; align-items: center; }
.lang-list li small { color: var(--muted); font-size: 11px; font-weight: 600; }
.lang-list li:hover, .lang-list li:focus { background: var(--paper-2); outline: none; }
.lang-list li[aria-selected="true"] { color: var(--violet); font-weight: 600; }
.lang-list li[aria-selected="true"]::after { content: "✓"; }

/* ============ Hero ============ */
.hero { position: relative; padding: 40px 0 0; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -30% -10% auto; height: 900px; z-index: -1;
  background: radial-gradient(50% 50% at 75% 35%, rgba(143,130,255,.28), transparent 70%),
              radial-gradient(40% 40% at 10% 10%, rgba(255,195,166,.35), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 44px; align-items: center; padding-bottom: 72px; }
.pill-eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 10px; background: var(--card); border: 1px solid var(--line); border-radius: 999px; letter-spacing: .06em; font-size: 12px; box-shadow: var(--shadow); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 0 0 rgba(106,85,230,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(106,85,230,0); } 100% { box-shadow: 0 0 0 0 rgba(106,85,230,0); } }
.hero h1 { font-size: clamp(42px, 4.6vw, 74px); letter-spacing: -.045em; line-height: .96; margin: 10px 0 24px; }
.hero h1 em { display: inline-block; padding-right: .06em; }
.hero .lead { margin-bottom: 32px; }

.waitlist { display: flex; flex-wrap: wrap; gap: 10px; max-width: 520px; }
.waitlist input[type="email"] {
  flex: 1 1 240px; height: 52px; padding: 0 20px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--card); font: 16px var(--font); color: var(--ink);
  box-shadow: var(--shadow); transition: border-color .2s, box-shadow .2s;
}
.waitlist input[type="email"]:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 4px rgba(106,85,230,.18); }
.waitlist input[type="email"][aria-invalid="true"] { border-color: var(--k-pdf); }
.wl-extra { flex-basis: 100%; border: 0; padding: 0; margin: 8px 0 0; min-width: 0; }
.wl-extra legend { padding: 0 0 8px 4px; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.wl-extra legend span { color: var(--muted); font-weight: 400; }
.chk { position: relative; display: inline-flex; margin: 0 4px 6px 0; cursor: pointer; }
.chk input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chk span {
  display: inline-flex; align-items: center; gap: 7px; height: 38px; padding: 0 14px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--card); font-size: 14px; font-weight: 600; color: var(--ink-2);
  transition: all .18s var(--ease); user-select: none;
}
.chk svg { width: 14px; height: 15px; }
.chk:hover span { border-color: var(--lav); }
.chk input:checked + span { background: var(--violet-soft); border-color: var(--violet); color: var(--violet-deep); }
.chk input:checked + span::after { content: "✓"; font-size: 12px; }
.chk input:focus-visible + span { outline: 3px solid var(--violet); outline-offset: 2px; }
.beta { flex-basis: 100%; display: inline-flex; align-items: center; gap: 10px; padding-left: 4px; font-size: 15px; font-weight: 500; cursor: pointer; }
.beta input { width: 18px; height: 18px; accent-color: var(--violet); cursor: pointer; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-legal { flex-basis: 100%; font-size: 12.5px; color: var(--muted); padding-left: 20px; }
.form-legal a { color: inherit; }
.btn[disabled] { opacity: .65; cursor: progress; }
.final .wl-extra { text-align: center; }
.final .wl-extra legend { width: 100%; text-align: center; padding-left: 0; color: #E3DEFF; }
.final .wl-extra legend span { color: #C9C1FF; }
.final .chk span { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); color: #fff; }
.final .chk input:checked + span { background: #fff; border-color: #fff; color: var(--violet-deep); }
.final .beta { justify-content: center; color: #fff; padding-left: 0; }
.final .beta input { accent-color: #fff; }
.final .form-legal { text-align: center; color: #CFC8FF; padding-left: 0; }
.form-note { flex-basis: 100%; font-size: 14px; color: var(--muted); padding-left: 20px; }
.form-note.ok { color: var(--mint); font-weight: 600; }
.form-note.err { color: var(--k-pdf); font-weight: 600; }
.definition { margin-top: 36px; font-size: 14px; color: var(--muted); }
.definition b { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--ink); font-style: italic; }

/* Scene */
.scene {
  position: relative; aspect-ratio: 1 / 1.02; max-height: 620px; width: 100%;
  border-radius: 36px; overflow: hidden; container-type: size;
  background: linear-gradient(180deg, #7D6BF2 0%, #9A8CFF 36%, #C9B8FF 64%, #FFD2BD 100%);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.25);
  isolation: isolate;
}
.sun { position: absolute; width: 46%; aspect-ratio: 1; border-radius: 50%; left: 50%; bottom: 8%; translate: -50% 0;
  background: radial-gradient(circle, #FFF0E6 0%, rgba(255,214,190,.6) 40%, transparent 70%); z-index: -1; }
.cloud { position: absolute; height: 34px; border-radius: 40px; background: rgba(255,255,255,.55); filter: blur(1px); animation: drift linear infinite; }
.cloud::before, .cloud::after { content: ""; position: absolute; background: inherit; border-radius: 50%; }
.cloud::before { width: 46px; height: 46px; left: 16%; top: -22px; }
.cloud::after { width: 34px; height: 34px; left: 48%; top: -14px; }
.c1 { width: 140px; top: 16%; animation-duration: 60s; animation-delay: -10s; }
.c2 { width: 100px; top: 40%; animation-duration: 80s; animation-delay: -45s; opacity: .7; }
.c3 { width: 170px; top: 60%; animation-duration: 70s; animation-delay: -30s; opacity: .6; }
@keyframes drift { from { transform: translateX(-200px); } to { transform: translateX(calc(100cqw + 60px)); } }

/* Cena do topo: arquivo sai do Mac, atravessa pelo Drive e pousa no Windows */
.trail { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.trail path { fill: none; stroke: rgba(255,255,255,.75); stroke-width: 2.2; stroke-dasharray: 2 7; stroke-linecap: round; vector-effect: non-scaling-stroke; animation: trail 1.2s linear infinite; }
@keyframes trail { to { stroke-dashoffset: -18; } }
.via {
  position: absolute; left: 67%; top: 35%; translate: -50% 0; z-index: 2; display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px 6px 9px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--violet-deep);
  font-size: 12px; font-weight: 600; white-space: nowrap; box-shadow: 0 8px 20px -10px rgba(23,20,43,.45);
}
.via svg { width: 17px; height: 17px; }

.wwin { position: absolute; z-index: 1; background: rgba(255,255,255,.82); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); box-shadow: 0 22px 44px -20px rgba(23,20,43,.5), inset 0 0 0 1px rgba(255,255,255,.7); }
/* iPhone com a tela de Compartilhar */
.phone-mock {
  position: absolute; left: 8%; top: 6%; width: 28%; aspect-ratio: 1 / 2.02; z-index: 1;
  border-radius: 13% / 6.5%; background: #16141F; padding: 2.4%; box-shadow: 0 24px 44px -18px rgba(23,20,43,.6);
}
.pm-island { position: absolute; top: 3.6%; left: 50%; width: 30%; height: 3.4%; translate: -50% 0; border-radius: 99px; background: #000; z-index: 2; }
.pm-photo { position: absolute; inset: 2.4%; border-radius: 11% / 5.5%; background: linear-gradient(170deg, #ffd6b3 0 34%, #86c7ff 34% 62%, #3b82d8 62%); }
.pm-sheet {
  position: absolute; left: 2.4%; right: 2.4%; bottom: 2.4%; height: 46%; border-radius: 16% 16% 11% 11% / 20% 20% 13% 13%;
  background: #F4F3F8; padding: 12% 8% 0; display: grid; gap: 9%; align-content: start;
}
.pm-apps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7%; align-items: start; }
.pm-apps > i { aspect-ratio: 1; border-radius: 26%; background: #DAD5EE; }
.pm-pouso { display: grid; justify-items: center; gap: 3px; animation: bounce 2s ease-in-out infinite; }
.pm-pouso svg { width: 100%; aspect-ratio: 1; height: auto; border-radius: 26%; box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--violet); }
.pm-pouso em { font-style: normal; font-size: 7.5px; font-weight: 600; color: var(--ink-2); }
@keyframes bounce { 0%, 100% { transform: none; } 8% { transform: translateY(-4px); } 16% { transform: scale(.92); } 24% { transform: none; } }
.pm-dest { display: flex; align-items: center; gap: 5px; padding: 6px 7px; border-radius: 8px; background: #fff; box-shadow: 0 0 0 1.5px var(--violet); font-size: 8.5px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; }
.pm-dest svg { width: 9px; height: 9px; color: #1E73E8; flex: none; }
.pm-dest span { overflow: hidden; text-overflow: ellipsis; }

/* Janela do Pouso no Windows */
.wwin { right: 4%; bottom: 6%; width: 62%; border-radius: 8px; overflow: hidden; }
.wwin-bar { display: flex; align-items: center; gap: 7px; height: 28px; padding-left: 9px; background: #fff; font-size: 10.5px; font-weight: 600; color: var(--ink-2); }
.wwin-bar > span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.wlogo { width: 14px; height: 14px; flex: none; }
.ctl { margin-left: auto; display: flex; height: 100%; flex: none; }
.ctl i { width: 30px; display: grid; place-items: center; position: relative; }
.ctl i::after { content: ""; width: 8px; height: 8px; border: 1.3px solid #8B879F; border-radius: 1px; }
.ctl i:first-child::after { height: 0; border-width: 1.3px 0 0; }
.ctl i:last-child::after { border: 0; width: 10px; height: 10px; background: linear-gradient(45deg, transparent 45%, #8B879F 45% 55%, transparent 55%), linear-gradient(-45deg, transparent 45%, #8B879F 45% 55%, transparent 55%); }
.wwin-sub { display: flex; align-items: center; gap: 7px; padding: 9px 11px 0; font-size: 12px; }
.wwin-sub b { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.shelf-os { width: 12px; height: 12px; color: #1E73E8; flex: none; }
.shelf-count { margin-left: auto; color: var(--muted); flex: none; font-size: 11px; }
.shelf-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; padding: 9px 11px 11px; border-radius: 0 0 8px 8px; animation: arrive 2s ease-out infinite; }
@keyframes arrive { 0%, 60%, 100% { background: transparent; } 72% { background: rgba(106,85,230,.14); } }
.wwin .t-new { animation: pop 2s var(--ease) infinite; }
@keyframes pop { 0%, 52% { transform: none; opacity: 1; } 58%, 66% { transform: scale(.6); opacity: 0; } 76% { transform: scale(1.06); opacity: 1; box-shadow: 0 0 0 2px var(--violet); } 90%, 100% { transform: none; opacity: 1; box-shadow: 0 1px 2px rgba(0,0,0,.06); } }

.tile {
  aspect-ratio: .82; border-radius: 9px; background: #fff; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 5px; box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.tile span { font-size: 9px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tile b { position: absolute; top: 6px; left: 6px; font-size: 9px; color: #fff; padding: 2px 4px; border-radius: 4px; }
.tile.t-img i { position: absolute; inset: 0 0 20px; background: linear-gradient(170deg, #ffd6b3 0 34%, #86c7ff 34% 62%, #3b82d8 62%); }
.tile.t-pdf b { background: var(--k-pdf); }
.tile.t-link b { background: var(--k-link); }
.tile.t-sheet b { background: var(--k-sheet); }
.tile.t-txt em { position: absolute; inset: 7px 7px 20px; font-size: 8px; line-height: 1.35; color: var(--ink-2); font-style: normal; overflow: hidden; }

/* Arquivos em trânsito: sobem do Mac, planam e pousam no Windows (um a cada 2s) */
.fly { position: absolute; left: 36%; top: 26%; width: 70px; margin-left: -35px; z-index: 3; animation: crossing 6s linear infinite; animation-delay: var(--delay); will-change: left, top, transform, opacity; }
.fly .sway { display: flex; flex-direction: column; align-items: center; transform-origin: 50% 0; animation: sway 2.6s ease-in-out infinite alternate; }
.fly .chute { width: 70px; height: 56px; color: #fff; animation: open 6s linear infinite; animation-delay: var(--delay); transform-origin: 50% 100%; }
@keyframes crossing {
  0%   { left: 36%; top: 26%; opacity: 0; transform: scale(.5); }
  8%   { opacity: 1; transform: scale(.8); }
  40%  { left: 54%; top: 4%; transform: scale(1); }
  88%  { left: 72%; top: calc(66% - 60px); opacity: 1; transform: scale(.9); }
  96%, 100% { left: 72%; top: calc(66% - 52px); opacity: 0; transform: scale(.6); }
}
@keyframes open { 0%, 6% { transform: scaleY(.2) scaleX(.4); opacity: 0; } 16%, 86% { transform: none; opacity: 1; } 95%, 100% { transform: scaleY(.3); opacity: 0; } }
@keyframes sway { from { transform: rotate(-6deg); } to { transform: rotate(6deg); } }
.item {
  width: 32px; height: 40px; margin-top: -5px; border-radius: 6px; background: #fff; position: relative;
  display: grid; place-items: center; box-shadow: 0 8px 16px -6px rgba(23,20,43,.35);
  clip-path: polygon(0 0, 70% 0, 100% 22%, 100% 100%, 0 100%);
}
.item span { font: 700 8px var(--font); letter-spacing: .04em; padding: 2px 4px; border-radius: 3px; color: #fff; }
.k-pdf span { background: var(--k-pdf); }
.k-txt span { background: var(--k-txt); }
.k-img i { position: absolute; inset: 4px; border-radius: 3px; background: linear-gradient(160deg, #ffcfa8 0 30%, #7ac1ff 30% 60%, #3c7bd6 60%); }

/* Strip */
.strip { border-block: 1px solid var(--line); padding: 18px 0; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.strip-track { display: flex; gap: 44px; width: max-content; animation: marquee 40s linear infinite; }
.strip-track span { font-family: var(--serif); font-size: 26px; font-style: italic; color: var(--ink-2); display: inline-flex; align-items: center; gap: 44px; white-space: nowrap; }
.strip-track span::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lav); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Sections ============ */
.section { padding: clamp(80px, 11vw, 140px) 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(36px, 5vw, 60px); letter-spacing: -.035em; margin-bottom: 18px; }

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; position: relative; box-shadow: var(--shadow); }
.step-n { font: italic 400 22px var(--serif); color: var(--muted); }
.step h3 { font-size: 26px; margin: 20px 0 10px; }
.step p { color: var(--ink-2); }
.step-art { height: 150px; margin-top: 12px; border-radius: 18px; background: var(--paper-2); position: relative; overflow: hidden; }
.art-drop { background: linear-gradient(180deg, #9A8CFF, #D8CCFF); }
.art-drop svg { position: absolute; width: 80px; height: 64px; left: 50%; top: 18px; margin-left: -40px; animation: bob 3s ease-in-out infinite; }
.art-drop i { position: absolute; width: 36px; height: 44px; left: 50%; top: 76px; margin-left: -18px; background: #fff; border-radius: 6px; animation: bob 3s ease-in-out infinite; clip-path: polygon(0 0, 70% 0, 100% 22%, 100% 100%, 0 100%); }
@keyframes bob { 50% { transform: translateY(10px) rotate(2deg); } }
.art-find { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.art-find .q { background: #fff; border-radius: 10px; padding: 8px 12px; font-size: 14px; box-shadow: inset 0 0 0 2px var(--violet); width: fit-content; min-width: 60%; }
.art-find .q::after { content: "|"; color: var(--violet); animation: blink 1s steps(1) infinite; margin-left: 1px; }
@keyframes blink { 50% { opacity: 0; } }
.art-find i { height: 18px; border-radius: 6px; background: #fff; }
.art-find i:nth-of-type(1) { width: 90%; box-shadow: inset 4px 0 0 var(--k-pdf); }
.art-find i:nth-of-type(2) { width: 70%; opacity: .6; }
.art-find i:nth-of-type(3) { width: 80%; opacity: .35; }
.art-take { display: flex; align-items: center; justify-content: center; gap: 18px; }
.art-take i { width: 64px; height: 76px; border-radius: 12px; background: #fff; box-shadow: var(--shadow); }
.art-take i:first-child { background: linear-gradient(170deg, #ffd6b3 0 34%, #86c7ff 34% 62%, #3b82d8 62%); }
.art-take i:last-child { border: 2px dashed var(--lav); background: transparent; box-shadow: none; }
.art-take svg { width: 28px; height: 28px; color: var(--violet); animation: nudge 1.6s ease-in-out infinite; }
@keyframes nudge { 50% { transform: translateX(6px); } }

/* ============ Bridge ============ */
.bridge { background: radial-gradient(80% 60% at 50% 0%, #2A2270 0%, var(--night) 60%); color: #EDEBFF; overflow: hidden; }
.bridge .eyebrow { color: var(--lav); }
.bridge h2 em { color: var(--violet-hi); }
.bridge .lead { color: #BDB8E6; }
.stars { position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: radial-gradient(1px 1px at 10% 20%, #fff, transparent), radial-gradient(1px 1px at 30% 70%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 55% 15%, #fff, transparent), radial-gradient(1px 1px at 80% 40%, #fff, transparent),
    radial-gradient(1px 1px at 90% 85%, #fff, transparent), radial-gradient(1.5px 1.5px at 20% 90%, #fff, transparent),
    radial-gradient(1px 1px at 65% 60%, #fff, transparent), radial-gradient(1px 1px at 45% 35%, #fff, transparent); }

.flow { display: grid; grid-template-columns: 1fr .8fr auto .8fr 1fr; align-items: center; gap: 0; margin: 8px 0 64px; }
.flow-col { display: flex; flex-direction: column; gap: 14px; }
.device {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 18px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(6px);
}
.device svg { width: 40px; height: 40px; color: var(--lav); flex: none; }
.device b { display: block; font-size: 18px; }
.device small { color: #A9A3D6; font-size: 13px; }
.beam { position: relative; height: 72px; }
.beam span { position: absolute; left: 0; right: 0; top: 36%; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(212,204,255,.55) 0 6px, transparent 6px 14px); background-size: 28px 2px; animation: dash 1s linear infinite; }
.beam span.rev { top: 64%; animation-direction: reverse; opacity: .5; }
@keyframes dash { to { background-position: 28px 0; } }
.pkt { position: absolute; top: calc(36% - 6px); left: 0; width: 12px; height: 14px; background: #fff; border-radius: 3px; box-shadow: 0 0 16px 2px rgba(143,130,255,.8); animation: travel 3.2s var(--ease) infinite; }
.pkt.rev { top: calc(64% - 6px); animation-direction: reverse; animation-delay: -1.6s; background: var(--lav); }
@keyframes travel { 0% { left: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { left: calc(100% - 12px); opacity: 0; } }
.hub { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; }
.hub-orb { width: 108px; height: 108px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 14px;
  background: radial-gradient(circle at 35% 30%, var(--violet-hi), var(--violet-deep)); box-shadow: 0 0 0 10px rgba(143,130,255,.12), 0 0 0 22px rgba(143,130,255,.06), 0 20px 60px -10px rgba(143,130,255,.8); }
.hub-orb svg { width: 52px; height: 52px; color: #fff; }
.hub b { font-size: 17px; }
.hub small { color: #A9A3D6; font-size: 13px; font-family: ui-monospace, "SF Mono", Consolas, monospace; }

.bridge-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; }
.bridge-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; align-content: start; }
.bridge-points li { display: flex; gap: 14px; }
.bridge-points svg { width: 26px; height: 26px; flex: none; padding: 4px; border-radius: 50%; background: rgba(143,130,255,.2); color: var(--lav); }
.bridge-points b { display: block; font-size: 18px; margin-bottom: 2px; }
.bridge-points span { color: #BDB8E6; }
.routes { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); padding: 26px; }
.routes-title { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--lav); margin-bottom: 12px; }
.routes ul { list-style: none; padding: 0; margin: 0; }
.routes li { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.routes li span { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.routes li span svg { width: 16px; height: 16px; color: var(--violet-hi); }
.routes-note { margin-top: 16px; font-size: 14px; color: #A9A3D6; }
.st { font-style: normal; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.st.ok { background: rgba(47,182,124,.16); color: #5EE0A6; }
.st.beta { background: rgba(231,163,62,.16); color: #FFC56B; }
.st.native { background: rgba(143,130,255,.18); color: var(--lav); }
.st.off { background: rgba(229,72,77,.12); color: var(--k-pdf); }

/* ============ Bento ============ */
.bento { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card h3 { font-size: 20px; margin: auto 0 8px; padding-top: 22px; letter-spacing: -.015em; }
.card p { color: var(--ink-2); font-size: 15.5px; }
.c-wide { grid-column: span 2; }
.c-tall { grid-row: span 2; }
.icon-badge { width: 48px; height: 48px; border-radius: 14px; background: var(--violet-soft); color: var(--violet); display: grid; place-items: center; }
.icon-badge svg { width: 24px; height: 24px; }
.mini-shelves { display: flex; flex-wrap: wrap; gap: 8px; }
.mini-shelves span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); font-size: 14px; font-weight: 500; }
.mini-shelves span::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--c); }
.mini-shelves span:first-child { background: var(--ink); color: #fff; border-color: var(--ink); }
.mini-search { display: flex; align-items: center; gap: 10px; background: var(--paper); border-radius: 12px; padding: 12px 14px; border: 1px solid var(--line); }
.mini-search svg { width: 18px; height: 18px; color: var(--muted); flex: none; }
.typing { font-size: 15px; overflow: hidden; white-space: nowrap; border-right: 2px solid var(--violet); width: 0; animation: type 4s steps(10) infinite; }
@keyframes type { 40%, 80% { width: var(--len, 11ch); } 100% { width: 0; } }
.mini-link { display: grid; gap: 8px; }
.mini-link > div { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 10px 12px; border-radius: 12px; background: var(--paper); border: 1px solid var(--line); }
.mini-link .lk { font: 13px ui-monospace, Consolas, monospace; color: var(--ink-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mini-link .revoked .lk { text-decoration: line-through; opacity: .5; }
.mini-link .st.ok { color: #16804F; background: rgba(47,182,124,.14); }
.mini-rule { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.mini-rule .chip { padding: 8px 12px; border-radius: 10px; background: var(--paper); border: 1px solid var(--line); font-size: 14px; }
.mini-rule .chip.hl { border-color: #F2994A; box-shadow: inset 3px 0 0 #F2994A; }
.mini-rule svg { width: 18px; height: 18px; color: var(--muted); }
.mini-rule .ask { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--violet); background: var(--violet-soft); padding: 8px 12px; border-radius: 999px; }

.more-link { margin-top: 32px; text-align: center; }
.swipe-hint { display: none; align-items: center; justify-content: flex-end; gap: 6px; margin-top: 2px; font-size: 13px; font-weight: 500; color: var(--muted); }
.swipe-hint svg { width: 15px; height: 15px; animation: nudge 1.6s ease-in-out infinite; }
.bridge .swipe-hint { color: #A9A3D6; }

/* Botões de download */
.dl-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.dl {
  position: relative; display: inline-flex; align-items: center; gap: 12px; height: 60px; padding: 0 22px 0 18px;
  border-radius: 16px; background: var(--ink); color: #fff; text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s;
}
.dl:hover { background: #2A2545; transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(23,20,43,.6); }
.dl-ico { width: 24px; height: 28px; flex: none; }
.dl span { display: grid; line-height: 1.15; }
.dl small { font-size: 12px; opacity: .75; }
.dl b { font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
.dl-soon { position: absolute; top: -9px; right: -8px; font-style: normal; font-size: 10.5px; font-weight: 700; padding: 3px 8px; border-radius: 999px; background: var(--violet); color: #fff; box-shadow: 0 0 0 3px var(--paper); }
.dl.ready .dl-soon { display: none; }
.dl-light { justify-content: center; }
.dl-light .dl { background: #fff; color: var(--ink); }
.dl-light .dl:hover { background: var(--violet-soft); }
.dl-light .dl-soon { background: #FFD9C7; color: var(--violet-deep); box-shadow: 0 0 0 3px #5A45D8; }
.or-note { font-size: 14px; color: var(--muted); margin-bottom: 10px; }
@media (max-width: 640px) {
  .dl-row { flex-wrap: nowrap; gap: 10px; }
  .dl { flex: 1 1 0; min-width: 0; height: 52px; padding: 0 10px 0 12px; gap: 9px; border-radius: 14px; }
  .dl-ico { width: 19px; height: 22px; }
  .dl small { font-size: 11px; }
  .dl b { font-size: 14.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .dl span { min-width: 0; }
  .dl-soon { font-size: 9.5px; padding: 2px 7px; top: -8px; right: -4px; }
}

/* ============ Demo ============ */
.demo-section { background: linear-gradient(180deg, var(--paper), var(--paper-2)); }
.demo { background: var(--card); border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow-lg); overflow: hidden; }
.demo-bar { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: #FBFAFF; flex-wrap: wrap; }
.win-dots { display: flex; gap: 7px; }
.win-dots i { width: 12px; height: 12px; border-radius: 50%; background: #E3E0EF; }
.demo-tabs { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; flex: 1; min-width: 0; }
.demo-tab {
  display: inline-flex; align-items: center; gap: 8px; height: 36px; padding: 0 14px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; font: 500 14px var(--font); color: var(--ink-2); cursor: pointer; white-space: nowrap; transition: all .2s;
}
.demo-tab::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--c); }
.demo-tab em { font-style: normal; font-size: 12px; color: var(--muted); }
.demo-tab[aria-selected="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.demo-tab[aria-selected="true"] em { color: #B9B5CF; }
.demo-tab.drag-over { transform: scale(1.06); box-shadow: 0 0 0 3px var(--violet); }
.demo-search { display: flex; align-items: center; gap: 8px; height: 36px; padding: 0 12px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); }
.demo-search svg { width: 16px; height: 16px; color: var(--muted); }
.demo-search input { border: 0; background: transparent; font: 14px var(--font); width: 130px; color: var(--ink); }
.demo-search input:focus { outline: none; }
.demo-body { position: relative; min-height: 380px; padding: 20px; background-image: radial-gradient(var(--line) 1px, transparent 1px); background-size: 20px 20px; }
.demo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.demo-grid > * { min-width: 0; }
.demo-empty[hidden] { display: none; }
.demo-empty { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; text-align: center; gap: 14px; color: var(--muted); padding: 24px; pointer-events: none; }
.demo-empty .lander { width: 96px; height: auto; aspect-ratio: 120 / 150; color: var(--violet); filter: drop-shadow(0 6px 12px rgba(106,85,230,.25)); animation: bob 3s ease-in-out infinite; }
.demo-empty .lander { --canopy: var(--violet); --canopy-line: var(--violet-hi); --file: var(--violet); }
.fcard .mini-chute { --canopy: var(--violet); --canopy-line: var(--violet-hi); }
.demo-empty p { max-width: 36ch; }
.drop-overlay { position: absolute; inset: 10px; border-radius: 20px; border: 2px dashed var(--violet); background: rgba(231,227,255,.75); display: grid; place-items: center; opacity: 0; pointer-events: none; transition: opacity .2s; font: italic 32px var(--serif); color: var(--violet-deep); }
.demo.dragging .drop-overlay { opacity: 1; }

.fcard { position: relative; background: #fff; border-radius: 16px; border: 1px solid var(--line); box-shadow: var(--shadow); overflow: visible; cursor: grab; transition: transform .2s var(--ease), box-shadow .2s; }
.fcard:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.fcard:active { cursor: grabbing; }
.fcard .thumb { aspect-ratio: 4/3; border-radius: 15px 15px 0 0; background: var(--paper-2); display: grid; place-items: center; overflow: hidden; position: relative; }
.fcard .thumb img { width: 100%; height: 100%; object-fit: cover; }
.fcard .thumb .glyph { font: 700 13px var(--font); color: #fff; padding: 6px 9px; border-radius: 7px; background: var(--kc); letter-spacing: .04em; }
.fcard .thumb .excerpt { position: absolute; inset: 12px; font-size: 12px; line-height: 1.4; color: var(--ink-2); overflow: hidden; text-align: left; }
.fcard .thumb.tint { background: color-mix(in srgb, var(--kc) 12%, #fff); }
.fcard .meta { padding: 10px 12px 12px; }
.fcard .name { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fcard .sub { font-size: 12px; color: var(--muted); }
.fcard .rm { position: absolute; top: 8px; right: 8px; width: 28px; height: 28px; border-radius: 50%; border: 0; background: rgba(23,20,43,.6); color: #fff; cursor: pointer; opacity: 0; transition: opacity .2s; font-size: 16px; line-height: 1; }
.fcard:hover .rm, .fcard .rm:focus-visible { opacity: 1; }
.fcard .mini-chute { position: absolute; left: 50%; top: -58px; width: 80px; height: 64px; margin-left: -40px; color: var(--violet); pointer-events: none; opacity: 0; }
.fcard.landing { animation: land 1.1s var(--ease) both; }
.fcard.landing .mini-chute { animation: chuteoff 1.3s var(--ease) both; }
@keyframes land { 0% { transform: translateY(-160px) rotate(-6deg); opacity: 0; } 20% { opacity: 1; } 75% { transform: translateY(6px) rotate(1deg); } 100% { transform: none; } }
@keyframes chuteoff { 0%, 60% { opacity: 1; transform: none; } 100% { opacity: 0; transform: translateY(-30px) scale(.8); } }
.demo-foot { display: flex; align-items: center; gap: 16px; padding: 12px 16px; border-top: 1px solid var(--line); background: #FBFAFF; flex-wrap: wrap; font-size: 14px; color: var(--muted); }
#demoCount { font-weight: 600; color: var(--ink); }
.demo-actions { margin-left: auto; display: flex; gap: 8px; }

/* ============ Platforms ============ */
.plat-tabs { display: inline-flex; padding: 5px; border-radius: 999px; background: var(--paper-2); margin-bottom: 36px; }
.plat-tabs button { height: 44px; padding: 0 24px; border-radius: 999px; border: 0; background: transparent; font: 600 15px var(--font); color: var(--ink-2); cursor: pointer; transition: all .25s var(--ease); }
.plat-tabs button[aria-selected="true"] { background: var(--card); color: var(--ink); box-shadow: var(--shadow); }
.plat-panel { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; animation: fadein .45s var(--ease); }
.plat-panel[hidden] { display: none; }
@keyframes fadein { from { opacity: 0; transform: translateY(10px); } }
.plat-copy h3 { font-size: clamp(26px, 3vw, 36px); letter-spacing: -.025em; margin-bottom: 24px; line-height: 1.12; }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.ticks li { position: relative; padding-left: 32px; color: var(--ink-2); }
.ticks li::before { content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--violet-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5 10 16l8-8' fill='none' stroke='%236A55E6' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/16px no-repeat; }

.mock { border-radius: var(--r-lg); min-height: 380px; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.mock .t-img { background: linear-gradient(170deg, #ffd6b3 0 34%, #86c7ff 34% 62%, #3b82d8 62%); }
.mock .t-img.b { background: linear-gradient(160deg, #c9f0d6 0 40%, #5bbf8a 40%); }
.mock .t-pdf { background: #fff; box-shadow: inset 0 -26px 0 #FDECEC; }
.mock .t-sheet { background: #fff; box-shadow: inset 0 -26px 0 #E4F6EE; }
.mock .t-link { background: #fff; box-shadow: inset 0 -26px 0 var(--violet-soft); }
.mock .t-txt { background: #fff; box-shadow: inset 0 -26px 0 #EEEFF3; }

.mock-win { background: linear-gradient(135deg, #3A6FD8, #8D7BFF); display: flex; flex-direction: column; justify-content: space-between; padding: 28px 28px 0; }
.mw-window { background: #F6F6FA; border-radius: 12px; overflow: hidden; box-shadow: 0 24px 50px -20px rgba(0,0,0,.5); }
.mw-title { display: flex; align-items: center; gap: 8px; height: 38px; padding: 0 12px; font-size: 13px; font-weight: 600; background: #fff; }
.mw-title svg { width: 18px; height: 18px; }
.mw-ctl { margin-left: auto; display: flex; gap: 14px; }
.mw-ctl i { width: 10px; height: 10px; border: 1.5px solid #9A97AE; border-radius: 2px; }
.mw-body { display: grid; grid-template-columns: 150px 1fr; min-height: 220px; }
.mw-side { padding: 12px; display: grid; gap: 4px; align-content: start; border-right: 1px solid var(--line); }
.mw-side b { font-size: 12px; font-weight: 500; padding: 8px 10px; border-radius: 8px; color: var(--ink-2); }
.mw-side b.on { background: var(--violet-soft); color: var(--violet-deep); font-weight: 600; }
.mw-grid { padding: 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; align-content: start; }
.mw-grid i { aspect-ratio: 1; border-radius: 10px; border: 1px solid var(--line); }
.mw-taskbar { display: flex; align-items: center; gap: 10px; height: 46px; margin: 24px -28px 0; padding: 0 16px; background: rgba(20,18,40,.6); backdrop-filter: blur(10px); }
.mw-taskbar span { width: 26px; height: 26px; border-radius: 6px; background: rgba(255,255,255,.2); }
.mw-taskbar .tray { margin-left: auto; padding: 5px; border-radius: 6px; background: rgba(255,255,255,.15); box-shadow: 0 0 0 2px var(--lav); animation: pulse 2s infinite; }
.mw-taskbar .tray svg { width: 20px; height: 20px; }
.mw-taskbar small { color: #fff; font-size: 12px; }

.mock-mac { background: linear-gradient(160deg, #F6C8B5 0%, #B6A6FF 55%, #6A55E6 100%); }
.mm-menubar { display: flex; align-items: center; gap: 14px; height: 30px; padding: 0 14px; background: rgba(255,255,255,.35); backdrop-filter: blur(10px); font-size: 13px; }
.mm-menubar span { width: 12px; height: 14px; border-radius: 3px; background: var(--ink); }
.mm-menubar em { margin-left: auto; padding: 3px; border-radius: 5px; background: rgba(255,255,255,.5); }
.mm-menubar em svg { width: 18px; height: 18px; }
.mm-panel { position: absolute; right: 36px; top: 70px; width: 260px; padding: 12px 14px 16px; border-radius: 22px; background: rgba(250,249,255,.78); backdrop-filter: blur(20px); box-shadow: 0 30px 60px -20px rgba(23,20,43,.5), inset 0 0 0 1px rgba(255,255,255,.7); text-align: center; animation: float 5s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-8px); } }
.mm-grip { width: 40px; height: 5px; border-radius: 3px; background: rgba(23,20,43,.2); margin: 0 auto 14px; }
.mm-carousel { display: flex; justify-content: center; align-items: center; gap: 8px; perspective: 500px; }
.mm-carousel i { width: 62px; height: 78px; border-radius: 12px; border: 1px solid var(--line); opacity: .7; }
.mm-carousel i:first-child { transform: rotateY(28deg); }
.mm-carousel i:last-child { transform: rotateY(-28deg); }
.mm-carousel i.center { width: 96px; height: 120px; opacity: 1; box-shadow: var(--shadow-lg); }
.mm-dots { display: flex; gap: 5px; justify-content: center; margin: 14px 0 8px; }
.mm-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(23,20,43,.2); }
.mm-dots i.on { background: var(--violet); width: 16px; border-radius: 3px; }
.mm-panel small { font-size: 12px; color: var(--muted); font-weight: 500; }

.mock-ios { background: linear-gradient(160deg, #EDE9FF, #CFC5FF); display: grid; place-items: center; padding: 28px 0 0; align-content: end; }
.phone { width: 250px; height: 420px; margin-bottom: -60px; border-radius: 42px; background: #111; padding: 10px; position: relative; box-shadow: 0 30px 60px -20px rgba(23,20,43,.6); }
.phone::before { content: ""; position: absolute; inset: 10px; border-radius: 33px; background: linear-gradient(170deg, #ffd6b3 0 34%, #86c7ff 34% 62%, #3b82d8 62%); }
.island { position: absolute; top: 20px; left: 50%; width: 80px; height: 22px; margin-left: -40px; border-radius: 12px; background: #000; z-index: 2; }
.ph-sheet { position: absolute; left: 10px; right: 10px; bottom: 70px; top: 150px; border-radius: 26px 26px 0 0; background: #F7F6FB; padding: 18px 14px; display: grid; gap: 8px; align-content: start; z-index: 1; }
.ph-sheet small { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.ph-dest { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 12px; background: #fff; font-size: 12px; font-weight: 500; border: 1px solid var(--line); }
.ph-dest svg { width: 22px; height: 22px; color: var(--muted); flex: none; }
.ph-dest.on { border-color: var(--violet); box-shadow: 0 0 0 2px var(--violet-soft); }
.ph-dest.on svg { color: var(--violet); }
.ph-btn { margin-top: 6px; text-align: center; padding: 11px; border-radius: 12px; background: var(--violet); color: #fff; font-weight: 600; font-size: 14px; }

/* ============ Privacy ============ */
.privacy { background: var(--paper-2); }
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.privacy .section-head { margin-bottom: 0; }
.priv-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.priv-list li { display: flex; gap: 14px; align-items: center; padding: 18px 20px; background: var(--card); border-radius: 16px; border: 1px solid var(--line); font-weight: 500; }
.priv-list svg { width: 28px; height: 28px; flex: none; padding: 5px; border-radius: 50%; background: var(--violet); color: #fff; }

/* ============ Plans ============ */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 880px; margin: 0 auto; }
.plan { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow); }
.plan h3 { font-size: 34px; margin-bottom: 8px; }
.plan > p { color: var(--ink-2); margin-bottom: 24px; }
.plan.pro { background: linear-gradient(160deg, var(--violet-hi), var(--violet) 45%, var(--violet-deep)); color: #fff; border: 0; box-shadow: var(--shadow-lg); }
.plan.pro > p, .plan.pro .ticks li { color: #EDEAFF; }
.plan.pro .ticks li::before { background-color: rgba(255,255,255,.2); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5 10 16l8-8' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.badge { position: absolute; top: 28px; right: 28px; font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.2); }
.plans-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 24px; }

/* ============ FAQ ============ */
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq { display: grid; gap: 10px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 0 22px; transition: box-shadow .2s; }
.faq details[open] { box-shadow: var(--shadow); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 32px 20px 0; font-weight: 600; font-size: 17px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 0; top: 50%; width: 12px; height: 12px; margin-top: -8px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq details p { padding: 0 0 20px; color: var(--ink-2); }

/* ============ Final ============ */
.final { position: relative; overflow: hidden; background: linear-gradient(180deg, #7D6BF2 0%, #5A45D8 60%, #3D2BA0 100%); color: #fff; padding: clamp(90px, 12vw, 150px) 0; text-align: center; }
.final-inner { display: flex; flex-direction: column; align-items: center; }
.final-logo { width: 88px; height: 88px; margin-bottom: 28px; border-radius: 22px; box-shadow: 0 20px 50px -10px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.2); }
.final h2 { font-size: clamp(38px, 6vw, 72px); letter-spacing: -.04em; max-width: 16ch; margin-bottom: 18px; }
.final h2 em { color: #FFD9C7; }
.final .lead { color: #E3DEFF; margin-bottom: 32px; }
.final .waitlist { justify-content: center; }
.final .waitlist input[type="email"] { border-color: transparent; }
.final .form-note { color: #D6D0FF; text-align: center; padding: 0; }
.final .form-note.ok { color: #9FF2C8; }
.final .form-note.err { color: #FFC0B8; }
.final-sky .lander { position: absolute; width: 96px; height: auto; aspect-ratio: 120 / 150; color: #fff; opacity: .28; animation: bob 5s ease-in-out infinite; }
.final-sky .f1 { left: 8%; top: 14%; }
.final-sky .f2 { right: 10%; top: 26%; width: 64px; animation-delay: -2s; }
.final-sky .f3 { left: 20%; bottom: 10%; width: 52px; animation-delay: -3.5s; }

/* ============ Página de privacidade ============ */
.legal-page { padding: 64px 0 120px; }
.legal-wrap { max-width: 760px; }
.legal-page h1 { font-size: clamp(40px, 6vw, 72px); letter-spacing: -.04em; margin: 6px 0 14px; }
.legal-updated { color: var(--muted); font-size: 14px; margin-bottom: 40px; }
.legal-page section { padding: 26px 0; border-top: 1px solid var(--line); }
.legal-page h2 { font-size: 22px; letter-spacing: -.02em; margin-bottom: 10px; }
.legal-page section p { color: var(--ink-2); }
.legal-page a { color: var(--violet); }

/* ============ Footer ============ */
.foot { padding: 48px 0 32px; border-top: 1px solid var(--line); }
.foot-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.foot-brand p { color: var(--muted); font-size: 14px; margin-top: 8px; }
.foot-links { display: flex; gap: 20px; margin-left: auto; }
.foot-links a { text-decoration: none; color: var(--ink-2); font-size: 15px; }
.foot-links a:hover { color: var(--violet); }
.foot-lang { display: inline-flex; padding: 4px; background: var(--paper-2); border-radius: 999px; }
.foot-lang button { border: 0; background: transparent; font: 600 13px var(--font); padding: 7px 12px; border-radius: 999px; color: var(--ink-2); cursor: pointer; }
.foot-lang button[aria-pressed="true"] { background: var(--card); color: var(--ink); box-shadow: var(--shadow); }
.legal { font-size: 12px; color: var(--muted); margin-top: 32px; }

.offscreen *, .offscreen *::before, .offscreen *::after { animation-play-state: paused !important; }

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============ Responsive ============ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .scene { max-width: 560px; margin-inline: auto; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .c-tall { grid-row: auto; }
  .bridge-grid, .privacy-grid, .faq-wrap, .plat-panel { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; justify-items: center; max-width: 420px; margin-inline: auto; }
  .flow-col { width: 100%; }
  .beam { height: 64px; width: 72px; }
  .beam span { top: 0; bottom: 0; height: auto; width: 2px; left: 36%; right: auto; background: repeating-linear-gradient(180deg, rgba(212,204,255,.55) 0 6px, transparent 6px 14px); background-size: 2px 28px; animation-name: dashv; }
  .beam span.rev { left: 64%; top: 0; }
  .pkt { left: calc(36% - 6px); top: 0; animation-name: travelv; }
  .pkt.rev { left: calc(64% - 6px); top: 0; }
}
@media (max-width: 1000px) {
  .hero-grid { gap: 0; }
  .hero-copy { display: contents; }
  .hero-copy > .pill-eyebrow { justify-self: start; }
  .hero-copy > * { order: 1; }
  .hero-copy > .lead { margin-bottom: 26px; }
  .hero .scene { order: 2; width: 100%; margin: 0 auto 30px; }
  .hero-copy > .dl-row, .hero-copy > .or-note, .hero-copy > .waitlist, .hero-copy > .definition { order: 3; }
}
@keyframes dashv { to { background-position: 0 28px; } }
@keyframes travelv { 0% { top: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { top: calc(100% - 14px); opacity: 0; } }
@media (max-width: 640px) {
  body { font-size: 16px; }
  /* Cartões em carrossel horizontal para encurtar a página */
  .steps, .bento { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; margin-inline: -16px; padding: 4px 16px 18px; scroll-padding-inline: 16px; scrollbar-width: none; }
  .steps::-webkit-scrollbar, .bento::-webkit-scrollbar { display: none; }
  .steps > *, .bento > * { flex: 0 0 84%; scroll-snap-align: start; }
  .bento .card:hover { transform: none; }
  .swipe-hint { display: flex; }
  /* Decoração do CTA final atrapalha a leitura em tela pequena */
  .final-sky { display: none; }
  /* Áreas de toque maiores */
  .foot-links { flex-wrap: wrap; gap: 4px 20px; }
  .foot-links a { display: inline-flex; align-items: center; min-height: 44px; }
  .foot-lang button { min-width: 48px; min-height: 40px; }
  .beta { min-height: 44px; }
  .form-legal a { display: inline-block; padding: 6px 0; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 36px; }
  .steps, .bento, .plans { grid-template-columns: 1fr; }
  .c-wide { grid-column: auto; }
  .nav .btn-sm { display: none; }
  .scene { aspect-ratio: 1 / .98; border-radius: 26px; }
  .phone-mock { width: 30%; left: 6%; top: 5%; }
  .wwin { width: 70%; right: 4%; bottom: 5%; }
  .pm-pouso em { font-size: 6.5px; }
  .pm-dest { font-size: 7px; padding: 4px 5px; }
  .via { top: 36%; left: 71%; font-size: 10.5px; padding: 5px 10px 5px 8px; }
  .fly { width: 56px; margin-left: -28px; }
  .fly .chute { width: 56px; height: 45px; }
  .item { width: 26px; height: 33px; }
  .demo-search { flex: 1 1 100%; }
  .demo-search input { width: 100%; }
  .demo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .demo-body { padding: 12px; min-height: 320px; }
  .fcard .rm { opacity: 1; width: 26px; height: 26px; }
  .fcard .meta { padding: 8px 10px 10px; }
  .fcard .name { font-size: 13px; }
  .demo-hint { display: none; }
  .mw-body { grid-template-columns: 1fr; }
  .mw-side { display: none; }
  .mm-panel { right: 50%; margin-right: -130px; }
  .foot-links { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .fly { display: none; }
  .reveal { opacity: 1; transform: none; }
}
