:root {
  --bg: #090a0f;
  --bg-soft: #0f1118;
  --surface: #14161e;
  --surface-high: #1b1e28;
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --text: #f8f7f4;
  --muted: #a7a8b0;
  --muted-high: #c9cad0;
  --brand: #ef2946;
  --brand-light: #ff6177;
  --brand-dark: #a90827;
  --green: #45d483;
  --cream: #f4f0e7;
  --ink: #111219;
  --container: 1180px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--brand-light);
  outline-offset: 4px;
}

::selection {
  background: var(--brand);
  color: #fff;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line-soft);
  background: rgba(9, 10, 15, 0.82);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.25rem;
  font-weight: 780;
  letter-spacing: -0.04em;
}

.brand img {
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-left: auto;
}

.main-nav a,
.site-footer nav a {
  color: var(--muted-high);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.site-footer nav a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: 4px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: #fff;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 16px 35px rgba(239, 41, 70, 0.25);
}

.button-primary:hover {
  background: var(--brand-light);
  box-shadow: 0 20px 44px rgba(239, 41, 70, 0.35);
}

.button-whatsapp {
  border-color: #32df73;
  background: linear-gradient(135deg, #32df73, #20bf5a);
  color: #07150c;
  box-shadow: 0 15px 34px rgba(37, 211, 102, 0.27), inset 0 1px rgba(255, 255, 255, 0.2);
}

.button-whatsapp:hover {
  border-color: #46e680;
  background: #46e680;
  box-shadow: 0 19px 42px rgba(37, 211, 102, 0.3);
}

.button-download {
  min-height: 52px;
  border-color: var(--brand-light);
  background: linear-gradient(135deg, var(--brand), #bf0d2b);
  color: #fff;
  box-shadow: 0 15px 34px rgba(239, 41, 70, 0.25), inset 0 1px rgba(255, 255, 255, 0.16);
}

.button-download:hover {
  border-color: #ff7b8e;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-dark));
  box-shadow: 0 19px 42px rgba(239, 41, 70, 0.34), inset 0 1px rgba(255, 255, 255, 0.2);
}

.button-download > span {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
}

.button-download small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.58rem;
  font-weight: 600;
}

.button-download-accent {
  border-color: var(--brand-light);
  background: linear-gradient(135deg, var(--brand), #bf0d2b);
  color: #fff;
  box-shadow: 0 12px 28px rgba(239, 41, 70, 0.25), inset 0 1px rgba(255, 255, 255, 0.16);
}

.button-download-accent:hover {
  border-color: #ff7b8e;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-dark));
  box-shadow: 0 16px 34px rgba(239, 41, 70, 0.34), inset 0 1px rgba(255, 255, 255, 0.2);
}

.button-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 11px;
  font-size: 0.84rem;
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-light:hover {
  background: var(--cream);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 0.93rem;
  font-weight: 700;
}

.text-link span {
  color: var(--brand-light);
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--muted-high);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
}

.hero {
  position: relative;
  min-height: 880px;
  padding: 180px 0 130px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 250px;
  content: "";
  pointer-events: none;
  background: linear-gradient(transparent, var(--bg));
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.hero-glow-one {
  top: -310px;
  right: -270px;
  width: 780px;
  height: 780px;
  background: radial-gradient(circle, rgba(239, 41, 70, 0.2), transparent 66%);
}

.hero-glow-two {
  bottom: -420px;
  left: -350px;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(69, 212, 131, 0.07), transparent 67%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: 76px;
}

.hero-copy {
  padding-bottom: 20px;
}

.hero h1,
.section h2,
.error-card h1 {
  margin: 0;
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3.55rem, 6.1vw, 6rem);
}

.hero h1 em {
  color: var(--brand-light);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 630px;
  margin: 30px 0 0;
  color: var(--muted-high);
  font-size: 1.13rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.hero-demo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--muted-high);
  font-size: 0.78rem;
  font-weight: 650;
  transition: color 0.2s ease;
}

.hero-demo-link span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand-light);
  font-size: 0.55rem;
}

.hero-demo-link:hover {
  color: #fff;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-checks svg {
  width: 16px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-product {
  position: relative;
  min-width: 0;
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
}

.product-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: #111319;
  box-shadow: var(--shadow), 0 0 0 1px rgba(239, 41, 70, 0.08);
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 43px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line-soft);
  background: #171920;
  color: #767986;
  font-size: 0.58rem;
  font-weight: 700;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #343640;
}

.window-dots i:first-child {
  background: var(--brand);
}

.window-status {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 5px;
  color: #8c8f98;
}

.window-status i,
.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px rgba(69, 212, 131, 0.65);
}

.product-body {
  display: grid;
  grid-template-columns: 42px 1fr;
  min-height: 410px;
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  padding-top: 14px;
  border-right: 1px solid var(--line-soft);
  background: #0e1015;
}

.mini-brand {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  margin-bottom: 6px;
  border-radius: 7px;
  background: var(--brand);
  font-size: 0.62rem;
  font-weight: 900;
}

.product-sidebar i {
  width: 14px;
  height: 14px;
  border: 1px solid #474a54;
  border-radius: 4px;
}

.product-sidebar i.active {
  border-color: var(--brand);
  background: rgba(239, 41, 70, 0.22);
  box-shadow: 0 0 0 4px rgba(239, 41, 70, 0.07);
}

.product-content {
  min-width: 0;
  padding: 21px;
}

.product-heading,
.panel-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-heading > div:first-child {
  display: flex;
  flex-direction: column;
}

.product-heading span,
.panel-label,
.metric-row span {
  color: #747782;
  font-size: 0.52rem;
}

.product-heading strong {
  margin-top: 2px;
  font-size: 0.9rem;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid rgba(69, 212, 131, 0.17);
  border-radius: 99px;
  background: rgba(69, 212, 131, 0.07);
  color: #7fe1a8;
  font-size: 0.53rem;
  font-weight: 700;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.metric-row > div {
  display: flex;
  min-width: 0;
  min-height: 74px;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.018);
}

.metric-row strong {
  margin: 1px 0;
  color: #f3f3f4;
  font-size: 0.92rem;
}

.metric-row small {
  overflow: hidden;
  color: #656873;
  font-size: 0.44rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-panels {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 9px;
  margin-top: 9px;
}

.conversation-panel,
.agenda-panel {
  min-height: 214px;
  padding: 13px;
  border: 1px solid var(--line-soft);
  border-radius: 9px;
  background: #14161c;
}

.panel-label {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line-soft);
  color: #d4d5d9;
  font-weight: 700;
}

.panel-label i {
  color: var(--brand-light);
  font-style: normal;
  font-weight: 700;
}

.chat-line {
  width: 78%;
  margin-top: 11px;
  padding: 7px 8px;
  border-radius: 6px;
  color: #c6c7cd;
  font-size: 0.45rem;
  line-height: 1.45;
}

.chat-line.incoming {
  background: #20232b;
}

.chat-line.outgoing {
  margin-left: auto;
  background: rgba(239, 41, 70, 0.15);
  color: #efb6c0;
}

.chat-options {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 81%;
  margin-top: 9px;
  margin-left: auto;
}

.chat-options span {
  padding: 5px 7px;
  border: 1px solid rgba(239, 41, 70, 0.16);
  border-radius: 5px;
  color: #9c9ea8;
  font-size: 0.42rem;
}

.agenda-item {
  display: grid;
  grid-template-columns: 31px 1fr;
  align-items: center;
  gap: 8px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
}

.agenda-item:last-child {
  border: 0;
}

.agenda-item time {
  color: #8a8c95;
  font-size: 0.47rem;
}

.agenda-item span {
  display: flex;
  flex-direction: column;
  padding-left: 8px;
  border-left: 2px solid var(--brand);
}

.agenda-item:nth-child(3) span {
  border-color: var(--green);
}

.agenda-item strong {
  font-size: 0.48rem;
}

.agenda-item small {
  color: #696c75;
  font-size: 0.4rem;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  background: rgba(25, 27, 35, 0.93);
  box-shadow: 0 17px 45px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
}

.floating-card > div:last-child {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  font-size: 0.65rem;
}

.floating-card span {
  color: #858892;
  font-size: 0.48rem;
}

.floating-message {
  right: -22px;
  bottom: 50px;
  animation: float 5s ease-in-out infinite;
}

.float-icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 9px;
  background: rgba(69, 212, 131, 0.13);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
}

.floating-agenda {
  bottom: -34px;
  left: 52px;
  animation: float 5.8s 0.8s ease-in-out infinite;
}

.float-date {
  display: flex;
  width: 31px;
  height: 36px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 7px;
  background: var(--brand);
}

.float-date strong {
  font-size: 0.75rem;
  line-height: 1;
}

.float-date span {
  color: #fff;
  font-size: 0.38rem;
  font-weight: 800;
}

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

.value-strip {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line-soft);
  background: #0c0d12;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.value-grid > div {
  display: flex;
  min-height: 122px;
  flex-direction: column;
  justify-content: center;
  padding: 27px 42px;
  border-right: 1px solid var(--line-soft);
}

.value-grid > div:first-child {
  padding-left: 0;
}

.value-grid > div:last-child {
  border-right: 0;
}

.value-grid strong {
  font-size: 0.92rem;
}

.value-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.intro-section {
  padding-bottom: 80px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 100px;
}

.section h2 {
  font-size: clamp(2.6rem, 4.8vw, 4.7rem);
}

.intro-copy {
  padding-bottom: 5px;
}

.intro-copy p,
.section-heading > p:last-child,
.demo-copy > p,
.structure-copy > p,
.audience-card p,
.faq-list p {
  color: var(--muted);
}

.intro-copy p {
  margin: 0 0 25px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.features-section {
  padding-top: 50px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.section-heading > p:last-child {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: 1.02rem;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

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

.feature-card {
  position: relative;
  grid-column: span 4;
  min-height: 390px;
  overflow: hidden;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014));
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
}

.feature-card::after {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(239, 41, 70, 0.09), transparent 68%);
}

.feature-large {
  display: grid;
  grid-column: span 8;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
}

.feature-human {
  grid-column: span 7;
}

.feature-reminders {
  grid-column: span 5;
}

.feature-control {
  grid-column: span 12;
  min-height: 280px;
  padding-right: 40%;
}

.feature-icon,
.flow-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 45px;
  border: 1px solid rgba(239, 41, 70, 0.2);
  border-radius: 13px;
  background: rgba(239, 41, 70, 0.09);
  color: var(--brand-light);
}

.feature-icon svg,
.flow-icon svg,
.structure-points svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-large .feature-icon {
  position: absolute;
  top: 31px;
  left: 31px;
}

.feature-large > div:nth-child(2) {
  align-self: end;
  padding-top: 90px;
}

.card-kicker {
  margin: 0 0 10px;
  color: var(--brand-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card h3,
.flow-list h3 {
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.feature-card > p:not(.card-kicker),
.feature-card > div > p:not(.card-kicker),
.flow-list p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.menu-demo {
  align-self: end;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #101218;
  transform: rotate(1.5deg) translateY(18px);
}

.menu-demo .demo-message {
  display: block;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 8px 8px 8px 2px;
  background: #21242d;
  color: #d3d4d9;
  font-size: 0.68rem;
}

.menu-demo div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 7px;
  padding: 9px;
  border: 1px solid rgba(239, 41, 70, 0.16);
  border-radius: 8px;
  color: #a8aab2;
  font-size: 0.65rem;
}

.menu-demo i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 6px;
  background: rgba(239, 41, 70, 0.12);
  color: var(--brand-light);
  font-style: normal;
  font-weight: 800;
}

.mini-calendar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin-top: 34px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: #111319;
  text-align: center;
}

.mini-calendar span {
  padding: 5px 0;
  color: #62656e;
  font-size: 0.48rem;
  font-weight: 800;
}

.mini-calendar i {
  padding: 7px 0;
  border-radius: 7px;
  color: #a9abb2;
  font-size: 0.62rem;
  font-style: normal;
}

.mini-calendar i.today {
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}

.handoff-demo {
  position: absolute;
  right: 31px;
  bottom: 31px;
  left: 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: #111319;
  color: #777a84;
  font-size: 0.62rem;
}

.handoff-demo strong {
  padding: 7px 10px;
  border-radius: 7px;
  background: rgba(239, 41, 70, 0.13);
  color: #f2b2bd;
}

.handoff-demo i {
  color: var(--brand-light);
  font-style: normal;
}

.reminder-demo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 13px;
  border: 1px solid rgba(69, 212, 131, 0.12);
  border-radius: 11px;
  background: rgba(69, 212, 131, 0.045);
}

.reminder-demo > i {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: rgba(69, 212, 131, 0.12);
  color: var(--green);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
}

.reminder-demo span {
  display: flex;
  flex-direction: column;
}

.reminder-demo strong {
  font-size: 0.67rem;
}

.reminder-demo small {
  color: #747781;
  font-size: 0.53rem;
}

.feature-control::before {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(239, 41, 70, 0.18);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
  box-shadow: 0 0 0 28px rgba(239, 41, 70, 0.035), 0 0 0 58px rgba(239, 41, 70, 0.018);
}

.flow-section {
  border-top: 1px solid var(--line-soft);
  background: #0c0e14;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 75px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  position: relative;
  min-height: 330px;
  padding: 42px;
  border: 1px solid var(--line);
  border-right: 0;
}

.flow-list li:first-child {
  border-radius: 20px 0 0 20px;
}

.flow-list li:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 20px 20px 0;
}

.flow-number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: rgba(255, 255, 255, 0.12);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.flow-icon {
  margin-bottom: 52px;
}

.flow-list p {
  margin: 15px 0 0;
}

.demo-section {
  overflow: hidden;
}

.demo-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 75px;
}

.demo-copy > p:not(.eyebrow) {
  margin: 25px 0 0;
  line-height: 1.8;
}

.demo-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.demo-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted-high);
  font-size: 0.88rem;
}

.demo-list span {
  color: var(--brand-light);
  font-size: 0.65rem;
  font-weight: 900;
}

.demo-download {
  margin-top: 30px;
}

.video-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #111319;
  box-shadow: var(--shadow);
}

.video-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line-soft);
}

.video-top > span {
  display: flex;
  gap: 5px;
}

.video-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #343640;
}

.video-top i:first-child {
  background: var(--brand);
}

.video-top small {
  color: #71737c;
  font-size: 0.59rem;
  font-weight: 700;
}

.video-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050609;
}

.structure-section {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--cream);
  color: var(--ink);
}

.structure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 95px;
}

.structure-copy .eyebrow,
.structure-copy > p {
  color: #60616a;
}

.structure-points {
  display: grid;
  gap: 19px;
  margin-top: 35px;
}

.structure-points > div {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.structure-points svg {
  width: 22px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--brand);
}

.structure-points span {
  display: flex;
  flex-direction: column;
}

.structure-points strong {
  font-size: 0.9rem;
}

.structure-points small {
  margin-top: 2px;
  color: #777880;
  font-size: 0.75rem;
}

.structure-visual {
  position: relative;
  min-height: 520px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(17, 18, 25, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 340px;
  height: 340px;
}

.orbit-two {
  width: 500px;
  height: 500px;
}

.server-node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px solid rgba(17, 18, 25, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 35px rgba(25, 23, 23, 0.1);
  color: #292a30;
  font-size: 0.73rem;
  font-weight: 700;
}

.server-node i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.main-node {
  top: 50%;
  left: 50%;
  width: 145px;
  min-height: 145px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  transform: translate(-50%, -50%);
  border-radius: 27px;
}

.main-node img {
  width: 50px;
}

.main-node span {
  font-size: 0.95rem;
}

.main-node small {
  color: #898a90;
  font-size: 0.57rem;
  font-weight: 600;
}

.node-one { top: 11%; left: 8%; }
.node-two { top: 28%; right: 0; }
.node-three { right: 9%; bottom: 9%; }

.audience-section {
  padding-bottom: 60px;
}

.audience-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 80px;
  padding: 68px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #151821, #0d0f15);
}

.audience-card h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.audience-card p {
  max-width: 600px;
  margin: 24px 0 0;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
}

.audience-tags span {
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted-high);
  font-size: 0.76rem;
  font-weight: 650;
}

.faq-section {
  padding-top: 80px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.faq-grid h2 {
  font-size: clamp(2.6rem, 4.4vw, 4.2rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand-light);
  font-size: 1rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list p {
  margin: -5px 45px 25px 0;
  font-size: 0.92rem;
  line-height: 1.75;
}

.final-cta {
  padding-top: 50px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 90px 70px;
  border-radius: var(--radius-lg);
  background: var(--brand);
  text-align: center;
}

.cta-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 45px 45px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.cta-glow {
  position: absolute;
  top: -270px;
  left: 50%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 63%);
  transform: translateX(-50%);
}

.cta-card > *:not(.cta-glow) {
  position: relative;
  z-index: 2;
}

.cta-card .eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
}

.cta-card .eyebrow span {
  background: #fff;
}

.cta-card h2 {
  max-width: 800px;
  margin-inline: auto;
}

.cta-card p {
  max-width: 610px;
  margin: 23px auto 30px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
}

.button-cta-download {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(116, 0, 20, 0.16);
  color: #fff;
}

.button-cta-download:hover {
  border-color: #fff;
  background: rgba(116, 0, 20, 0.28);
}

.floating-contact {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  background: #25d366;
  box-shadow: 0 17px 45px rgba(0, 0, 0, 0.36), 0 8px 28px rgba(37, 211, 102, 0.22);
  color: #07150c;
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-contact:hover {
  transform: translateY(-3px);
  background: #46e680;
}

.floating-contact svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  padding: 20px 0 35px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: center;
  gap: 30px;
  min-height: 120px;
}

.footer-main > p {
  color: var(--muted);
  font-size: 0.79rem;
  text-align: center;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  color: #6d707a;
  font-size: 0.66rem;
}

.footer-bottom p {
  margin: 0;
}

.disclaimer {
  max-width: 570px;
  text-align: right;
}

.footer-legal {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 7px;
}

.footer-legal button,
.privacy-index button,
.inline-preference {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--muted-high);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 650;
}

.footer-legal button:hover,
.privacy-index button:hover,
.inline-preference:hover {
  border-color: var(--brand-light);
  color: #fff;
}

.consent-banner {
  position: fixed;
  z-index: 300;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  width: min(calc(100% - 36px), 1020px);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
  padding: 23px 25px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(20, 22, 30, 0.97);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(239, 41, 70, 0.05);
  backdrop-filter: blur(18px);
}

.consent-banner[hidden] {
  display: none;
}

.consent-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.consent-copy p {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.65;
}

.consent-copy a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-underline-offset: 3px;
}

.consent-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.consent-actions .button {
  min-height: 44px;
  padding-inline: 17px;
  border-radius: 11px;
  font-size: 0.78rem;
}

.consent-reject {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.consent-reject:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.consent-accept {
  border-color: var(--brand-light);
  background: linear-gradient(135deg, var(--brand), #bf0d2b);
  color: #fff;
  box-shadow: 0 12px 28px rgba(239, 41, 70, 0.25);
}

.consent-accept:hover {
  border-color: #ff7b8e;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-dark));
}

.consent-visible .floating-contact {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.privacy-header .privacy-back {
  margin-left: auto;
}

.privacy-main {
  min-height: 75vh;
  padding: 160px 0 100px;
  background:
    radial-gradient(circle at 85% 4%, rgba(239, 41, 70, 0.11), transparent 28%),
    var(--bg);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 780px);
  justify-content: center;
  gap: 90px;
}

.privacy-index {
  position: sticky;
  top: 120px;
  display: flex;
  height: fit-content;
  flex-direction: column;
  gap: 11px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.privacy-index p {
  margin: 0 0 6px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-index a {
  color: var(--muted);
  font-size: 0.75rem;
  transition: color 0.2s ease;
}

.privacy-index a:hover {
  color: #fff;
}

.privacy-index button {
  width: fit-content;
  margin-top: 9px;
}

.privacy-article h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.2rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.privacy-updated {
  margin: 20px 0 35px;
  color: #777a84;
  font-size: 0.72rem;
}

.privacy-article > p:not(.eyebrow),
.privacy-article section p,
.privacy-article li {
  color: var(--muted-high);
  font-size: 0.94rem;
  line-height: 1.82;
}

.privacy-article section {
  padding-top: 42px;
  scroll-margin-top: 105px;
}

.privacy-article section h2 {
  margin: 0 0 17px;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.privacy-article a {
  color: #fff;
  font-weight: 680;
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-underline-offset: 3px;
}

.privacy-article ul {
  padding-left: 22px;
}

.privacy-table-wrap {
  margin: 24px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.privacy-article table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.75rem;
}

.privacy-article th,
.privacy-article td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted-high);
  text-align: left;
  vertical-align: top;
}

.privacy-article th {
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.privacy-article tbody tr:last-child td {
  border-bottom: 0;
}

.privacy-article code {
  color: var(--brand-light);
}

.privacy-article .inline-preference {
  color: #fff;
  font-size: inherit;
  text-decoration: none;
}

.privacy-footer {
  padding-top: 0;
}

.privacy-footer a {
  color: var(--muted-high);
  font-weight: 650;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.js [data-reveal][data-reveal-delay="1"] {
  transition-delay: 0.1s;
}

.js [data-reveal][data-reveal-delay="2"] {
  transition-delay: 0.2s;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 70% 20%, rgba(239, 41, 70, 0.15), transparent 35%),
    var(--bg);
}

.error-card {
  max-width: 620px;
  padding: 45px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.error-card .brand {
  margin-bottom: 60px;
}

.error-card h1 {
  font-size: clamp(2.7rem, 7vw, 4.8rem);
}

.error-card > p:not(.eyebrow) {
  margin: 22px 0 30px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .hero {
    padding-top: 150px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-product {
    width: min(100%, 780px);
    margin-inline: auto;
  }

  .feature-large {
    grid-column: span 12;
  }

  .feature-agenda,
  .feature-human,
  .feature-reminders {
    grid-column: span 6;
  }

  .feature-control {
    grid-column: span 6;
    padding-right: 31px;
  }

  .feature-control::before {
    display: none;
  }

  .demo-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .demo-copy {
    max-width: 680px;
  }

  .structure-grid {
    gap: 45px;
  }

  .audience-card {
    gap: 45px;
    padding: 50px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 88px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 98;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 25px 20px;
    background: rgba(9, 10, 15, 0.98);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 18px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 135px 0 110px;
  }

  .hero-grid {
    gap: 65px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 12vw, 5.2rem);
  }

  .hero-product {
    transform: none;
  }

  .floating-message {
    right: -8px;
  }

  .floating-agenda {
    left: 20px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-grid > div,
  .value-grid > div:first-child {
    min-height: 100px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .value-grid > div:last-child {
    border-bottom: 0;
  }

  .intro-grid,
  .structure-grid,
  .audience-card {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 35px;
  }

  .feature-agenda,
  .feature-human,
  .feature-reminders,
  .feature-control {
    grid-column: span 12;
  }

  .flow-list {
    grid-template-columns: 1fr;
  }

  .flow-list li {
    min-height: 270px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .flow-list li:first-child {
    border-radius: 20px 20px 0 0;
  }

  .flow-list li:last-child {
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 20px 20px;
  }

  .structure-visual {
    min-height: 480px;
    order: 2;
  }

  .structure-copy {
    order: 1;
  }

  .audience-card {
    padding: 42px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 45px 0;
    text-align: center;
  }

  .footer-legal {
    align-items: center;
  }

  .disclaimer {
    text-align: center;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .privacy-index {
    position: static;
    display: none;
  }

  .footer-main .brand,
  .site-footer nav {
    justify-content: center;
  }

  .footer-main > p {
    margin: 0;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.2rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-demo-link {
    width: 100%;
    justify-content: center;
  }

  .hero-checks {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-window {
    border-radius: 14px;
  }

  .product-body {
    grid-template-columns: 28px 1fr;
    min-height: 335px;
  }

  .product-content {
    padding: 12px;
  }

  .product-sidebar {
    gap: 15px;
  }

  .mini-brand {
    width: 18px;
    height: 18px;
    font-size: 0.5rem;
  }

  .product-sidebar i {
    width: 11px;
    height: 11px;
  }

  .metric-row > div:nth-child(3),
  .agenda-panel {
    display: none;
  }

  .metric-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-panels {
    grid-template-columns: 1fr;
  }

  .conversation-panel {
    min-height: 180px;
  }

  .floating-card {
    display: none;
  }

  .section h2 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .feature-card,
  .feature-large {
    display: block;
    min-height: 0;
    padding: 25px;
  }

  .feature-large .feature-icon {
    position: static;
  }

  .feature-large > div:nth-child(2) {
    padding-top: 0;
  }

  .feature-icon {
    margin-bottom: 35px;
  }

  .menu-demo {
    margin-top: 30px;
    transform: none;
  }

  .handoff-demo {
    position: static;
    margin-top: 30px;
  }

  .handoff-demo span:last-child,
  .handoff-demo i:last-of-type {
    display: none;
  }

  .flow-list {
    margin-top: 45px;
  }

  .flow-list li {
    padding: 32px 25px;
  }

  .video-top {
    min-height: 38px;
  }

  .structure-visual {
    min-height: 370px;
    transform: scale(0.86);
  }

  .orbit-one {
    width: 260px;
    height: 260px;
  }

  .orbit-two {
    width: 360px;
    height: 360px;
  }

  .node-one { left: 0; }
  .node-two { right: -7%; }
  .node-three { right: 0; }

  .audience-card {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .cta-card {
    padding: 65px 24px;
    border-radius: 22px;
  }

  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-actions .button {
    width: 100%;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .floating-contact span {
    display: none;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .disclaimer {
    text-align: center;
  }

  .consent-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 20px;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .privacy-main {
    padding: 125px 0 70px;
  }

  .privacy-article h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .privacy-header .brand img {
    width: 38px;
  }

  .privacy-back {
    min-height: 40px;
    padding-inline: 13px;
  }

  .error-card {
    padding: 30px 24px;
  }
}

@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;
  }
}
