:root {
  --ink: #19313a;
  --muted: #6a7a80;
  --paper: #f7fcff;
  --white: #ffffff;
  --blue: #74c7f3;
  --blue-soft: #e5f6ff;
  --aqua: #5fd3c3;
  --aqua-soft: #dff8f2;
  --yellow: #ffe49a;
  --yellow-soft: #fff7d8;
  --coral: #ff775d;
  --coral-dark: #dd563d;
  --line: rgba(25, 49, 58, 0.1);
  --shadow: 0 24px 70px rgba(34, 92, 115, 0.16);
  --soft-shadow: 0 16px 38px rgba(34, 92, 115, 0.1);
  font-family: "Nunito", "Inter", ui-rounded, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  background:
    linear-gradient(128deg, rgba(255, 228, 154, 0.52) 0 14%, transparent 14% 100%),
    linear-gradient(232deg, rgba(95, 211, 195, 0.42) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, #eaf9ff 0%, #f4fff8 32%, #fff7d2 64%, #eefbff 100%);
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

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

.motion-bg {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.paw,
.cat-paw,
.bone,
.heart {
  opacity: 0.26;
  position: absolute;
}

.paw {
  animation: pawFloat 14s linear infinite;
  height: 34px;
  width: 34px;
}

.paw::before,
.paw::after {
  background: var(--paw-color, var(--aqua));
  border-radius: 50%;
  content: "";
  position: absolute;
}

.paw::before {
  box-shadow: 12px -10px 0 var(--paw-color, var(--aqua)), 24px 0 0 var(--paw-color, var(--aqua));
  height: 10px;
  left: 0;
  top: 8px;
  width: 10px;
}

.paw::after {
  border-radius: 55% 55% 48% 48%;
  height: 16px;
  left: 9px;
  top: 17px;
  width: 18px;
}

.paw-one {
  left: 8%;
  top: 76%;
}

.paw-two {
  animation-delay: -5s;
  left: 75%;
  top: 68%;
}

.paw-three {
  animation-delay: -9s;
  left: 42%;
  top: 82%;
}

.paw-four {
  --paw-color: var(--coral);
  animation-delay: -11s;
  left: 62%;
  top: 88%;
  transform: scale(0.8);
}

.cat-paw {
  --cat-paw-color: var(--yellow);
  animation: catStep 16s ease-in-out infinite;
  height: 32px;
  width: 32px;
}

.cat-paw::before,
.cat-paw::after {
  background: var(--cat-paw-color);
  content: "";
  position: absolute;
}

.cat-paw::before {
  border-radius: 50%;
  box-shadow: 10px -8px 0 var(--cat-paw-color), 20px 0 0 var(--cat-paw-color), 5px 10px 0 var(--cat-paw-color);
  height: 8px;
  left: 1px;
  top: 5px;
  width: 8px;
}

.cat-paw::after {
  border-radius: 60% 60% 46% 46%;
  height: 13px;
  left: 10px;
  top: 17px;
  width: 14px;
}

.cat-paw-one {
  left: 18%;
  top: 32%;
}

.cat-paw-two {
  --cat-paw-color: var(--blue);
  animation-delay: -7s;
  right: 11%;
  top: 58%;
}

.bone {
  animation: softDrift 12s ease-in-out infinite;
  border-bottom: 10px solid var(--yellow);
  border-top: 10px solid var(--yellow);
  height: 22px;
  left: 88%;
  top: 24%;
  width: 54px;
}

.bone::before,
.bone::after {
  background: var(--yellow);
  border-radius: 50%;
  content: "";
  height: 24px;
  position: absolute;
  top: -11px;
  width: 24px;
}

.bone::before {
  box-shadow: 0 20px 0 var(--yellow);
  left: -12px;
}

.bone::after {
  box-shadow: 0 20px 0 var(--yellow);
  right: -12px;
}

.heart {
  animation: softDrift 10s ease-in-out infinite reverse;
  background: var(--coral);
  height: 22px;
  left: 7%;
  top: 18%;
  transform: rotate(45deg);
  width: 22px;
}

.heart::before,
.heart::after {
  background: var(--coral);
  border-radius: 50%;
  content: "";
  height: 22px;
  position: absolute;
  width: 22px;
}

.heart::before {
  left: -11px;
  top: 0;
}

.heart::after {
  left: 0;
  top: -11px;
}

.site-header {
  align-items: center;
  color: var(--ink);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 20px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled,
.site-header.is-open {
  background:
    linear-gradient(90deg, rgba(255, 247, 216, 0.9), rgba(229, 246, 255, 0.92), rgba(223, 248, 242, 0.9));
  box-shadow: 0 14px 42px rgba(34, 92, 115, 0.11);
  padding-bottom: 14px;
  padding-top: 14px;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 950;
  gap: 10px;
  letter-spacing: 0;
  position: relative;
  z-index: 22;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--aqua), var(--blue));
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(95, 211, 195, 0.32);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.mini-paw {
  height: 22px;
  position: relative;
  width: 22px;
}

.mini-paw::before,
.mini-paw::after {
  background: var(--white);
  content: "";
  position: absolute;
}

.mini-paw::before {
  border-radius: 50%;
  box-shadow: 7px -5px 0 var(--white), 14px 0 0 var(--white);
  height: 6px;
  left: 0;
  top: 5px;
  width: 6px;
}

.mini-paw::after {
  border-radius: 55% 55% 46% 46%;
  height: 11px;
  left: 6px;
  top: 12px;
  width: 12px;
}

.main-nav {
  align-items: center;
  display: flex;
  font-size: 0.92rem;
  font-weight: 850;
  gap: clamp(12px, 2vw, 28px);
}

.main-nav a {
  border-radius: 8px;
  padding: 10px 0;
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  color: var(--coral-dark);
  transform: translateY(-1px);
}

.main-nav .nav-cta {
  background: var(--ink);
  color: var(--white);
  padding: 11px 16px;
}

.nav-toggle {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: none;
  height: 44px;
  padding: 0;
  position: relative;
  width: 44px;
  z-index: 22;
}

.nav-toggle span {
  background: var(--ink);
  border-radius: 999px;
  display: block;
  height: 2px;
  margin: 6px auto;
  transition: transform 180ms ease;
  width: 20px;
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.section-frame,
.section {
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
  scroll-margin-top: 96px;
}

.hero {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 247, 216, 0.9) 0%, rgba(223, 248, 242, 0.72) 52%, rgba(229, 246, 255, 0.88) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  min-height: 100svh;
  overflow: hidden;
  padding-top: 104px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(135deg, rgba(255, 119, 93, 0.18), transparent 32%),
    linear-gradient(315deg, rgba(116, 199, 243, 0.26), transparent 34%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.hero::after {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0 12px, transparent 12px 42px);
  content: "";
  inset: auto 0 0;
  height: 22%;
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.hero-copy-panel,
.hero-side,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy-panel {
  max-width: 710px;
  padding-bottom: 42px;
}

.hero-copy-panel::before {
  background:
    radial-gradient(circle at 20% 36%, rgba(255, 119, 93, 0.34) 0 6px, transparent 7px),
    radial-gradient(circle at 45% 22%, rgba(255, 119, 93, 0.34) 0 6px, transparent 7px),
    radial-gradient(circle at 70% 36%, rgba(255, 119, 93, 0.34) 0 6px, transparent 7px),
    radial-gradient(ellipse at 50% 72%, rgba(255, 119, 93, 0.34) 0 13px, transparent 14px);
  content: "";
  height: 64px;
  opacity: 0.7;
  pointer-events: none;
  position: absolute;
  right: 8%;
  top: 12%;
  transform: rotate(-12deg);
  width: 64px;
}

.eyebrow {
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3rem, 6vw, 6.6rem);
  line-height: 0.94;
  margin-bottom: 24px;
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  margin-bottom: 0;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.18;
  margin-bottom: 10px;
}

.hero-copy,
.lead {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 52px;
  overflow: hidden;
  padding: 15px 22px;
  position: relative;
  transition: transform 220ms cubic-bezier(0.2, 1.4, 0.3, 1), box-shadow 220ms ease, background 220ms ease;
  white-space: nowrap;
}

.button::after {
  background: rgba(255, 255, 255, 0.34);
  content: "";
  inset: 0 auto 0 -80%;
  position: absolute;
  transform: skewX(-18deg);
  transition: left 380ms ease;
  width: 42%;
}

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

.button:hover::after {
  left: 130%;
}

.button-primary {
  background: var(--coral);
  box-shadow: 0 18px 36px rgba(255, 119, 93, 0.28);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line), 0 16px 34px rgba(34, 92, 115, 0.1);
  color: var(--ink);
}

.button-whatsapp {
  background: #24c466;
  box-shadow: 0 18px 36px rgba(36, 196, 102, 0.24);
  color: var(--white);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(34, 92, 115, 0.07);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
  padding: 9px 12px;
}

.hero-side {
  align-self: start;
  display: grid;
  gap: 18px;
  min-width: 0;
  padding-top: 6px;
}

.hero-visual {
  animation: heroFloat 6s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-width: 0;
  padding: clamp(10px, 1.5vw, 18px);
  position: relative;
  translate: 0 var(--parallax-y, 0);
  transform-style: preserve-3d;
}

.hero-visual img {
  border-radius: 8px;
  width: 100%;
}

.rating-bubble {
  align-items: center;
  animation: bubbleFloat 5s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 2px;
  min-width: 184px;
  padding: 14px 16px;
  position: absolute;
  backdrop-filter: blur(14px);
}

.rating-bubble span {
  color: var(--coral-dark);
  font-size: 1.48rem;
  font-weight: 950;
  line-height: 1;
}

.rating-bubble strong {
  font-size: 0.84rem;
}

.bubble-top {
  right: -18px;
  top: 12%;
}

.bubble-bottom {
  animation-delay: -2.5s;
  bottom: 10%;
  left: -24px;
}

.stats-strip {
  background: linear-gradient(135deg, rgba(255, 247, 216, 0.92), rgba(223, 248, 242, 0.9), rgba(229, 246, 255, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: -42px auto 0;
  max-width: 1060px;
  overflow: hidden;
  position: relative;
  z-index: 3;
  backdrop-filter: blur(18px);
}

.stats-strip article {
  background: rgba(255, 255, 255, 0.5);
  padding: 28px;
  text-align: center;
}

.stats-strip strong {
  color: var(--ink);
  display: block;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

.stats-strip span {
  color: var(--muted);
  font-weight: 850;
}

.platform-preview-section {
  background:
    linear-gradient(118deg, rgba(95, 211, 195, 0.42) 0 24%, transparent 24% 100%),
    linear-gradient(246deg, rgba(255, 228, 154, 0.58) 0 20%, transparent 20% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(229, 246, 255, 0.82));
  overflow: hidden;
  position: relative;
}

.platform-preview-section::before {
  background:
    radial-gradient(ellipse at 20% 32%, rgba(116, 199, 243, 0.28) 0 5px, transparent 6px),
    radial-gradient(ellipse at 44% 20%, rgba(116, 199, 243, 0.28) 0 5px, transparent 6px),
    radial-gradient(ellipse at 68% 32%, rgba(116, 199, 243, 0.28) 0 5px, transparent 6px),
    radial-gradient(ellipse at 50% 70%, rgba(116, 199, 243, 0.28) 0 12px, transparent 13px);
  content: "";
  height: 68px;
  left: clamp(18px, 6vw, 88px);
  pointer-events: none;
  position: absolute;
  top: 58px;
  transform: rotate(10deg);
  width: 68px;
}

.platform-preview-section .section-inner {
  position: relative;
  z-index: 1;
}

.platform-preview-layout {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  margin-bottom: 28px;
}

.platform-preview-copy h2 {
  max-width: 820px;
}

.platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.platform-demo {
  background:
    linear-gradient(135deg, rgba(25, 49, 58, 0.96), rgba(16, 78, 84, 0.94)),
    radial-gradient(circle at 18% 18%, rgba(255, 228, 154, 0.38), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--white);
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: clamp(20px, 3vw, 30px);
  position: relative;
}

.platform-demo::after {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  content: "";
  height: 1px;
  left: 20px;
  position: absolute;
  right: 20px;
  top: 76px;
}

.demo-topbar {
  align-items: center;
  display: grid;
  gap: 14px;
  grid-template-columns: auto minmax(0, 1fr);
}

.demo-topbar strong,
.demo-topbar small {
  display: block;
}

.demo-topbar small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
  margin-top: 2px;
}

.demo-logo {
  align-items: center;
  background: linear-gradient(135deg, var(--yellow), var(--coral));
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  font-weight: 950;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.role-tabs {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 6px;
}

.role-tabs button {
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 950;
  min-height: 40px;
  padding: 8px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.role-tabs button:hover,
.role-tabs button.is-active {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-1px);
}

.demo-metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.demo-metrics article {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 14px;
}

.demo-metrics span {
  color: var(--yellow);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  font-weight: 950;
  line-height: 1;
  overflow-wrap: anywhere;
}

.demo-metrics small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
}

.demo-panel {
  background:
    radial-gradient(circle at 96% 0%, rgba(255, 228, 154, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 18px;
}

.demo-panel h3 {
  color: var(--white);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  margin-bottom: 0;
}

.demo-panel p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.demo-status {
  background: var(--aqua);
  border-radius: 999px;
  color: #073f3c;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 950;
  justify-self: start;
  padding: 7px 10px;
}

.demo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.demo-tags span {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 10px;
}

.module-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.module-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 22px;
  position: relative;
  transition: box-shadow 220ms ease, transform 220ms ease;
  backdrop-filter: blur(18px);
}

.module-card::before {
  background: var(--accent, var(--aqua));
  border-radius: 999px;
  content: "";
  height: 8px;
  left: 18px;
  position: absolute;
  right: 18px;
  top: 0;
}

.module-card:nth-child(6n + 1) { --accent: var(--aqua); }
.module-card:nth-child(6n + 2) { --accent: var(--blue); }
.module-card:nth-child(6n + 3) { --accent: var(--coral); }
.module-card:nth-child(6n + 4) { --accent: var(--yellow); }
.module-card:nth-child(6n + 5) { --accent: var(--aqua); }
.module-card:nth-child(6n + 6) { --accent: var(--blue); }

.module-card:nth-child(6n + 1) { background: linear-gradient(180deg, rgba(223, 248, 242, 0.86), rgba(255, 255, 255, 0.74)); }
.module-card:nth-child(6n + 2) { background: linear-gradient(180deg, rgba(229, 246, 255, 0.9), rgba(255, 255, 255, 0.74)); }
.module-card:nth-child(6n + 3) { background: linear-gradient(180deg, rgba(255, 229, 224, 0.86), rgba(255, 255, 255, 0.74)); }
.module-card:nth-child(6n + 4) { background: linear-gradient(180deg, rgba(255, 247, 216, 0.92), rgba(255, 255, 255, 0.74)); }
.module-card:nth-child(6n + 5) { background: linear-gradient(180deg, rgba(223, 248, 242, 0.86), rgba(255, 255, 255, 0.74)); }
.module-card:nth-child(6n + 6) { background: linear-gradient(180deg, rgba(229, 246, 255, 0.9), rgba(255, 255, 255, 0.74)); }

.module-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.module-card strong {
  font-size: 1.08rem;
}

.module-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.module-icon {
  align-items: center;
  background: linear-gradient(135deg, var(--aqua-soft), var(--blue-soft));
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  display: inline-flex;
  height: 50px;
  justify-content: center;
  width: 50px;
}

.module-icon,
.shape-icon,
.service-icon {
  overflow: hidden;
}

.module-icon::before {
  content: none;
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 950;
}

.section {
  padding-bottom: clamp(84px, 10vw, 140px);
  padding-top: clamp(84px, 10vw, 140px);
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.section-heading {
  margin-bottom: 44px;
  max-width: 830px;
}

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

.problem-section {
  background:
    linear-gradient(116deg, rgba(255, 119, 93, 0.16) 0 22%, transparent 22% 100%),
    linear-gradient(180deg, rgba(229, 246, 255, 0.5), rgba(255, 247, 216, 0.7));
}

.solution-section {
  background:
    linear-gradient(242deg, rgba(95, 211, 195, 0.34) 0 24%, transparent 24% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(244, 255, 248, 0.78));
}

.services-section {
  background:
    linear-gradient(128deg, rgba(116, 199, 243, 0.34) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, rgba(255, 247, 216, 0.72), rgba(255, 255, 255, 0.44));
}

.pain-grid,
.feature-grid,
.service-grid,
.trust-grid {
  display: grid;
  gap: 18px;
}

.pain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.glass-card,
.feature-card,
.service-card,
.journey-step,
.pro-card,
.trust-card,
.testimonial-card,
.waitlist-form {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  min-width: 0;
  backdrop-filter: blur(18px);
}

.glass-card:nth-child(3n + 1),
.feature-card:nth-child(3n + 1),
.service-card:nth-child(4n + 1) {
  background: linear-gradient(180deg, rgba(223, 248, 242, 0.88), rgba(255, 255, 255, 0.76));
}

.glass-card:nth-child(3n + 2),
.feature-card:nth-child(3n + 2),
.service-card:nth-child(4n + 2) {
  background: linear-gradient(180deg, rgba(229, 246, 255, 0.9), rgba(255, 255, 255, 0.76));
}

.glass-card:nth-child(3n + 3),
.feature-card:nth-child(3n + 3),
.service-card:nth-child(4n + 3) {
  background: linear-gradient(180deg, rgba(255, 247, 216, 0.92), rgba(255, 255, 255, 0.76));
}

.service-card:nth-child(4n + 4) {
  background: linear-gradient(180deg, rgba(255, 229, 224, 0.86), rgba(255, 255, 255, 0.76));
}

.glass-card,
.feature-card {
  padding: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.glass-card:hover,
.feature-card:hover,
.service-card:hover,
.trust-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.glass-card p,
.feature-card p,
.journey-step p,
.pro-card p,
.testimonial-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.shape-icon,
.service-icon,
.avatar,
.profile-avatar {
  align-items: center;
  background: linear-gradient(135deg, var(--aqua-soft), var(--blue-soft));
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  display: inline-flex;
  height: 54px;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  width: 54px;
}

.shape-icon::before,
.service-icon::before {
  content: none;
  color: var(--coral-dark);
  font-size: 1.2rem;
  font-weight: 950;
}

.service-card {
  align-content: center;
  display: grid;
  min-height: 164px;
  padding: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card h3 {
  margin-bottom: 0;
}

.journey-section {
  background:
    linear-gradient(116deg, rgba(255, 228, 154, 0.48) 0 26%, transparent 26% 100%),
    linear-gradient(180deg, rgba(223, 248, 242, 0.78), rgba(229, 246, 255, 0.6));
  overflow: hidden;
  position: relative;
}

.journey-section .section-inner {
  position: relative;
}

.journey-line {
  background: linear-gradient(90deg, var(--blue), var(--aqua), var(--yellow));
  border-radius: 999px;
  height: 4px;
  left: 10%;
  position: absolute;
  right: 10%;
  top: 58%;
  transform-origin: left center;
}

.journey-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.journey-step {
  padding: 30px;
  text-align: center;
}

.journey-step span {
  align-items: center;
  background: var(--coral);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(255, 119, 93, 0.26);
  color: var(--white);
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 950;
  height: 48px;
  justify-content: center;
  margin-bottom: 22px;
  width: 48px;
}

.pro-section {
  background:
    linear-gradient(135deg, #19313a 0%, #0f5960 58%, #19313a 100%);
  color: var(--white);
}

.pro-section .eyebrow {
  color: var(--yellow);
}

.pro-section .lead {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 30px;
}

.pro-layout,
.cta-layout,
.testimonials-layout {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 88px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
}

.pro-card {
  color: var(--ink);
  padding: 30px;
}

.profile-top {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.profile-avatar {
  background: linear-gradient(135deg, var(--coral), var(--yellow));
  margin: 0;
}

.profile-avatar::before {
  background: var(--white);
  border-radius: 50%;
  box-shadow: 9px -6px 0 var(--white), 18px 0 0 var(--white);
  content: "";
  height: 8px;
  left: 13px;
  position: absolute;
  top: 16px;
  width: 8px;
}

.profile-avatar::after {
  background: var(--white);
  border-radius: 55% 55% 46% 46%;
  content: "";
  height: 14px;
  left: 21px;
  position: absolute;
  top: 29px;
  width: 16px;
}

.profile-top p {
  margin: 3px 0 0;
}

.progress-list {
  display: grid;
  gap: 18px;
}

.progress-list span {
  color: var(--muted);
  display: grid;
  font-weight: 850;
  gap: 8px;
}

.progress-list span::after {
  background:
    linear-gradient(90deg, var(--aqua) 0 var(--value), rgba(25, 49, 58, 0.1) var(--value) 100%);
  border-radius: 999px;
  content: "";
  display: block;
  height: 10px;
  overflow: hidden;
}

.trust-section {
  background:
    linear-gradient(244deg, rgba(255, 119, 93, 0.16) 0 20%, transparent 20% 100%),
    linear-gradient(180deg, rgba(255, 247, 216, 0.78), rgba(223, 248, 242, 0.58));
}

.trust-card {
  display: grid;
  gap: 10px;
  min-height: 172px;
  padding: 22px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.trust-card strong {
  font-size: 1rem;
}

.trust-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonials-section {
  background:
    linear-gradient(128deg, rgba(229, 246, 255, 0.7) 0 24%, transparent 24% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 247, 216, 0.5));
}

.proof-wall-section {
  background:
    linear-gradient(118deg, rgba(255, 228, 154, 0.42) 0 22%, transparent 22% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(229, 246, 255, 0.82));
  overflow: hidden;
}

.proof-wall-layout {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.16fr);
}

.proof-wall-copy .lead {
  margin-top: 22px;
}

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

.mosaic-tile {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  display: grid;
  min-height: 154px;
  overflow: hidden;
  padding: 22px;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.mosaic-tile::after {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 7px, transparent 8px),
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 0 4px, transparent 5px);
  background-position: 0 0, 25px 24px;
  background-size: 46px 46px;
  content: "";
  inset: auto -20px -24px auto;
  height: 100px;
  opacity: 0.42;
  position: absolute;
  transform: rotate(-12deg);
  width: 150px;
}

.mosaic-tile:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px) rotate(-0.4deg);
}

.mosaic-tile span {
  font-size: 0.78rem;
  font-weight: 950;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.mosaic-tile strong {
  align-self: end;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1.02;
  position: relative;
  z-index: 1;
}

.tile-large {
  grid-column: span 2;
  min-height: 214px;
}

.tile-wide {
  grid-column: span 2;
}

.tile-aqua {
  background: var(--aqua);
  color: #073f3c;
}

.tile-yellow {
  background: var(--yellow);
  color: #5b4210;
}

.tile-coral {
  background: var(--coral);
  color: var(--white);
}

.tile-white {
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
}

.tile-blue {
  background: var(--blue);
  color: #07344a;
}

.testimonial-shell {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: clamp(28px, 5vw, 42px);
}

.testimonial-card p {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.36;
  margin-bottom: 22px;
}

.avatar {
  background: linear-gradient(135deg, var(--blue-soft), var(--aqua-soft));
  margin-bottom: 24px;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.testimonial-dots button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.testimonial-dots button::before {
  background: rgba(25, 49, 58, 0.18);
  border-radius: 999px;
  content: "";
  display: block;
  height: 10px;
  transition: background 180ms ease, width 180ms ease;
  width: 10px;
}

.testimonial-dots button.is-active::before {
  background: var(--coral);
  width: 32px;
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(116, 199, 243, 0.56), rgba(95, 211, 195, 0.42) 48%, rgba(255, 228, 154, 0.6));
}

.access-form {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 228, 154, 0.28), transparent 36%),
    linear-gradient(135deg, rgba(25, 49, 58, 0.96), rgba(16, 89, 96, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--white);
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2.4vw, 26px);
  backdrop-filter: blur(18px);
}

.access-form label {
  color: rgba(255, 255, 255, 0.78);
}

.access-form input,
.access-form select {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.access-form .form-message {
  color: var(--yellow);
}

.login-modal[hidden] {
  display: none;
}

.login-modal {
  align-items: center;
  display: grid;
  inset: 0;
  justify-items: center;
  padding: clamp(18px, 4vw, 44px);
  position: fixed;
  z-index: 80;
}

.login-modal-backdrop {
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 228, 154, 0.22), transparent 30%),
    rgba(7, 31, 39, 0.72);
  border: 0;
  cursor: pointer;
  inset: 0;
  position: absolute;
  width: 100%;
  backdrop-filter: blur(12px);
}

.login-dialog {
  max-width: 520px;
  outline: 0;
  position: relative;
  width: min(100%, 520px);
  z-index: 1;
}

.modal-access-form {
  animation: modalRise 220ms ease both;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.modal-access-form h2 {
  color: var(--white);
  font-size: clamp(1.85rem, 4vw, 2.8rem);
  margin-bottom: 10px;
}

.modal-access-form p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
  margin-bottom: 0;
}

.login-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  color: var(--ink);
  display: inline-flex;
  font-size: 1.4rem;
  font-weight: 950;
  height: 42px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: -10px;
  top: -10px;
  width: 42px;
  z-index: 2;
}

.waitlist-form {
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
}

.waitlist-form h3 {
  margin-bottom: 4px;
}

label {
  color: var(--muted);
  display: grid;
  font-size: 0.88rem;
  font-weight: 900;
  gap: 8px;
}

input,
select {
  background: rgba(247, 252, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 52px;
  padding: 12px 14px;
  width: 100%;
}

input:focus,
select:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(95, 211, 195, 0.18);
  outline: 0;
}

.waitlist-form .button {
  width: 100%;
}

.form-message {
  color: var(--coral-dark);
  font-weight: 900;
  margin: 0;
  min-height: 24px;
}

.mobile-whatsapp {
  background: #24c466;
  border-radius: 8px;
  bottom: 14px;
  box-shadow: 0 16px 34px rgba(36, 196, 102, 0.28);
  color: var(--white);
  display: none;
  font-weight: 950;
  left: 14px;
  min-height: 52px;
  padding: 15px 18px;
  position: fixed;
  right: 14px;
  text-align: center;
  z-index: 19;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr;
  padding: 34px clamp(18px, 4vw, 56px);
}

.footer-brand {
  color: var(--white);
}

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

.site-footer nav a {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
}

.site-footer a:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right {
  transform: translate3d(42px, 18px, 0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes heroFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-0.3deg); }
  50% { transform: translate3d(0, -14px, 0) rotate(0.5deg); }
}

@keyframes bubbleFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}

@keyframes pawFloat {
  0% { transform: translate3d(0, 50px, 0) rotate(-12deg); opacity: 0; }
  20% { opacity: 0.22; }
  100% { transform: translate3d(36px, -110vh, 0) rotate(18deg); opacity: 0; }
}

@keyframes catStep {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg); }
  50% { transform: translate3d(14px, -18px, 0) rotate(7deg); }
}

@keyframes softDrift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(8deg); }
  50% { transform: translate3d(12px, -18px, 0) rotate(-4deg); }
}

@keyframes modalRise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

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

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

@media (max-width: 1060px) {
  .reveal-right {
    transform: translate3d(0, 34px, 0);
  }

  .hero,
  .platform-preview-layout,
  .pro-layout,
  .cta-layout,
  .testimonials-layout,
  .proof-wall-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-copy-panel {
    padding-bottom: 0;
  }

  .hero-side {
    align-self: stretch;
    justify-items: center;
  }

  .hero-visual {
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
  }

  .feature-grid,
  .pain-grid,
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-line {
    display: none;
  }
}

@media (max-width: 760px) {
  .bone {
    display: none;
  }

  .reveal-right {
    transform: translate3d(0, 34px, 0);
  }

  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    gap: 4px;
    left: 0;
    opacity: 0;
    padding: 82px 18px 22px;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateY(-18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 0;
  }

  .main-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-bottom: 72px;
    padding-top: 112px;
  }

  .hero-side {
    gap: 16px;
  }

  .login-dialog {
    width: 100%;
  }

  .login-close {
    right: 8px;
    top: 8px;
  }

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

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

  .button {
    width: 100%;
    white-space: normal;
  }

  .rating-bubble {
    min-width: 150px;
    padding: 12px;
  }

  .bubble-top {
    right: 8px;
    top: 8px;
  }

  .bubble-bottom {
    bottom: 8px;
    left: 8px;
  }

  .stats-strip,
  .module-grid,
  .feature-grid,
  .pain-grid,
  .service-grid,
  .trust-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    margin-top: 0;
  }

  .section {
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .pro-layout,
  .cta-layout,
  .testimonials-layout,
  .proof-wall-layout {
    gap: 32px;
  }

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

  .tile-large,
  .tile-wide {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 90px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .mobile-whatsapp {
    display: block;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: 0.92rem;
  }

  .brand-mark {
    height: 38px;
    width: 38px;
  }

  .trust-row {
    display: grid;
  }

  .rating-bubble {
    position: static;
    margin-top: 10px;
  }

  .hero-visual {
    display: grid;
  }

  .platform-actions,
  .role-tabs,
  .demo-metrics {
    grid-template-columns: 1fr;
  }

  .platform-actions {
    display: grid;
  }
}
