:root {
  --ink-900: #10394b;
  --ink-800: #133546;
  --ink-700: #1c5168;
  --primary-600: #148bb7;
  --primary-500: #1d9bcb;
  --primary-400: #49cdeb;
  --bg-100: #eef5f8;
  --line-200: #d6e2e8;
  --white: #ffffff;
  --shadow-card: 0 22px 50px rgba(16, 57, 75, 0.08);
  --shadow-button: 0 14px 30px rgba(20, 139, 183, 0.24);
  --radius-md: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at top left, rgba(73, 205, 235, 0.35) 0, transparent 20%),
    radial-gradient(circle at 85% 15%, rgba(29, 155, 203, 0.14) 0, transparent 18%),
    linear-gradient(180deg, #f9fdff 0%, var(--bg-100) 100%);
  background-size: 140% 140%, 120% 120%, 100% 100%;
  animation: ambientShift 22s ease-in-out infinite;
}

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

main {
  overflow: clip;
}

.page-shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto 40px;
  z-index: 1;
}

.bg-orb,
.bg-grid,
.bg-floaters {
  position: absolute;
  pointer-events: none;
}

.bg-orb {
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.88;
}

.orb-a {
  top: 110px;
  right: 8%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(23, 92, 122, 0.42) 0%, rgba(20, 139, 183, 0.16) 52%, transparent 72%);
  animation: drift 10s ease-in-out infinite;
}

.orb-b {
  top: 560px;
  left: -40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(16, 57, 75, 0.34) 0%, rgba(28, 81, 104, 0.14) 55%, transparent 75%);
  animation: drift 12s ease-in-out infinite reverse;
}

.bg-grid {
  inset: 120px 0 auto 0;
  height: 520px;
  border-radius: 48px;
  background-image:
    linear-gradient(rgba(214, 226, 232, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 226, 232, 0.45) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.72;
  animation: gridFloat 16s ease-in-out infinite;
}

.bg-floaters {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.bg-floaters span {
  position: absolute;
  display: block;
  bottom: -180px;
  border-radius: 22px;
  border: 1px solid rgba(16, 57, 75, 0.22);
  background: linear-gradient(135deg, rgba(28, 81, 104, 0.28) 0%, rgba(20, 139, 183, 0.3) 52%, rgba(73, 205, 235, 0.2) 100%);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.12), 0 22px 44px rgba(16, 57, 75, 0.14);
  opacity: 0;
  animation: floatShapes 30s linear infinite;
  backdrop-filter: blur(2px);
  will-change: transform, opacity, border-radius;
}

.bg-floaters span:nth-child(1) {
  left: 4%;
  width: 110px;
  height: 110px;
  animation-delay: 0s;
  animation-duration: 32s;
}

.bg-floaters span:nth-child(2) {
  left: 14%;
  width: 24px;
  height: 24px;
  animation-delay: 3s;
  animation-duration: 16s;
}

.bg-floaters span:nth-child(3) {
  left: 28%;
  width: 86px;
  height: 86px;
  animation-delay: 6s;
  animation-duration: 28s;
}

.bg-floaters span:nth-child(4) {
  left: 38%;
  width: 44px;
  height: 44px;
  animation-delay: 1s;
  animation-duration: 22s;
}

.bg-floaters span:nth-child(5) {
  left: 52%;
  width: 132px;
  height: 132px;
  animation-delay: 7s;
  animation-duration: 34s;
}

.bg-floaters span:nth-child(6) {
  left: 64%;
  width: 28px;
  height: 28px;
  animation-delay: 12s;
  animation-duration: 19s;
}

.bg-floaters span:nth-child(7) {
  left: 74%;
  width: 94px;
  height: 94px;
  animation-delay: 4s;
  animation-duration: 27s;
}

.bg-floaters span:nth-child(8) {
  left: 82%;
  width: 138px;
  height: 138px;
  animation-delay: 10s;
  animation-duration: 36s;
}

.bg-floaters span:nth-child(9) {
  left: 90%;
  width: 36px;
  height: 36px;
  animation-delay: 2s;
  animation-duration: 18s;
}

.bg-floaters span:nth-child(10) {
  left: 22%;
  width: 18px;
  height: 18px;
  animation-delay: 14s;
  animation-duration: 21s;
}

.page-shell > *:not(.bg-orb):not(.bg-grid):not(.bg-floaters) {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(214, 226, 232, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(16, 57, 75, 0.08);
}

.brand img {
  display: block;
  width: min(320px, 100%);
}

.nav-shell {
  align-items: center;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  color: #4d6773;
}

.site-nav .nav-link {
  position: relative;
  padding: 10px 14px !important;
  border-radius: 10px;
  color: #4d6773;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--ink-900);
  background: rgba(231, 247, 252, 0.9);
  box-shadow: inset 0 0 0 1px rgba(73, 205, 235, 0.15);
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after {
  transform: scaleX(1);
}

.site-nav .nav-link:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  border: 1px solid var(--line-200);
  border-radius: 10px;
  padding: 8px 10px;
}

.menu-toggle:focus {
  box-shadow: 0 0 0 4px rgba(29, 155, 203, 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background-position 240ms ease, border-color 180ms ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-400) 0%, var(--primary-500) 38%, #18759b 100%);
  background-size: 160% 160%;
  box-shadow: var(--shadow-button);
}

.btn-secondary {
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--line-200);
}

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

.btn-primary:hover {
  background-position: 100% 0;
  box-shadow: 0 18px 34px rgba(20, 139, 183, 0.3);
}

.btn-secondary:hover {
  border-color: rgba(20, 139, 183, 0.28);
  box-shadow: 0 14px 24px rgba(16, 57, 75, 0.08);
}

.header-cta {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #2ac18f 0%, #169f7c 55%, #117a67 100%);
  background-size: 160% 160%;
  box-shadow: 0 14px 30px rgba(25, 145, 114, 0.24);
}

.header-cta:hover {
  background-position: 100% 0;
  box-shadow: 0 18px 34px rgba(25, 145, 114, 0.3);
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
  padding: 54px 0 24px;
  position: relative;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e7f7fc;
  color: var(--primary-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
}

.hero h1,
.section-heading h2,
.cta-band h2,
.help-panel h2 {
  margin: 18px 0 0;
  font-family: "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  font-stretch: condensed;
  letter-spacing: 0.2px;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.95;
}

.hero-highlight {
  display: inline;
  padding: 0 .14em .06em;
  color: #ffffff;
  text-shadow: 0 8px 18px rgba(16, 57, 75, 0.18);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: linear-gradient(180deg, rgba(22, 79, 118, 0.72) 0%, rgba(34, 108, 158, 0.72) 100%);
}

.hero-text,
.section-heading p,
.intro-grid p,
.module-card p,
.hosting-copy p,
.help-links a,
.note-card p {
  color: #58717d;
  line-height: 1.65;
}

.hero-text {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.dashboard-tags {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-column: 1 / -1;
  gap: 12px;
  margin-top: 10px;
  width: min(76vw, 980px);
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  isolation: isolate;
}

.tag-card {
  position: relative;
  z-index: 1;
  min-height: 122px;
  padding: 18px 18px;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(16, 57, 75, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  transform-origin: center center;
  animation: cardWave 15s ease-in-out infinite;
}

.tag-card:nth-child(1) {
  background: linear-gradient(135deg, #40aae8 0%, #297fd0 100%);
  animation-delay: 0s;
}

.tag-card:nth-child(2) {
  background: linear-gradient(135deg, #5e7cff 0%, #3b43d0 100%);
  animation-delay: 3s;
}

.tag-card:nth-child(3) {
  background: linear-gradient(135deg, #26c7a9 0%, #179c8d 100%);
  animation-delay: 6s;
}

.tag-card:nth-child(4) {
  background: linear-gradient(135deg, #ff9e34 0%, #f37328 100%);
  animation-delay: 9s;
}

.tag-card:nth-child(5) {
  background: linear-gradient(135deg, #e95a95 0%, #c53a7d 100%);
  animation-delay: 12s;
}

.tag-card:hover {
  z-index: 5;
  transform: translateY(-8px) scale(1.12);
  box-shadow: 0 28px 50px rgba(16, 57, 75, 0.2);
  filter: saturate(1.06);
}

.tag-card strong,
.tag-card span {
  display: block;
}

.tag-card strong {
  font-family: "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  font-size: 30px;
  line-height: 0.98;
  color: #ffffff;
}

.tag-card span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.3;
  font-size: 14px;
  font-weight: 700;
}

.hero-copy {
  animation: floatUp 700ms ease both;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  animation: floatUp 860ms ease both;
}

.dashboard-card,
.info-card,
.module-card,
.screen-card,
.note-card,
.hosting-copy,
.hosting-table-wrap,
.help-panel,
.cta-band {
  border: 1px solid rgba(214, 226, 232, 0.9);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.dashboard-main {
  padding: 18px;
  transform: rotate(-2deg);
  transition: transform 240ms ease, box-shadow 240ms ease;
  animation: panelSway 9s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  right: -10px;
  bottom: 28px;
  width: min(290px, 70%);
  padding: 22px;
  transform: rotate(4deg);
  transition: transform 240ms ease, box-shadow 240ms ease;
  animation: floatPanelRight 7.5s ease-in-out infinite;
}

.orbit-card {
  position: absolute;
  left: -14px;
  bottom: 86px;
  width: min(240px, 56%);
  padding: 20px;
  transform: rotate(-4deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(236, 247, 251, 0.94) 100%);
  transition: transform 240ms ease, box-shadow 240ms ease;
  animation: floatPanelLeft 8.5s ease-in-out infinite;
}

.hero-visual:hover .dashboard-main {
  transform: rotate(-1deg) translateY(-6px);
}

.hero-visual:hover .floating-card {
  transform: rotate(2deg) translateY(-10px);
}

.hero-visual:hover .orbit-card {
  transform: rotate(-2deg) translateY(-8px);
}

.window-bar {
  display: flex;
  gap: 8px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bfd9e4;
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

.mini-label {
  margin: 0 0 6px;
  color: var(--primary-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dashboard-head h2 {
  margin: 0;
  font-size: 28px;
  font-family: "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
}

.status-pill {
  padding: 9px 12px;
  border-radius: 999px;
  background: #eaf8ee;
  color: #1f916a;
  font-size: 12px;
  font-weight: 700;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.metric-card,
.chart-block {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fcfe 0%, #edf6fa 100%);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.metric-card {
  animation: softLift 10s ease-in-out infinite;
}

.metric-card:nth-child(2) {
  animation-delay: 1.1s;
}

.metric-card:nth-child(3) {
  animation-delay: 2.2s;
}

.metric-card:hover,
.chart-block:hover,
.info-card:hover,
.module-card:hover,
.screen-card:hover,
.note-card:hover,
.hosting-copy:hover,
.hosting-table-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(16, 57, 75, 0.12);
}

.metric-card p,
.metric-card small,
.chart-copy strong,
.chart-copy p,
.floating-card strong,
.floating-card small {
  display: block;
}

.metric-card p,
.chart-copy p {
  margin: 0 0 8px;
  color: #62808c;
  font-size: 13px;
}

.metric-card strong {
  font-family: "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  font-size: 30px;
  color: var(--ink-900);
}

.metric-card small,
.floating-card small {
  margin-top: 6px;
  color: #6e8792;
  line-height: 1.5;
}

.chart-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: end;
  margin-top: 14px;
}

.chart-copy strong,
.floating-card strong {
  font-size: 22px;
  color: var(--ink-900);
}

.bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: end;
  height: 130px;
}

.bars span {
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, var(--primary-400) 0%, var(--primary-500) 100%);
  animation: pulseBars 2.8s ease-in-out infinite;
}

.bars span:nth-child(2) { animation-delay: 120ms; }
.bars span:nth-child(3) { animation-delay: 240ms; }
.bars span:nth-child(4) { animation-delay: 360ms; }
.bars span:nth-child(5) { animation-delay: 480ms; }
.bars span:nth-child(6) { animation-delay: 600ms; }

.floating-card .mini-label {
  margin-bottom: 10px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 0;
}

.trust-strip div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(214, 226, 232, 0.84);
  transition: transform 220ms ease, background-color 220ms ease;
}

.trust-strip div:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.94);
}

.trust-strip strong {
  font-size: 18px;
}

.trust-strip span {
  color: #627985;
}

.section {
  padding: 90px 0 0;
}

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

.section-heading h2,
.cta-band h2,
.help-showcase h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: end;
}

.intro-grid,
.module-grid,
.showcase-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

.info-card,
.module-card,
.note-card,
.hosting-copy,
.hosting-table-wrap {
  padding: 26px;
  animation: softLift 11.5s ease-in-out infinite;
}

.intro-grid .info-card:nth-child(2),
.module-grid .module-card:nth-child(2),
.purpose-grid .purpose-card:nth-child(2) {
  animation-delay: 1s;
}

.intro-grid .info-card:nth-child(3),
.module-grid .module-card:nth-child(3),
.purpose-grid .purpose-card:nth-child(3) {
  animation-delay: 2s;
}

.module-grid .module-card:nth-child(4) {
  animation-delay: 3s;
}

.hosting-copy {
  animation-delay: 0.8s;
}

.hosting-table-wrap {
  animation-delay: 1.8s;
}

.note-card {
  animation-delay: 2.6s;
}

.info-card h3,
.module-card h3,
.note-card h3,
.hosting-copy h3 {
  margin: 0 0 10px;
  font-size: 28px;
  font-family: "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
}

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

.module-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  transition: transform 220ms ease, box-shadow 220ms ease;
  animation: softLift 12s ease-in-out infinite;
}

.module-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(73, 205, 235, 0.2) 0%, rgba(29, 155, 203, 0.06) 100%);
  transform: rotate(18deg);
  transition: transform 280ms ease, opacity 280ms ease;
}

.module-card:hover::after {
  transform: rotate(8deg) scale(1.04);
}

.feature-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(214, 226, 232, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 34px rgba(16, 57, 75, 0.05);
}

.feature-ribbon span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(231, 247, 252, 0.92);
  color: var(--primary-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.module-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #e7f7fc;
  color: var(--primary-600);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.showcase-grid {
  grid-template-columns: 0.8fr 1.2fr 0.8fr;
  align-items: stretch;
}

.screen-card {
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f9fc 100%);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.screen-top {
  height: 12px;
  width: 72px;
  border-radius: 999px;
  background: #d4e5ed;
}

.screen-content {
  margin-top: 20px;
}

.screen-line {
  height: 14px;
  border-radius: 999px;
  background: #d9eef5;
}

.screen-line.short {
  width: 56%;
}

.screen-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.screen-table span,
.screen-kpis span {
  height: 64px;
  border-radius: 16px;
  background: #edf7fb;
}

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

.screen-chart {
  position: relative;
  overflow: hidden;
  height: 180px;
  margin-top: 16px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(29, 155, 203, 0.12) 0%, rgba(29, 155, 203, 0.02) 100%),
    linear-gradient(90deg, rgba(214, 226, 232, 0.7) 1px, transparent 1px),
    linear-gradient(rgba(214, 226, 232, 0.7) 1px, transparent 1px);
  background-size: auto, 22px 22px, 22px 22px;
}

.screen-chart::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(73, 205, 235, 0.24) 48%, transparent 100%);
  transform: translateX(-100%);
  animation: scanline 3.4s ease-in-out infinite;
}

.tall {
  min-height: 420px;
}

.wide {
  min-height: 300px;
}

.note-card {
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: linear-gradient(180deg, #12394a 0%, #0e2f3d 100%);
  color: #fff;
}

.note-card p,
.note-card a {
  color: rgba(255, 255, 255, 0.8);
}

.note-kicker {
  margin: 0 0 18px;
  color: #ffffff !important;
  font-family: "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  font-size: clamp(72px, 11vw, 132px);
  line-height: 0.9;
  letter-spacing: -1px;
  font-weight: 800;
}

.note-card a {
  margin-top: 12px;
  font-weight: 700;
}

.hosting-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 28px;
}

.hosting-banner {
  width: 100%;
  margin-bottom: 18px;
  padding: 0 4px;
}

.hosting-banner h2 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  font-stretch: condensed;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 0.98;
  color: var(--ink-900);
}

.hosting-copy {
  background: linear-gradient(180deg, #f9fdff 0%, #eef6fa 100%);
}

.hosting-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.full-width-table {
  table-layout: fixed;
}

.hosting-table th,
.hosting-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line-200);
  transition: background-color 180ms ease, transform 180ms ease;
}

.hosting-table th {
  color: var(--ink-900);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #edf8fc;
}

.featured-row {
  background: linear-gradient(90deg, rgba(231, 247, 252, 0.96) 0%, rgba(216, 239, 247, 0.82) 100%);
}

.featured-row td:first-child {
  position: relative;
  font-weight: 700;
}

.featured-row td:first-child::before {
  content: "Recomendado";
  display: inline-block;
  margin-right: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #dff5fc;
  color: var(--primary-600);
  font-size: 11px;
  letter-spacing: 0.8px;
  vertical-align: middle;
}

.hosting-table tbody tr:hover td {
  background: rgba(237, 248, 252, 0.82);
}

.featured-row:hover td {
  background: rgba(223, 245, 252, 0.92);
}

.hosting-note {
  margin: 16px 0 0;
  color: #647d88;
  font-size: 13px;
  line-height: 1.6;
}

.hosting-table-wrap {
  overflow: hidden;
}

.hosting-table-wrap::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, #40aae8 0%, #3b43d0 26%, #26c7a9 52%, #ff9e34 76%, #e95a95 100%);
}

.help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.help-links a {
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line-200);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.help-links a:hover {
  transform: translateX(4px);
  border-color: rgba(20, 139, 183, 0.28);
  box-shadow: 0 14px 24px rgba(16, 57, 75, 0.08);
}

.help-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.help-copy {
  padding: 10px 4px 0;
}

.help-copy p {
  margin: 18px 0 0;
  color: #5d7480;
  font-size: 17px;
  line-height: 1.65;
}

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

.help-card {
  overflow: hidden;
  border: 1px solid rgba(214, 226, 232, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  transition: transform 220ms ease, box-shadow 220ms ease;
  animation: softLift 11s ease-in-out infinite;
}

.help-card:nth-child(2) {
  animation-delay: 0.9s;
}

.help-card:nth-child(3) {
  animation-delay: 1.8s;
}

.help-card:nth-child(4) {
  animation-delay: 2.7s;
}

.help-card:nth-child(5) {
  animation-delay: 3.6s;
}

.help-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(16, 57, 75, 0.12);
}

.help-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #edf7fb;
}

.help-card div {
  padding: 18px;
}

.help-card strong,
.help-card span {
  display: block;
}

.help-card strong {
  font-family: "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  font-size: 28px;
  color: var(--ink-900);
}

.help-card span {
  margin-top: 8px;
  color: #5f7681;
  line-height: 1.5;
}

.large-card {
  grid-column: 1 / -1;
}

.purpose-section {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.purpose-hero,
.purpose-card {
  padding: 28px;
  border: 1px solid rgba(214, 226, 232, 0.92);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.purpose-hero {
  animation: softLift 13s ease-in-out infinite;
}

.purpose-hero {
  background:
    radial-gradient(circle at top right, rgba(58, 202, 248, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(250, 253, 255, 0.98) 0%, rgba(239, 247, 252, 0.95) 100%);
}

.purpose-hero h2 {
  max-width: 780px;
}

.purpose-lead {
  max-width: 900px;
  margin: 18px 0 0;
  color: #5d7480;
  font-size: 18px;
  line-height: 1.7;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.9fr;
  gap: 18px;
}

.purpose-card p {
  margin: 0;
  color: #576f7b;
  line-height: 1.8;
}

.purpose-values {
  margin: 0;
  padding-left: 20px;
  color: #576f7b;
  line-height: 1.9;
}

.purpose-values li + li {
  margin-top: 4px;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 26px;
  align-items: center;
  margin-bottom: 40px;
  padding: 34px;
  background: linear-gradient(135deg, #10394b 0%, #174d63 100%);
  color: #fff;
}

.cta-band .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #a9e6f7;
}

.cta-band h2 {
  color: #fff;
}

.cta-text {
  margin: 18px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.65;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-details div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-details strong,
.contact-details span {
  display: block;
}

.contact-details strong {
  color: #a9e6f7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-details span {
  margin-top: 6px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
}

.cta-form-wrap {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.demo-form {
  display: grid;
  gap: 18px;
}

.demo-grid {
  display: grid;
  gap: 14px;
}

.demo-form label {
  display: grid;
  gap: 8px;
}

.demo-form label span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.demo-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-900);
  font-size: 15px;
}

.demo-form input:focus {
  outline: none;
  border-color: rgba(73, 205, 235, 0.7);
  box-shadow: 0 0 0 4px rgba(73, 205, 235, 0.16);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px !important;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-feedback {
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.form-feedback.is-success {
  background: rgba(52, 211, 153, 0.14);
  color: #c9ffea;
  border: 1px solid rgba(52, 211, 153, 0.24);
}

.form-feedback.is-error {
  background: rgba(248, 113, 113, 0.14);
  color: #ffe3e3;
  border: 1px solid rgba(248, 113, 113, 0.24);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-band .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.site-bottom-links {
  padding: 6px 4px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-bottom-links a {
  color: var(--primary-600);
  font-size: 14px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: floatUp 700ms ease forwards;
}

.reveal-delay-1 { animation-delay: 120ms; }
.reveal-delay-2 { animation-delay: 220ms; }
.reveal-delay-3 { animation-delay: 320ms; }
.reveal-delay-4 { animation-delay: 420ms; }

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseBars {
  0%, 100% {
    filter: saturate(1);
    opacity: 0.88;
  }
  50% {
    filter: saturate(1.2);
    opacity: 1;
  }
}

@keyframes scanline {
  0% {
    transform: translateX(-100%);
  }
  60%, 100% {
    transform: translateX(100%);
  }
}

@keyframes drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -16px, 0) scale(1.04);
  }
}

@keyframes ambientShift {
  0%, 100% {
    background-position: 0% 0%, 100% 0%, 0 0;
  }
  50% {
    background-position: 8% 4%, 92% 8%, 0 0;
  }
}

@keyframes gridFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.66;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.8;
  }
}

@keyframes floatShapes {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
    border-radius: 18px;
  }
  12% {
    opacity: 0.62;
  }
  80% {
    opacity: 0.24;
  }
  100% {
    transform: translateY(-1400px) rotate(540deg);
    opacity: 0;
    border-radius: 38px;
  }
}

@keyframes panelSway {
  0%, 100% {
    transform: rotate(-2deg) translateY(0);
  }
  50% {
    transform: rotate(-1deg) translateY(-8px);
  }
}

@keyframes floatPanelRight {
  0%, 100% {
    transform: translateY(0) rotate(4deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes floatPanelLeft {
  0%, 100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

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

@keyframes cardWave {
  0%, 16%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 16px 34px rgba(16, 57, 75, 0.1);
    filter: saturate(1);
  }
  8% {
    transform: translateY(-10px) scale(1.12);
    box-shadow: 0 28px 54px rgba(16, 57, 75, 0.22);
    filter: saturate(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1080px) {
  .site-header {
    border-radius: 18px;
  }

  .nav-shell {
    padding-top: 12px;
  }

  .header-cta {
    width: 100%;
  }

  .hero,
  .split,
  .intro-grid,
  .module-grid,
  .showcase-grid,
  .hosting-layout,
  .help-showcase,
  .purpose-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: auto;
  }

  .dashboard-tags {
    width: 100%;
    grid-column: auto;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 16px;
    transform: none;
  }

  .orbit-card {
    position: static;
    width: 100%;
    margin-top: 16px;
    transform: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 18px, 1180px);
    margin-top: 12px;
  }

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

  .nav-shell {
    padding-top: 10px;
  }

  .brand img {
    width: 100%;
  }

  .site-nav {
    align-items: stretch;
    gap: 8px;
    font-size: 13px;
  }

  .site-nav .nav-link {
    width: 100%;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .dashboard-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .feature-ribbon {
    border-radius: 24px;
  }

  .section {
    padding-top: 68px;
  }

  .cta-band,
  .hosting-table-wrap,
  .hosting-copy,
  .module-card,
  .info-card,
  .note-card {
    padding: 22px;
  }

  .hosting-table th,
  .hosting-table td {
    padding: 12px 10px;
    font-size: 13px;
  }

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