:root {
  --bg: #f4f8fc;
  --bg-warm: #eaf3fb;
  --bg-deep: #d9e9f7;
  --ink: #1a1a1a;
  --ink-soft: #777777;
  --blue: #0754a6;
  --blue-light: #e2f0ff;
  --blue-deep: #123f7a;
  --green: #4cc421;
  --green-light: #e6f9df;
  --green-deep: #299a32;
  --black: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  background: var(--bg);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: 0.07;
  pointer-events: none;
  z-index: 200;
  mix-blend-mode: multiply;
}

.ambient-1 {
  position: fixed;
  top: 6%;
  right: -10%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(76, 196, 33, 0.2) 0%, transparent 62%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.ambient-2 {
  position: fixed;
  bottom: -10%;
  left: -8%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(7, 84, 166, 0.22) 0%, transparent 62%);
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  position: relative;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 126px;
  height: auto;
  display: block;
}

.header-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.header-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.header-nav a:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.header-nav a:hover::after {
  transform: scaleX(1);
}

.header-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-deep);
  background: transparent;
  border: 1.5px solid var(--blue-deep);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 0 var(--blue-deep);
}

.header-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--blue-deep);
}

.page-scroll-hint {
  position: fixed;
  left: 50%;
  bottom: 22px;
  width: 34px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(7, 84, 166, 0.18);
  box-shadow: 0 14px 34px rgba(18, 63, 122, 0.14);
  backdrop-filter: blur(14px);
  z-index: 60;
  pointer-events: none;
  opacity: 0.92;
  transform: translateX(-50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.page-scroll-hint span {
  display: block;
  width: 5px;
  height: 5px;
  margin: 9px auto 0;
  border-radius: 50%;
  background: var(--green);
  animation: page-scroll-pulse 1.5s ease-in-out infinite;
}

.page-scroll-hint::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  opacity: 0.82;
  transform: translateX(-50%) rotate(45deg);
}

.page-scroll-hint.is-hidden {
  opacity: 0;
  transform: translate(-50%, 10px);
}

@keyframes page-scroll-pulse {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.45;
  }

  50% {
    transform: translateY(16px);
    opacity: 1;
  }
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  padding: 40px 56px 40px;
  align-items: center;
  position: relative;
  z-index: 5;
  min-height: 720px;
}

.hero-left {
  padding-top: 20px;
}

.hero-title {
  font-weight: 800;
  font-size: clamp(48px, 5.8vw, 84px);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 32px;
  color: var(--blue-deep);
}

.hero-title .title-line:first-child {
  color: var(--blue);
}

.hero-title .title-line:nth-child(2) {
  color: var(--green-deep);
}

.title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.title-inner {
  display: inline-block;
  will-change: transform;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 470px;
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  font-size: 15px;
  font-weight: 700;
  color: white;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-deep) 100%);
  border: none;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -2px 0 rgba(0, 0, 0, 0.25), 0 8px 16px rgba(7, 84, 166, 0.22), 0 16px 32px rgba(7, 84, 166, 0.12);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, background 0.35s;
  position: relative;
  overflow: hidden;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.22), 0 12px 22px rgba(7, 84, 166, 0.22), 0 22px 44px rgba(7, 84, 166, 0.14);
}

.cta-btn:active {
  transform: translateY(-1px);
}

.cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s;
}

.cta-btn:hover .cta-arrow {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.22);
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  pointer-events: none;
}

.constellation {
  position: relative;
  width: 600px;
  height: 660px;
  max-width: 100%;
  perspective: 1500px;
  transform-style: preserve-3d;
  pointer-events: none;
}

.constellation-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
  z-index: 1;
}

.constellation-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.42;
}

.constellation-lines path {
  fill: none;
  stroke: rgba(18, 63, 122, 0.45);
  stroke-width: 1.25;
  stroke-linecap: round;
}

.tile {
  position: absolute;
  z-index: 2;
  transform-style: preserve-3d;
  animation: tile-float var(--dur, 5s) ease-in-out infinite var(--delay, 0s);
}

.tile-inner {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
  text-align: center;
  padding: 12px;
  isolation: isolate;
}

.tile:hover .tile-inner {
  transform: translateY(-10px) scale(1.06);
}

.tile-icon {
  width: 50%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 800;
  font-size: 16px;
}

.tile:hover .tile-icon {
  transform: scale(1.12) rotate(-4deg);
}

.tile-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.tile strong {
  font-size: 11px;
  line-height: 1;
}

.tile.mint .tile-inner {
  background: linear-gradient(165deg, #f7fff4 0%, var(--green-light) 42%, var(--green) 100%);
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.7), inset 0 -4px 0 rgba(0, 0, 0, 0.08), inset 0 0 30px rgba(255, 255, 255, 0.4), 0 12px 24px rgba(76, 196, 33, 0.32), 0 24px 48px rgba(0, 0, 0, 0.08);
  color: var(--ink);
}

.tile.yellow .tile-inner {
  background: linear-gradient(165deg, #ffffff 0%, var(--blue-light) 58%, #8cc4ff 100%);
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.6), inset 0 -4px 0 rgba(0, 0, 0, 0.1), inset 0 0 30px rgba(255, 255, 255, 0.3), 0 12px 24px rgba(7, 84, 166, 0.22), 0 24px 48px rgba(0, 0, 0, 0.1);
  color: var(--blue-deep);
}

.tile.purple .tile-inner {
  background: linear-gradient(165deg, #ffffff 0%, #e9f5ff 52%, #a7d3ff 100%);
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.7), inset 0 -4px 0 rgba(0, 0, 0, 0.08), inset 0 0 30px rgba(255, 255, 255, 0.4), 0 12px 24px rgba(18, 63, 122, 0.22), 0 24px 48px rgba(0, 0, 0, 0.08);
  color: var(--blue-deep);
}

.tile.black .tile-inner {
  background: linear-gradient(165deg, var(--blue) 0%, var(--blue-deep) 55%, #08234a 100%);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), inset 0 -3px 0 rgba(0, 0, 0, 0.38), inset 0 0 30px rgba(255, 255, 255, 0.05), 0 12px 24px rgba(7, 84, 166, 0.28), 0 24px 48px rgba(0, 0, 0, 0.16);
  color: white;
}

.tile.size-main {
  width: 142px;
  height: 118px;
}

.tile.size-big {
  width: 156px;
  height: 132px;
}

.tile.size-pill {
  width: 64px;
  height: 64px;
}

.tile.size-pill .tile-inner {
  border-radius: 50%;
}

.tile-lock { top: 0; left: calc(50% - 32px); --dur: 4s; --delay: 0s; --float: -6px; }
.tile-expand { top: 95px; left: 95px; --dur: 5.5s; --delay: 0.4s; --float: -10px; }
.tile-chart { top: 95px; left: 365px; --dur: 5s; --delay: 0.8s; --float: -8px; }
.tile-cloud { top: 245px; left: 5px; --dur: 6s; --delay: 1.2s; --float: -12px; }
.tile-db { top: 240px; left: 222px; --dur: 4.5s; --delay: 0.2s; --float: -7px; }
.tile-thumb { top: 245px; left: 455px; --dur: 5.5s; --delay: 0.6s; --float: -10px; }
.tile-cursor { top: 405px; left: 45px; --dur: 4s; --delay: 1s; --float: -8px; }
.tile-person { top: 395px; left: 145px; --dur: 5s; --delay: 0.3s; --float: -9px; }
.tile-globe { top: 395px; left: 315px; --dur: 5.5s; --delay: 0.7s; --float: -11px; }
.tile-thumbpill { top: 405px; left: 495px; --dur: 4.5s; --delay: 0.5s; --float: -7px; }
.tile-hex { top: 545px; left: 230px; --dur: 6s; --delay: 0.9s; --float: -10px; }

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

.sparkle {
  position: absolute;
  width: 32px;
  height: 32px;
  bottom: 30px;
  right: 30px;
  color: var(--green);
  animation: spin 8s linear infinite, sparkleFloat 4s ease-in-out infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes sparkleFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.stats-bar {
  padding: 80px 56px;
  background: var(--bg-warm);
  border-radius: 48px 48px 0 0;
  margin-top: 0;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat {
  padding: 32px 0;
  border-right: 1px solid rgba(7, 84, 166, 0.12);
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-weight: 800;
  font-size: clamp(40px, 4.5vw, 72px);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--blue);
}

.stat-num .accent {
  color: var(--green-deep);
  font-size: 0.42em;
  margin-left: 4px;
}

.stat-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  font-weight: 600;
}

.features {
  padding: 120px 56px;
  background: var(--bg-warm);
  position: relative;
}

.compact-features {
  padding-top: 52px;
  padding-bottom: 16px;
}

.tech-showcase {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.tech-head {
  align-items: center;
  margin-bottom: 0;
  gap: 40px;
}

.tech-copy {
  max-width: 620px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.tech-visual {
  position: relative;
  margin: 0;
  overflow: visible;
  transform-style: preserve-3d;
  width: min(100%, 580px);
  min-height: 410px;
  flex: 0 0 min(42vw, 580px);
  justify-self: end;
}

.technology-card {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 335px;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 78% 22%, rgba(76, 196, 33, 0.42) 0%, transparent 30%),
    radial-gradient(circle at 14% 78%, rgba(255, 255, 255, 0.18) 0%, transparent 34%),
    linear-gradient(165deg, var(--blue) 0%, var(--blue-deep) 100%);
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.18), inset 0 -4px 0 rgba(0, 0, 0, 0.22), 0 24px 54px rgba(18, 63, 122, 0.22);
}

.technology-card::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
}

.technology-card-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(76, 196, 33, 0.75), transparent);
  opacity: 0.72;
}

.technology-card-line.line-a {
  width: 72%;
  left: 9%;
  top: 58%;
  transform: rotate(-10deg);
}

.technology-card-line.line-b {
  width: 58%;
  right: -4%;
  top: 32%;
  transform: rotate(16deg);
}

.technology-card-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 22px rgba(76, 196, 33, 0.75);
}

.technology-card-node.node-a {
  left: 17%;
  top: 66%;
}

.technology-card-node.node-b {
  right: 24%;
  top: 25%;
}

.technology-card-node.node-c {
  right: 12%;
  bottom: 20%;
}

.technology-monitor {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: -32px;
  display: block;
  width: 122%;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.features-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 80px;
  gap: 60px;
}

.features-head.tech-head {
  margin-bottom: 0;
}


.section-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green-deep);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: "";
  width: 32px;
  height: 1.5px;
  background: var(--blue);
}

.features h2 {
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0;
  max-width: 760px;
  color: var(--blue-deep);
}

.features-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  line-height: 1.6;
  text-align: right;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px;
  border-radius: 36px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.card-media {
  margin: -12px -12px 26px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.45), 0 14px 28px rgba(18, 63, 122, 0.12);
}

.card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .card-media img {
  transform: scale(1.045);
}

.feature-card:hover {
  transform: translateY(-12px);
}

.feature-card.fc-mint {
  background: linear-gradient(165deg, var(--green-light) 0%, #c7f1bc 100%);
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.6), inset 0 -4px 0 rgba(0, 0, 0, 0.08), 0 20px 40px rgba(76, 196, 33, 0.25), 0 40px 80px rgba(0, 0, 0, 0.06);
}

.feature-card.fc-yellow {
  background: linear-gradient(165deg, #ffffff 0%, var(--blue-light) 100%);
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.5), inset 0 -4px 0 rgba(0, 0, 0, 0.1), 0 20px 40px rgba(7, 84, 166, 0.2), 0 40px 80px rgba(0, 0, 0, 0.08);
}

.feature-card.fc-purple {
  background: linear-gradient(165deg, #f7fbff 0%, #c1e1ff 100%);
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.6), inset 0 -4px 0 rgba(0, 0, 0, 0.08), 0 20px 40px rgba(18, 63, 122, 0.18), 0 40px 80px rgba(0, 0, 0, 0.06);
}

.feature-card .fc-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
  color: var(--blue-deep);
  opacity: 0.72;
}

.feature-card h3 {
  font-weight: 800;
  font-size: 28px;
  line-height: 1.08;
  margin-bottom: 16px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.75;
  flex: 1;
}

.feature-more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: fit-content;
  margin-top: 26px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 10px 22px rgba(18, 63, 122, 0.1);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.feature-more span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  transition: transform 0.25s ease;
}

.feature-card:hover .feature-more {
  background: white;
  color: var(--blue);
}

.feature-card:hover .feature-more span {
  transform: translateX(3px);
}

.quote-section {
  padding: 140px 56px;
  background: var(--bg);
  text-align: center;
}

.quote-section blockquote {
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.1;
  letter-spacing: 0;
  max-width: 1000px;
  margin: 0 auto 32px;
  color: var(--blue-deep);
}

.quote-mark {
  display: inline-block;
  font-size: 120px;
  line-height: 0.4;
  color: var(--green);
  margin-bottom: 24px;
  font-weight: 800;
}

.quote-author {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}

.final-cta {
  padding: 100px 56px 120px;
  text-align: center;
  background: var(--bg);
}

.final-cta-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 60px;
  border-radius: 48px;
  background: linear-gradient(165deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.15), inset 0 -5px 0 rgba(0, 0, 0, 0.3), 0 30px 60px rgba(7, 84, 166, 0.28), 0 60px 120px rgba(0, 0, 0, 0.16);
}

.final-cta h2 {
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1;
  margin-bottom: 32px;
  color: white;
}

.final-cta h2 .accent {
  color: var(--green);
}

.final-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: 0 auto 40px;
}

.final-cta .cta-btn {
  padding: 20px 34px;
  background: white;
  color: var(--green-deep);
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 0 rgba(26, 26, 26, 0.2), 0 22px 42px rgba(0, 0, 0, 0.24);
  position: relative;
  z-index: 2;
}

.final-cta .cta-btn .cta-arrow {
  background: var(--green);
  color: white;
}

.final-cta .cta-btn:hover {
  background: var(--green-light);
  box-shadow: 0 7px 0 rgba(26, 26, 26, 0.2), 0 20px 38px rgba(0, 0, 0, 0.24);
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.final-cta-card .orb-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(76, 196, 33, 0.34) 0%, transparent 70%);
  top: -50px;
  left: -50px;
  filter: blur(40px);
}

.final-cta-card .orb-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  filter: blur(50px);
}

.site-footer {
  background: var(--bg);
  padding: 60px 56px 40px;
  border-top: 1px solid rgba(7, 84, 166, 0.08);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 60px;
}

.footer-brand img {
  width: 190px;
  height: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--ink-soft);
  font-size: 14px;
  max-width: 280px;
}

.footer-cols {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-weight: 600;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-col a:hover {
  color: var(--blue);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(7, 84, 166, 0.08);
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}

.footer-disclaimer {
  max-width: 860px;
  margin: 32px 0 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(7, 84, 166, 0.08);
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

/* ============ PRODUCT PAGE: CONFERENCIA ============ */
.product-page {
  cursor: auto;
}

.product-page .site-header {
  opacity: 1;
}

.product-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(244, 248, 252, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7, 84, 166, 0.08);
}

.product-header .header-btn {
  color: var(--green-deep);
  background: white;
  border: 2px solid rgba(255, 255, 255, 0.92);
  font-weight: 800;
  box-shadow: 0 6px 0 rgba(26, 26, 26, 0.12), 0 14px 28px rgba(18, 63, 122, 0.12);
}

.product-header .header-btn .cta-arrow {
  width: 22px;
  height: 22px;
  background: var(--green);
  color: white;
}

.product-header .header-btn:hover {
  background: var(--green-light);
  box-shadow: 0 4px 0 rgba(26, 26, 26, 0.12), 0 10px 22px rgba(18, 63, 122, 0.12);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  align-items: center;
  padding: 132px 56px 84px;
  position: relative;
  z-index: 5;
}

.product-hero-copy h1 {
  font-size: clamp(44px, 5.4vw, 82px);
  line-height: 1;
  color: var(--blue-deep);
  margin-bottom: 26px;
  font-weight: 800;
}

.product-hero-copy p,
.product-section-head p,
.product-split p,
.product-note p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.product-hero-copy p {
  max-width: 610px;
  margin-bottom: 34px;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.product-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1.5px solid rgba(7, 84, 166, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(18, 63, 122, 0.08);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.product-link:hover {
  transform: translateY(-2px);
  color: var(--blue);
  border-color: rgba(76, 196, 33, 0.34);
  background: rgba(255, 255, 255, 0.92);
}

.product-hero-visual {
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(165deg, var(--blue) 0%, var(--blue-deep) 100%);
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.24), 0 28px 70px rgba(18, 63, 122, 0.24);
  transform: rotate(1deg);
}

.product-hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: scale(1.02);
}

.product-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 0 56px 92px;
  position: relative;
  z-index: 5;
}

.product-proof div,
.process-grid article,
.screen-card,
.product-note {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.7), 0 18px 38px rgba(18, 63, 122, 0.1);
  border: 1px solid rgba(7, 84, 166, 0.08);
}

.product-proof div {
  padding: 28px;
}

.product-proof strong {
  display: block;
  color: var(--blue);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  margin-bottom: 12px;
}

.product-proof span {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.product-section {
  padding: 104px 56px;
  position: relative;
  z-index: 5;
  scroll-margin-top: 132px;
}

.product-section:nth-of-type(even) {
  background: var(--bg-warm);
}

.product-section-head {
  max-width: 900px;
  margin-bottom: 48px;
}

.product-section h2 {
  font-size: clamp(36px, 4.8vw, 68px);
  line-height: 1;
  color: var(--blue-deep);
  margin-bottom: 24px;
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-grid article {
  padding: 28px;
}

.process-grid span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: white;
  font-weight: 800;
  margin-bottom: 22px;
}

.process-grid h3 {
  color: var(--blue-deep);
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.process-grid p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.product-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 54px;
  align-items: start;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-list span {
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(165deg, #ffffff 0%, var(--blue-light) 100%);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.7), 0 10px 22px rgba(18, 63, 122, 0.08);
}

.screens-section {
  background: var(--bg);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.screen-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.screen-card.large {
  grid-column: span 2;
}

.screen-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  object-position: top center;
  background: #eef4fb;
}

.ponto-page .product-hero-visual {
  background: #eef4fb;
  transform: rotate(0.6deg);
}

.ponto-page .product-hero-visual img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.04);
}

.ponto-screen-grid {
  grid-template-columns: repeat(12, 1fr);
  align-items: stretch;
}

.ponto-screen-grid .screen-card {
  grid-column: span 6;
}

.ponto-screen-grid .screen-card.large {
  grid-column: span 12;
}

.ponto-screen-grid .screen-admin {
  order: 1;
}

.ponto-screen-grid .screen-login {
  order: 2;
}

.ponto-screen-grid .screen-register {
  order: 3;
}

.ponto-screen-grid .screen-manage {
  order: 4;
}

.ponto-screen-grid .screen-justify {
  order: 5;
}

.ponto-screen-grid .screen-report {
  order: 6;
}

.ponto-screen-grid .screen-card img {
  flex: 1;
  min-height: 0;
}

.ponto-screen-grid .screen-cover img {
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
  object-position: top center;
}

.ponto-screen-grid .screen-contain img {
  aspect-ratio: 16 / 10.6;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.18);
  transform-origin: center center;
}

.ponto-screen-grid .screen-modal img {
  aspect-ratio: 16 / 9.4;
  object-fit: cover;
  object-position: center center;
}

.ponto-screen-grid .screen-login img {
  transform: scale(1.24);
}

.ponto-screen-grid .screen-register img {
  transform: scale(1.14);
  object-position: center top;
}

.ponto-open-section {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.ponto-open-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ponto-open-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(7, 84, 166, 0.08);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.7), 0 18px 38px rgba(18, 63, 122, 0.1);
  padding: 18px;
}

.ponto-open-card h3 {
  color: var(--blue-deep);
  font-size: 18px;
  line-height: 1.18;
  margin: 18px 0 10px;
}

.ponto-open-card p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.ponto-open-window {
  border-radius: 20px;
  padding: 16px;
  background:
    radial-gradient(circle at top right, rgba(76, 196, 33, 0.14), transparent 40%),
    #f8fbff;
  border: 1px solid rgba(7, 84, 166, 0.1);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.88);
}

.ponto-open-window span {
  display: block;
  width: 46px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  margin-bottom: 14px;
}

.ponto-open-window strong,
.ponto-open-window label,
.ponto-open-window div,
.ponto-open-window button {
  display: block;
}

.ponto-open-window strong {
  color: var(--blue-deep);
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.ponto-open-window label {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.ponto-open-window div {
  padding: 9px 10px;
  border-radius: 10px;
  background: white;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 9px;
  border: 1px solid rgba(7, 84, 166, 0.08);
}

.ponto-open-window button {
  width: 100%;
  border: 0;
  border-radius: 11px;
  padding: 10px 12px;
  background: var(--blue);
  color: white;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
}

.custom-page .product-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
}

.custom-hero-visual {
  background: #e8f3ff;
  transform: rotate(0.5deg);
}

.custom-hero-visual img {
  object-position: center center;
  transform: scale(1.01);
}

.custom-intro {
  padding-top: 88px;
  padding-bottom: 48px;
}

.custom-solutions-section {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.custom-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.custom-solution-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 84, 166, 0.08);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.74), 0 18px 38px rgba(18, 63, 122, 0.1);
  padding: 18px;
}

.custom-solution-card h3 {
  margin: 20px 6px 10px;
  color: var(--blue-deep);
  font-size: 20px;
  line-height: 1.15;
}

.custom-solution-card p {
  margin: 0 6px 6px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.custom-card-preview {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  background: #e8f3ff;
  border: 1px solid rgba(7, 84, 166, 0.09);
}

.custom-card-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.015);
}

.custom-note {
  background:
    radial-gradient(circle at top right, rgba(76, 196, 33, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.78);
}

.custom-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.42s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

.custom-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.custom-solution-card.custom-reveal {
  transform: translateY(28px) scale(0.99);
}

.custom-solution-card.custom-reveal.is-visible {
  transform: translateY(0) scale(1);
}

.custom-page .product-hero-visual.custom-reveal {
  transform: translateY(22px) rotate(0.5deg) scale(0.99);
}

.custom-page .product-hero-visual.custom-reveal.is-visible {
  transform: translateY(0) rotate(0.5deg) scale(1);
}

.custom-card-preview img {
  transition: transform 0.45s ease;
}

.custom-solution-card:hover .custom-card-preview img {
  transform: scale(1.045);
}

.screen-card figcaption {
  position: relative;
  z-index: 1;
  padding: 18px 22px;
  color: var(--blue-deep);
  font-weight: 800;
  font-size: 14px;
  border-top: 1px solid rgba(7, 84, 166, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.product-note {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
  margin: 80px 56px;
  padding: 42px;
}

.product-note h2 {
  margin-bottom: 0;
}

.demo-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

.demo-shell {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  border-radius: 36px;
  overflow: hidden;
  background: #eef5fb;
  box-shadow: 0 28px 70px rgba(18, 63, 122, 0.16);
  border: 1px solid rgba(7, 84, 166, 0.1);
}

.demo-sidebar {
  background: #17212d;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.demo-sidebar span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.demo-sidebar span:first-child {
  background: var(--blue);
  border-color: rgba(255, 255, 255, 0.34);
}

.demo-app {
  padding: 28px;
}

.demo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.demo-topbar h3 {
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1;
}

.demo-muted {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.demo-light-btn,
.demo-actions-mini button,
.demo-search button,
.demo-wide-btn {
  border: 1px solid rgba(7, 84, 166, 0.18);
  border-radius: 10px;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.demo-light-btn {
  padding: 10px 16px;
  background: white;
  color: var(--blue-deep);
}

.demo-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 84, 166, 0.1);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(18, 63, 122, 0.08);
}

.demo-card h4 {
  font-size: 18px;
  color: #000;
  margin-bottom: 8px;
}

.demo-card p {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 16px;
}

.demo-progress-card {
  margin-bottom: 18px;
}

.demo-actions-mini {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.demo-actions-mini button,
.demo-search button,
.demo-wide-btn.primary {
  padding: 12px 16px;
  background: var(--blue);
  color: white;
}

.demo-actions-mini button:nth-child(2),
.demo-wide-btn {
  background: #f7fbff;
  color: var(--blue-deep);
}

.demo-progress-track {
  height: 10px;
  border-radius: 999px;
  background: #e9f1f8;
  overflow: hidden;
  margin-bottom: 12px;
}

.demo-progress-track span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width 0.35s ease;
}

.demo-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.7fr);
  gap: 18px;
  margin-bottom: 18px;
}

.demo-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-bottom: 14px;
}

.demo-search input {
  width: 100%;
  border: 2px solid var(--blue);
  border-radius: 10px;
  padding: 15px 16px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  outline: none;
}

.demo-status {
  min-height: 54px;
  border-radius: 10px;
  background: #e9f1f8;
  color: var(--ink-soft);
  padding: 16px;
  font-size: 14px;
  margin-bottom: 14px;
}

.demo-status.ok {
  background: rgba(76, 196, 33, 0.14);
  color: var(--green-deep);
}

.demo-status.warn {
  background: rgba(217, 45, 32, 0.1);
  color: #b42318;
}

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

.demo-code-pills button {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--blue-light);
  color: var(--blue-deep);
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.demo-light-btn:hover,
.demo-actions-mini button:hover,
.demo-search button:hover,
.demo-wide-btn:hover,
.demo-code-pills button:hover {
  transform: translateY(-2px);
}

.demo-actions-mini button:hover,
.demo-search button:hover,
.demo-wide-btn.primary:hover {
  background: var(--blue-deep);
  box-shadow: 0 10px 22px rgba(7, 84, 166, 0.18);
}

.demo-actions-mini button:nth-child(2):hover,
.demo-wide-btn:hover,
.demo-light-btn:hover,
.demo-code-pills button:hover {
  background: rgba(76, 196, 33, 0.12);
  border-color: rgba(76, 196, 33, 0.3);
  color: var(--green-deep);
}

.demo-wide-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 13px 15px;
  margin-bottom: 10px;
}

.demo-table-wrap {
  overflow-x: auto;
}

.demo-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  font-size: 13px;
}

.demo-table th {
  text-align: left;
  background: #f3f7fb;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-size: 11px;
  padding: 14px 16px;
}

.demo-table td {
  padding: 16px;
  border-top: 1px solid #dce7f2;
  color: #000;
}

.demo-table td:nth-child(2),
.demo-table td:nth-child(3),
.demo-table th:nth-child(2),
.demo-table th:nth-child(3) {
  text-align: center;
  font-weight: 800;
}

.demo-row-missing {
  background: #fff0f0;
  border-left: 4px solid #d92d20;
}

.demo-row-ok {
  background: #eefbea;
  border-left: 4px solid var(--green);
}

.demo-row-extra {
  background: #eef5ff;
  border-left: 4px solid var(--blue);
}

.demo-product-name {
  display: block;
  font-weight: 800;
  margin-bottom: 3px;
}

.demo-product-code {
  color: var(--ink-soft);
  font-size: 12px;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
}

.demo-badge.missing {
  color: #b42318;
  background: #ffd6d6;
}

.demo-badge.ok {
  color: var(--green-deep);
  background: rgba(76, 196, 33, 0.16);
}

.demo-badge.extra {
  color: var(--blue-deep);
  background: var(--blue-light);
}

.product-final {
  background: var(--bg);
}

.feature-card {
  color: inherit;
  text-decoration: none;
}

.title-inner {
  transform: translateY(110%);
}

.hero-desc,
.cta-btn,
.site-header {
  opacity: 0;
}

.product-page .cta-btn,
.product-page .hero-desc,
.product-page .site-header {
  opacity: 1;
}

.tile {
  opacity: 0;
}

.constellation-lines path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 116px 32px 92px;
  }

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

  .header-nav {
    font-size: 12px;
  }

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

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .features,
  .stats-bar {
    padding: 60px 32px;
  }

  .final-cta,
  .quote-section {
    padding: 60px 32px;
  }

  .features-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .tech-head {
    align-items: flex-start;
  }

  .tech-visual {
    width: 100%;
    max-width: 560px;
    min-height: 385px;
    flex-basis: auto;
    align-self: center;
    justify-self: center;
    margin-top: 34px;
  }

  .technology-card {
    height: 315px;
  }

  .technology-monitor {
    top: -30px;
    width: 120%;
  }

  .features-meta {
    text-align: left;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .product-hero,
  .product-split,
  .product-note {
    grid-template-columns: 1fr;
  }

  .product-hero,
  .product-section,
  .product-proof {
    padding-left: 32px;
    padding-right: 32px;
  }

  .product-proof,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .demo-main-grid {
    grid-template-columns: 1fr;
  }

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

  .custom-page .product-hero,
  .custom-solution-grid {
    grid-template-columns: 1fr;
  }

  .product-note {
    margin-left: 32px;
    margin-right: 32px;
  }
}

@media (max-width: 700px) {
  .logo img {
    width: 104px;
  }

  .header-nav {
    display: none;
  }

  .header-btn {
    padding: 10px 14px;
    font-size: 12px;
  }

  .compact-features {
    padding-top: 44px;
    padding-bottom: 26px;
  }

  .tech-visual {
    min-height: 305px;
    margin-top: 22px;
  }

  .technology-card {
    height: 250px;
    border-radius: 28px;
  }

  .technology-card::before {
    inset: 18px;
    border-radius: 22px;
  }

  .technology-monitor {
    top: -18px;
    width: 118%;
  }

  .constellation {
    display: none;
  }

  .hero-right {
    display: none;
  }

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

  .tile.size-main {
    width: 110px;
    height: 92px;
  }

  .tile.size-big {
    width: 120px;
    height: 102px;
  }

  .tile.size-pill {
    width: 52px;
    height: 52px;
  }

  .tile-chart,
  .tile-thumb {
    left: calc(100% - 118px);
  }

  .tile-thumbpill {
    left: calc(100% - 58px);
  }

  .tile-globe {
    left: calc(100% - 136px);
  }

  .tile strong {
    font-size: 9px;
  }

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

  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(7, 84, 166, 0.12);
  }

  .final-cta-card {
    padding: 48px 24px;
  }

  .footer-top,
  .footer-bottom,
  .footer-cols {
    flex-direction: column;
    gap: 28px;
  }

  .product-hero {
    padding-top: 112px;
    gap: 34px;
  }

  .product-hero,
  .product-section,
  .product-proof {
    padding-left: 24px;
    padding-right: 24px;
  }

  .product-hero-copy h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .product-proof,
  .process-grid,
  .feature-list,
  .screen-grid,
  .ponto-open-grid,
  .custom-solution-grid {
    grid-template-columns: 1fr;
  }

  .custom-card-preview {
    min-height: 152px;
  }

  .page-scroll-hint {
    bottom: 16px;
    width: 30px;
    height: 42px;
  }

  .product-actions {
    align-items: stretch;
    gap: 12px;
  }

  .product-actions .cta-btn,
  .product-link {
    width: 100%;
    justify-content: center;
  }

  .demo-shell {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .demo-sidebar {
    display: none;
  }

  .demo-app {
    padding: 18px;
  }

  .demo-search {
    grid-template-columns: 1fr;
  }

  .demo-actions-mini {
    flex-direction: column;
  }

  .screen-card.large {
    grid-column: auto;
  }

  .ponto-screen-grid .screen-card,
  .ponto-screen-grid .screen-card.large {
    grid-column: auto;
  }

  .screen-card img,
  .product-hero-visual img {
    aspect-ratio: 4 / 3;
  }

  .ponto-screen-grid .screen-cover img,
  .ponto-screen-grid .screen-contain img,
  .ponto-screen-grid .screen-modal img {
    aspect-ratio: 4 / 3;
  }

  .product-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .product-note {
    margin: 40px 24px;
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .custom-reveal,
  .custom-solution-card.custom-reveal,
  .custom-page .product-hero-visual.custom-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
