/* Landing page pública — escopo isolado para não alterar o portal e o painel. */
.landing {
  --land-bg: #07110e;
  --land-surface: #0d1b16;
  --land-surface-2: #12251e;
  --land-line: rgba(214, 243, 231, .12);
  --land-text: #f5f8f4;
  --land-muted: #9cafaa;
  --land-green: #44e28a;
  --land-green-dark: #092e1c;
  --land-cream: #edf5e9;
  min-height: 100vh;
  overflow: hidden;
  color: var(--land-text);
  background:
    radial-gradient(circle at 82% 9%, rgba(48, 173, 112, .16), transparent 25rem),
    radial-gradient(circle at 10% 34%, rgba(43, 128, 86, .09), transparent 28rem),
    var(--land-bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.landing *, .landing *::before, .landing *::after { box-sizing: border-box; }
.landing a { color: inherit; }
.landing em { color: var(--land-green); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.landing svg { display: block; }

.landing-nav {
  width: min(1180px, calc(100% - 40px));
  height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--land-line);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--land-text);
  font-size: 19px;
  font-weight: 780;
  letter-spacing: -.03em;
  text-decoration: none;
}

.landing-brand-mark {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--land-bg);
  background: var(--land-green);
  box-shadow: 0 0 28px rgba(68, 226, 138, .23);
}
.landing-brand-mark svg { width: 19px; }

.landing-links { display: flex; align-items: center; gap: 32px; }
.landing-links a { color: var(--land-muted); font-size: 13px; font-weight: 600; text-decoration: none; transition: color .2s; }
.landing-links a:hover { color: var(--land-text); }
.landing-nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid var(--land-line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, .03);
  transition: transform .2s, border-color .2s;
}
.landing-nav-cta:hover { transform: translateY(-2px); border-color: rgba(68,226,138,.5); }
.landing-nav-cta span { color: var(--land-green); }

.landing-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 660px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .91fr 1.09fr;
  align-items: center;
  gap: 50px;
  padding: 70px 0 82px;
}

.landing-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--land-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.landing-eyebrow span { width: 26px; height: 1px; background: var(--land-green); }
.landing-hero h1 { max-width: 620px; margin: 19px 0 23px; font-size: clamp(45px, 5.6vw, 76px); font-weight: 650; letter-spacing: -.065em; line-height: .98; }
.landing-hero h1 em { display: block; letter-spacing: -.045em; }
.landing-hero-text { max-width: 570px; margin: 0; color: var(--land-muted); font-size: 17px; line-height: 1.7; }
.landing-hero-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.landing-btn {
  min-height: 51px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.landing-btn:hover { transform: translateY(-2px); }
.landing-btn svg { width: 18px; height: 18px; }
.landing-btn.primary { color: #07110e; background: var(--land-green); box-shadow: 0 13px 35px rgba(68,226,138,.17); }
.landing-btn.primary:hover { box-shadow: 0 16px 42px rgba(68,226,138,.28); }
.landing-btn.ghost { color: var(--land-text); border-color: var(--land-line); background: rgba(255,255,255,.025); }
.landing-btn.ghost span { color: var(--land-green); }
.landing-checks { display: flex; gap: 19px; padding: 0; margin: 27px 0 0; list-style: none; flex-wrap: wrap; color: var(--land-muted); font-size: 11px; }
.landing-checks li { display: flex; align-items: center; gap: 6px; }
.landing-checks span { width: 17px; height: 17px; display: grid; place-items: center; color: var(--land-green); border: 1px solid rgba(68,226,138,.3); border-radius: 50%; font-size: 10px; }

.landing-hero-visual { position: relative; min-height: 500px; isolation: isolate; }
.landing-hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 5% 0 9%;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68,226,138,.17), rgba(68,226,138,.03) 44%, transparent 67%);
  filter: blur(4px);
}
.landing-orbit { position: absolute; z-index: -1; border: 1px solid rgba(68,226,138,.1); border-radius: 50%; transform: rotate(-16deg); }
.orbit-one { inset: 4% 4% 3% 8%; }
.orbit-two { inset: 15% -6% 13% 19%; }
.landing-player {
  position: absolute;
  top: 56px;
  left: 4%;
  width: 82%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: #0c1915;
  box-shadow: 0 35px 80px rgba(0,0,0,.45), inset 0 0 0 5px rgba(255,255,255,.018);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}
.player-top { height: 45px; padding: 0 15px; display: flex; align-items: center; justify-content: space-between; background: rgba(7,17,14,.91); }
.player-brand { display: flex; align-items: center; gap: 6px; font-size: 9px; font-weight: 800; }
.player-brand .landing-brand-mark { width: 17px; height: 17px; border-radius: 5px; }
.player-brand .landing-brand-mark svg { width: 10px; }
.player-live { display: flex; align-items: center; gap: 5px; color: #b9c7c1; font-size: 7px; letter-spacing: .08em; }
.player-live i { width: 5px; height: 5px; border-radius: 50%; background: #ff5e67; box-shadow: 0 0 8px #ff5e67; }
.player-scene { position: relative; height: 275px; overflow: hidden; background: linear-gradient(130deg, #173527, #081914 54%, #226343); }
.player-scene::before, .player-scene::after { content: ""; position: absolute; border-radius: 50%; filter: blur(2px); }
.player-scene::before { width: 290px; height: 290px; top: -130px; right: -55px; border: 45px solid rgba(68,226,138,.13); }
.player-scene::after { width: 160px; height: 160px; bottom: -75px; left: 28%; background: rgba(120,225,167,.12); }
.scene-glow { position: absolute; inset: 0; background: radial-gradient(circle at 65% 42%, rgba(154,255,199,.26), transparent 23%), linear-gradient(90deg, rgba(0,0,0,.6), transparent 55%); }
.scene-lines { position: absolute; inset: 0; opacity: .11; background-image: repeating-linear-gradient(120deg, transparent 0 22px, #fff 23px 24px); mask-image: linear-gradient(to right, transparent, #000); }
.play-button { position: absolute; left: 62%; top: 45%; width: 57px; height: 57px; padding: 0; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); }
.play-button span { margin-left: 4px; width: 0; height: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid #fff; }
.now-playing { position: absolute; left: 20px; bottom: 20px; display: flex; flex-direction: column; }
.now-playing small { color: var(--land-green); font-size: 7px; font-weight: 800; letter-spacing: .15em; }
.now-playing strong { font-size: 21px; line-height: 1.25; }
.now-playing span { color: #bdcbc5; font-size: 9px; }
.player-progress { height: 27px; padding: 12px 15px; background: #09120f; }
.player-progress::before { content: ""; display: block; height: 3px; border-radius: 4px; background: rgba(255,255,255,.12); }
.player-progress span { position: relative; top: -3px; display: block; width: 38%; height: 3px; border-radius: 4px; background: var(--land-green); }
.landing-phone { position: absolute; z-index: 3; right: 1%; bottom: 23px; width: 150px; padding: 7px; border: 1px solid rgba(255,255,255,.21); border-radius: 27px; background: #07100d; box-shadow: 0 28px 50px rgba(0,0,0,.48); transform: rotate(3deg); }
.phone-speaker { position: absolute; z-index: 3; top: 12px; left: 50%; width: 40px; height: 4px; border-radius: 5px; transform: translateX(-50%); background: #030705; }
.phone-screen { min-height: 276px; padding: 23px 8px 12px; overflow: hidden; border-radius: 21px; background: linear-gradient(#11251c, #09130f); }
.phone-logo { display: flex; align-items: center; gap: 4px; font-size: 7px; font-weight: 800; }
.phone-logo .landing-brand-mark { width: 14px; height: 14px; border-radius: 4px; }
.phone-logo .landing-brand-mark svg { width: 9px; }
.phone-poster { height: 157px; margin: 13px 0 12px; display: grid; place-items: center; border-radius: 11px; background: radial-gradient(circle at 65% 35%, rgba(125,255,180,.3), transparent 23%), linear-gradient(145deg,#173f2c,#0a1611); }
.phone-play { width: 35px; height: 35px; display: grid; place-items: center; padding-left: 2px; border-radius: 50%; color: #07110e; background: var(--land-green); font-size: 11px; }
.phone-screen small { display: block; color: var(--land-green); font-size: 6px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.phone-screen strong { display: block; margin-top: 3px; font-size: 10px; }
.floating-pill { position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(12,28,22,.87); box-shadow: 0 15px 32px rgba(0,0,0,.3); backdrop-filter: blur(10px); }
.floating-pill > span { width: 29px; height: 29px; display: grid; place-items: center; color: #07110e; border-radius: 8px; background: var(--land-green); font-size: 10px; font-weight: 900; }
.floating-pill div { display: flex; flex-direction: column; }
.floating-pill strong { font-size: 9px; }
.floating-pill small { color: var(--land-muted); font-size: 7px; }
.pill-quality { top: 23px; right: 0; }
.pill-devices { left: 0; bottom: 30px; }

.landing-proof { min-height: 90px; padding: 20px max(20px, calc((100% - 1180px)/2)); display: flex; align-items: center; justify-content: space-between; gap: 30px; border-block: 1px solid var(--land-line); background: rgba(255,255,255,.018); }
.landing-proof p { margin: 0; color: var(--land-muted); font-size: 11px; }
.landing-proof div { display: flex; align-items: center; gap: 22px; color: #c5d0cb; font-size: 12px; font-weight: 750; }
.landing-proof i { width: 3px; height: 3px; border-radius: 50%; background: var(--land-green); }

.landing-section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 112px 0; }
.section-heading { display: grid; grid-template-columns: 1fr 370px; align-items: end; gap: 50px; margin-bottom: 45px; }
.section-kicker { display: block; margin-bottom: 12px; color: var(--land-green); font-size: 10px; font-weight: 850; letter-spacing: .17em; }
.section-heading h2, .how-intro h2, .support-content h2 { margin: 0; font-size: clamp(37px, 4.3vw, 57px); line-height: 1.04; letter-spacing: -.055em; }
.section-heading p, .how-intro > p { margin: 0; color: var(--land-muted); font-size: 15px; line-height: 1.7; }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.benefit-card { position: relative; min-height: 270px; overflow: hidden; padding: 29px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--land-line); border-radius: 18px; background: linear-gradient(145deg, rgba(19,39,31,.82), rgba(11,25,20,.8)); }
.benefit-card::before { content: ""; position: absolute; inset: 0; opacity: 0; background: radial-gradient(circle at 75% 25%, rgba(68,226,138,.13), transparent 45%); transition: opacity .3s; }
.benefit-card:hover::before { opacity: 1; }
.benefit-card > * { position: relative; z-index: 1; }
.benefit-card > span, .benefit-card > div > span, .benefit-copy > span { color: var(--land-green); font-size: 8px; font-weight: 850; letter-spacing: .14em; }
.benefit-card h3 { margin: 8px 0 6px; font-size: 23px; letter-spacing: -.03em; }
.benefit-card p { max-width: 390px; margin: 0; color: var(--land-muted); font-size: 13px; line-height: 1.65; }
.benefit-icon { position: absolute; top: 25px; left: 27px; width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(68,226,138,.22); border-radius: 12px; color: var(--land-green); background: rgba(68,226,138,.07); }
.benefit-icon svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.benefit-featured { min-height: 410px; grid-row: span 2; justify-content: flex-start; }
.benefit-featured > div:nth-child(2) { position: absolute; left: 29px; bottom: 28px; }
.device-stack { position: absolute; top: 58px; left: 23%; right: -4%; bottom: 138px; display: flex; align-items: center; justify-content: center; }
.device-stack span { position: absolute; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); background: linear-gradient(145deg,#173c2a,#0a1812); box-shadow: 0 20px 40px rgba(0,0,0,.35); }
.d-tv { width: 235px; height: 130px; border-radius: 9px; color: rgba(68,226,138,.65)!important; font-size: 33px!important; letter-spacing: -.05em!important; }
.d-laptop { width: 140px; height: 85px; right: 18px; bottom: -7px; border-radius: 7px; }
.d-laptop::after { content: ""; position: absolute; left: -8px; right: -8px; bottom: -6px; height: 5px; border-radius: 2px; background: #587064; }
.d-phone { width: 44px; height: 88px; left: 30px; bottom: -15px; border-radius: 9px; }
.benefit-wide { grid-column: 2; display: grid; grid-template-columns: 1fr .7fr; align-items: end; }
.benefit-copy .benefit-icon { position: absolute; }
.signal-art { position: absolute; top: 0; right: 0; width: 39%; height: 100%; display: grid; place-items: center; }
.signal-art i { position: absolute; border: 1px solid rgba(68,226,138,.13); border-radius: 50%; }
.signal-art i:nth-child(1) { width: 75px; height: 75px; }
.signal-art i:nth-child(2) { width: 135px; height: 135px; }
.signal-art i:nth-child(3) { width: 195px; height: 195px; }
.signal-art span { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; color: #07110e!important; background: var(--land-green); font-size: 12px!important; font-weight: 900!important; letter-spacing: 0!important; }

.how-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9%; border-top: 1px solid var(--land-line); }
.how-intro h2 { margin: 0 0 20px; }
.how-intro > p { max-width: 380px; }
.landing-text-link { display: inline-flex; gap: 9px; margin-top: 27px; padding-bottom: 5px; border-bottom: 1px solid rgba(68,226,138,.4); color: var(--land-green)!important; font-size: 12px; font-weight: 800; text-decoration: none; }
.how-steps { margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.how-steps li { min-height: 150px; display: grid; grid-template-columns: 38px 57px 1fr; align-items: center; gap: 21px; border-bottom: 1px solid var(--land-line); }
.how-steps li:first-child { border-top: 1px solid var(--land-line); }
.step-index { align-self: start; padding-top: 31px; color: var(--land-green); font-family: Georgia, serif; font-size: 13px; font-style: italic; }
.how-icon { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid var(--land-line); border-radius: 50%; background: rgba(255,255,255,.025); font-size: 18px; }
.how-steps h3 { margin: 0 0 6px; font-size: 18px; }
.how-steps p { max-width: 430px; margin: 0; color: var(--land-muted); font-size: 13px; line-height: 1.6; }

.support-banner { position: relative; width: min(1180px, calc(100% - 40px)); min-height: 480px; margin: 0 auto 100px; overflow: hidden; padding: 64px 7%; display: flex; align-items: center; border-radius: 25px; color: #07150f; background: var(--land-green); }
.support-banner::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(5,39,21,.14) .8px, transparent .8px); background-size: 10px 10px; mask-image: linear-gradient(90deg, #000, transparent 65%); }
.support-shape { position: absolute; border: 1px solid rgba(7,40,23,.13); border-radius: 50%; }
.support-shape.one { width: 450px; height: 450px; right: -130px; top: -220px; }
.support-shape.two { width: 360px; height: 360px; left: -220px; bottom: -260px; }
.support-status { position: absolute; top: 24px; right: 28px; padding: 7px 10px; border-radius: 999px; background: rgba(7,40,23,.1); font-size: 7px; font-weight: 850; letter-spacing: .1em; }
.support-status span { display: flex; align-items: center; gap: 6px; }
.support-status i { width: 6px; height: 6px; border-radius: 50%; background: #084b2b; box-shadow: 0 0 0 3px rgba(8,75,43,.12); }
.support-content { position: relative; z-index: 2; width: 55%; }
.support-content .section-kicker { color: #0b5632; }
.support-content h2 { font-size: clamp(39px, 4vw, 57px); }
.support-content h2 em { color: #0b5632; }
.support-content p { max-width: 490px; margin: 20px 0 28px; color: rgba(7,21,15,.7); font-size: 14px; line-height: 1.65; }
.landing-btn.light { width: fit-content; color: var(--land-text); background: #0b1c15; box-shadow: 0 13px 30px rgba(7,21,15,.17); }
.landing-btn.light span { color: var(--land-green); }
.support-chat { position: absolute; right: 7%; bottom: -13px; width: 310px; overflow: hidden; border: 1px solid rgba(255,255,255,.7); border-radius: 20px 20px 0 0; background: #f7faf7; box-shadow: 0 30px 60px rgba(6,48,27,.22); transform: rotate(1.8deg); }
.chat-head { height: 69px; padding: 13px 15px; display: flex; align-items: center; gap: 10px; color: var(--land-text); background: #10291e; }
.chat-avatar { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; background: rgba(68,226,138,.1); }
.chat-avatar .landing-brand-mark { width: 25px; height: 25px; border-radius: 8px; }
.chat-avatar .landing-brand-mark svg { width: 14px; }
.chat-avatar > span:last-child { display: none; }
.chat-head > div { display: flex; flex-direction: column; }
.chat-head strong { font-size: 11px; }
.chat-head small { display: flex; align-items: center; gap: 4px; color: #9eb3aa; font-size: 7px; }
.chat-head small i { width: 5px; height: 5px; border-radius: 50%; background: var(--land-green); }
.chat-body { min-height: 255px; padding: 18px 13px; display: flex; flex-direction: column; background: #e8efe9; }
.chat-time { align-self: center; color: #708178; font-size: 6px; }
.chat-body p { width: fit-content; max-width: 78%; margin: 8px 0 0; padding: 9px 11px; border-radius: 2px 10px 10px 10px; color: #24342d; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,.05); font-size: 8px; }
.chat-body p.chat-answer { align-self: flex-end; border-radius: 10px 2px 10px 10px; background: #d8ffd9; }
.chat-input { height: 48px; padding: 0 14px; display: flex; align-items: center; justify-content: space-between; color: #809088; background: #fff; font-size: 8px; }
.chat-input span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #1ea666; }

.landing-footer { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 48px 0 30px; display: grid; grid-template-columns: 1fr auto; gap: 35px; border-top: 1px solid var(--land-line); }
.footer-brand p { margin: 11px 0 0; color: var(--land-muted); font-size: 11px; }
.footer-links { display: flex; align-items: center; gap: 25px; }
.footer-links a { color: var(--land-muted); font-size: 10px; text-decoration: none; }
.footer-links a:hover { color: var(--land-text); }
.footer-bottom { grid-column: 1 / -1; padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid var(--land-line); color: #65766f; font-size: 9px; }

@media (max-width: 900px) {
  .landing-nav { grid-template-columns: 1fr auto; }
  .landing-links { display: none; }
  .landing-hero { min-height: auto; grid-template-columns: 1fr; padding-top: 55px; }
  .landing-hero-copy { max-width: 680px; }
  .landing-hero-visual { width: min(650px, 100%); min-height: 490px; margin: 0 auto; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading p { max-width: 560px; }
  .how-section { grid-template-columns: 1fr; }
  .how-intro { max-width: 620px; }
  .support-banner { padding-left: 6%; }
  .support-content { width: 57%; }
  .support-chat { right: 4%; width: 285px; }
}

@media (max-width: 670px) {
  .landing-nav, .landing-hero, .landing-section, .support-banner, .landing-footer { width: min(100% - 28px, 1180px); }
  .landing-nav { height: 70px; }
  .landing-nav-cta { padding: 9px 12px; font-size: 0; }
  .landing-nav-cta::before { content: "Contato"; font-size: 11px; }
  .landing-nav-cta span { font-size: 11px; }
  .landing-hero { gap: 20px; padding: 48px 0 45px; }
  .landing-hero h1 { font-size: clamp(43px, 14vw, 61px); }
  .landing-hero-text { font-size: 15px; }
  .landing-hero-actions { flex-direction: column; }
  .landing-btn { width: 100%; }
  .landing-checks { gap: 12px; }
  .landing-hero-visual { min-height: 390px; transform: scale(.97); }
  .landing-player { top: 55px; left: 0; width: 91%; }
  .player-scene { height: 205px; }
  .landing-phone { right: -5px; width: 116px; }
  .phone-screen { min-height: 215px; }
  .phone-poster { height: 113px; }
  .pill-devices { bottom: 8px; }
  .pill-quality { right: -7px; }
  .landing-proof { padding: 22px 16px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .landing-proof div { width: 100%; gap: 9px; justify-content: space-between; font-size: 9px; }
  .landing-section { padding: 78px 0; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-featured { min-height: 390px; }
  .benefit-wide { grid-column: 1; }
  .d-tv { width: 205px; }
  .how-steps li { grid-template-columns: 29px 48px 1fr; gap: 12px; }
  .how-icon { width: 45px; height: 45px; }
  .support-banner { min-height: 740px; margin-bottom: 70px; padding: 55px 25px 355px; align-items: flex-start; }
  .support-status { display: none; }
  .support-content { width: 100%; }
  .support-chat { right: 50%; bottom: -5px; width: min(310px, calc(100% - 40px)); transform: translateX(50%) rotate(1deg); }
  .landing-footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 16px 22px; }
  .footer-bottom { flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
  .landing-player { animation: landing-float 6s ease-in-out infinite; }
  .floating-pill { animation: landing-float 5s ease-in-out infinite reverse; }
  .landing-phone { animation: phone-float 7s ease-in-out infinite; }
}
@keyframes landing-float { 0%,100% { translate: 0 0; } 50% { translate: 0 -7px; } }
@keyframes phone-float { 0%,100% { translate: 0 0; } 50% { translate: 0 5px; } }
