:root {
  --bg: #f3f4ef;
  --surface: #e6ebe2;
  --ink: #20251f;
  --muted: #626b61;
  --green: #52604e;
  --sage: #cbd8c6;
  --warm: #d9c8b7;
  --white: #fff;
  --line: rgba(32, 37, 31, 0.16);
  --page: min(1400px, calc(100vw - 72px));
  --sans: "Manrope", sans-serif;
  --serif: "Newsreader", serif;
  --mono: "DM Mono", monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}
body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img,
video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.sw-btn--primary {
  color: var(--white);
}
button {
  font: inherit;
  color: inherit;
}
.skip {
  position: fixed;
  left: 12px;
  top: 8px;
  z-index: 90;
  padding: 10px 14px;
  background: #fff;
  transform: translateY(-150%);
}
.skip:focus {
  transform: none;
}
:focus-visible {
  outline: 3px solid #9a5f45;
  outline-offset: 3px;
}
.kicker {
  font: 500 10px var(--mono);
  letter-spacing: 0.13em;
}
.topbar {
  height: 78px;
  padding: 0 max(36px, calc((100vw - 1400px) / 2));
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  background: rgba(31, 38, 31, 0.97);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}
.logo {
  width: 100px;
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.logo img,
.footer img {
  width: 102px;
  height: 46px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.topbar nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
}
.topbar nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: 0.2s;
}
.topbar nav a:hover {
  color: #fff;
}
.topbar nav a[aria-current="page"] {
  color: #fff;
}
.topbar nav a[aria-current="page"]::after {
  content: "";
  width: 5px;
  height: 5px;
  margin: 7px auto 0;
  display: block;
  background: var(--sage);
  border-radius: 50%;
}
.top-action {
  justify-self: end;
  font-size: 13px;
  font-weight: 700;
}
.top-action span {
  margin-left: 16px;
}
.menu {
  display: none;
}
.sound-toggle {
  min-height: 44px;
  padding: 9px 15px 9px 10px;
  position: fixed;
  left: clamp(14px, 2vw, 28px);
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 49;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  background: rgba(243, 244, 239, 0.92);
  border: 1px solid rgba(32, 37, 31, 0.18);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(32, 37, 31, 0.13);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    color 0.2s ease,
    background 0.2s ease;
  cursor: pointer;
}
.sound-toggle.is-available {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.sound-toggle.is-on {
  color: #fff;
  background: rgba(82, 96, 78, 0.96);
  border-color: rgba(255, 255, 255, 0.2);
}
.sound-toggle__icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: rgba(82, 96, 78, 0.12);
}
.sound-toggle.is-on .sound-toggle__icon {
  background: rgba(255, 255, 255, 0.14);
}
.sound-toggle svg {
  width: 17px;
  height: 17px;
  grid-area: 1 / 1;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sound-toggle__on,
.sound-toggle.is-on .sound-toggle__off {
  display: none;
}
.sound-toggle.is-on .sound-toggle__on {
  display: block;
}
.sound-toggle__label {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.hero {
  width: 100%;
  margin: 0;
  padding: clamp(60px, 6vw, 92px) max(36px, calc((100vw - 1400px) / 2))
    0;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--ink);
  background: var(--bg);
  z-index: 1;
}
.hero-copy {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  will-change: transform, opacity;
}
.hero-title {
  max-width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-title h1 {
  max-width: 100%;
  margin: 20px 0 0;
  font-size: clamp(60px, 7vw, 110px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.065em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-title h1 em {
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-family: var(--serif);
  font-size: 0.72em;
  font-weight: 400;
  line-height: 0.98;
  flex-wrap: wrap;
}
.hero-intro {
  width: min(580px, 100%);
  max-width: 100%;
  margin: 32px auto 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-intro p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  text-align: center;
}
.hero-intro a {
  margin-top: 24px;
  min-width: 270px;
  min-height: 46px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(32, 37, 31, 0.48);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.hero-intro a:hover {
  color: #fff;
  background: var(--green);
  transform: translateY(-2px);
}
.hero-monitor-stage {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 48px auto 0;
  z-index: 10;
  will-change: transform;
}
.hero-monitor-stage > p {
  margin: 18px 4px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font: 500 9px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-monitor-stage > p span {
  width: 6px;
  height: 6px;
  background: #6e8a67;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(110, 138, 103, 0.12);
}
.hero .living-window {
  grid-column: 1 / -1;
  width: 100%;
}
.living-window {
  width: 100%;
}
.live-dot {
  font: 500 9px var(--mono);
  letter-spacing: 0.12em;
}
.live-dot:before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  display: inline-block;
  background: #68865f;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(104, 134, 95, 0.13);
}

@media (min-width: 1024px) {
  .living-window {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: clamp(48px, 6vw, 100px);
    align-items: start;
    position: relative;
    padding: clamp(60px, 6vw, 100px) 0;
  }
  .window-sticky-device {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 120px;
    height: calc(100vh - 180px);
    z-index: 10;
    order: 2;
  }
  .window-sticky-device .app-stage {
    width: 100%;
    margin: 0;
    position: relative;
  }
  .window-sticky-device .macbook {
    width: 100%;
    max-width: 500px;
    margin: 0;
  }
  .window-scroll-track {
    order: 1;
    display: flex;
    flex-direction: column;
  }
  .window-intro-header {
    margin-bottom: 40px;
  }
  .window-intro-header h2 {
    margin: 34px 0 0;
    font-size: clamp(39px, 4vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.05em;
  }
  .window-tabs {
    display: none !important;
  }
  .window-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80vh;
    padding: 60px 0;
  }
  .window-block:last-child {
    min-height: calc(100vh - 180px);
  }
  .window-copy {
    opacity: 0.15;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .window-block.active .window-copy {
    opacity: 1;
    transform: translateY(0);
  }
  .window-copy span {
    font: 500 10px var(--mono);
    letter-spacing: 0.12em;
    color: var(--green);
  }
  .window-copy h3 {
    margin: 18px 0 24px;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
  }
  .window-copy p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .window-copy ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .window-copy ul li {
    font-size: 14px;
    color: var(--ink);
    padding-left: 20px;
    position: relative;
  }
  .window-copy ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: bold;
  }
  .window-sticky-device .stage-caption {
    margin-top: 18px;
    font: 500 9px var(--mono);
    letter-spacing: 0.08em;
    color: var(--muted);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .window-sticky-device .stage-caption span {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6e8a67;
    box-shadow: 0 0 0 5px rgba(110, 138, 103, 0.12);
  }
  .mobile-only-stage {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .window-sticky-device {
    display: none !important;
  }
  .mobile-only-stage {
    display: block !important;
    margin-top: 32px;
    width: 100%;
  }
  .window-block {
    display: none !important;
    padding: 0 0 20px;
    border: none;
  }
  .window-block.mobile-active {
    display: block !important;
  }
  .window-intro-header h2 {
    margin: 24px 0 0;
    font-size: 38px;
    line-height: 1.05;
  }
  .window-tabs {
    display: flex !important;
    margin: 24px 0 32px;
    gap: 8px;
    overflow-x: auto;
    border: 0;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .window-tabs::-webkit-scrollbar {
    display: none;
  }
  .window-tabs button {
    min-height: 42px;
    padding: 0 16px;
    flex: 0 0 auto;
    border: 1px solid rgba(32, 37, 31, 0.2);
    border-radius: 30px;
    background: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 13px;
    scroll-snap-align: start;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
  }
  .window-tabs button:hover {
    color: var(--ink);
    border-color: rgba(32, 37, 31, 0.4);
  }
  .window-tabs button[aria-selected="true"],
  .window-tabs button.active {
    padding: 0 18px;
    color: #fff !important;
    background: var(--green) !important;
    border-color: var(--green) !important;
    font-weight: 700;
  }
  .window-copy span {
    font: 500 10px var(--mono);
    letter-spacing: 0.12em;
    color: var(--green);
  }
  .window-copy h3 {
    margin: 14px 0 18px;
    font-size: 26px;
    line-height: 1.1;
  }
  .window-copy p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--muted);
    margin-bottom: 18px;
  }
  .window-copy ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .window-copy ul li {
    font-size: 13.5px;
    padding-left: 18px;
    position: relative;
    color: var(--ink);
  }
  .window-copy ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
  }
}

.window-sticky-device .app-stage {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.window-sticky-device .app-stage.is-changing {
  opacity: 0.5;
  transform: scale(0.98);
}

.app-stage {
  position: relative;
  padding: 18px 0 28px;
}
.desktop-monitor {
  width: 100%;
  position: relative;
  padding-bottom: 8px;
  filter: drop-shadow(0 36px 28px rgba(35, 44, 34, 0.2));
}
.monitor-shell {
  width: 100%;
  margin: auto;
  padding: 12px 12px 15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(145deg, #303432, #111412 72%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 -2px 5px rgba(255, 255, 255, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.45);
}
.monitor-shell::after {
  content: "";
  width: 30%;
  height: 140%;
  position: absolute;
  top: -35%;
  left: -24%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.055),
    transparent
  );
  transform: rotate(18deg);
}
.monitor-camera {
  width: 5px;
  height: 5px;
  position: absolute;
  top: 5px;
  left: calc(50% - 2.5px);
  z-index: 3;
  background: #263a36;
  border: 1px solid #070808;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(83, 126, 116, 0.6);
}
.monitor-neck {
  width: 14%;
  height: 76px;
  margin: -1px auto 0;
  position: relative;
  z-index: 0;
  background: linear-gradient(
    90deg,
    #969a98,
    #eceeec 35%,
    #b7bab8 74%,
    #8a8e8b
  );
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}
.monitor-neck i {
  width: 58%;
  height: 100%;
  margin: auto;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32));
}
.monitor-foot {
  width: 42%;
  height: 13px;
  margin: -1px auto 0;
  background: linear-gradient(180deg, #eef0ee, #aaaead 60%, #7c807e);
  border-radius: 50% 50% 18px 18px / 55% 55% 10px 10px;
  box-shadow:
    inset 0 1px 0 #fff,
    0 8px 10px rgba(35, 44, 34, 0.16);
}
.hero-monitor-stage .hero-floating-phone {
  width: 14%;
  min-width: 86px;
  padding: 4px;
  position: absolute;
  left: -2.5%;
  bottom: 58px;
  z-index: 6;
  border-width: 1px;
  border-radius: 24px;
  box-shadow:
    0 28px 32px rgba(22, 28, 22, 0.24),
    0 8px 12px rgba(22, 28, 22, 0.13),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: hero-phone-float 5.8s ease-in-out infinite;
  will-change: transform;
}
.hero-monitor-stage .hero-floating-phone::after {
  inset: 4px;
  border-radius: 19px;
}
.hero-monitor-stage .hero-floating-phone .phone-top {
  width: 38%;
  height: 10px;
  top: 6px;
  left: 31%;
  border-radius: 8px;
}
.hero-monitor-stage .hero-floating-phone .phone-top i {
  width: 2px;
  height: 2px;
  top: 4px;
  right: 5px;
}
.hero-monitor-stage .hero-floating-phone video {
  aspect-ratio: 1170 / 2532;
  border-radius: 19px;
}
.macbook {
  width: 100%;
  position: relative;
  filter: drop-shadow(0 34px 30px rgba(35, 44, 34, 0.2));
}
.macbook-display {
  width: 92%;
  margin: auto;
  padding: 13px 13px 16px;
  position: relative;
  background: linear-gradient(145deg, #232625, #080909);
  border: 1px solid #4b4e4c;
  border-radius: 16px 16px 5px 5px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 -2px 5px rgba(255, 255, 255, 0.04);
}
.macbook-camera {
  width: 5px;
  height: 5px;
  position: absolute;
  top: 5px;
  left: calc(50% - 2.5px);
  z-index: 3;
  background: #263a36;
  border: 1px solid #070808;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(83, 126, 116, 0.6);
}
.macbook-base {
  width: 100%;
  height: 18px;
  margin-top: -1px;
  position: relative;
  background: linear-gradient(180deg, #e6e7e7 0%, #b8babb 48%, #8e9091 100%);
  border-radius: 2px 2px 50% 50% / 2px 2px 13px 13px;
  box-shadow: inset 0 1px 0 #fff;
}
.macbook-base::after {
  content: "";
  width: 102%;
  height: 5px;
  position: absolute;
  left: -1%;
  bottom: -1px;
  background: linear-gradient(
    90deg,
    #8f9192,
    #d7d8d8 12%,
    #dadbdb 88%,
    #8f9192
  );
  border-radius: 0 0 50% 50%;
}
.macbook-base i {
  width: 15%;
  height: 6px;
  position: absolute;
  top: 0;
  left: 42.5%;
  z-index: 2;
  background: #a9abad;
  border-radius: 0 0 7px 7px;
}
.app-frame {
  overflow: hidden;
  background: #fff;
  border-radius: 2px;
}
.app-frame header {
  height: 34px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f5f6f3;
  border-bottom: 1px solid #ddd;
}
.app-frame header i {
  width: 7px;
  height: 7px;
  background: #c8ccc6;
  border-radius: 50%;
}
.app-frame header span {
  margin: auto;
  font: 400 8px var(--mono);
}
.app-frame header b {
  font: 500 8px var(--mono);
  color: #788b72;
}
.app-frame video {
  width: 100%;
  aspect-ratio: 1442 / 834;
  object-fit: contain;
  background: #f5f2ed;
  opacity: 1;
  transition: opacity 0.22s ease;
}
.app-frame video.is-changing {
  opacity: 0;
}
.playline {
  height: 3px;
  background: #eee;
}
.playline i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--green);
}
.playline.run i {
  animation: play var(--scene-duration, 16.9s) linear infinite;
}
.hero-monitor-stage .playline.run i {
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.tension {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}
.tension-photo {
  min-height: 640px;
  position: relative;
  overflow: hidden;
}
.tension-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tension-photo span {
  padding: 9px 12px;
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: #fff;
  font: 500 9px var(--mono);
}
.tension-copy {
  padding: clamp(55px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tension-copy h2 {
  margin: 24px 0 45px;
  font: 400 clamp(43px, 5vw, 76px) / 0.98 var(--serif);
  letter-spacing: -0.03em;
}
.pain-list {
  border-top: 1px solid var(--line);
}
.pain-list article {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}
.pain-list h3 {
  margin: 0;
  font-size: 16px;
}
.pain-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.relief {
  padding: clamp(70px, 8vw, 112px) max(36px, calc((100vw - 1400px) / 2));
  text-align: center;
}
.relief blockquote {
  max-width: 1100px;
  margin: 32px auto 50px;
  font: 400 clamp(48px, 7vw, 105px) / 0.93 var(--serif);
  letter-spacing: -0.04em;
}
.view-home .living-window {
  width: var(--page);
  margin: 0 auto clamp(70px, 8vw, 110px);
}
.view-home .system,
.view-home .telegram {
  display: none;
}
.view-sistema main > :not(.system),
.view-ia main > :not(.telegram),
.view-planos main > :not(.plans) {
  display: none;
}
.view-sistema .system,
.view-ia .telegram,
.view-planos .plans {
  min-height: calc(100vh - 78px);
}
.view-sistema .system,
.view-planos .plans {
  padding-top: clamp(70px, 7vw, 105px);
}
.page-gateways {
  padding: 0 max(36px, calc((100vw - 1400px) / 2)) clamp(75px, 8vw, 115px);
}
.page-gateways > header {
  max-width: 760px;
  margin-bottom: 42px;
}
.page-gateways > header h2 {
  margin: 20px 0 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 500;
}
.page-gateways > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.page-gateways > div > a {
  min-height: 320px;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  background: var(--surface);
  border-radius: 4px 55px 4px 4px;
  transition:
    transform 0.25s,
    background 0.25s;
}
.page-gateways > div > a:last-child {
  background: var(--sage);
  border-radius: 55px 4px 4px;
}
.page-gateways > div > a:hover {
  transform: translateY(-5px);
}
.page-gateways span {
  font: 500 9px var(--mono);
  letter-spacing: 0.11em;
  color: var(--green);
}
.page-gateways h3 {
  max-width: 520px;
  margin: 28px 0 13px;
  font: 400 clamp(34px, 3.5vw, 54px) / 1 var(--serif);
  letter-spacing: -0.035em;
}
.page-gateways p {
  max-width: 470px;
  color: var(--muted);
  line-height: 1.55;
}
.page-gateways > div > a:first-child h3,
.page-gateways > div > a:first-child > p {
  max-width: calc(100% - 142px);
}
.page-gateways .gateway-floating-phone {
  width: clamp(90px, 7.7vw, 110px);
  padding: 3px;
  position: absolute;
  top: 47%;
  right: 7%;
  z-index: 2;
  border-width: 1px;
  border-radius: 20px;
  box-shadow:
    0 23px 28px rgba(32, 37, 31, 0.2),
    0 6px 10px rgba(32, 37, 31, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: gateway-phone-float 6.4s ease-in-out infinite;
  will-change: transform;
}
.page-gateways .gateway-floating-phone::after {
  inset: 3px;
  border-radius: 16px;
}
.page-gateways .gateway-floating-phone .phone-top {
  width: 38%;
  height: 8px;
  top: 5px;
  left: 31%;
  border-radius: 7px;
}
.page-gateways .gateway-floating-phone .phone-top i {
  width: 2px;
  height: 2px;
  top: 3px;
  right: 4px;
}
.page-gateways .gateway-floating-phone video {
  aspect-ratio: 1170 / 2532;
  border-radius: 16px;
}
.page-gateways b {
  margin-top: auto;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
}
.agenda-proof {
  min-height: 680px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--surface);
}
.agenda-proof--copy {
  min-height: 560px;
  grid-template-columns: 1fr;
}
.agenda-proof--copy > div {
  width: var(--page);
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.agenda-proof--copy h2 {
  max-width: 900px;
}
.agenda-proof > div {
  padding: clamp(55px, 7vw, 105px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.agenda-proof h2 {
  margin: 26px 0 30px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.91;
  letter-spacing: -0.06em;
  font-weight: 500;
}
.agenda-proof h2 em {
  color: var(--green);
  font-family: var(--serif);
  font-weight: 400;
}
.agenda-proof > div > p:not(.kicker) {
  max-width: 530px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.agenda-proof a {
  margin-top: 26px;
  padding-bottom: 6px;
  display: inline-flex;
  gap: 35px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.routine-strip {
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  font-size: 13px;
}
.routine-strip span {
  display: flex;
  gap: 16px;
}
.routine-strip b {
  font: 500 10px var(--mono);
  color: var(--green);
}
.routine-strip i {
  font-style: normal;
  color: var(--muted);
}
.system {
  padding: clamp(75px, 8vw, 115px) max(36px, calc((100vw - 1400px) / 2));
  background: #fff;
}
.section-head {
  max-width: 970px;
}
.section-head h2 {
  margin: 22px 0 0;
  font-size: clamp(47px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 500;
}
.section-head > p:last-child:not(.kicker) {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.product-tour {
  margin-top: 70px;
  border-top: 1px solid var(--line);
}
.product-tour-track {
  display: contents;
}
.tour-block {
  min-height: 700px;
  padding: 70px 0;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.tour-block:nth-child(even) .tour-copy {
  order: 2;
}
.tour-copy > span {
  font: 500 10px var(--mono);
  letter-spacing: 0.12em;
  color: var(--green);
}
.tour-copy h3 {
  max-width: 590px;
  margin: 24px 0 22px;
  font: 400 clamp(42px, 4.6vw, 68px) / 0.96 var(--serif);
  letter-spacing: -0.035em;
}
.tour-copy > p {
  max-width: 540px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.tour-copy ul {
  max-width: 520px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.tour-copy li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.phone-scene {
  min-height: 620px;
  padding: 28px 24px 0;
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  background: var(--surface);
  border-radius: 90px 5px 5px;
}
.tour-block:nth-child(3n + 2) .phone-scene {
  background: var(--warm);
  border-radius: 5px 5px 90px;
}
.tour-block:nth-child(3n) .phone-scene {
  background: var(--sage);
  border-radius: 5px 90px 5px 5px;
}
.phone {
  width: min(265px, 62%);
  padding: 10px;
  position: relative;
  overflow: hidden;
  background: #171a17;
  border: 2px solid #3b3f3a;
  border-radius: 45px;
  box-shadow: 0 35px 75px rgba(32, 37, 31, 0.25);
}
.phone::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 35px;
  pointer-events: none;
}
.phone-top {
  width: 32%;
  height: 25px;
  position: absolute;
  top: 14px;
  left: 34%;
  z-index: 3;
  background: #171a17;
  border-radius: 15px;
}
.phone-top i {
  width: 6px;
  height: 6px;
  position: absolute;
  right: 12px;
  top: 9px;
  background: #303a36;
  border-radius: 50%;
}
.phone video {
  width: 100%;
  aspect-ratio: 1170 / 2532;
  object-fit: cover;
  border-radius: 35px;
  background: #f5f2ed;
}
.phone-scene > p {
  width: 100%;
  margin: 0;
  padding: 14px 0 17px;
  position: static;
  align-self: stretch;
  border-top: 1px solid rgba(74, 93, 72, 0.18);
  font: 500 9px var(--mono);
  letter-spacing: 0.08em;
}
.phone-scene > p i {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  display: inline-block;
  background: #6e8b65;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(110, 139, 101, 0.12);
}
.feature {
  min-height: 580px;
  padding: 75px 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.feature:nth-of-type(3) .feature-text {
  order: 2;
}
.feature-text > span {
  font: 500 10px var(--mono);
  color: var(--green);
  letter-spacing: 0.1em;
}
.feature-text h3 {
  margin: 26px 0 24px;
  font: 400 clamp(38px, 4vw, 58px) / 1 var(--serif);
  letter-spacing: -0.03em;
}
.feature-text > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}
.feature-text ul {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.feature-text li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.feature-screen {
  min-height: 380px;
  padding: 36px;
  position: relative;
  display: grid;
  place-items: center;
  background: var(--surface);
}
.feature-screen video {
  width: 100%;
  box-shadow: 0 24px 60px rgba(32, 37, 31, 0.18);
}
.feature-screen > small {
  position: absolute;
  left: 20px;
  bottom: 16px;
  font: 500 9px var(--mono);
}
.feature-screen.portrait {
  grid-template-columns: 0.8fr 1fr;
  gap: 25px;
  background: var(--warm);
}
.portrait video {
  max-width: 270px;
  aspect-ratio: 9/16;
  object-fit: cover;
  border: 7px solid #1e211e;
  border-radius: 30px;
}
.portrait aside {
  padding: 25px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(32, 37, 31, 0.14);
}
.portrait aside small {
  font: 500 9px var(--mono);
}
.portrait aside b {
  margin: 15px 0 8px;
  display: block;
  font-size: 42px;
  letter-spacing: -0.05em;
}
.portrait aside span {
  color: var(--muted);
  font-size: 12px;
}
.telegram {
  min-height: 760px;
  padding: clamp(75px, 8vw, 105px) max(36px, calc((100vw - 1400px) / 2));
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  background: #dce7ed;
}
.telegram:after {
  content: "";
  width: 720px;
  height: 720px;
  position: absolute;
  right: -250px;
  top: -280px;
  border: 1px solid rgba(33, 75, 102, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(33, 75, 102, 0.03),
    0 0 0 180px rgba(33, 75, 102, 0.025);
}
.telegram-title {
  position: relative;
  z-index: 2;
}
.telegram-title h2 {
  margin: 26px 0;
  font: 400 clamp(52px, 6vw, 88px) / 0.92 var(--serif);
  letter-spacing: -0.04em;
}
.telegram-title > p:last-child {
  max-width: 520px;
  color: #53636b;
  font-size: 18px;
  line-height: 1.55;
}
.phone-chat {
  width: min(420px, 90%);
  margin: auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 30px;
  background: #e3edf2;
  box-shadow: 0 30px 80px rgba(37, 64, 78, 0.22);
  transform: rotate(1.5deg);
}
.phone-chat header {
  height: 67px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #294d68;
  color: #fff;
}
.phone-chat header i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--green);
  border-radius: 50%;
  font-style: normal;
}
.phone-chat header p {
  margin: 0;
  display: grid;
}
.phone-chat header small {
  opacity: 0.65;
}
.phone-chat header em {
  margin-left: auto;
}
.phone-chat main {
  min-height: 440px;
  padding: 20px 14px;
}
.phone-chat main > small {
  width: max-content;
  margin: auto;
  display: block;
  padding: 4px 9px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  font-size: 9px;
}
.message {
  max-width: 82%;
  padding: 11px 12px;
  margin: 14px 0 0;
  opacity: 0;
  transform: translateY(8px);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
  transition: 0.4s;
}
.message.show {
  opacity: 1;
  transform: none;
}
.message time {
  font-size: 8px;
  color: #77858b;
}
.out {
  margin-left: auto;
  background: #d5f1c7;
}
.in {
  background: #fff;
}
.phone-chat footer {
  height: 58px;
  padding: 9px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: #f7f8f7;
}
.phone-chat footer p {
  margin: 0;
  padding: 10px 14px;
  flex: 1;
  background: #fff;
  border-radius: 20px;
  color: #929a98;
  font-size: 12px;
}
.phone-chat footer i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #3c8bbc;
  color: #fff;
  border-radius: 50%;
  font-style: normal;
}
.telegram-result {
  padding: 20px;
  position: absolute;
  right: max(30px, calc((100vw - 1500px) / 2));
  bottom: 70px;
  z-index: 3;
  display: grid;
  background: #fff;
  box-shadow: 0 18px 45px rgba(37, 64, 78, 0.18);
}
.telegram-result small {
  font: 500 8px var(--mono);
  color: var(--green);
}
.telegram-result span {
  margin-top: 15px;
  font-size: 12px;
}
.telegram-result b {
  font-size: 27px;
  color: var(--green);
}
.telegram-result p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 10px;
}
.plans {
  padding: clamp(75px, 8vw, 115px) max(36px, calc((100vw - 1400px) / 2));
  position: relative;
  z-index: 45;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(203, 216, 198, 0.7), transparent 36%),
    var(--bg);
}
.view-home .plans {
  min-height: 100vh;
  border-top: 1px solid var(--line);
}
.plans .section-head {
  max-width: 930px;
  margin: 0 auto;
  text-align: center;
}
.plans .section-head h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.plans-subtitle {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.price-list {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.price-list article {
  min-height: 520px;
  padding: 34px 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px 5px 5px;
  box-shadow: 0 14px 36px rgba(32, 37, 31, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) {
  .price-list article:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 48px rgba(32, 37, 31, 0.12);
  }
  .price-list article.best:hover {
    transform: translateY(-7px) scale(1.02);
  }
}
.price-list article.best {
  min-height: 548px;
  margin: -14px 0;
  padding: 42px 34px 34px;
  position: relative;
  z-index: 1;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 5px 34px 5px 5px;
  box-shadow: 0 28px 65px rgba(38, 49, 37, 0.2);
}
.plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 9px 18px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  color: var(--green);
  background: var(--sage);
  font: 600 9px var(--mono);
  letter-spacing: 0.11em;
  white-space: nowrap;
}
.price-list span {
  font: 500 9px var(--mono);
  color: var(--green);
}
.price-list h3 {
  margin: 14px 0 6px;
  font-size: 25px;
}
.price-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.price-list ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}
.price-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.price-list li::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 700;
}
.price-list article.best li::before {
  color: var(--sage);
}
.price-list article.best > div > span,
.price-list article.best p,
.price-list article.best ul,
.price-list article.best strong em {
  color: rgba(255, 255, 255, 0.72);
}
.price-list strong {
  margin-top: auto;
  display: block;
  font-size: 37px;
  letter-spacing: -0.05em;
}
.price-list strong small {
  font-size: 12px;
}
.price-list strong em {
  display: block;
  color: var(--muted);
  font: 400 10px var(--mono);
}
.price-list .plan-daily {
  min-height: 38px;
  margin-top: -17px;
  font-size: 11px;
  line-height: 1.45;
}
.price-list a {
  min-height: 50px;
  padding: 14px 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.price-list article:not(.best) a:hover {
  color: #fff;
  background: var(--ink);
  transform: translateY(-2px);
}
.price-list article.best a {
  padding: 15px 16px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-radius: 3px;
}
.price-list article.best a:hover {
  transform: translateY(-2px);
}
.price-list article.best a span {
  color: var(--ink);
}
.plan-note {
  text-align: center;
  margin-top: 32px;
  color: var(--muted);
  font-size: 12px;
}
.plans-system-link {
  width: fit-content;
  margin: 22px auto 0;
  padding: 14px 22px;
  display: block;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.plans-system-link:hover {
  color: var(--green);
  border-color: var(--green);
}
.closing {
  min-height: 540px;
  padding: 80px max(36px, calc((100vw - 1400px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: var(--green);
  color: #fff;
}
.closing h2 {
  max-width: 1150px;
  margin: 25px 0 40px;
  font: 400 clamp(58px, 8vw, 118px) / 0.86 var(--serif);
  letter-spacing: -0.045em;
}
.closing a {
  padding: 17px 22px;
  display: flex;
  gap: 45px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.footer {
  min-height: 220px;
  padding: 45px max(36px, calc((100vw - 1400px) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  background: #1f261f;
  color: #fff;
}
.footer p {
  color: rgba(255, 255, 255, 0.55);
}
.footer nav {
  display: flex;
  gap: 35px;
  font-size: 13px;
}
.footer small {
  margin-top: auto;
  grid-column: 1/-1;
  color: rgba(255, 255, 255, 0.4);
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.75s,
    transform 0.75s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes play {
  to {
    width: 100%;
  }
}
@keyframes hero-phone-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-4.5deg);
  }
  50% {
    transform: translate3d(2px, -13px, 0) rotate(-3.4deg);
  }
}
@keyframes gateway-phone-float {
  0%,
  100% {
    transform: translate3d(0, -50%, 0) rotate(4.5deg);
  }
  50% {
    transform: translate3d(-2px, calc(-50% - 9px), 0) rotate(3.7deg);
  }
}
@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 760px;
  }
  .hero-monitor-stage {
    width: min(820px, 100%);
    margin: 0 auto;
  }
  .hero-monitor-stage .hero-floating-phone {
    width: 15%;
    left: -1%;
  }
  :root {
    --page: calc(100vw - 48px);
  }
  .topbar {
    padding: 0 24px;
    grid-template-columns: 1fr auto;
  }
  .topbar nav {
    padding: 25px;
    position: fixed;
    left: 0;
    right: 0;
    top: 78px;
    display: grid;
    gap: 0;
    background: #1f261f;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.2s;
  }
  .topbar nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 17px;
  }
  .topbar.open nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .top-action {
    display: none;
  }
  .menu {
    width: 70px;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: 0;
    color: #fff;
  }
  .menu i {
    width: 20px;
    height: 1px;
    background: #fff;
  }
  .living-window,
  .feature,
  .telegram {
    grid-template-columns: 1fr;
  }
  .agenda-proof {
    grid-template-columns: 1fr;
  }
  .tour-block {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
  }
  .phone-scene {
    min-height: 540px;
  }
  .window-copy {
    max-width: 650px;
  }
  .tension {
    grid-template-columns: 1fr;
  }
  .tension-photo {
    min-height: 580px;
  }
  .tension-copy {
    padding: 65px 36px;
  }
  .feature:nth-of-type(3) .feature-text {
    order: 0;
  }
  .telegram-title {
    max-width: 740px;
  }
  .telegram-result {
    right: 12%;
    bottom: 70px;
  }
  .price-list {
    gap: 12px;
  }
  .price-list article {
    min-height: 500px;
    padding: 28px 22px 26px;
  }
  .price-list article.best {
    min-height: 526px;
    padding: 36px 24px 30px;
  }
  .footer {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 760px) and (max-width: 1000px) {
  .hero {
    min-height: calc(100svh - 78px);
    padding: clamp(48px, 7vw, 72px) 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(24px, 4vw, 44px);
  }
  .hero-copy {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-title h1 {
    margin-top: 18px;
    font-size: clamp(52px, 6.8vw, 68px);
  }
  .hero-title h1 em {
    font-size: 0.68em;
  }
  .hero-intro {
    width: 100%;
    margin: 32px 0 0;
  }
  .hero-intro p {
    max-width: 34ch;
    font-size: 16px;
  }
  .hero-intro a {
    width: min(310px, 100%);
    margin-top: 24px;
    padding: 14px 16px;
    justify-content: center;
    color: #fff;
    background: var(--green);
    border: 0;
    border-radius: 8px;
  }
  .hero-monitor-stage {
    width: 100%;
    margin: 40px auto 0;
  }
  .hero-monitor-stage .hero-floating-phone {
    width: 17%;
    left: 8%;
  }
}

@media (max-width: 759px) {
  .hero {
    padding: 44px 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 26px;
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-title {
    order: 1;
  }
  .hero-monitor-stage {
    width: min(620px, 100%);
    margin: 24px auto 0;
    order: 2;
  }
  .hero-intro {
    width: min(520px, 100%);
    margin: 0;
    order: 3;
    text-align: center;
  }
  .hero-intro p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-intro a {
    width: min(320px, 100%);
    margin: 22px auto 0;
    padding: 14px 16px;
    justify-content: center;
    color: #fff;
    background: var(--green);
    border: 0;
    border-radius: 8px;
  }
}

@media (max-width: 650px) {
  :root {
    --page: calc(100vw - 32px);
  }
  html {
    scroll-padding-top: 66px;
  }
  .topbar {
    height: 66px;
    padding: 0 16px;
  }
  .topbar nav {
    top: 66px;
  }
  .hero {
    padding: 36px 16px 0;
    gap: 22px;
  }
  .hero-title h1 {
    margin-top: 16px;
    font-size: clamp(43px, 12vw, 49px);
    line-height: 0.88;
  }
  .hero-title {
    max-width: 100%;
  }
  .hero-title h1 em {
    margin-left: 0;
    font-size: 0.7em;
    white-space: nowrap;
  }
  .hero-intro {
    width: 100%;
    margin: 0;
  }
  .hero-intro p {
    max-width: 34ch;
    font-size: 14px;
  }
  .hero-monitor-stage > p {
    margin-top: 12px;
    justify-content: center;
    font-size: 8px;
  }
  .hero-monitor-stage {
    width: calc(100% + 8px);
    margin-right: -4px;
    margin-left: -4px;
  }
  .hero-monitor-stage .hero-floating-phone {
    width: 18%;
    min-width: 58px;
    left: 0;
    bottom: 38px;
    padding: 3px;
    border-radius: 18px;
  }
  .hero-monitor-stage .hero-floating-phone::after {
    inset: 3px;
    border-radius: 14px;
  }
  .hero-monitor-stage .hero-floating-phone video {
    border-radius: 14px;
  }
  .hero-monitor-stage .hero-floating-phone .phone-top {
    height: 7px;
    top: 4px;
  }
  .living-window {
    min-height: 0;
    padding: 34px 18px 30px;
    gap: 24px;
    border-radius: 3px 46px 3px 3px;
  }
  .view-home .living-window {
    width: calc(100vw - 32px);
    margin-bottom: 70px;
  }
  .page-gateways {
    padding: 0 16px 72px;
  }
  .page-gateways > header {
    margin-bottom: 30px;
  }
  .page-gateways > div {
    margin-right: -16px;
    padding-right: 16px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .page-gateways > div::-webkit-scrollbar {
    display: none;
  }
  .page-gateways > div > a {
    min-height: 300px;
    padding: 26px 22px;
    flex: 0 0 88%;
    scroll-snap-align: start;
  }
  .page-gateways h3 {
    font-size: 36px;
  }
  .page-gateways > div > a:first-child h3,
  .page-gateways > div > a:first-child > p {
    max-width: calc(100% - 102px);
  }
  .page-gateways .gateway-floating-phone {
    width: 82px;
    top: 53%;
    right: 17px;
  }
  .agenda-proof {
    width: calc(100% - 32px);
    margin: 0 16px;
    min-height: auto;
    overflow: hidden;
    border-radius: 4px 38px 4px 4px;
  }
  .agenda-proof > div {
    padding: 44px 22px 48px;
  }
  .agenda-proof--copy > div {
    width: 100%;
    margin: 0;
  }
  .agenda-proof h2 {
    margin: 22px 0 24px;
    font-size: 44px;
  }
  .agenda-proof > div > p:not(.kicker) {
    font-size: 15px;
    line-height: 1.55;
  }
  .window-copy h2 {
    max-width: 520px;
    margin: 26px 0 26px;
    font-size: 36px;
    line-height: 0.98;
  }
  .window-tabs {
    margin-right: -18px;
    padding-right: 18px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    border: 0;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .window-tabs::-webkit-scrollbar {
    display: none;
  }
  .window-tabs button {
    min-height: 42px;
    padding: 0 16px;
    flex: 0 0 auto;
    border: 1px solid rgba(32, 37, 31, 0.2);
    border-radius: 30px;
    scroll-snap-align: start;
    font-size: 13px;
  }
  .window-tabs button[aria-selected="true"] {
    padding: 0 18px;
    color: #fff;
    background: var(--green);
    border-color: var(--green);
  }
  .window-copy > p:last-child {
    min-height: 0;
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 1.5;
  }
  .app-stage {
    padding: 8px 0 20px;
  }
  .monitor-shell {
    padding: 8px 8px 10px;
    border-radius: 11px;
  }
  .monitor-camera {
    top: 3px;
  }
  .monitor-neck {
    height: 45px;
  }
  .monitor-foot {
    height: 9px;
  }
  .macbook-display {
    width: 96%;
    padding: 9px 9px 11px;
    border-radius: 11px 11px 4px 4px;
  }
  .macbook-camera {
    top: 3px;
  }
  .macbook-base {
    height: 13px;
  }
  .app-frame header {
    height: 26px;
  }
  .app-frame header i {
    width: 5px;
    height: 5px;
  }
  .app-frame header span,
  .app-frame header b {
    font-size: 6px;
  }
  .tension-photo {
    min-height: 460px;
  }
  .tension-copy {
    padding: 58px 16px;
  }
  .tension-copy h2 {
    margin-bottom: 30px;
    font-size: 42px;
  }
  .pain-list {
    margin-right: -16px;
    padding: 0 16px 6px 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    gap: 11px;
    overflow-x: auto;
    border: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .pain-list::-webkit-scrollbar {
    display: none;
  }
  .pain-list article {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 9px;
    background: var(--surface);
    border: 0;
    border-radius: 4px 24px 4px 4px;
    scroll-snap-align: start;
  }
  .relief {
    padding: 65px 16px;
  }
  .relief blockquote {
    margin: 28px auto 40px;
    font-size: 44px;
  }
  .routine-strip {
    margin-right: -16px;
    padding: 0 16px 8px 0;
    align-items: stretch;
    gap: 10px;
    overflow-x: auto;
    background: transparent;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .routine-strip::-webkit-scrollbar {
    display: none;
  }
  .routine-strip span {
    padding: 18px;
    flex: 0 0 78%;
    align-items: flex-start;
    background: var(--surface);
    border-radius: 4px 22px 4px 4px;
    scroll-snap-align: start;
  }
  .routine-strip i {
    display: none;
  }
  .system,
  .telegram,
  .plans,
  .closing {
    padding-left: 16px;
    padding-right: 16px;
  }
  .product-tour {
    margin-top: 38px;
    padding: 0;
    display: block;
    overflow: visible;
    border-top: 0;
  }
  .product-tour-track {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    transform: none !important;
    transition: none;
    will-change: auto;
  }
  .tour-block {
    height: auto;
    min-height: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 30px 4px 4px;
    transition:
      opacity 0.72s ease,
      transform 0.72s cubic-bezier(0.22, 0.72, 0.24, 1),
      filter 0.72s ease;
  }
  .tour-block:nth-child(even) {
    border-radius: 4px 4px 30px 4px;
  }
  .tour-block:nth-child(3n) {
    border-radius: 4px 30px 4px 4px;
  }
  .product-tour .tour-block.reveal {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(38px) scale(0.99);
  }
  .product-tour .tour-block.reveal.visible {
    opacity: 1;
    filter: none;
    transform: none;
  }
  .tour-block:nth-child(even) .tour-copy {
    order: 0;
  }
  .tour-copy {
    padding: 24px 20px 20px;
  }
  .tour-copy > span {
    font-size: 9px;
  }
  .tour-copy h3 {
    margin: 15px 0 13px;
    display: block;
    overflow: visible;
    font-size: clamp(30px, 8.4vw, 34px);
    line-height: 0.97;
  }
  .tour-copy > p {
    margin: 0;
    display: block;
    overflow: visible;
    font-size: 13px;
    line-height: 1.5;
  }
  .tour-copy ul {
    display: none;
  }
  .product-tour .phone-scene {
    min-height: 450px;
    margin-top: auto;
    padding: 22px 14px 0;
    flex: none;
    grid-template-rows: minmax(0, 1fr) auto;
    border-radius: 0 0 28px 4px;
  }
  .product-tour .phone {
    width: clamp(154px, 46vw, 180px);
    max-width: none;
    height: auto;
    padding: 5px;
    box-sizing: border-box;
    aspect-ratio: 332 / 720;
    border-radius: 26px;
  }
  .product-tour .phone::after {
    inset: 5px;
    border-radius: 20px;
  }
  .product-tour .phone video {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    display: block;
    position: absolute;
    inset: 5px;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 20px;
  }
  .product-tour .phone-top {
    height: 14px;
    top: 7px;
  }
  .product-tour .phone-scene > p {
    width: 100%;
    padding: 11px 0 12px;
    position: static;
    align-self: stretch;
    justify-self: stretch;
    border-top: 1px solid rgba(74, 93, 72, 0.18);
  }
  .section-head h2 {
    font-size: 42px;
  }
  .section-head > p:last-child:not(.kicker) {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.5;
  }
  .feature {
    min-height: 0;
    padding: 60px 0;
    gap: 40px;
  }
  .feature-screen {
    min-height: 280px;
    padding: 18px;
  }
  .feature-screen.portrait {
    min-height: 440px;
    grid-template-columns: 1fr 1fr;
  }
  .portrait aside {
    padding: 14px;
  }
  .portrait aside b {
    font-size: 28px;
  }
  .telegram {
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .telegram-title h2 {
    font-size: 46px;
  }
  .telegram-title > p:last-child {
    font-size: 16px;
  }
  .phone-chat {
    width: 100%;
    transform: none;
  }
  .telegram-result {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -25px 0 0 auto;
    width: 220px;
  }
  .price-list {
    margin-top: 42px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    border-top: 0;
  }
  .price-list article,
  .price-list article.best {
    min-height: 0;
    margin: 0;
    padding: 26px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px 4px 4px;
  }
  .price-list article.best {
    color: #fff;
    background: var(--green);
    border: 0;
    border-radius: 4px 30px 4px 4px;
    box-shadow: 0 24px 55px rgba(38, 49, 37, 0.2);
  }
  .price-list article.best > div > span,
  .price-list article.best p,
  .price-list article.best ul,
  .price-list article.best strong em {
    color: rgba(255, 255, 255, 0.72);
  }
  .price-list article strong,
  .price-list article a {
    align-self: auto;
  }
  .price-list strong {
    font-size: 44px;
  }
  .price-list a {
    padding: 14px 0 7px;
  }
  .price-list article.best a {
    padding: 14px 16px;
    color: var(--ink);
    background: #fff;
    border: 0;
    border-radius: 3px;
  }
  .price-list article.best a span {
    color: var(--ink);
  }
  .plan-note {
    margin-top: 24px;
  }
  .closing h2 {
    font-size: 50px;
  }
  .closing {
    min-height: 460px;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .footer {
    padding: 45px 16px;
    gap: 35px;
  }
  .footer nav {
    flex-wrap: wrap;
  }
  .footer small {
    grid-column: 1;
  }
}

/* --- TELEGRAM PREMIUM MOCKUP & COPY STYLES --- */
.telegram-video-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.telegram-video-stage .phone {
  width: 320px;
  height: 640px;
  margin: 0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: #000;
  position: relative;
}
.telegram-video-stage .phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.telegram-video-stage > p {
  margin-top: 16px;
  font: 500 10px var(--mono);
  letter-spacing: 0.15em;
  color: #53636b;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.telegram-video-stage > p span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-telegram 2s infinite;
}
@keyframes pulse-telegram {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.telegram-features {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 520px;
}
.telegram-features li {
  font-size: 15px;
  line-height: 1.55;
  color: #3e4d56;
  position: relative;
  padding-left: 28px;
}
.telegram-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #214b66;
  font-weight: bold;
  font-size: 18px;
}
.telegram-features li strong {
  color: var(--ink);
  font-weight: 600;
}
.telegram-features li em {
  font-family: var(--mono);
  font-size: 13px;
  background: rgba(33, 75, 102, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-style: normal;
  color: #214b66;
  display: inline-block;
}

@media (max-width: 1023px) {
  .telegram {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* --- IA ESTIMA: ASSISTENTE NATIVA DO APLICATIVO --- */
.nav-ai {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
}
.nav-ai img {
  width: 15px;
  height: 15px;
  padding: 3px;
  display: block;
  flex: 0 0 15px;
  border-radius: 5px;
  background: #52604e;
}
.nav-ai span {
  display: block;
}
@media (min-width: 1001px) {
  .topbar nav {
    align-items: flex-start;
  }
  .topbar nav .nav-ai[aria-current="page"]::after {
    position: absolute;
    left: 50%;
    bottom: -12px;
    margin: 0;
    transform: translateX(-50%);
  }
}
@media (max-width: 1000px) {
  .topbar nav .nav-ai[aria-current="page"]::after {
    position: absolute;
    top: 50%;
    right: 2px;
    left: auto;
    margin: 0;
    transform: translateY(-50%);
  }
}
.ai-assistant-section {
  min-height: 780px;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.9fr);
  gap: clamp(48px, 7vw, 110px);
  color: #20261f;
  background:
    radial-gradient(circle at 76% 48%, rgba(82, 96, 78, 0.15), transparent 34%),
    linear-gradient(135deg, #f0f2ec 0%, #e4ebe1 100%);
}
.ai-assistant-section::before {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(82, 96, 78, 0.16);
  border-radius: 28px;
}
.ai-assistant-section::after {
  width: 620px;
  height: 620px;
  right: -170px;
  top: -200px;
  border-color: rgba(82, 96, 78, 0.14);
  box-shadow:
    0 0 0 90px rgba(82, 96, 78, 0.035),
    0 0 0 180px rgba(82, 96, 78, 0.02);
}
.ai-brand-signature {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.ai-brand-signature span,
.ai-app-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #25383a;
}
.ai-brand-signature span {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 10px 28px rgba(37, 56, 58, 0.18);
}
.ai-brand-signature img {
  width: 25px;
  height: 25px;
}
.ai-brand-signature b {
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.18em;
  color: #52604e;
}
.ai-assistant-section .telegram-title h2 {
  max-width: 720px;
  margin: 22px 0 26px;
  font-size: clamp(56px, 5.8vw, 92px);
}
.ai-assistant-section .telegram-title > p:not(.kicker) {
  max-width: 610px;
  color: #5e695c;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
}
.ai-assistant-section .telegram-features {
  gap: 17px;
  margin-top: 30px;
}
.ai-assistant-section .telegram-features li {
  padding-left: 24px;
  color: #4e594c;
}
.ai-assistant-section .telegram-features li::before {
  content: "✦";
  color: #52604e;
  font-size: 13px;
  top: 4px;
}
.ai-showcase {
  width: min(560px, 100%);
  position: relative;
  z-index: 2;
  justify-self: center;
  padding: 62px 18px 20px;
}
.ai-orbit {
  width: 152px;
  height: 152px;
  position: absolute;
  top: -4px;
  right: -20px;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 1px solid rgba(82, 96, 78, 0.25);
  border-radius: 50%;
  animation: ai-float 5s ease-in-out infinite;
}
.ai-orbit::before,
.ai-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(82, 96, 78, 0.13);
  border-radius: inherit;
}
.ai-orbit::before { inset: -14px; }
.ai-orbit::after { inset: 15px; }
.ai-orbit span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: #25383a;
  box-shadow: 0 22px 50px rgba(37, 56, 58, 0.24);
}
.ai-orbit img {
  width: 47px;
  height: 47px;
}
@keyframes ai-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(0, -12px, 0) rotate(2deg); }
}
.ai-app-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(37, 56, 58, 0.16);
  border-radius: 32px;
  background: rgba(250, 249, 246, 0.95);
  box-shadow: 0 35px 90px rgba(37, 56, 58, 0.2);
  backdrop-filter: blur(18px);
}
.ai-app-window > header {
  min-height: 82px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid rgba(37, 56, 58, 0.1);
  background: rgba(255, 255, 255, 0.65);
}
.ai-app-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}
.ai-app-icon img {
  width: 27px;
  height: 27px;
}
.ai-app-window header div {
  display: grid;
  gap: 4px;
}
.ai-app-window header b {
  font-size: 14px;
  font-weight: 650;
}
.ai-app-window header small {
  color: #788176;
  font-size: 11px;
}
.ai-app-window header em {
  margin-left: auto;
  padding: 7px 9px;
  border: 1px solid rgba(82, 96, 78, 0.16);
  border-radius: 999px;
  color: #52604e;
  font: 600 8px var(--mono);
  letter-spacing: 0.14em;
  font-style: normal;
}
.ai-conversation {
  min-height: 480px;
  padding: 30px 26px 28px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(255,255,255,.52), rgba(255,255,255,.52)),
    radial-gradient(circle at 0 100%, #dce6d8, transparent 44%);
}
.ai-message {
  width: fit-content;
  max-width: 76%;
  margin: 0 0 14px;
  padding: 13px 16px;
  font-size: 13px;
  line-height: 1.45;
}
.ai-message.assistant {
  border: 1px solid rgba(37, 56, 58, 0.1);
  border-radius: 5px 18px 18px 18px;
  background: #fff;
}
.ai-message.user {
  align-self: flex-end;
  margin-top: 22px;
  border-radius: 18px 5px 18px 18px;
  background: #25383a;
  color: #fff;
}
.ai-quick-actions {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.ai-quick-actions span {
  padding: 8px 11px;
  border: 1px solid rgba(82, 96, 78, 0.2);
  border-radius: 999px;
  color: #52604e;
  background: rgba(255,255,255,.56);
  font-size: 10px;
}
.ai-confirmation {
  width: min(360px, 88%);
  margin-top: 2px;
  padding: 17px;
  border: 1px solid rgba(37, 56, 58, 0.11);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(37, 56, 58, 0.1);
}
.ai-confirmation > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(37, 56, 58, 0.09);
}
.ai-confirmation > div span {
  font-size: 11px;
  font-weight: 650;
}
.ai-confirmation > div img {
  width: 22px;
  height: 22px;
  padding: 5px;
  border-radius: 7px;
  background: #52604e;
}
.ai-confirmation dl {
  margin: 12px 0 15px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
  font-size: 10px;
}
.ai-confirmation dt { color: #7a8278; }
.ai-confirmation dd { margin: 0; font-weight: 600; }
.ai-confirmation button {
  width: 100%;
  padding: 11px 14px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: #52604e;
  font: 600 10px var(--sans);
}
.ai-showcase > p {
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #647062;
  font: 500 9px var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ai-showcase > p span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #78916f;
  box-shadow: 0 0 0 6px rgba(120, 145, 111, 0.1);
}
@media (max-width: 1023px) {
  .ai-assistant-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .ai-assistant-section .telegram-title {
    max-width: 760px;
  }
  .ai-showcase {
    width: min(610px, 100%);
  }
}
@media (max-width: 600px) {
  .nav-ai img { width: 18px; height: 18px; }
  .ai-assistant-section {
    min-height: auto;
    padding: 72px 20px 56px;
    gap: 28px;
  }
  .ai-assistant-section::before { inset: 10px; border-radius: 20px; }
  .ai-brand-signature { margin-bottom: 25px; }
  .ai-brand-signature span { width: 40px; height: 40px; }
  .ai-brand-signature b { font-size: 9px; }
  .ai-assistant-section .telegram-title h2 {
    margin: 18px 0 20px;
    font-size: clamp(43px, 13.5vw, 58px);
  }
  .ai-assistant-section .telegram-features { gap: 14px; }
  .ai-showcase { padding: 42px 0 10px; }
  .ai-orbit {
    width: 105px;
    height: 105px;
    top: -4px;
    right: -6px;
  }
  .ai-orbit span { width: 58px; height: 58px; border-radius: 18px; }
  .ai-orbit img { width: 34px; height: 34px; }
  .ai-app-window { border-radius: 24px; }
  .ai-app-window > header { min-height: 70px; padding: 13px 15px; }
  .ai-app-icon { width: 40px; height: 40px; border-radius: 12px; }
  .ai-app-window header em { display: none; }
  .ai-conversation { min-height: 420px; padding: 24px 16px 20px; }
  .ai-message { max-width: 84%; }
  .ai-confirmation { width: 92%; }
  .ai-showcase > p { line-height: 1.4; text-align: center; }
}


/* --- MACBOOK STICKY SCROLL SPIN TRANSITION --- */
.window-sticky-device .macbook {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  transform-origin: center center;
  will-change: transform, opacity;
}
.window-sticky-device .app-stage.is-changing .macbook {
  transform: scale(0.1) rotate(-180deg);
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Percurso mobile: menos texto, progresso discreto e plano principal primeiro. */
@media (max-width: 860px) {
  .sw-copy__body {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .sw-copy__tags li:nth-child(n + 3) {
    display: none;
  }

  .sw-copylayer::before {
    height: 76%;
    background: linear-gradient(
      0deg,
      var(--sw-bg) 14%,
      color-mix(in srgb, var(--sw-bg) 96%, transparent) 54%,
      color-mix(in srgb, var(--sw-bg) 68%, transparent) 78%,
      transparent 100%
    );
  }

  .sw-route {
    top: 92px;
    right: 14px;
    bottom: auto;
    flex-direction: row;
    gap: 2px;
    padding: 5px 8px;
    transform: none;
    border: 1px solid rgba(32, 37, 31, 0.1);
    border-radius: 999px;
    background: rgba(243, 244, 239, 0.78);
    backdrop-filter: blur(10px);
  }

  .sw-route::before {
    display: none;
  }

  .price-list .best {
    order: -1;
  }
}

/* --- OFERTA ÚNICA: ESTIMA COMPLETA --- */
.price-list.single-price {
  width: min(1180px, 100%);
  margin: 62px auto 0;
  display: block;
}
.price-list.single-price article.single-plan {
  min-height: 0;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.7fr);
  gap: 0;
  overflow: visible;
  border: 0;
  border-radius: 6px 42px 6px 6px;
  background: var(--green);
  box-shadow: 0 30px 80px rgba(38, 49, 37, 0.22);
}
@media (hover: hover) {
  .price-list.single-price article.single-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 38px 95px rgba(38, 49, 37, 0.27);
  }
}
.single-plan .plan-badge {
  top: 0;
  left: 54px;
  z-index: 4;
  transform: translateY(-50%);
  color: var(--green);
  background: #dfe8da;
}
.single-plan-main {
  padding: clamp(48px, 5vw, 72px);
}
.price-list .single-plan-main > span {
  color: rgba(255, 255, 255, 0.67);
  letter-spacing: 0.18em;
}
.price-list .single-plan-main > h3 {
  max-width: 660px;
  margin: 20px 0 18px;
  font: 400 clamp(44px, 4.4vw, 68px) / 0.96 var(--serif);
  letter-spacing: -0.045em;
}
.price-list .single-plan-main > p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}
.single-plan-features {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.single-plan-features > div {
  min-height: 128px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.single-plan-features small {
  color: #becdb7;
  font: 500 8px var(--mono);
  letter-spacing: 0.14em;
}
.single-plan-features b {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.price-list .single-plan-features p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.5;
}
.single-plan-offer {
  margin: 14px 14px 14px 0;
  padding: clamp(38px, 4vw, 58px) clamp(30px, 3.3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px 31px 4px 4px;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(188, 207, 179, 0.68), transparent 38%),
    #f2f4ef;
}
.price-list .single-plan-offer .offer-label {
  color: #687564;
  font: 600 9px var(--mono);
  letter-spacing: 0.16em;
}
.price-list .single-plan-offer strong {
  margin: 26px 0 0;
  color: var(--ink);
  font-size: clamp(60px, 6vw, 86px);
  line-height: 0.86;
  white-space: nowrap;
}
.price-list .single-plan-offer strong small {
  margin-right: 6px;
  font-size: 16px;
}
.price-list .single-plan-offer strong em {
  margin: 13px 0 0 4px;
  color: #697267;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.price-list .single-plan-offer .plan-daily {
  min-height: 0;
  margin: 24px 0 0;
  color: #5d685a;
  font-size: 12px;
}
.price-list .single-plan-offer ul {
  margin: 30px 0;
  padding: 26px 0;
  gap: 11px;
  border-top: 1px solid rgba(32, 37, 31, 0.12);
  border-bottom: 1px solid rgba(32, 37, 31, 0.12);
  color: #4d574b;
  font-size: 12px;
}
.price-list .single-plan-offer li::before {
  color: var(--green);
}
.price-list .single-plan-offer a {
  min-height: 56px;
  padding: 16px 18px;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 10px;
}
.price-list .single-plan-offer a:hover {
  color: #fff;
  background: #1f2a1e;
  transform: translateY(-2px);
}
.single-plan-offer .offer-support {
  margin-top: 14px;
  color: #7a8378;
  font-size: 9px;
  text-align: center;
}
@media (max-width: 900px) {
  .price-list.single-price article.single-plan {
    grid-template-columns: 1fr;
    border-radius: 5px 30px 5px 5px;
  }
  .single-plan .plan-badge {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .single-plan-main {
    padding: 54px 32px 36px;
  }
  .single-plan-offer {
    margin: 0 12px 12px;
    padding: 38px 32px;
    border-radius: 4px 22px 4px 4px;
  }
}
@media (max-width: 560px) {
  .price-list.single-price { margin-top: 48px; }
  .single-plan .plan-badge {
    padding: 8px 13px;
    font-size: 8px;
  }
  .single-plan-main { padding: 48px 22px 26px; }
  .price-list .single-plan-main > h3 {
    margin-top: 16px;
    font-size: clamp(41px, 12vw, 54px);
  }
  .single-plan-features {
    margin-top: 34px;
    grid-template-columns: 1fr;
  }
  .single-plan-features > div {
    min-height: 0;
    padding: 18px;
  }
  .single-plan-offer {
    margin: 0 8px 8px;
    padding: 34px 22px;
  }
  .price-list .single-plan-offer strong { font-size: 66px; }
}

.price-list.single-price article.single-plan .single-plan-offer ul {
  color: #4d574b;
}
.price-list.single-price article.single-plan .single-plan-offer li::before {
  color: var(--green);
}
.price-list.single-price article.single-plan .single-plan-offer a {
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 10px;
}
.price-list.single-price article.single-plan .single-plan-offer a:hover {
  color: #fff;
  background: #1f2a1e;
}

/* --- TESTE: JANELA EDITORIAL CONTÍNUA --- */
.view-home,
.view-home .sw-root,
.view-home .sw-sky {
  background: #e8ede5;
}
.view-home .sw-sky__grad {
  background:
    radial-gradient(circle at 80% 18%, rgba(203, 216, 198, 0.34), transparent 36%),
    linear-gradient(135deg, #f0f2ec 0%, #e4ebe1 100%);
}
.sw-copy-columns .sw-copylayer {
  overflow: hidden;
}
.sw-copy-columns .sw-copylayer::before {
  z-index: 0;
  width: min(61vw, 960px);
  background: linear-gradient(
    90deg,
    #e8ede5 0%,
    rgba(232, 237, 229, 0.96) 42%,
    rgba(232, 237, 229, 0.72) 69%,
    transparent 100%
  );
}
.sw-copy-columns .sw-copy-window {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: min(50vw, 720px);
  height: min(68vh, 620px);
  min-height: 470px;
  overflow: hidden;
  transform: translateY(-50%);
  border-radius: 0 74px 74px 0;
  background:
    linear-gradient(128deg, rgba(245, 247, 242, 0.9), rgba(232, 237, 229, 0.73)),
    color-mix(in srgb, var(--sw-accent) 5%, transparent);
  box-shadow: 28px 36px 90px rgba(47, 61, 45, 0.1);
  backdrop-filter: blur(24px) saturate(112%);
  -webkit-backdrop-filter: blur(24px) saturate(112%);
}
.sw-copy-columns .sw-copy-window::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  right: 74px;
  left: clamp(28px, 5vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, var(--sw-accent), rgba(82, 96, 78, 0.08));
  opacity: 0.78;
}
.sw-copy-columns .sw-copy-window::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: clamp(28px, 5vw, 72px);
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: var(--sw-accent);
  transform: translateY(-1px);
  transition: background-color 0.7s ease;
}
.sw-copy-columns .sw-copy {
  z-index: 2;
  top: 50%;
  right: clamp(44px, 4.5vw, 74px);
  left: clamp(28px, 5vw, 72px);
  width: auto;
  min-height: 0;
  padding: 0;
  box-sizing: border-box;
  opacity: 1 !important;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform-origin: 12% 50%;
}
.sw-copy-columns .sw-copy::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: -22px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--sw-accent) 18%, var(--sw-accent) 82%, transparent);
  opacity: 0.62;
}
.sw-copy-columns .sw-copy::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 5px;
  right: 2px;
  border-radius: 50%;
  background: var(--sw-accent);
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--sw-accent) 10%, transparent);
}
.sw-copy-columns .sw-copy.is-column-active {
  box-shadow: none;
}
.sw-copy-columns .sw-copy__num {
  color: color-mix(in srgb, var(--sw-accent) 72%, #52604e);
}
.sw-copy-columns .sw-copy__eyebrow {
  margin-top: 14px;
}
.sw-copy-columns .sw-copy__title {
  max-width: 14ch;
  margin-top: 16px !important;
  font-size: clamp(2.25rem, 4vw, 3.75rem) !important;
  line-height: 1 !important;
  text-shadow: none;
}
.sw-copy-columns .sw-copy__body {
  margin-top: 17px;
  max-width: 41ch;
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.58;
  text-shadow: none;
}
.sw-copy-columns .sw-copy__tags {
  margin-top: 22px;
}
.sw-copy-columns .sw-copy__tags li {
  color: color-mix(in srgb, var(--sw-accent) 78%, #20251f);
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--sw-accent) 28%, transparent);
  border-radius: 0;
  background: transparent;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}
.sw-copy-columns .sw-route {
  gap: 18px;
}
.sw-copy-columns .sw-route::before {
  width: 1px;
  background: color-mix(in srgb, #52604e 22%, transparent);
  opacity: 1;
}
.sw-copy-columns .sw-route__dot i {
  width: 7px;
  height: 7px;
  background: color-mix(in srgb, var(--sw-accent) 54%, #e8ede5);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s ease, box-shadow 0.45s ease;
}
.sw-copy-columns .sw-route__dot.is-active i {
  transform: scale(1.22);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--sw-accent) 13%, transparent);
}
.sw-copy-columns .sw-route__label,
.sw-copy-columns .sw-route__dot.is-active .sw-route__label {
  opacity: 0;
  transform: translateY(-50%) translateX(5px);
}
.sw-copy-columns .sw-route__dot:hover .sw-route__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 860px) {
  .sw-copy-columns .sw-copylayer::before {
    inset: auto 0 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(
      0deg,
      #e8ede5 0%,
      rgba(232, 237, 229, 0.92) 54%,
      transparent 100%
    );
  }
  .sw-copy-columns .sw-copy-window {
    top: auto;
    right: 12px;
    bottom: calc(60px + env(safe-area-inset-bottom));
    left: 12px;
    width: auto;
    height: min(47dvh, 410px);
    min-height: 330px;
    transform: none;
    border-radius: 38px 38px 8px 38px;
    background: linear-gradient(145deg, rgba(245, 247, 242, 0.92), rgba(232, 237, 229, 0.8));
    box-shadow: 0 26px 70px rgba(47, 61, 45, 0.13);
    backdrop-filter: blur(22px) saturate(112%);
    -webkit-backdrop-filter: blur(22px) saturate(112%);
  }
  .sw-copy-columns .sw-copy-window::before {
    right: 32px;
    left: 28px;
  }
  .sw-copy-columns .sw-copy-window::after {
    left: 28px;
    width: 44px;
  }
  .sw-copy-columns .sw-copy {
    top: 50%;
    right: 26px;
    bottom: auto;
    left: 28px;
    width: auto;
    min-height: 0;
    max-height: none;
    padding: 0;
    transform-origin: 50% 50%;
  }
  .sw-copy-columns .sw-copy::after {
    top: 3px;
    right: 1px;
  }
  .sw-copy-columns .sw-copy__eyebrow {
    margin-top: 10px;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }
  .sw-copy-columns .sw-copy__title {
    max-width: 13ch;
    margin-top: 11px !important;
    font-size: clamp(1.85rem, 8.2vw, 2.55rem) !important;
    line-height: 1.01 !important;
  }
  .sw-copy-columns .sw-copy__body {
    max-width: 36ch;
    margin-top: 14px;
    font-size: clamp(0.84rem, 3.45vw, 0.94rem);
    line-height: 1.48;
  }
  .sw-copy-columns .sw-copy__tags {
    gap: 12px;
    margin-top: 14px;
  }
  .sw-copy-columns .sw-copy__tags li {
    padding: 4px 0 !important;
    font-size: 9px !important;
  }
  .sw-copy-columns .sw-route {
    right: 1px;
    gap: 11px;
  }
}

@media (max-width: 390px), (max-height: 700px) and (max-width: 860px) {
  .sw-copy-columns .sw-copy-window {
    height: min(49dvh, 360px);
    min-height: 300px;
  }
  .sw-copy-columns .sw-copy__title {
    font-size: clamp(1.7rem, 7.7vw, 2.25rem) !important;
  }
  .sw-copy-columns .sw-copy__body {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sw-copy-columns .sw-copy-window,
  .sw-copy-columns .sw-copy {
    transition: none;
  }
}

/* --- TESTE: INÍCIO ORBITAL SEM VÍDEO --- */
.view-home .sw-stage,
.view-home .sound-toggle {
  display: none !important;
}
.view-home .sw-sky__grad {
  inset: 0;
  background:
    radial-gradient(circle at 76% 48%, rgba(82, 96, 78, 0.16), transparent 27%),
    radial-gradient(circle at 18% 84%, rgba(217, 200, 183, 0.25), transparent 26%),
    linear-gradient(135deg, #f0f2ec 0%, #e4ebe1 100%);
}
.view-home .sw-sky__glow {
  background:
    radial-gradient(circle at 77% 49%, transparent 0 17%, rgba(82, 96, 78, 0.08) 17.1% 17.3%, transparent 17.4% 25%, rgba(82, 96, 78, 0.05) 25.1% 25.3%, transparent 25.4%),
    linear-gradient(90deg, rgba(240, 242, 236, 0.88), transparent 58%);
}

/* Hero: a proposta do produto aparece como um sistema de módulos, não como mockup. */
.hero-icon-stage {
  width: min(43vw, 610px);
  aspect-ratio: 1;
  position: relative;
  z-index: 2;
  justify-self: center;
  align-self: center;
  filter: drop-shadow(0 28px 55px rgba(37, 56, 58, 0.09));
}
.hero-orbit-ring,
.sw-module-ring {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(82, 96, 78, 0.18);
  border-radius: 50%;
}
.hero-orbit-ring--inner,
.sw-module-ring--inner {
  inset: 28%;
  border-color: rgba(82, 96, 78, 0.13);
}
.hero-orbit-ring--outer::before,
.hero-orbit-ring--outer::after,
.sw-module-ring--outer::before,
.sw-module-ring--outer::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(82, 96, 78, 0.08);
  border-radius: inherit;
}
.hero-orbit-ring--outer::before,
.sw-module-ring--outer::before { inset: -40px; }
.hero-orbit-ring--outer::after,
.sw-module-ring--outer::after { inset: 39px; }
.hero-orbit-core,
.sw-module-core {
  width: 112px;
  height: 112px;
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background: #25383a;
  box-shadow: 0 28px 65px rgba(37, 56, 58, 0.22);
  transform: translate(-50%, -50%) rotate(-3deg);
  animation: estima-core-float 6s ease-in-out infinite;
}
.hero-orbit-core img,
.sw-module-core img { width: 62%; height: 62%; }
.hero-menu-icon,
.sw-module-icon {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: #52604e;
  animation: estima-module-float 6.8s ease-in-out infinite;
}
.hero-menu-icon b,
.sw-module-icon b {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(82, 96, 78, 0.16);
  border-radius: 22px;
  color: #52604e;
  background: rgba(250, 249, 246, 0.82);
  box-shadow: 0 18px 42px rgba(37, 56, 58, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero-menu-icon svg,
.sw-module-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.hero-menu-icon small,
.sw-module-icon small { font: 600 9px/1 var(--mono); letter-spacing: 0.09em; text-transform: uppercase; }
.hero-menu-icon--dashboard { top: 1%; left: 42%; animation-delay: -1.2s; }
.hero-menu-icon--wallet { top: 28%; right: -1%; animation-delay: -3.8s; }
.hero-menu-icon--calendar { right: 13%; bottom: 4%; animation-delay: -2.2s; }
.hero-menu-icon--crm { bottom: 4%; left: 13%; animation-delay: -4.7s; }
.hero-menu-icon--package { top: 28%; left: -1%; animation-delay: -0.5s; }
@keyframes estima-core-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0) rotate(-3deg); }
  50% { transform: translate(-50%, -50%) translateY(-12px) rotate(2deg); }
}
@keyframes estima-module-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(0, -10px, 0) rotate(1.5deg); }
}

/* Mundo orbital que permanece no percurso da página. */
.sw-copy-columns .sw-module-world {
  --sw-world-turn: 0deg;
  width: min(43vw, 620px);
  aspect-ratio: 1;
  position: fixed;
  z-index: 16;
  top: 50%;
  right: clamp(42px, 7vw, 120px);
  pointer-events: none;
  transform: translateY(-50%) rotate(var(--sw-world-turn));
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}
.sw-module-core {
  width: 122px;
  height: 122px;
  transition: box-shadow 0.55s ease;
}
.sw-module-core.is-active {
  box-shadow: 0 34px 78px rgba(37, 56, 58, 0.3), 0 0 0 13px rgba(82, 96, 78, 0.09);
}
.sw-module-icon {
  transition: filter 0.75s ease;
}
.sw-module-icon b {
  width: 76px;
  height: 76px;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), color 0.55s ease, background 0.55s ease, box-shadow 0.55s ease;
}
.sw-module-icon b img { width: 42px; height: 42px; }
.sw-module-icon.is-active b {
  color: #fff;
  background: #52604e;
  box-shadow: 0 24px 55px rgba(37, 56, 58, 0.23);
  transform: scale(1.2);
}
.sw-module-icon.is-active small { color: #25383a; }
.sw-module-icon--1 { top: 0; left: 43%; animation-delay: -1.2s; }
.sw-module-icon--2 { top: 28%; right: 0; animation-delay: -3.7s; }
.sw-module-icon--3 { right: 12%; bottom: 5%; animation-delay: -2.1s; }
.sw-module-icon--4 { bottom: 5%; left: 12%; animation-delay: -5.2s; }
.sw-module-icon--5 { top: 28%; left: 0; animation-delay: -0.8s; }

/* Conteúdo aberto: sem caixa, usando somente hierarquia, respiro e uma linha de percurso. */
.sw-copy-columns .sw-copylayer::before {
  width: 55vw;
  background: linear-gradient(90deg, rgba(240, 242, 236, 0.98) 0%, rgba(240, 242, 236, 0.9) 57%, transparent 100%);
}
.sw-copy-columns .sw-copy-window {
  width: min(46vw, 680px);
  height: min(70vh, 650px);
  min-height: 500px;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.sw-copy-columns .sw-copy-window::before {
  right: 34px;
  background: linear-gradient(90deg, var(--sw-accent), rgba(82, 96, 78, 0.06));
}
.sw-copy-columns .sw-copy-window::after { width: 64px; }
.sw-copy-columns .sw-copy { right: 30px; }
.sw-copy-columns .sw-copy::before { display: none; }
.sw-copy-columns .sw-copy::after {
  top: 1px;
  width: 6px;
  height: 6px;
}
.sw-copy-columns .sw-copy__title {
  max-width: 12ch;
  font-family: var(--serif) !important;
  font-weight: 400 !important;
  letter-spacing: -0.045em !important;
}
.sw-copy-columns .sw-copy__tags { gap: 18px; }

@media (max-width: 860px) {
  .hero-icon-stage {
    width: min(88vw, 430px);
    margin: 8px auto 0;
  }
  .hero-orbit-core { width: 84px; height: 84px; border-radius: 26px; }
  .hero-menu-icon b { width: 54px; height: 54px; border-radius: 17px; }
  .hero-menu-icon svg { width: 24px; height: 24px; }
  .hero-menu-icon small { font-size: 7px; }

  .sw-copy-columns .sw-module-world {
    width: min(82vw, 390px);
    top: 25%;
    right: 50%;
    transform: translate(50%, -50%) rotate(var(--sw-world-turn));
  }
  .sw-module-core { width: 76px; height: 76px; border-radius: 23px; }
  .sw-module-icon { gap: 5px; }
  .sw-module-icon b { width: 48px; height: 48px; border-radius: 15px; }
  .sw-module-icon svg { width: 21px; height: 21px; }
  .sw-module-icon b img { width: 27px; height: 27px; }
  .sw-module-icon small { font-size: 6px; }
  .sw-module-icon.is-active b { transform: scale(1.13); }

  .sw-copy-columns .sw-copylayer::before {
    height: 58%;
    background: linear-gradient(0deg, #edf1ea 7%, rgba(237, 241, 234, 0.98) 69%, transparent 100%);
  }
  .sw-copy-columns .sw-copy-window {
    right: 18px;
    bottom: calc(50px + env(safe-area-inset-bottom));
    left: 18px;
    width: auto;
    height: min(42dvh, 365px);
    min-height: 290px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .sw-copy-columns .sw-copy-window::before { right: 0; left: 0; }
  .sw-copy-columns .sw-copy-window::after { left: 0; }
  .sw-copy-columns .sw-copy { right: 1px; left: 1px; }
  .sw-copy-columns .sw-copy__title {
    max-width: 13ch;
    font-size: clamp(1.75rem, 7.6vw, 2.35rem) !important;
  }
  .sw-copy-columns .sw-copy__body { max-width: 38ch; }
  .sw-copy-columns .sw-copy__tags li:nth-child(n + 3) { display: none; }
  .view-home .sw-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orbit-core,
  .hero-menu-icon,
  .sw-module-core,
  .sw-module-icon { animation: none !important; }
  .sw-copy-columns .sw-module-world { transition: none; }
}

/* ================================================================
   TESTE INSTITUCIONAL — fluxo natural, sem scroll dirigido
   ================================================================ */
.view-home-static {
  --static-bg: #f3f4ef;
  --static-sage: #e8ede5;
  --static-sage-2: #d9e2d6;
  --static-green: #52604e;
  --static-dark: #202820;
  --static-muted: #6d756b;
  --static-line: rgba(82, 96, 78, 0.2);
  overflow-x: clip;
  color: var(--static-dark);
  background: var(--static-bg);
}
.view-home-static #world { display: none !important; }
.view-home-static .plans,
.view-home-static .system,
.view-home-static .telegram,
.view-home-static .closing,
.view-home-static .footer { display: none !important; }
.view-home-static .sw-hero {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  width: 100% !important;
  height: auto !important;
  min-height: calc(100svh - 78px) !important;
  margin: 78px 0 0 !important;
  overflow: visible !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: none !important;
  will-change: auto !important;
  background: var(--static-bg) !important;
}
.view-home-static .static-home { display: block; }
.static-home { display: none; background: var(--static-bg); }
.static-home *, .static-home *::before, .static-home *::after { box-sizing: border-box; }
.static-home section { position: relative; }
.static-home h2, .static-home h3, .static-home p { margin-top: 0; }
.static-home h2 {
  margin-bottom: 0;
  font-family: var(--sans);
  font-size: clamp(3rem, 6.1vw, 6.8rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.072em;
}
.static-home h2 em {
  color: var(--static-green);
  font-family: var(--serif);
  font-weight: 400;
}
.static-home .kicker { color: var(--static-green); }
.static-section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--static-line);
  color: var(--static-green);
  font: 500 10px/1.2 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.static-section-label b { font-weight: 500; }

.static-problem {
  padding: clamp(86px, 10vw, 150px) clamp(22px, 5vw, 76px) clamp(78px, 9vw, 130px);
}
.static-problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
  margin-top: clamp(48px, 6vw, 86px);
}
.static-problem-grid h2 { max-width: 12ch; }
.static-problem-copy {
  padding-left: 28px;
  border-left: 1px solid var(--static-line);
  color: var(--static-muted);
  font: 400 clamp(1rem, 1.25vw, 1.18rem)/1.65 var(--sans);
}
.static-problem-copy p:last-child { margin-bottom: 0; }
.static-problem-copy strong { color: var(--static-dark); font-weight: 600; }
.static-persuasion-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  margin-top: clamp(54px, 7vw, 92px);
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid var(--static-line);
  border-radius: 4px 32px 4px 4px;
  background: rgba(255, 255, 255, 0.34);
}
.static-persuasion-strip p { margin: 0; color: var(--static-muted); font: 400 clamp(.94rem, 1.15vw, 1.08rem)/1.55 var(--sans); }
.static-persuasion-strip p span { display: block; margin-bottom: 12px; color: var(--static-green); font: 500 9px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.static-persuasion-strip i { color: var(--static-green); font: 400 1.6rem/1 var(--sans); }
.static-pain-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(70px, 9vw, 128px);
  border-top: 1px solid var(--static-line);
  border-bottom: 1px solid var(--static-line);
}
.static-pain-cards article {
  min-height: 270px;
  padding: 31px clamp(22px, 3vw, 44px) 38px;
}
.static-pain-cards article + article { border-left: 1px solid var(--static-line); }
.static-pain-cards span,
.static-module-copy small,
.static-panel-note small {
  color: var(--static-green);
  font: 500 9px/1.2 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.static-pain-cards h3 {
  max-width: 16ch;
  margin: 52px 0 18px;
  font: 500 clamp(1.45rem, 2vw, 2rem)/1.08 var(--sans);
  letter-spacing: -0.045em;
}
.static-pain-cards p {
  max-width: 31ch;
  margin-bottom: 0;
  color: var(--static-muted);
  font: 400 0.94rem/1.58 var(--sans);
}

.static-product {
  overflow: hidden;
  padding: clamp(76px, 9vw, 132px) clamp(22px, 5vw, 76px) clamp(90px, 11vw, 160px);
  background: var(--static-sage);
}
.static-product::after {
  content: "";
  position: absolute;
  top: 12%; right: -15vw;
  width: 52vw; aspect-ratio: 1;
  border: 1px solid rgba(82, 96, 78, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(82, 96, 78, 0.025), 0 0 0 16vw rgba(82, 96, 78, 0.02);
}
.static-product-head {
  position: relative; z-index: 1;
  max-width: 920px;
  margin-top: clamp(50px, 6vw, 88px);
}
.static-product-head > p:last-child {
  max-width: 55ch;
  margin: 34px 0 0 auto;
  color: var(--static-muted);
  font: 400 clamp(1rem, 1.3vw, 1.18rem)/1.65 var(--sans);
}
.static-dashboard-showcase {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.32fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: center;
  margin-top: clamp(72px, 8vw, 118px);
}
.static-desktop { width: 100%; max-width: 980px; margin: auto; }
.static-desktop-screen {
  position: relative;
  aspect-ratio: 16/9;
  padding: 12px;
  overflow: hidden;
  border: 7px solid #252b27;
  border-radius: 20px;
  background: #252b27;
  box-shadow: 0 38px 80px rgba(30, 44, 29, 0.19);
}
.static-desktop-screen::before {
  content: ""; position: absolute; z-index: 2; top: 5px; left: 50%; width: 4px; height: 4px;
  border-radius: 50%; background: #718076; transform: translateX(-50%);
}
.static-desktop-screen img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: top center; border-radius: 8px; }
.static-desktop-stand { width: 27%; height: 90px; margin: 0 auto; background: linear-gradient(90deg, #a9afaa, #f1f2ef 52%, #aeb4af); clip-path: polygon(39% 0, 61% 0, 68% 84%, 100% 88%, 100% 100%, 0 100%, 0 88%, 32% 84%); }
.static-panel-note { display: grid; grid-template-columns: 58px 1fr; gap: 20px; align-items: start; }
.static-icon {
  width: 58px; height: 58px; display: grid; place-items: center;
  border: 1px solid var(--static-line); border-radius: 18px; color: var(--static-green); background: rgba(255,255,255,.44);
}
.static-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.static-panel-note strong { display: block; margin-top: 13px; font: 500 clamp(1.45rem, 2vw, 2rem)/1.1 var(--sans); letter-spacing: -0.045em; }
.static-panel-note p { margin: 16px 0 0; color: var(--static-muted); font: 400 .94rem/1.6 var(--sans); }
.static-panel-note a {
  display: inline-block;
  margin-top: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--static-green);
  color: var(--static-dark);
  font: 600 .86rem/1 var(--sans);
  text-decoration: none;
}

.static-modules { padding: clamp(82px, 10vw, 150px) clamp(22px, 5vw, 76px); }
.static-modules > header { max-width: 960px; margin-top: clamp(52px, 7vw, 94px); }
.static-module-list { margin-top: clamp(80px, 10vw, 150px); border-top: 1px solid var(--static-line); }
.static-module-row {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(310px, .55fr);
  gap: clamp(60px, 12vw, 190px);
  align-items: center;
  min-height: 660px;
  padding: clamp(64px, 8vw, 110px) clamp(12px, 5vw, 76px);
  border-bottom: 1px solid var(--static-line);
}
.static-module-row--reverse .static-module-copy { order: 2; }
.static-module-row--reverse .static-phone { order: 1; }
.static-module-copy { max-width: 620px; }
.static-module-copy .static-icon { margin-bottom: 72px; }
.static-module-copy h3 { max-width: 15ch; margin: 18px 0 24px; font: 500 clamp(2.2rem, 4vw, 4.6rem)/.98 var(--sans); letter-spacing: -.065em; }
.static-module-copy p { max-width: 44ch; margin-bottom: 0; color: var(--static-muted); font: 400 clamp(.98rem, 1.15vw, 1.12rem)/1.65 var(--sans); }
.static-phone {
  position: relative;
  width: min(290px, 80%);
  aspect-ratio: 332/720;
  justify-self: center;
  padding: 9px;
  overflow: hidden;
  border: 4px solid #202622;
  border-radius: 46px;
  background: #202622;
  box-shadow: 0 34px 70px rgba(32, 40, 32, .18);
}
.static-phone-camera { position: absolute; z-index: 3; top: 14px; left: 50%; width: 34%; height: 22px; border-radius: 999px; background: #171b18; transform: translateX(-50%); }
.static-phone img { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 35px; }
.static-text-link {
  width: max-content; display: flex; gap: 24px; align-items: center; margin: 54px 0 0 auto; padding: 15px 0;
  border-bottom: 1px solid var(--static-dark); color: var(--static-dark); font: 600 .9rem/1 var(--sans); text-decoration: none;
}

.static-ai {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(330px, .6fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
  overflow: hidden;
  padding: clamp(90px, 11vw, 160px) clamp(22px, 7vw, 105px);
  color: #f6f6f1;
  background: #263a3b;
}
.static-ai-orbit { position: absolute; inset: 0; pointer-events: none; }
.static-ai-orbit i { position: absolute; top: 50%; left: 14%; aspect-ratio: 1; border: 1px solid rgba(230,239,230,.1); border-radius: 50%; transform: translate(-50%,-50%); }
.static-ai-orbit i:nth-child(1) { width: 34vw; }.static-ai-orbit i:nth-child(2) { width: 52vw; }.static-ai-orbit i:nth-child(3) { width: 70vw; }
.static-ai-mark { position: absolute; top: 46px; left: clamp(22px, 7vw, 105px); display: flex; gap: 13px; align-items: center; font: 500 10px/1 var(--mono); letter-spacing: .14em; }
.static-ai-mark img { width: 30px; height: 30px; }
.static-ai-copy { position: relative; z-index: 1; }
.static-ai .kicker { color: #c9d4c6; }
.static-ai h2 { font-size: clamp(3.6rem, 7.2vw, 8rem); }
.static-ai h2 em { color: #dbe5d7; }
.static-ai-copy > p:not(.kicker) { max-width: 48ch; margin: 34px 0 0; color: rgba(246,246,241,.68); font: 400 clamp(1rem,1.2vw,1.14rem)/1.68 var(--sans); }
.static-ai-copy > a { display: inline-block; margin-top: 38px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.7); color: #fff; font: 600 .9rem/1 var(--sans); text-decoration: none; }
.static-chat { position: relative; z-index: 1; padding: clamp(24px,3vw,38px); border: 1px solid rgba(255,255,255,.16); border-radius: 34px; background: rgba(241,245,239,.08); }
.static-chat-head { display: flex; gap: 14px; align-items: center; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.12); }
.static-chat-head img { width: 42px; height: 42px; padding: 8px; border-radius: 13px; background: rgba(255,255,255,.1); }
.static-chat-head strong,.static-chat-head small { display:block; font-family:var(--sans); }.static-chat-head small { margin-top:4px; color:rgba(255,255,255,.5); font-size:.72rem; }
.static-chat > p { max-width: 82%; padding: 16px 18px; font: 400 .9rem/1.5 var(--sans); }
.static-chat-user { margin: 26px 0 12px auto; border-radius: 20px 20px 4px 20px; color: var(--static-dark); background: #eef1eb; }
.static-chat-ai { margin: 0 auto 18px 0; border-radius: 20px 20px 20px 4px; background: rgba(255,255,255,.11); }
.static-chat > span { display: block; padding: 14px 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; color: #dbe5d7; font: 500 10px/1.3 var(--mono); letter-spacing: .06em; text-align: center; text-transform: uppercase; }

.static-routine { padding: clamp(86px, 11vw, 160px) clamp(22px, 5vw, 76px); background: #edf0e9; }
.static-routine-grid { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(55px,9vw,140px); align-items: end; margin-top: clamp(58px,8vw,110px); }
.static-routine h2 { font-size: clamp(3.2rem,6vw,6.8rem); }
.static-routine ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--static-line); }
.static-routine li { display: grid; grid-template-columns: 80px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--static-line); }
.static-routine li span { color: var(--static-green); font: 500 10px/1.3 var(--mono); }.static-routine li strong { font: 500 clamp(1.1rem,1.6vw,1.45rem)/1.2 var(--sans); }

.static-relief {
  padding: clamp(88px, 11vw, 160px) clamp(22px, 7vw, 106px);
  color: var(--static-dark);
  background: #edf0e9;
}
.static-relief h2 { max-width: 1230px; font-size: clamp(3.1rem, 6.25vw, 7.1rem); }
.static-relief-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(60px, 8vw, 105px);
  border-top: 1px solid var(--static-line);
  border-bottom: 1px solid var(--static-line);
}
.static-relief-points p { min-height: 190px; margin: 0; padding: 28px clamp(18px, 2.4vw, 36px) 34px; }
.static-relief-points p + p { border-left: 1px solid var(--static-line); }
.static-relief-points span { display: block; color: var(--static-green); font: 500 9px/1 var(--mono); letter-spacing: .12em; }
.static-relief-points strong { display: block; max-width: 21ch; margin-top: 42px; font: 500 clamp(1.15rem, 1.65vw, 1.55rem)/1.25 var(--sans); letter-spacing: -.035em; }

.static-offer {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(360px,.55fr);
  gap: clamp(60px,10vw,150px);
  align-items: center;
  padding: clamp(92px,12vw,175px) clamp(22px,7vw,106px);
  background: var(--static-bg);
}
.static-offer-copy > p:not(.kicker) { max-width: 52ch; margin: 30px 0 0; color: var(--static-muted); font: 400 1.05rem/1.65 var(--sans); }
.static-offer-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 700px; margin: 52px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--static-line); }
.static-offer-copy li { padding: 18px 10px 18px 24px; border-bottom: 1px solid var(--static-line); font: 500 .9rem/1.3 var(--sans); position:relative; }
.static-offer-copy li::before { content:""; position:absolute; left:0; top:24px; width:7px; height:7px; border-radius:50%; background:var(--static-green); }
.static-price-card { padding: clamp(34px,4vw,55px); border-radius: 6px 54px 6px 6px; color:#fff; background:var(--static-green); box-shadow:0 30px 80px rgba(39,53,38,.18); }
.static-price-card > span { font: 500 9px/1 var(--mono); letter-spacing:.15em; }
.static-price-card > div { display:flex; align-items:baseline; margin-top:36px; }.static-price-card > div small { font:500 1rem/1 var(--sans); }.static-price-card strong { font:500 clamp(4.5rem,7vw,7.5rem)/.8 var(--sans); letter-spacing:-.08em; }.static-price-card em { margin-left:8px; color:rgba(255,255,255,.65); font:400 .86rem/1 var(--sans); }
.static-price-card > p { margin:35px 0 0; color:rgba(255,255,255,.76); font:400 1rem/1.5 var(--sans); }
.static-price-card > a { display:block; margin-top:28px; padding:18px 20px; border-radius:10px; color:var(--static-dark); background:#fff; font:700 .9rem/1.2 var(--sans); text-align:center; text-decoration:none; }
.static-price-card > small { display:block; margin-top:18px; color:rgba(255,255,255,.55); font:400 .72rem/1.4 var(--sans); text-align:center; }

.static-faq { display:grid; grid-template-columns:.6fr 1fr; gap:clamp(60px,10vw,150px); padding:clamp(86px,10vw,150px) clamp(22px,7vw,106px); background:var(--static-sage); }
.static-faq h2 { font-size:clamp(3rem,5vw,5.8rem); }.static-faq-list { border-top:1px solid var(--static-line); }.static-faq details { border-bottom:1px solid var(--static-line); }.static-faq summary { padding:27px 42px 27px 0; cursor:pointer; font:500 clamp(1rem,1.35vw,1.25rem)/1.35 var(--sans); list-style:none; position:relative; }.static-faq summary::-webkit-details-marker { display:none; }.static-faq summary::after { content:"+"; position:absolute; top:27px; right:0; color:var(--static-green); font:400 1.35rem/1 var(--sans); }.static-faq details[open] summary::after { content:"−"; }.static-faq details p { max-width:60ch; padding:0 40px 26px 0; margin:0; color:var(--static-muted); font:400 .95rem/1.65 var(--sans); }

.static-final { min-height:620px; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:90px 22px; color:#fff; text-align:center; background:#202820; }
.static-final > img { width:68px; height:auto; margin-bottom:36px; }.static-final .kicker { color:#cbd7c8; }.static-final h2 { max-width:1050px; font-size:clamp(3.3rem,6.7vw,7.4rem); }.static-final h2 em { color:#dce5da; }.static-final > a { margin-top:48px; padding:17px 25px; border:1px solid rgba(255,255,255,.5); border-radius:10px; color:#fff; font:600 .9rem/1 var(--sans); text-decoration:none; }

@media (max-width: 860px) {
  .view-home-static .sw-hero { min-height: auto !important; margin-top: 70px !important; padding-bottom: 46px !important; }
  .static-home h2 { font-size: clamp(2.65rem, 12.5vw, 4.45rem); line-height: .96; }
  .static-section-label { padding-bottom: 12px; }
  .static-problem-grid,.static-dashboard-showcase,.static-routine-grid,.static-offer,.static-faq,.static-ai { grid-template-columns:1fr; }
  .static-problem-grid { gap:36px; }.static-problem-copy { padding:24px 0 0; border-top:1px solid var(--static-line); border-left:0; }
  .static-persuasion-strip { grid-template-columns:1fr; gap:24px; padding:26px 22px; border-radius:4px 24px 4px 4px; }.static-persuasion-strip i { transform:rotate(90deg); }
  .static-pain-cards { grid-template-columns:1fr; margin-top:55px; }.static-pain-cards article { min-height:0; padding:26px 4px 34px; }.static-pain-cards article + article { border-top:1px solid var(--static-line); border-left:0; }.static-pain-cards h3 { margin-top:30px; }
  .static-product-head > p:last-child { margin-left:0; }
  .static-dashboard-showcase { gap:35px; }.static-desktop-screen { padding:5px; border-width:4px; border-radius:11px; }.static-desktop-stand { height:52px; }.static-panel-note { grid-template-columns:48px 1fr; }.static-icon { width:48px; height:48px; border-radius:14px; }.static-icon svg { width:23px; height:23px; }
  .static-module-list { margin-top:65px; }.static-module-row { grid-template-columns:1fr; gap:52px; min-height:0; padding:64px 0; }.static-module-row--reverse .static-module-copy,.static-module-row--reverse .static-phone { order:initial; }.static-module-copy .static-icon { margin-bottom:42px; }.static-module-copy h3 { font-size:clamp(2.25rem,10vw,3.5rem); }.static-phone { width:min(230px,68vw); }
  .static-ai { min-height:0; gap:60px; padding-top:120px; }.static-ai h2 { font-size:clamp(3.5rem,16vw,5.8rem); }.static-ai-orbit i { left:50%; }.static-ai-orbit i:nth-child(1){width:90vw}.static-ai-orbit i:nth-child(2){width:140vw}.static-ai-orbit i:nth-child(3){width:190vw}.static-chat { border-radius:25px; }
  .static-routine-grid { gap:55px; }.static-routine li { grid-template-columns:64px 1fr; }
  .static-relief-points { grid-template-columns:1fr; margin-top:50px; }.static-relief-points p { min-height:0; padding:25px 4px 28px; }.static-relief-points p + p { border-top:1px solid var(--static-line); border-left:0; }.static-relief-points strong { margin-top:25px; }
  .static-offer { gap:60px; }.static-offer-copy ul { grid-template-columns:1fr; }.static-price-card { border-radius:5px 36px 5px 5px; }.static-price-card strong { font-size:clamp(4.2rem,22vw,6.2rem); }
  .static-faq { gap:50px; }.static-final { min-height:560px; }.static-final h2 { font-size:clamp(3rem,13vw,5rem); }
}

@media (prefers-reduced-motion: reduce) {
  .view-home-static *, .view-home-static *::before, .view-home-static *::after { scroll-behavior:auto !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}

/* --- PROFISSIONAIS 3D REATIVAS AO SCROLL --- */
.sw-copy-columns .sw-module-icon {
  width: 96px;
  height: 96px;
  display: block;
  overflow: visible;
  animation: none;
  perspective: 700px;
  transform-style: preserve-3d;
}
.sw-module-badge {
  position: absolute;
  z-index: 8;
  inset: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 9px;
  animation: estima-module-float 6.8s ease-in-out infinite;
}
.sw-module-badge b {
  position: relative;
  z-index: 2;
}
.sw-module-badge small {
  color: #52604e;
  font: 600 9px/1 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.sw-module-icon.is-active .sw-module-badge b {
  color: #fff;
  background: #52604e;
  box-shadow: 0 24px 55px rgba(37, 56, 58, 0.23);
  transform: scale(1.13);
}

.sw-doll {
  --skin: #bd8065;
  --skin-light: #e0a384;
  --hair: #2c211d;
  --hair-light: #584139;
  --uniform: #778574;
  --uniform-light: #aab5a4;
  width: 116px;
  height: 174px;
  position: absolute;
  z-index: 5;
  bottom: -35px;
  left: 50%;
  opacity: 0.56;
  filter: saturate(0.78) drop-shadow(0 18px 17px rgba(37, 56, 58, 0.16));
  transform: translate3d(-50%, 0, -30px) scale(0.54) rotateY(-10deg);
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  transition:
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s ease,
    filter 0.7s ease;
}
.sw-module-icon.is-active .sw-doll {
  z-index: 12;
  opacity: 1;
  filter: saturate(1) drop-shadow(0 26px 23px rgba(37, 56, 58, 0.22));
  transform: translate3d(-50%, -22px, 50px) scale(0.98) rotateY(0deg);
}
.sw-doll i,
.sw-doll u,
.sw-doll em {
  position: absolute;
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  font-style: normal;
}
.sw-doll__shadow {
  width: 82px;
  height: 20px;
  left: 17px;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 56, 58, 0.3), transparent 70%);
  transform: rotateX(68deg) translateZ(-12px);
}
.sw-doll__hair-back {
  width: 58px;
  height: 68px;
  top: 9px;
  left: 29px;
  z-index: 1;
  border-radius: 48% 52% 42% 45%;
  background: linear-gradient(110deg, var(--hair-light), var(--hair) 52%, #171210);
  box-shadow: inset -9px -3px 13px rgba(0, 0, 0, 0.22), inset 8px 0 11px rgba(255, 255, 255, 0.08);
  transform: translateZ(-4px);
}
.sw-doll__head {
  width: 43px;
  height: 52px;
  top: 18px;
  left: 37px;
  z-index: 4;
  overflow: hidden;
  border-radius: 48% 48% 45% 45%;
  background: radial-gradient(circle at 34% 25%, var(--skin-light), var(--skin) 72%);
  box-shadow: inset -7px -4px 10px rgba(101, 50, 36, 0.16), 0 4px 8px rgba(37, 27, 22, 0.13);
  transform: translateZ(9px);
}
.sw-doll__head u {
  width: 5px;
  height: 2px;
  top: 24px;
  border-radius: 999px;
  background: #392820;
}
.sw-doll__head u:first-child { left: 10px; }
.sw-doll__head u:nth-child(2) { right: 10px; }
.sw-doll__head em {
  width: 11px;
  height: 5px;
  left: 16px;
  bottom: 9px;
  border-bottom: 2px solid #8d504b;
  border-radius: 50%;
}
.sw-doll__hair-front {
  width: 48px;
  height: 29px;
  top: 9px;
  left: 34px;
  z-index: 6;
  border-radius: 58% 48% 48% 20%;
  background: linear-gradient(140deg, var(--hair-light), var(--hair) 65%);
  clip-path: polygon(0 0, 100% 0, 100% 55%, 67% 42%, 43% 76%, 0 52%);
  transform: translateZ(12px);
}
.sw-doll__neck {
  width: 17px;
  height: 20px;
  top: 61px;
  left: 50px;
  z-index: 3;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--skin), var(--skin-light), var(--skin));
}
.sw-doll__body {
  width: 58px;
  height: 72px;
  top: 73px;
  left: 29px;
  z-index: 3;
  border-radius: 25px 25px 14px 14px;
  background: linear-gradient(105deg, var(--uniform-light), var(--uniform) 58%, color-mix(in srgb, var(--uniform) 74%, #263129));
  box-shadow: inset 9px 0 11px rgba(255, 255, 255, 0.14), inset -8px -2px 12px rgba(0, 0, 0, 0.13);
  transform: translateZ(3px);
}
.sw-doll__body::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 25px;
  width: 8px;
  height: 45px;
  border-left: 1px solid rgba(255,255,255,.28);
  border-right: 1px solid rgba(31,42,31,.1);
}
.sw-doll__arm {
  width: 16px;
  height: 62px;
  top: 78px;
  z-index: 7;
  border-radius: 9px;
  background: linear-gradient(90deg, var(--skin), var(--skin-light), var(--skin));
  transform-origin: 50% 8px;
  box-shadow: inset -3px 0 5px rgba(88, 48, 34, 0.12);
}
.sw-doll__arm--left { left: 27px; transform: rotate(-17deg) translateZ(11px); }
.sw-doll__arm--right { right: 27px; transform: rotate(17deg) translateZ(12px); }
.sw-doll__phone {
  width: 25px;
  height: 40px;
  top: 100px;
  left: 46px;
  z-index: 10;
  overflow: hidden;
  border: 3px solid #1d2523;
  border-radius: 7px;
  background: linear-gradient(155deg, #eef1eb, #ccd6c8);
  box-shadow: 0 5px 9px rgba(0,0,0,.2), inset 0 0 0 1px rgba(255,255,255,.65);
  transform: translateZ(19px) rotateX(-4deg);
  animation: estima-phone-glow 3.2s ease-in-out infinite;
}
.sw-doll__phone u {
  width: 9px;
  height: 2px;
  top: 2px;
  left: 5px;
  border-radius: 2px;
  background: #1d2523;
}
.sw-doll__legs {
  width: 45px;
  height: 34px;
  left: 36px;
  bottom: 12px;
  z-index: 2;
  border-radius: 5px 5px 15px 15px;
  border-right: 18px solid color-mix(in srgb, var(--uniform) 75%, #283027);
  border-left: 18px solid var(--uniform);
  filter: drop-shadow(0 5px 4px rgba(0,0,0,.1));
}
.sw-doll__prop { z-index: 11; }

/* Especialidades: roupa, cabelo e instrumento de trabalho identificam cada personagem. */
.sw-doll--unhas { --skin:#a9664f; --skin-light:#d49573; --hair:#191717; --hair-light:#483a35; --uniform:#846e78; --uniform-light:#bca6ae; }
.sw-doll--unhas .sw-doll__hair-back { height: 49px; border-radius: 50%; }
.sw-doll--unhas .sw-doll__hair-front { border-radius: 50%; }
.sw-doll--unhas .sw-doll__prop {
  width: 11px; height: 18px; right: 27px; top: 118px; border-radius: 3px 3px 5px 5px;
  background: linear-gradient(#26201f 0 28%, #9b505b 29%); box-shadow: 0 4px 6px rgba(0,0,0,.18);
}
.sw-doll--cilios { --skin:#c98666; --skin-light:#ebb091; --hair:#352018; --hair-light:#714b39; --uniform:#667d72; --uniform-light:#a7b8ae; }
.sw-doll--cilios .sw-doll__hair-back { height: 76px; border-radius: 50% 50% 28% 28%; }
.sw-doll--cilios .sw-doll__prop {
  width: 4px; height: 29px; right: 24px; top: 106px; border-radius: 3px; background:#29322e; transform: rotate(18deg) translateZ(20px);
}
.sw-doll--cilios .sw-doll__prop::after { content:""; position:absolute; top:0; left:-3px; width:10px; height:9px; border-radius:50%; background:repeating-linear-gradient(90deg,#29322e 0 1px,transparent 1px 3px); }
.sw-doll--massagem { --skin:#8d5c48; --skin-light:#bd7f61; --hair:#151313; --hair-light:#39302c; --uniform:#a18b6f; --uniform-light:#cfc0a7; }
.sw-doll--massagem .sw-doll__hair-back { height: 46px; border-radius: 50%; top: 7px; }
.sw-doll--massagem .sw-doll__hair-front { width: 42px; left: 37px; border-radius: 50%; }
.sw-doll--massagem .sw-doll__prop {
  width: 30px; height: 15px; right: 15px; top: 126px; border-radius: 9px; background:linear-gradient(#e8e3d9,#bfb7a7); box-shadow:inset 0 -4px 5px rgba(0,0,0,.08),0 4px 7px rgba(0,0,0,.12);
}
.sw-doll--cabelo { --skin:#b77359; --skin-light:#df9f7d; --hair:#241915; --hair-light:#694638; --uniform:#3f4f4a; --uniform-light:#75847e; }
.sw-doll--cabelo .sw-doll__hair-back { width:65px; height:90px; left:26px; border-radius:48% 52% 20% 20%; }
.sw-doll--cabelo .sw-doll__prop {
  width: 26px; height: 26px; right: 15px; top: 105px; border:2px solid #35413c; border-radius:50%; clip-path:polygon(0 0,46% 0,46% 100%,0 100%,0 58%,31% 50%,0 42%); transform:rotate(-18deg) translateZ(20px);
}
.sw-doll--estetica { --skin:#c38366; --skin-light:#e5aa8b; --hair:#251a18; --hair-light:#5e4037; --uniform:#6d8068; --uniform-light:#abbba7; }
.sw-doll--estetica .sw-doll__prop {
  width: 24px; height: 24px; right: 18px; top: 111px; border:3px solid #d6ddd3; border-radius:50%; box-shadow:0 0 0 2px rgba(82,96,78,.16); transform:translateZ(18px);
}

/* A personagem cresce perto do ícone ativo; as demais recuam para formar o rodízio. */
.sw-module-icon--1 .sw-doll { left: -25px; bottom: -148px; }
.sw-module-icon--2 .sw-doll { left: -48px; bottom: -44px; }
.sw-module-icon--3 .sw-doll { left: -36px; bottom: 24px; }
.sw-module-icon--4 .sw-doll { left: 132px; bottom: 24px; }
.sw-module-icon--5 .sw-doll { left: 145px; bottom: -44px; }
.sw-module-icon.is-active .sw-doll__arm--left { animation: estima-left-hand 2.7s ease-in-out infinite; }
.sw-module-icon.is-active .sw-doll__arm--right { animation: estima-right-hand 2.7s ease-in-out infinite; }
@keyframes estima-phone-glow {
  0%,100% { box-shadow:0 5px 9px rgba(0,0,0,.2),inset 0 0 0 1px rgba(255,255,255,.65); }
  50% { box-shadow:0 5px 12px rgba(0,0,0,.2),0 0 16px rgba(158,190,148,.42),inset 0 0 0 1px rgba(255,255,255,.8); }
}
@keyframes estima-left-hand { 0%,100%{transform:rotate(-17deg) translateZ(11px)} 50%{transform:rotate(-12deg) translateZ(14px)} }
@keyframes estima-right-hand { 0%,100%{transform:rotate(17deg) translateZ(12px)} 50%{transform:rotate(11deg) translateZ(15px)} }

@media (max-width: 860px) {
  .sw-copy-columns .sw-module-icon { width: 62px; height: 62px; }
  .sw-module-badge { gap: 5px; }
  .sw-doll { transform: translate3d(-50%,0,-30px) scale(.39) rotateY(-8deg); }
  .sw-module-icon.is-active .sw-doll { transform: translate3d(-50%,-8px,40px) scale(.65) rotateY(0); }
  .sw-module-icon--1 .sw-doll { left: -16px; bottom: -108px; }
  .sw-module-icon--2 .sw-doll { left: -34px; bottom: -40px; }
  .sw-module-icon--3 .sw-doll { left: -28px; bottom: 10px; }
  .sw-module-icon--4 .sw-doll { left: 90px; bottom: 10px; }
  .sw-module-icon--5 .sw-doll { left: 97px; bottom: -40px; }
}

@media (prefers-reduced-motion: reduce) {
  .sw-doll,
  .sw-doll__arm,
  .sw-doll__phone,
  .sw-module-badge { animation: none !important; }
}

/* ================================================================
   ESTIMA EM FLUXO — refinamento visual da página institucional
   ================================================================ */
.view-home-static .static-home {
  --section-space: clamp(88px, 8vw, 120px);
  --content-max: 1280px;
}
.view-home-static .static-home h2 {
  max-width: 1100px;
  font-size: clamp(3.35rem, 5.7vw, 6.3rem);
  line-height: .92;
  text-wrap: balance;
}
.view-home-static .static-home h2 > span,
.view-home-static .static-home h2 > strong,
.view-home-static .static-home h2 > em { display: block; }
.view-home-static .static-home h2 > strong {
  color: var(--static-dark);
  font: inherit;
  font-size: 1.12em;
  letter-spacing: -.078em;
}
.view-home-static .static-home h2 > em {
  margin-top: .04em;
  font-size: .92em;
  line-height: .9;
  letter-spacing: -.055em;
}
.view-home-static .static-problem {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}
.view-home-static .static-problem-grid {
  max-width: var(--content-max);
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .48fr);
  gap: clamp(54px, 8vw, 118px);
}
.view-home-static .static-problem-grid h2 { max-width: 11.7ch; }
.view-home-static .static-problem-grid h2 > span { white-space: nowrap; }
.view-home-static .static-problem-grid h2 > strong { display: inline-block; }
.view-home-static .static-problem-grid h2 > em { max-width: none; margin-top: -.08em; margin-left: 1.18em; white-space: nowrap; }
.view-home-static .static-problem-copy {
  align-self: center;
  margin-top: 110px;
  padding-left: 34px;
}

/* Aproxima o primeiro capítulo do hero sem alterar a escala dos mockups. */
@media (min-width: 861px) {
  .view-home-static .sw-hero {
    margin-bottom: clamp(-42px, -2.55vw, -30px) !important;
  }

  .view-home-static .static-problem {
    padding-top: calc(var(--section-space) * .4);
  }
}

.view-home-static .static-persuasion-strip {
  max-width: var(--content-max);
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: .78fr auto 1fr;
  border-radius: 5px 38px 5px 5px;
  background: linear-gradient(110deg, rgba(255,255,255,.14), rgba(255,255,255,.6)), var(--static-sage);
  box-shadow: 0 24px 70px rgba(45, 59, 43, .06);
}
.view-home-static .static-persuasion-strip p:last-child { color: var(--static-dark); font-weight: 500; }

.static-flowline {
  position: relative;
  z-index: 3;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 34px clamp(22px, 5vw, 76px) 52px;
  background: var(--static-bg);
}
.static-flowline-track {
  position: absolute;
  top: 40px;
  right: clamp(22px, 5vw, 76px);
  left: clamp(22px, 5vw, 76px);
  height: 1px;
  overflow: hidden;
  background: var(--static-line);
}
.static-flowline-track i {
  width: 100%; height: 100%; display: block;
  background: var(--static-green);
  transform: scaleX(var(--flow-progress, 0));
  transform-origin: left center;
  transition: transform .16s linear;
}
.static-flowline.is-visible .static-flowline-track i { transform: scaleX(var(--flow-progress, 0)); }
.static-flowline ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}
.static-flowline li { display: grid; gap: 13px; justify-items: start; }
.static-flowline li:not(:first-child) { justify-items: center; }
.static-flowline li:last-child { justify-items: end; }
.static-flowline li::before {
  content: "";
  width: 9px; height: 9px;
  border: 3px solid var(--static-bg);
  border-radius: 50%;
  background: var(--static-bg);
  box-shadow: 0 0 0 1px var(--static-green);
  transition: transform .45s cubic-bezier(.22,1,.36,1), background-color .35s ease, box-shadow .45s ease;
}
.static-flowline span { color: var(--static-muted); font: 500 8px/1 var(--mono); letter-spacing: .12em; }
.static-flowline strong { color: var(--static-muted); font: 600 clamp(.76rem, .9vw, .9rem)/1 var(--sans); transition: color .35s ease, transform .45s cubic-bezier(.22,1,.36,1); }
.static-flowline li.is-flow-active::before {
  background: var(--static-green);
  box-shadow: 0 0 0 6px rgba(82,96,78,.12), 0 0 0 1px var(--static-green);
  transform: scale(1.3);
}
.static-flowline li.is-flow-active strong { color: var(--static-dark); transform: translateY(2px); }

.view-home-static .static-product {
  padding-top: var(--section-space);
  padding-bottom: calc(var(--section-space) + 34px);
}
.view-home-static .static-product-head {
  max-width: var(--content-max);
  margin-right: auto;
  margin-left: auto;
}
.view-home-static .static-product-head h2 { max-width: 9.8ch; }
.view-home-static .static-product-head h2 > em { margin-left: .7em; }
.view-home-static .static-product-head > p:last-child { max-width: 43ch; margin-top: 27px; margin-right: 9%; }
.view-home-static .static-dashboard-showcase {
  display: block;
  max-width: var(--content-max);
  min-height: 680px;
  margin-right: auto;
  margin-left: auto;
}
.view-home-static .static-desktop { width: 84%; margin-left: 0; }
.view-home-static .static-panel-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 11%;
  width: min(370px, 32%);
  padding: 30px;
  border: 1px solid rgba(82,96,78,.2);
  border-radius: 5px 34px 5px 5px;
  background: rgba(244,247,241,.87);
  box-shadow: 0 28px 75px rgba(32,40,32,.13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.view-home-static .static-ai {
  min-height: 690px;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  grid-template-columns: minmax(0, .92fr) minmax(360px, .52fr);
}
.view-home-static .static-ai h2 { max-width: 8ch; font-size: clamp(4rem, 6.8vw, 7.4rem); }
.view-home-static .static-ai h2 em { margin-left: .35em; }
.view-home-static .static-chat { transform: rotate(1.35deg); transform-origin: center; }
.view-home-static .static-ai-orbit i:nth-child(1) { animation: estima-orbit-breathe 11s ease-in-out infinite; }
.view-home-static .static-ai-orbit i:nth-child(2) { animation: estima-orbit-breathe 14s ease-in-out infinite reverse; }
.view-home-static .static-ai-orbit i:nth-child(3) { animation: estima-orbit-breathe 18s ease-in-out infinite; }
@keyframes estima-orbit-breathe {
  0%,100% { opacity: .62; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.035); }
}
.motion-ready .static-chat-user,
.motion-ready .static-chat-ai,
.motion-ready .static-chat > span { opacity: 0; transform: translateY(10px); }
.static-ai.is-visible .static-chat-user { animation: estima-chat-in .6s cubic-bezier(.22,1,.36,1) .45s forwards; }
.static-ai.is-visible .static-chat-ai { animation: estima-chat-in .6s cubic-bezier(.22,1,.36,1) .85s forwards; }
.static-ai.is-visible .static-chat > span { animation: estima-chat-in .6s cubic-bezier(.22,1,.36,1) 1.25s forwards; }
@keyframes estima-chat-in { to { opacity: 1; transform: translateY(0); } }

.view-home-static .static-relief {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(390px, .54fr);
  column-gap: clamp(50px, 9vw, 140px);
  overflow: hidden;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}
.view-home-static .static-relief-copy { position: relative; z-index: 2; }
.view-home-static .static-relief h2 { max-width: 9.5ch; font-size: clamp(3.7rem, 5.8vw, 6.5rem); }
.view-home-static .static-relief h2 > span { max-width: none; white-space: nowrap; }
.view-home-static .static-relief h2 > em { max-width: 8.8ch; margin-top: .05em; margin-left: .55em; }
.view-home-static .static-relief-points { grid-column: 1 / -1; width: 100%; max-width: var(--content-max); margin-right: auto; margin-left: auto; }
.view-home-static .static-relief-points p:nth-child(2) { transform: translateY(28px); background: rgba(255,255,255,.28); }

.static-module-cloud {
  position: relative;
  min-height: 470px;
  align-self: center;
}
.static-module-cloud::before,
.static-module-cloud::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 330px; height: 330px;
  border: 1px solid rgba(82,96,78,.12);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.static-module-cloud::after { width: 215px; height: 215px; }
.static-ai-core {
  position: absolute;
  z-index: 4;
  top: 50%; left: 50%;
  display: grid;
  justify-items: center;
  gap: 13px;
  color: #324846;
  transform: translate(-50%, -50%);
}
.static-ai-core b {
  width: 116px; height: 116px;
  display: grid;
  place-items: center;
  border-radius: 36px;
  background: #263a3b;
  box-shadow: 0 28px 70px rgba(38,58,59,.26), 0 0 0 13px rgba(82,96,78,.07);
  animation: estima-ai-core-float 6.8s ease-in-out infinite;
}
.static-ai-core img { width: 62px; height: 62px; display: block; }
.static-ai-core small { font: 700 9px/1 var(--mono); letter-spacing: .13em; text-transform: uppercase; }
@keyframes estima-ai-core-float {
  0%,100% { transform: translateY(0) rotate(-1.5deg); box-shadow: 0 28px 70px rgba(38,58,59,.26), 0 0 0 13px rgba(82,96,78,.07); }
  50% { transform: translateY(-10px) rotate(1deg); box-shadow: 0 38px 82px rgba(38,58,59,.31), 0 0 0 18px rgba(82,96,78,.055); }
}
.static-float-icon {
  --icon-scroll-y: 0px;
  --icon-delay: 0s;
  position: absolute;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--static-green);
  transform: translate3d(0, var(--icon-scroll-y), 0);
  transition: transform .18s linear;
}
.static-float-icon b {
  width: 74px; height: 74px;
  display: grid; place-items: center;
  border: 1px solid rgba(82,96,78,.18);
  border-radius: 23px;
  background: rgba(250,251,247,.76);
  box-shadow: 0 22px 48px rgba(43,57,42,.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: estima-static-icon-float 5.8s ease-in-out var(--icon-delay) infinite;
}
.static-float-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.static-float-icon small { font: 600 8px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.static-float-icon--panel { top: 2%; left: 41%; --icon-delay: -1.1s; }
.static-float-icon--finance { top: 31%; right: 2%; --icon-delay: -3.3s; }
.static-float-icon--agenda { right: 16%; bottom: 2%; --icon-delay: -2.1s; }
.static-float-icon--clients { bottom: 5%; left: 12%; --icon-delay: -4.4s; }
.static-float-icon--catalog { top: 30%; left: 0; --icon-delay: -.4s; }
@keyframes estima-static-icon-float {
  0%,100% { transform: translateY(0) rotate(-1.2deg); }
  50% { transform: translateY(-13px) rotate(1.3deg); }
}

.view-home-static .static-offer {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  grid-template-columns: minmax(0, .95fr) minmax(380px, .46fr);
}
.view-home-static .static-offer-copy h2 { max-width: 8.5ch; }
.view-home-static .static-offer-copy h2 > em { margin-left: .48em; }
.view-home-static .static-price-card {
  transform: translateY(28px) rotate(-1.15deg);
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s ease;
}
.view-home-static .static-price-card:hover { transform: translateY(18px) rotate(0); box-shadow: 0 40px 95px rgba(39,53,38,.24); }
.view-home-static .static-faq { padding-top: var(--section-space); padding-bottom: var(--section-space); }
.view-home-static .static-final { min-height: 590px; }

.motion-ready .static-home .reveal-item {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity .82s ease var(--reveal-delay, 0ms), transform .92s cubic-bezier(.22,1,.36,1) var(--reveal-delay, 0ms);
}
.motion-ready .static-home .reveal-item.is-visible { opacity: 1; transform: translate3d(0,0,0); }
.motion-ready .static-home .static-price-card.reveal-item { transform: translateY(48px) rotate(-1.15deg); }
.motion-ready .static-home .static-price-card.reveal-item.is-visible { transform: translateY(28px) rotate(-1.15deg); }
.static-home a { transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease; }
.static-home a:focus-visible { outline: 2px solid #a9b7a5; outline-offset: 5px; }

@media (max-width: 860px) {
  .view-home-static .static-home { --section-space: 72px; }
  .view-home-static .static-home h2 { font-size: clamp(2.75rem, 12vw, 4.25rem); line-height: .94; }
  .view-home-static .static-problem-grid { grid-template-columns: 1fr; gap: 34px; }
  .view-home-static .static-problem-grid h2 { max-width: 100%; }
  .view-home-static .static-problem-grid h2 > span,
  .view-home-static .static-problem-grid h2 > em { white-space: normal; }
  .view-home-static .static-problem-grid h2 > em { max-width: 9ch; margin-top: 0; margin-left: .35em; }
  .view-home-static .static-problem-copy { margin-top: 0; padding: 24px 0 0; }
  .view-home-static .static-persuasion-strip { grid-template-columns: 1fr; }
  .static-flowline { margin: 0; padding: 28px 22px 46px; }
  .static-flowline-track { top: 34px; right: 22px; left: 22px; }
  .static-flowline strong { max-width: 8ch; font-size: .68rem; line-height: 1.2; }
  .view-home-static .static-product-head h2 { max-width: 100%; }
  .view-home-static .static-product-head h2 > em { margin-left: .35em; }
  .view-home-static .static-product-head > p:last-child { margin-right: 0; }
  .view-home-static .static-dashboard-showcase { min-height: 0; }
  .view-home-static .static-desktop { width: 100%; }
  .view-home-static .static-panel-note { position: relative; right: auto; bottom: auto; width: 94%; margin: -8px 0 0 auto; padding: 24px; }
  .view-home-static .static-ai { grid-template-columns: 1fr; min-height: 0; }
  .view-home-static .static-ai h2 { font-size: clamp(3.7rem, 16vw, 5.5rem); }
  .view-home-static .static-ai h2 em { margin-left: .18em; }
  .view-home-static .static-chat { transform: none; }
  .view-home-static .static-relief { grid-template-columns: 1fr; row-gap: 48px; }
  .view-home-static .static-relief h2 { max-width: 100%; font-size: clamp(3rem, 12.5vw, 4.45rem); }
  .view-home-static .static-relief h2 > span { white-space: normal; }
  .view-home-static .static-relief h2 > em { max-width: 9ch; margin-left: .25em; }
  .static-module-cloud { min-height: 360px; width: min(100%, 390px); justify-self: center; }
  .static-module-cloud::before { width: 270px; height: 270px; }
  .static-module-cloud::after { width: 170px; height: 170px; }
  .static-ai-core { gap: 10px; }
  .static-ai-core b { width: 92px; height: 92px; border-radius: 29px; box-shadow: 0 24px 58px rgba(38,58,59,.24), 0 0 0 10px rgba(82,96,78,.065); }
  .static-ai-core img { width: 50px; height: 50px; }
  .static-ai-core small { font-size: 7px; }
  .static-float-icon b { width: 58px; height: 58px; border-radius: 18px; }
  .static-float-icon svg { width: 24px; height: 24px; }
  .static-float-icon small { font-size: 6.5px; }
  .view-home-static .static-relief-points p:nth-child(2) { transform: none; }
  .view-home-static .static-offer { grid-template-columns: 1fr; }
  .view-home-static .static-offer-copy h2 { max-width: 100%; }
  .view-home-static .static-offer-copy h2 > em { margin-left: .35em; }
  .view-home-static .static-price-card { transform: none; }
  .motion-ready .static-home .static-price-card.reveal-item,
  .motion-ready .static-home .static-price-card.reveal-item.is-visible { transform: translateY(0); }
}

@media (max-width: 430px) {
  .static-flowline li:nth-child(2), .static-flowline li:nth-child(3) { justify-items: center; }
  .static-flowline li span { font-size: 7px; }
  .static-flowline strong { font-size: .61rem; }
  .view-home-static .static-panel-note { width: 100%; margin-top: 18px; }
  .static-module-cloud { min-height: 330px; }
}

@media (prefers-reduced-motion: reduce) {
  .view-home-static .static-ai-orbit i,
  .static-ai.is-visible .static-chat-user,
  .static-ai.is-visible .static-chat-ai,
  .static-ai.is-visible .static-chat > span { animation: none !important; opacity: 1 !important; transform: none !important; }
  .motion-ready .static-home .reveal-item,
  .motion-ready .static-home .reveal-item.is-visible { opacity: 1 !important; transform: none !important; transition: none !important; }
  .static-flowline-track i { transform: scaleX(1); transition: none; }
  .static-float-icon b { animation: none !important; }
  .static-float-icon { transform: none !important; transition: none !important; }
  .static-ai-core b { animation: none !important; }
}
