:root {
  --bg: #08070b;
  --panel: #16131a;
  --panel-soft: rgba(255, 255, 255, 0.06);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.66);
  --faint: rgba(255, 255, 255, 0.42);
  --accent: #ff4d5f;
  --accent-2: #b64cff;
  --accent-deep: #d10aa7;
  --danger: #ff4d5f;
  --grid: rgba(255, 77, 95, 0.15);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.46);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --mouse-x: 50%;
  --mouse-y: 50%;
  --parallax-x: 0px;
  --parallax-y: 0px;
  font-family: Inter, Sora, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 18%, rgba(255, 77, 95, 0.2), transparent 28%),
    radial-gradient(circle at 86% 6%, rgba(182, 76, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #09070b 0%, #121018 36%, #08070b 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position:
    var(--parallax-x) var(--parallax-y),
    var(--parallax-x) var(--parallax-y);
  mask-image: linear-gradient(to bottom, black, transparent 94%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle 360px at var(--mouse-x) var(--mouse-y), rgba(182, 76, 255, 0.11), transparent 62%),
    radial-gradient(circle 560px at var(--mouse-x) var(--mouse-y), rgba(255, 77, 95, 0.08), transparent 74%);
  transition: opacity 0.35s ease;
}

body.has-pointer-light::after {
  opacity: 1;
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.08;
  background-image: url("./assets/asset-11.webp");
  background-size: 640px auto;
  mix-blend-mode: screen;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

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

.logo-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(1000px, calc(100% - 48px));
  height: 70px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr 120px;
  align-items: center;
  background: linear-gradient(180deg, rgba(35, 35, 35, 0.86), rgba(17, 17, 17, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 0;
  border-radius: 0 0 16px 16px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.32);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.topbar:hover {
  transform: translateY(2px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 90px rgba(182, 76, 255, 0.16);
}

.brand {
  padding-left: 38px;
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img,
.brand .laf-logo,
.footer img,
.footer .laf-logo {
  width: 150px;
  height: 63px;
  max-height: 63px;
  display: block;
  flex: 0 0 auto;
  overflow: visible;
}

.topbar nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.topbar nav a,
.login {
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.topbar nav a:hover {
  color: var(--accent-2);
  transform: translateY(-1px);
}

.login {
  justify-self: end;
  margin-right: 39px;
  display: inline-flex;
  width: 90px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(138, 138, 138, 0.3);
  box-shadow: inset 0 0 9px rgba(255, 255, 255, 0.18);
  font-weight: 600;
}

.login:hover {
  background: rgba(255, 255, 255, 0.2);
}

main {
  isolation: isolate;
}

section {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 1130px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 77, 95, 0.24), transparent 18%),
    radial-gradient(circle at 50% 54%, rgba(182, 76, 255, 0.15), transparent 30%);
}

.hero-orbit {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 1220px;
  height: 1220px;
  border: 2px solid rgba(182, 76, 255, 0.38);
  border-radius: 38% 62% 48% 52% / 40% 46% 54% 60%;
  transform: translate(-50%, -50%) rotate(-42deg);
  filter: drop-shadow(0 0 40px rgba(255, 77, 95, 0.3));
  animation: slow-orbit 18s linear infinite;
}

.hero-core {
  position: relative;
  z-index: 2;
  width: min(820px, 92vw);
  transform: translateY(-46px);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 999px;
  background: rgba(49, 12, 42, 0.82);
  color: var(--accent-2);
  border: 1px solid rgba(182, 76, 255, 0.42);
  box-shadow: 0 3px 18px rgba(255, 77, 95, 0.24);
  font-weight: 700;
  font-size: 13px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.hero h1 {
  margin: 24px auto 18px;
  font-size: clamp(56px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.word-rotator {
  display: inline-block;
  color: var(--accent-2);
  min-width: 430px;
  transform-origin: center;
}

.segment-highlight {
  display: inline-block;
  color: var(--accent-2);
}

.hero p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.015);
}

.primary {
  margin-top: 28px;
  color: #12070f;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow: 0 22px 70px rgba(255, 77, 95, 0.26), inset 0 -12px 28px rgba(182, 76, 255, 0.22);
}

.hero small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.hero-proof {
  margin: 110px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.avatar-stack {
  display: inline-flex;
}

.avatar-stack img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid #090c0a;
  object-fit: cover;
}

.avatar-stack img + img {
  margin-left: -10px;
}

.trusted {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}

.metric-shell,
.calculator,
.quote-block,
.feature-stack,
.benefits,
.task-lab,
.pricing,
.testimonial-wall,
.demo-video,
.faq,
.final-cta {
  padding: 110px 0;
}

.section-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.metric-card,
.calc-panel,
.quote-block,
.feature-row,
.integration-card,
.benefit-grid article,
.task-window,
.price-card,
.wall-grid article,
.demo-frame,
.faq-item,
.final-cta > div {
  border: 1px solid var(--panel-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.metric-card,
.calc-panel,
.feature-row,
.integration-card,
.benefit-grid article,
.task-window,
.price-card,
.wall-grid article,
.demo-frame,
.faq-item,
.final-cta > div {
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.metric-card:hover,
.calc-panel:hover,
.feature-row:hover,
.integration-card:hover,
.benefit-grid article:hover,
.task-window:hover,
.price-card:hover,
.wall-grid article:hover,
.demo-frame:hover,
.faq-item:hover,
.final-cta > div:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 34px 100px rgba(182, 76, 255, 0.14), var(--shadow);
}

.metric-card {
  min-height: 280px;
  padding: 28px;
}

.metric-card:first-child {
  order: 1;
}

.agents-card {
  order: 2;
}

.tools-card {
  order: 3;
  grid-column: 1 / -1;
  min-height: 0;
}

.metric-card > span {
  color: var(--accent);
  font-weight: 800;
}

.metric-card h2 {
  margin-top: 22px;
  font-size: 34px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.compare-bars,
.cost-row,
.capacity {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.compare-bars div,
.cost-row div,
.capacity p {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.compare-bars em,
.cost-row em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare-bars strong,
.cost-row strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 24px;
}

.compare-bars p,
.cost-row p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
  font-weight: 650;
}

.compare-bars .is-bright {
  border: 0;
  background: rgba(255, 255, 255, 0.06);
}

.tools-card .cost-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.tool-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.tool-logo-grid span {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.mark {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 22px rgba(182, 76, 255, 0.18);
}

.mark.trello {
  background: #1d7afc;
}

.mark.trello::before,
.mark.trello::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 4px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
}

.mark.trello::before {
  left: 6px;
}

.mark.trello::after {
  right: 6px;
}

.mark.monday {
  background:
    radial-gradient(circle at 35% 65%, #ffcb00 0 23%, transparent 24%),
    radial-gradient(circle at 70% 70%, #00c875 0 20%, transparent 21%),
    radial-gradient(circle at 55% 30%, #ff3d57 0 20%, transparent 21%),
    #fff;
}

.mark.asana {
  background:
    radial-gradient(circle at 50% 28%, #ff7b6d 0 22%, transparent 23%),
    radial-gradient(circle at 32% 68%, #ff7b6d 0 22%, transparent 23%),
    radial-gradient(circle at 68% 68%, #ff7b6d 0 22%, transparent 23%),
    #fff;
}

.mark.notion {
  background: #fff;
  border: 2px solid #111;
}

.mark.notion::before {
  content: "N";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #111;
  font-size: 13px;
  font-weight: 900;
}

.mark.clickup {
  background:
    linear-gradient(135deg, transparent 39%, #7b68ee 40% 60%, transparent 61%),
    linear-gradient(45deg, transparent 39%, #ff4d5f 40% 60%, transparent 61%),
    #20c997;
}

.mark.airtable {
  background:
    linear-gradient(150deg, #f7b801 0 45%, transparent 46%),
    linear-gradient(30deg, #18a0fb 0 42%, transparent 43%),
    linear-gradient(270deg, #ff6b6b 0 48%, #fff 49%);
}

.mark.sheets {
  background: #0f9d58;
}

.mark.sheets::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid #fff;
  border-radius: 2px;
}

.mark.whatsapp {
  border-radius: 50%;
  background: #25d366;
}

.mark.whatsapp::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-30deg);
}

.calculator {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: center;
}

.calc-copy h2,
.section-heading h2,
.task-copy h2,
.final-cta h2 {
  margin-top: 14px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.calc-copy p,
.task-copy p,
.final-cta p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.calc-panel {
  padding: 34px;
}

.calc-panel label {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 28px;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.calc-results article {
  min-height: 150px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.calc-results span,
.calc-results small {
  color: var(--muted);
}

.calc-results strong {
  display: block;
  margin: 16px 0 8px;
  color: var(--accent-2);
  font-size: 31px;
  letter-spacing: -0.04em;
}

.quote-block {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 42px;
  padding: 34px;
  align-items: center;
  overflow: hidden;
  backdrop-filter: none;
}

.portrait-card {
  height: 520px;
  border-radius: 26px;
  overflow: hidden;
  background: #111;
  filter: grayscale(1);
}

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

.quote-mark {
  color: var(--accent);
  font-size: 70px;
  line-height: 0.6;
}

.quote-copy h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.quote-copy > p:not(.quote-mark) {
  margin-top: 28px;
  font-weight: 800;
  font-size: 20px;
}

.quote-copy span {
  color: var(--muted);
}

.feature-stack {
  display: grid;
  gap: 40px;
}

.feature-row,
.integration-card,
.task-lab {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 30px;
  align-items: center;
}

.feature-row {
  padding: 36px;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-row h2,
.integration-card h2 {
  margin-top: 12px;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 10px;
}

.chat-window,
.calendar-card {
  min-height: 360px;
  border-radius: 26px;
  padding: 28px;
  background:
    radial-gradient(circle at 75% 10%, rgba(182, 76, 255, 0.2), transparent 36%),
    rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bubble {
  width: 72%;
  padding: 18px 20px;
  margin-bottom: 16px;
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  animation: float-card 4.8s ease-in-out infinite;
}

.bubble.user {
  margin-left: auto;
  background: rgba(182, 76, 255, 0.13);
  animation-delay: -1.2s;
}

.bubble.agent:nth-of-type(2) {
  animation-delay: -2.1s;
}

.bubble.agent:nth-of-type(3) {
  animation-delay: -3s;
}

.typing {
  display: inline-flex;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.typing span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1s ease-in-out infinite;
}

.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }

.calendar-top {
  color: var(--accent-2);
  font-weight: 800;
  margin-bottom: 26px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.calendar-grid span {
  aspect-ratio: 1;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
}

.calendar-grid .active {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow: 0 12px 38px rgba(255, 77, 95, 0.25);
}

.integration-card {
  padding: 36px;
  grid-template-columns: 1fr 1fr;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.integration-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 7px 14px;
  min-height: 138px;
  padding: 22px;
  align-content: start;
  background: rgba(255, 255, 255, 0.045);
  animation: float-card 5s ease-in-out infinite;
}

.integration-item:nth-child(2) { animation-delay: -0.8s; }
.integration-item:nth-child(3) { animation-delay: -1.6s; }
.integration-item:nth-child(4) { animation-delay: -2.4s; }
.integration-item:nth-child(5) { animation-delay: -3.2s; }
.integration-item:nth-child(6) { animation-delay: -4s; }

.integration-item:hover {
  background: rgba(255, 255, 255, 0.07);
}

.integration-item strong {
  align-self: end;
  color: var(--text);
  font-size: 17px;
  line-height: 1.15;
}

.integration-item p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.integration-mark {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  grid-row: span 2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 10px 28px rgba(0, 0, 0, 0.14);
}

.google-mark {
  background:
    conic-gradient(from -40deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 73%, #ea4335 0 100%);
}

.google-mark::after {
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.microsoft-mark {
  background:
    linear-gradient(90deg, #f25022 0 48%, transparent 48% 52%, #7fba00 52% 100%),
    linear-gradient(180deg, transparent 0 48%, rgba(255, 255, 255, 0.92) 48% 52%, transparent 52% 100%),
    linear-gradient(90deg, #00a4ef 0 48%, transparent 48% 52%, #ffb900 52% 100%);
  background-size: 100% 48%, 100% 100%, 100% 48%;
  background-position: top, center, bottom;
  background-repeat: no-repeat;
}

.sheets-mark {
  background:
    linear-gradient(135deg, transparent 0 20%, rgba(255, 255, 255, 0.72) 20% 33%, transparent 33%),
    #1f9d55;
}

.sheets-mark::after {
  position: absolute;
  inset: 13px 10px;
  border-top: 3px solid rgba(255, 255, 255, 0.86);
  border-bottom: 3px solid rgba(255, 255, 255, 0.86);
  content: "";
}

.whatsapp-mark {
  border-radius: 50%;
  background: #25d366;
}

.whatsapp-mark::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 11px;
  width: 15px;
  height: 15px;
  border: 3px solid #fff;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-30deg);
}

.computer-mark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0 58%, transparent 58%),
    linear-gradient(135deg, var(--accent), var(--accent-2));
}

.computer-mark::after {
  position: absolute;
  right: 9px;
  bottom: 9px;
  left: 9px;
  height: 4px;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.18);
  content: "";
}

.system-mark {
  background:
    radial-gradient(circle at 50% 50%, #fff 0 8px, transparent 8.5px),
    conic-gradient(from 90deg, var(--accent), var(--accent-2), var(--accent));
}

.system-mark::after {
  position: absolute;
  inset: 17px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.section-heading {
  max-width: 760px;
}

.centered {
  margin: 0 auto 44px;
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.benefit-grid article {
  padding: 24px;
  min-height: 270px;
}

.benefit-grid span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #12070f;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  font-weight: 900;
}

.benefit-grid h3 {
  margin-top: 50px;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.benefit-grid p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.task-lab {
  align-items: stretch;
}

.task-window {
  padding: 34px;
  min-height: 420px;
}

.window-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
}

.task-window h2 {
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}

.task-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  margin-top: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-weight: 800;
}

.task-card strong {
  color: var(--text);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.task-card span {
  line-height: 1.25;
}

.task-card.success {
  border: 1px solid rgba(182, 76, 255, 0.28);
}

.task-card.success strong {
  color: var(--accent-2);
}

.task-copy {
  align-self: center;
}

.pricing-controls {
  display: flex;
  width: fit-content;
  margin: 0 auto 26px;
  padding: 8px;
  gap: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-controls button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.pricing-controls button.active {
  background: var(--accent);
  color: #12070f;
}

.divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 440px));
  justify-content: center;
  gap: 22px;
}

.price-card {
  padding: 34px;
}

.price-card > span {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 900;
}

.price-card h3 {
  margin-top: 18px;
  font-size: 46px;
  letter-spacing: -0.05em;
}

.price {
  margin: 28px 0;
}

.price strong {
  display: block;
  font-size: 58px;
  letter-spacing: -0.07em;
}

.price small {
  color: var(--muted);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 13px;
  color: var(--muted);
}

.price-card li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 10px;
}

.dark {
  color: #fff;
  background: #12070f;
  width: 100%;
}

.ghost {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.testimonial-wall {
  width: min(1100px, calc(100% - 48px));
}

.wall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.wall-grid article {
  padding: 24px;
  min-height: 180px;
}

.wall-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.wall-grid strong {
  display: block;
  margin-top: 20px;
}

.demo-video {
  width: min(1060px, calc(100% - 48px));
  padding-bottom: 70px;
}

.demo-video .section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
}

.demo-video .section-heading p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.video-stack {
  display: grid;
  gap: 24px;
}

.demo-frame {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 77, 95, 0.28), transparent 26%),
    radial-gradient(circle at 82% 24%, rgba(182, 76, 255, 0.34), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
}

.demo-frame::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-lg) - 1px);
  background:
    linear-gradient(90deg, rgba(255, 77, 95, 0.18), transparent 20%, rgba(182, 76, 255, 0.18) 78%, transparent),
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.14), transparent 34%);
  pointer-events: none;
}

.video-card {
  min-height: 0;
}

.demo-frame-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 45%, black, transparent 78%);
}

.demo-topbar {
  position: relative;
  z-index: 2;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.demo-topbar strong {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.demo-content,
.youtube-cover {
  position: relative;
  z-index: 2;
  min-height: 486px;
  display: grid;
  place-items: center;
  padding: 52px 40px 70px;
  text-align: center;
}

.youtube-cover {
  width: 100%;
  border: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  background: #0f1017;
  overflow: hidden;
}

.youtube-cover img,
.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.youtube-cover img {
  z-index: 0;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.04);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.youtube-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 42%, rgba(182, 76, 255, 0.38), transparent 34%),
    linear-gradient(180deg, rgba(8, 7, 11, 0.1), rgba(8, 7, 11, 0.78));
}

.youtube-cover:hover img {
  opacity: 0.66;
  transform: scale(1.08);
}

.video-card iframe {
  position: relative;
  inset: auto;
  z-index: 3;
  display: block;
  width: 100%;
  height: auto;
  min-height: 540px;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.demo-play {
  position: relative;
  z-index: 2;
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow:
    0 28px 90px rgba(182, 76, 255, 0.4),
    0 0 0 18px rgba(255, 255, 255, 0.055),
    inset 0 -18px 34px rgba(255, 77, 95, 0.24);
}

.demo-play span {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 32px solid #12070f;
}

.demo-caption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  width: min(620px, 100%);
  margin-top: 34px;
}

.demo-caption span,
.demo-caption small {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-style: normal;
}

.demo-caption strong {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.demo-caption p {
  width: min(560px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.demo-caption em {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-weight: 800;
}

.faq {
  width: min(1060px, calc(100% - 48px));
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  min-height: 80px;
  padding: 0 24px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.faq-item span {
  font-size: 20px;
  font-weight: 700;
}

.faq-item em {
  color: var(--accent);
  font-style: normal;
  font-size: 28px;
}

.faq-item p {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.7;
  transition: max-height 0.2s ease, padding 0.2s ease;
}

.faq-item.open p {
  max-height: 260px;
  padding: 0 0 22px;
}

.final-cta {
  width: min(900px, calc(100% - 48px));
  text-align: center;
}

.final-cta > div {
  padding: 78px 40px;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 77, 95, 0.48), transparent 34%),
    radial-gradient(circle at 64% 100%, rgba(182, 76, 255, 0.64), transparent 56%),
    rgba(255, 255, 255, 0.06);
}

.light {
  margin-top: 28px;
  background: #fff;
  color: #12070f;
}

.final-whatsapp {
  width: min(100%, 520px);
  min-height: 86px;
  margin-top: 38px;
  flex-direction: column;
  gap: 7px;
  border-radius: 22px;
  color: #12070f;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.7), transparent 38%),
    linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow:
    0 26px 90px rgba(255, 77, 95, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 -18px 36px rgba(182, 76, 255, 0.26);
  font-size: 21px;
}

.final-whatsapp span {
  font-weight: 900;
}

.final-whatsapp small {
  color: rgba(18, 7, 15, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.final-whatsapp:hover {
  box-shadow:
    0 34px 110px rgba(182, 76, 255, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.22),
    inset 0 -18px 36px rgba(182, 76, 255, 0.3);
}

.footer {
  width: min(1060px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 70px;
  display: grid;
  gap: 30px;
  color: var(--faint);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main,
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  max-width: 460px;
}

.footer-brand p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 650;
}

.footer-landing-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-landing-menu > span,
.footer-presence > span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-landing-menu > span {
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.footer-menu-row {
  display: flex;
  gap: 6px;
  margin-top: 0;
}

.footer-menu-group {
  position: relative;
}

.footer-menu-group button {
  appearance: none;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.025);
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.footer-menu-group button::after {
  content: "";
  margin-left: 0;
}

.footer-menu-group button:hover,
.footer-menu-group:focus-within button {
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.14);
}

.footer-submenu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 10;
  width: 260px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(13, 10, 16, 0.96);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(18px);
}

.footer-menu-group:hover .footer-submenu,
.footer-menu-group:focus-within .footer-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer-submenu a {
  display: block;
  padding: 7px 9px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 650;
}

.footer-submenu a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.footer-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.footer-proof article,
.footer-presence {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.footer-proof strong {
  display: block;
  color: var(--text);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.footer-proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.35;
  font-weight: 700;
}

.footer-presence {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-presence div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-presence p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.footer-presence strong {
  font-size: 18px;
}

.footer-bottom {
  align-items: flex-end;
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 14px;
  font-weight: 650;
}

.footer-bottom p {
  margin: 0 0 4px;
}

.theme-laf-sistemas .topbar {
  grid-template-columns: 160px 1fr 150px;
}

.theme-laf-sistemas .site-noise {
  opacity: 0.18;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 14% 24%, rgba(255, 77, 95, 0.18), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(182, 76, 255, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%);
  background-size: auto, auto, 180px 180px, 180px 180px;
}

.theme-laf-sistemas .brand img,
.theme-laf-sistemas .brand .laf-logo,
.theme-laf-sistemas .footer img,
.theme-laf-sistemas .footer .laf-logo {
  width: 104px;
  height: 44px;
  max-height: 44px;
}

.theme-laf-sistemas .login {
  width: 118px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #12070f;
  box-shadow: 0 18px 50px rgba(255, 77, 95, 0.2);
}

.theme-laf-sistemas .hero-core {
  width: min(980px, 92vw);
}

.theme-laf-sistemas .hero h1 {
  font-size: clamp(58px, 7.5vw, 96px);
}

.theme-laf-sistemas .word-rotator {
  min-width: 560px;
}

.system-portrait {
  display: grid;
  place-items: center;
  filter: none;
  background:
    radial-gradient(circle at 18% 15%, rgba(255, 77, 95, 0.3), transparent 32%),
    radial-gradient(circle at 88% 22%, rgba(182, 76, 255, 0.34), transparent 38%),
    rgba(255, 255, 255, 0.04);
}

.portrait-screen {
  width: min(420px, 86%);
  min-height: 430px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 28px 80px rgba(0, 0, 0, 0.26);
}

.screen-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.portrait-screen > strong {
  display: block;
  margin: 34px 0 22px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.portrait-screen article {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: soft-pulse 4.8s ease-in-out infinite;
}

.portrait-screen article:nth-of-type(2) { animation-delay: -1.4s; }
.portrait-screen article:nth-of-type(3) { animation-delay: -2.8s; }

.portrait-screen small {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.portrait-screen b {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

.report-card-mini {
  display: grid;
  align-content: center;
  gap: 18px;
}

.report-card-mini strong {
  max-width: 560px;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.report-card-mini p {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
  animation: float-card 4.6s ease-in-out infinite;
}

.report-card-mini p:nth-of-type(2) { animation-delay: -1.2s; }
.report-card-mini p:nth-of-type(3) { animation-delay: -2.2s; }

.report-card-mini p span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}

.report-wave {
  position: relative;
  height: 76px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 77, 95, 0.9), rgba(182, 76, 255, 0.88)),
    rgba(255, 255, 255, 0.08);
  clip-path: polygon(0 72%, 14% 54%, 28% 68%, 42% 43%, 56% 57%, 70% 34%, 86% 48%, 100% 25%, 100% 100%, 0 100%);
  animation: data-scan 4.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.report-wave::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: translateX(-120%);
  animation: flow-pulse 3.8s linear infinite;
}

.theme-laf-sistemas .pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.theme-laf-sistemas .price-card {
  min-height: 650px;
  display: flex;
  flex-direction: column;
}

.theme-laf-sistemas .price-card .button {
  margin-top: auto;
}

.theme-laf-sistemas .price strong {
  font-size: 42px;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.theme-laf-sistemas .price-card.pro .dark {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.featured-card {
  border-color: rgba(182, 76, 255, 0.54);
  background:
    radial-gradient(circle at 78% 3%, rgba(182, 76, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.035));
}

.no-top {
  margin-top: auto;
  width: 100%;
}

.theme-laf-sistemas .wall-grid article {
  min-height: 210px;
}

@keyframes slow-orbit {
  to { transform: translate(calc(-50% + (var(--parallax-x) * 1.35)), calc(-50% + (var(--parallax-y) * 1.35))) rotate(318deg); }
}

@keyframes blink {
  0%, 100% { opacity: 0.25; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

@keyframes float-card {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes soft-pulse {
  0%, 100% {
    opacity: 0.78;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

@keyframes data-scan {
  0%, 100% {
    background-size: 100% 100%;
    opacity: 0.86;
  }
  50% {
    background-size: 132% 100%;
    opacity: 1;
  }
}

@keyframes flow-pulse {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(240%);
  }
}

@media (pointer: fine) {
  .hero-orbit {
    transform: translate(calc(-50% + (var(--parallax-x) * 1.35)), calc(-50% + (var(--parallax-y) * 1.35)));
  }

  .chat-window,
  .calendar-card,
  .integration-grid {
    transform: translate(calc(var(--parallax-x) * -0.35), calc(var(--parallax-y) * -0.35));
    transition: transform 0.18s ease-out;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  body::after {
    display: none;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 96px;
  }

  body {
    overflow-x: clip;
  }

  section,
  .testimonial-wall,
  .demo-video,
  .faq,
  .final-cta,
  .footer {
    width: min(100% - 28px, 430px);
  }

  .topbar {
    width: calc(100% - 24px);
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .theme-laf-sistemas .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar nav {
    display: none;
  }

  .brand {
    padding-left: 0;
  }

  .login {
    margin-right: 0;
  }

  .theme-laf-sistemas .brand img,
  .theme-laf-sistemas .brand .laf-logo {
    width: 104px;
    height: 44px;
    max-height: 44px;
  }

  .theme-laf-sistemas .login {
    width: auto;
    min-width: 112px;
    padding: 0 18px;
  }

  .hero {
    min-height: auto;
    place-items: start center;
    padding: 100px 14px 64px;
  }

  .hero-core,
  .theme-laf-sistemas .hero-core {
    width: min(100%, 430px);
    transform: none;
  }

  .hero h1,
  .theme-laf-sistemas .hero h1 {
    max-width: 100%;
    font-size: 44px;
    line-height: 1;
    letter-spacing: 0;
    overflow-wrap: normal;
  }

  .hero-orbit {
    display: none;
  }

  .pill {
    max-width: 100%;
    padding-inline: 16px;
    font-size: 12px;
  }

  .hero p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.5;
  }

  .button {
    width: 100%;
    padding-inline: 18px;
    text-align: center;
  }

  .primary {
    margin-top: 24px;
  }

  .trusted {
    bottom: 34px;
    width: 100%;
    font-size: 10px;
  }

  .pricing-controls {
    width: 100%;
    flex-wrap: wrap;
    border-radius: 24px;
  }

  .word-rotator,
  .theme-laf-sistemas .word-rotator,
  .segment-highlight {
    display: block;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .metric-grid,
  .calculator,
  .quote-block,
  .feature-row,
  .feature-row.reverse,
  .integration-card,
  .benefit-grid,
  .task-lab,
  .pricing-grid,
  .wall-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .metric-shell,
  .calculator,
  .quote-block,
  .feature-stack,
  .benefits,
  .task-lab,
  .pricing,
  .testimonial-wall,
  .demo-video,
  .faq,
  .final-cta {
    padding: 72px 0;
  }

  .metric-grid {
    gap: 14px;
  }

  .metric-card,
  .calc-panel,
  .quote-block,
  .feature-row,
  .integration-card,
  .benefit-grid article,
  .task-window,
  .price-card,
  .wall-grid article,
  .demo-frame,
  .faq-item,
  .final-cta > div {
    border-radius: 22px;
  }

  .metric-card,
  .feature-row,
  .integration-card,
  .price-card {
    padding: 24px;
  }

  .metric-card {
    min-height: 0;
  }

  .metric-card h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .compare-bars strong,
  .cost-row strong {
    font-size: 21px;
    line-height: 1.1;
  }

  .tools-card .cost-row,
  .tool-logo-grid,
  .integration-grid,
  .benefit-grid,
  .wall-grid,
  .calc-results {
    grid-template-columns: 1fr;
  }

  .tool-logo-grid {
    gap: 8px;
  }

  .tool-logo-grid span {
    min-height: 46px;
  }

  .calc-copy h2,
  .section-heading h2,
  .task-copy h2,
  .final-cta h2,
  .feature-row h2,
  .integration-card h2,
  .quote-copy h2 {
    font-size: 43px;
    line-height: 1;
    letter-spacing: 0;
  }

  .calc-copy p,
  .task-copy p {
    font-size: 16px;
  }

  .calc-results {
    grid-template-columns: 1fr;
  }

  .calc-panel {
    padding: 24px;
  }

  .quote-block {
    padding: 24px;
    gap: 28px;
  }

  .portrait-card {
    height: auto;
    min-height: 420px;
  }

  .portrait-screen {
    width: 100%;
    min-height: 0;
    padding: 22px;
  }

  .portrait-screen > strong {
    font-size: 30px;
  }

  .quote-mark {
    font-size: 48px;
  }

  .quote-copy > p:not(.quote-mark) {
    margin-top: 18px;
    font-size: 18px;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .chat-window,
  .calendar-card {
    min-height: 0;
    padding: 22px;
  }

  .bubble {
    width: 100%;
  }

  .report-card-mini strong {
    font-size: 25px;
  }

  .integration-item {
    min-height: 118px;
    padding: 18px;
  }

  .benefit-grid article {
    min-height: 0;
  }

  .benefit-grid h3 {
    margin-top: 32px;
  }

  .task-window {
    min-height: 0;
    padding: 24px;
  }

  .task-window h2 {
    font-size: 36px;
  }

  .task-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .task-card strong {
    font-size: 32px;
  }

  .theme-laf-sistemas .pricing-grid {
    grid-template-columns: 1fr;
  }

  .theme-laf-sistemas .price-card {
    min-height: 0;
  }

  .price-card h3 {
    font-size: 40px;
  }

  .theme-laf-sistemas .price strong {
    font-size: 36px;
  }

  .video-stack {
    gap: 18px;
  }

  .demo-topbar {
    height: 58px;
    padding-inline: 18px;
  }

  .demo-topbar strong {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .demo-content,
  .youtube-cover {
    min-height: 320px;
    padding: 34px 20px 42px;
  }

  .video-card iframe {
    min-height: 320px;
  }

  .demo-play {
    width: 86px;
    height: 86px;
  }

  .demo-play span {
    border-top-width: 16px;
    border-bottom-width: 16px;
    border-left-width: 24px;
  }

  .demo-caption strong {
    font-size: 36px;
  }

  .faq-item {
    min-height: 72px;
    padding: 0 18px;
  }

  .faq-item span {
    font-size: 17px;
    line-height: 1.25;
  }

  .faq-item.open p {
    max-height: 360px;
  }

  .final-cta > div {
    padding: 54px 22px;
  }

  .final-whatsapp {
    min-height: 80px;
    font-size: 18px;
  }

  .footer {
    display: grid;
    gap: 20px;
  }

  .footer-main,
  .footer-bottom,
  .footer-presence {
    display: grid;
    gap: 20px;
  }

  .footer-proof {
    grid-template-columns: 1fr;
  }

  .footer-menu-row,
  .footer-presence div {
    flex-direction: column;
  }

  .footer-landing-menu {
    min-width: 0;
    margin-left: 0;
    display: none !important;
    align-items: start;
    justify-items: start;
  }

  .footer-menu-group button {
    width: 100%;
  }

  .footer-submenu {
    position: static;
    margin-top: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}
