:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-muted: #eef1f4;
  --surface: #ffffff;
  --surface-dark: #111419;
  --surface-dark-2: #1a1e25;
  --ink: #111318;
  --ink-soft: #333740;
  --muted: #6d727c;
  --muted-2: #9499a2;
  --line: #e2e5e9;
  --line-strong: #d3d7dc;
  --cyan: #34bef2;
  --cyan-bright: #55d3ff;
  --cyan-deep: #058fc7;
  --cyan-soft: #e9f8fe;
  --cyan-soft-2: #d4f2fc;
  --green: #27b667;
  --green-soft: #eaf8f0;
  --red: #d95555;
  --red-soft: #fff0f0;
  --yellow: #e9a82e;
  --purple: #7258e8;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1200px;
  --shadow-sm: 0 10px 28px rgba(20, 30, 45, 0.07);
  --shadow-md: 0 24px 70px rgba(20, 30, 45, 0.11);
  --shadow-lg: 0 44px 110px rgba(20, 30, 45, 0.15);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

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

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

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: "Sora", "Inter", system-ui, sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

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

svg:not(.icon-sprite) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.section-pad {
  padding: 128px 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface-dark);
  color: white;
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

:focus-visible {
  outline: 3px solid rgba(52, 190, 242, .62);
  outline-offset: 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--cyan-deep);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.status-dot,
.online-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(39, 182, 103, .34);
  animation: onlinePulse 2.3s ease-out infinite;
}

@keyframes onlinePulse {
  0% { box-shadow: 0 0 0 0 rgba(39, 182, 103, .34); }
  65% { box-shadow: 0 0 0 8px rgba(39, 182, 103, 0); }
  100% { box-shadow: 0 0 0 0 rgba(39, 182, 103, 0); }
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s ease, background-color .24s ease, color .24s ease;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform .24s var(--ease);
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button-dark {
  border-color: var(--surface-dark);
  background: var(--surface-dark);
  color: #fff;
  box-shadow: 0 12px 30px rgba(17, 20, 25, .16);
}

.button-dark:hover {
  background: #000;
  box-shadow: 0 18px 38px rgba(17, 20, 25, .23);
}

.button-light {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .86);
  color: var(--ink);
}

.button-light:hover {
  border-color: #b9bec5;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.button-cyan {
  border-color: var(--cyan);
  background: var(--cyan);
  color: #062634;
  box-shadow: 0 14px 34px rgba(52, 190, 242, .26);
}

.button-cyan:hover {
  background: var(--cyan-bright);
  box-shadow: 0 20px 44px rgba(52, 190, 242, .34);
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 13px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 20px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .78);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  transition: padding .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom-color: rgba(21, 24, 30, .08);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 9px 34px rgba(18, 25, 34, .05);
}

.nav-shell {
  width: min(100%, 1120px);
  min-height: 62px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 10px 8px 16px;
  border: 1px solid rgba(20, 23, 28, .07);
  border-radius: 999px;
  background: rgba(244, 245, 246, .9);
  box-shadow: 0 10px 34px rgba(20, 25, 34, .045), inset 0 1px 0 rgba(255, 255, 255, .88);
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.025em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: #111821;
}

.brand-mark img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 28px);
}

.desktop-nav a,
.nav-login {
  position: relative;
  color: #555a63;
  font-size: 13px;
  font-weight: 600;
  transition: color .2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--cyan-deep);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s var(--ease);
}

.desktop-nav a:hover,
.nav-login:hover {
  color: var(--ink);
}

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

.nav-actions {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .25s var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-3.5px);
}

.menu-toggle span:last-child {
  transform: translateY(3.5px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  width: min(100%, 620px);
  max-height: calc(100vh - 104px);
  margin: 10px auto 0;
  overflow-y: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow-md);
}

.mobile-menu:not([hidden]) {
  display: flex;
  flex-direction: column;
}

.mobile-menu > a:not(.button) {
  padding: 13px 6px;
  border-bottom: 1px solid var(--line);
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 650;
}

.mobile-menu .button {
  margin-top: 14px;
}

/* Hero */
.hero {
  position: relative;
  padding-top: 64px;
  padding-bottom: 78px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero::before {
  top: 40px;
  left: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(52, 190, 242, .12), rgba(52, 190, 242, 0) 67%);
}

.hero::after {
  top: 260px;
  right: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(101, 109, 236, .075), rgba(101, 109, 236, 0) 67%);
}

.hero-copy {
  max-width: 980px;
  text-align: center;
}

.hero-copy h1 {
  max-width: 960px;
  margin-inline: auto;
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 700;
  letter-spacing: -.06em;
}

.hero-copy h1 span {
  display: block;
  color: var(--cyan-deep);
}

.hero-subtitle {
  max-width: 720px;
  margin: 27px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof svg {
  width: 15px;
  height: 15px;
  color: var(--green);
  stroke-width: 2.3;
}

.hero-product {
  position: relative;
  margin-top: 68px;
}

.product-window {
  position: relative;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 22% 0, rgba(59, 130, 246, .14), transparent 35%),
    linear-gradient(145deg, #10151f 0%, #0a0e15 100%);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.product-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .05) .8px, transparent .8px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
  pointer-events: none;
}

.product-toolbar {
  position: relative;
  z-index: 1;
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 19px;
  background: rgba(255, 255, 255, .04);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.toolbar-brand,
.toolbar-path,
.toolbar-user {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  font-size: 12px;
  font-weight: 650;
  color: #ECEFF3;
}

.toolbar-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #1c2430;
}

.toolbar-mark img {
  width: 18px;
  height: 18px;
}

.toolbar-path {
  color: #8A93A2;
}

.toolbar-path svg {
  width: 13px;
  height: 13px;
}

.toolbar-path strong {
  color: #ECEFF3;
}

.toolbar-user {
  justify-self: end;
  color: #8A93A2;
}

.toolbar-user .online-dot {
  width: 7px;
  height: 7px;
}

.dashboard-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.dash-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  background: #131924;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .03);
  transition: transform .32s var(--ease), border-color .25s ease, box-shadow .32s var(--ease);
}

.dash-card:hover {
  z-index: 3;
  border-color: rgba(91, 157, 255, .5);
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.deploy-status-card {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  min-height: 360px;
  padding: 24px;
}

.vps-card {
  grid-column: 8 / 13;
  grid-row: 1;
}

.ssl-card {
  grid-column: 8 / 13;
  grid-row: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
}

.dashboard-grid > .app-installed-card:nth-of-type(4) {
  grid-column: 1 / 5;
  grid-row: 3;
}

.dashboard-grid > .app-installed-card:nth-of-type(5) {
  grid-column: 5 / 9;
  grid-row: 3;
}

.backup-card {
  grid-column: 9 / 13;
  grid-row: 3;
}

.monitor-card {
  grid-column: 1 / 9;
  grid-row: 4;
}

.github-card {
  grid-column: 9 / 13;
  grid-row: 4;
}

.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.card-head.compact {
  align-items: center;
}

.card-kicker {
  display: block;
  margin-bottom: 4px;
  color: #6B7684;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.dash-card h2 {
  overflow-wrap: anywhere;
  color: #ECEFF3;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -.025em;
  line-height: 1.35;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 720;
}

.status-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.status-building {
  background: rgba(217, 155, 29, .16);
  color: #E3B341;
}

.status-building span {
  animation: softBlink 1.2s ease-in-out infinite;
}

.status-online {
  background: rgba(52, 211, 153, .16);
  color: #34D399;
}

@keyframes softBlink {
  50% { opacity: .25; }
}

.repo-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
}

.icon-box {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
}

.icon-box svg {
  width: 20px;
  height: 20px;
}

.icon-github {
  background: var(--surface-dark);
  color: #fff;
}

.icon-cyan {
  background: rgba(91, 157, 255, .16);
  color: #5B9DFF;
}

.repo-row strong,
.repo-row small {
  display: block;
}

.repo-row strong {
  color: #ECEFF3;
  font-size: 13px;
}

.repo-row small {
  margin-top: 1px;
  color: #6B7684;
  font-size: 10px;
}

.repo-check,
.linked-check {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(52, 211, 153, .16);
  color: #34D399;
}

.repo-check svg,
.linked-check svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.4;
}

.deploy-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 20px 2px 17px;
}

.deploy-timeline span {
  position: relative;
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .08);
}

.deploy-timeline .done {
  background: #34D399;
}

.deploy-timeline .active::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-bright), var(--cyan));
  background-size: 200% 100%;
  animation: progressShimmer 1.8s linear infinite;
}

@keyframes progressShimmer {
  to { background-position: -200% 0; }
}

.terminal-preview {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #0A0E15;
  border: 1px solid rgba(255, 255, 255, .06);
  color: #8A93A2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
}

.terminal-preview span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.terminal-preview i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34D399;
}

.terminal-preview .terminal-current {
  color: #ECEFF3;
}

.terminal-preview .terminal-current i {
  background: #5B9DFF;
  box-shadow: 0 0 10px rgba(91, 157, 255, .8);
  animation: softBlink 1.3s ease-in-out infinite;
}

.mini-flag {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 24px;
  border-radius: 7px;
  background: rgba(52, 211, 153, .16);
  color: #34D399;
  font-size: 9px;
  font-weight: 800;
}

.metric-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
}

.metric-pair div {
  padding: 10px 11px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
}

.metric-pair small,
.metric-pair strong {
  display: block;
}

.metric-pair small {
  color: #6B7684;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.metric-pair strong {
  margin-top: 1px;
  color: #ECEFF3;
  font-size: 12px;
}

.resource-bars {
  display: grid;
  gap: 6px;
  margin-top: 12px;
}

.resource-bars span {
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .08);
}

.resource-bars span::before {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3B82F6, #5B9DFF);
}

.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  color: #6B7684;
  font-size: 9px;
}

.card-foot span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #34D399;
  font-weight: 700;
}

.card-foot .online-dot {
  width: 6px;
  height: 6px;
}

.ssl-card h2 {
  font-size: 12px;
}

.app-installed-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: center;
  min-height: 144px;
}

.app-installed-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 12px;
}

.app-installed-card small {
  display: block;
  max-width: 170px;
  margin-top: 3px;
  overflow: hidden;
  color: #6B7684;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tiny-action {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  color: #8A93A2;
  font-size: 10px;
  font-weight: 700;
}

.tiny-action svg {
  width: 14px;
  height: 14px;
}

.head-icon {
  width: 20px;
  height: 20px;
  color: #5B9DFF;
}

.snapshot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
  color: #ECEFF3;
  font-size: 9px;
}

.snapshot-row span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.snapshot-row i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34D399;
}

.snapshot-row strong {
  color: #34D399;
}

.snapshot-row.muted {
  color: #6B7684;
}

.uptime-chart {
  width: 100%;
  height: 66px;
  margin-top: 9px;
}

.uptime-chart .chart-area {
  fill: rgba(91, 157, 255, .16);
  stroke: none;
}

.uptime-chart .chart-line {
  fill: none;
  stroke: #5B9DFF;
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
}

.monitor-meta {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: -2px;
}

.monitor-meta strong {
  font-family: "Sora", sans-serif;
  color: #ECEFF3;
  font-size: 20px;
  letter-spacing: -.04em;
}

.monitor-meta span {
  color: #6B7684;
  font-size: 9px;
}

.github-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}

.github-card .linked-check {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(19, 25, 36, .92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
  color: #ECEFF3;
  font-size: 11px;
  font-weight: 680;
  animation: noteFloat 5s ease-in-out infinite;
}

.floating-note svg {
  width: 15px;
  height: 15px;
  color: #5B9DFF;
}

.floating-note .online-dot {
  width: 7px;
  height: 7px;
}

.note-left {
  bottom: -22px;
  left: 36px;
}

.note-right {
  top: 112px;
  right: -22px;
  animation-delay: -2.2s;
}

@keyframes noteFloat {
  50% { transform: translateY(-8px); }
}

.js .hero-card {
  opacity: 0;
  transform: translateY(24px) scale(.985);
}

.js body.hero-ready .hero-card {
  opacity: 1;
  transform: none;
  transition: opacity .72s var(--ease), transform .72s var(--ease), border-color .25s ease, box-shadow .32s var(--ease);
}

.js body.hero-ready .hero-card:nth-child(1) { transition-delay: .08s; }
.js body.hero-ready .hero-card:nth-child(2) { transition-delay: .15s; }
.js body.hero-ready .hero-card:nth-child(3) { transition-delay: .22s; }
.js body.hero-ready .hero-card:nth-child(4) { transition-delay: .29s; }
.js body.hero-ready .hero-card:nth-child(5) { transition-delay: .36s; }
.js body.hero-ready .hero-card:nth-child(6) { transition-delay: .43s; }
.js body.hero-ready .hero-card:nth-child(7) { transition-delay: .5s; }
.js body.hero-ready .hero-card:nth-child(8) { transition-delay: .57s; }

/* Technology marquee */
.trust-strip {
  padding: 30px 0 34px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.trust-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.trust-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.trust-heading span {
  color: var(--muted-2);
  font-size: 12px;
}

.marquee {
  display: flex;
  width: max-content;
  min-width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.marquee-track {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
  padding-right: 12px;
  animation: marquee 38s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  to { transform: translateX(-100%); }
}

.tech-pill {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(20, 30, 42, .025);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 680;
  transition: transform .22s var(--ease), border-color .2s ease, box-shadow .22s var(--ease);
}

.tech-pill:hover {
  border-color: rgba(52, 190, 242, .45);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.tech-pill img,
.tech-pill svg,
.tech-monogram {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tech-pill svg {
  padding: 3px;
}

.tech-monogram {
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.tech-monogram.docker { background: #188ded; }
.tech-monogram.redis { background: #d82c20; }
.tech-monogram.mautic { background: #4d5d99; }

/* Shared headings and reveal */
.section-heading {
  margin-bottom: 52px;
}

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

.section-heading h2 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 650;
  letter-spacing: -.06em;
}

.section-heading > p:not(.eyebrow),
.split-heading > p {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 80px;
}

.split-heading > p {
  margin: 0;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Library */
.library {
  background: #fff;
}

.library-tabs {
  width: max-content;
  max-width: 100%;
  display: flex;
  gap: 4px;
  margin: 0 auto 34px;
  padding: 5px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  scrollbar-width: none;
}

.library-tabs::-webkit-scrollbar {
  display: none;
}

.library-tabs button {
  min-width: max-content;
  padding: 10px 17px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s var(--ease);
}

.library-tabs button:hover {
  color: var(--ink);
}

.library-tabs button[aria-selected="true"] {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 13px rgba(20, 28, 38, .1);
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  transition: opacity .16s ease, transform .16s ease;
}

.library-grid.is-filtering {
  opacity: 0;
  transform: translateY(8px);
}

.library-card {
  min-width: 0;
  min-height: 430px;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg-soft);
  transition: transform .32s var(--ease), border-color .25s ease, box-shadow .32s var(--ease);
}

.library-card[hidden] {
  display: none !important;
}

.library-card-large {
  grid-column: span 8;
}

.library-card:hover {
  border-color: rgba(52, 190, 242, .55);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.library-card-copy {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.library-card-copy > div {
  min-width: 0;
}

.feature-icon,
.feature-app {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #d9e4ea;
  border-radius: 13px;
  background: #fff;
  color: var(--cyan-deep);
  box-shadow: 0 8px 18px rgba(18, 31, 43, .06);
}

.feature-icon.whatsapp {
  color: var(--green);
}

.feature-icon svg {
  width: 21px;
  height: 21px;
}

.feature-app img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.library-card h3 {
  margin: 1px 0 6px;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 740;
  letter-spacing: -.035em;
  line-height: 1.3;
}

.library-card-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.preview {
  flex: 1;
  min-height: 230px;
  position: relative;
  overflow: hidden;
  margin-top: auto;
  border: 1px solid rgba(29, 37, 47, .09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(21, 30, 41, .08);
}

.preview-repo {
  min-height: 245px;
  padding: 15px;
}

.preview-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.preview-top small {
  margin-left: 5px;
  color: var(--muted-2);
  font-size: 9px;
}

.preview-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.preview-dot.red { background: #ff6f69; }
.preview-dot.yellow { background: #efbd51; }
.preview-dot.green { background: #52bd71; }

.fake-field {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: 10px;
}

.fake-field svg {
  width: 18px;
  height: 18px;
  color: var(--ink);
}

.fake-field b {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 8px;
}

.fake-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.fake-actions span {
  color: var(--muted-2);
  font-size: 9px;
}

.fake-actions strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border-radius: 999px;
  background: var(--surface-dark);
  color: #fff;
  font-size: 9px;
}

.fake-actions svg {
  width: 12px;
  height: 12px;
}

.preview-vps {
  padding: 16px;
  background: linear-gradient(145deg, #fff, #f6f8f9);
}

.vps-location {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.vps-location > span {
  width: 36px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e9f7ed;
  color: #188b4c;
  font-size: 9px;
  font-weight: 800;
}

.vps-location strong,
.vps-location small {
  display: block;
}

.vps-location strong { font-size: 11px; }
.vps-location small { color: var(--muted-2); font-size: 8px; }
.vps-location .online-dot { width: 7px; height: 7px; }

.vps-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.vps-stats span {
  min-width: 0;
  padding: 12px 8px;
  border-radius: 11px;
  background: var(--bg-soft);
  text-align: center;
}

.vps-stats small,
.vps-stats b {
  display: block;
}

.vps-stats small { color: var(--muted-2); font-size: 7px; text-transform: uppercase; }
.vps-stats b { margin-top: 3px; font-size: 10px; }

.preview-domain {
  padding: 14px;
  background: linear-gradient(155deg, #fff, #effbff);
}

.browser-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 8px;
}

.browser-bar > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.browser-bar span {
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-bar b {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--green);
  font-size: 7px;
}

.browser-bar svg {
  width: 10px;
  height: 10px;
}

.certificate {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 54px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid #d8eee1;
  border-radius: 14px;
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow-sm);
  transform: translate(-50%, -35%);
}

.certificate-check {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
}

.certificate-check svg { width: 18px; height: 18px; stroke-width: 2.4; }
.certificate strong,
.certificate small { display: block; }
.certificate strong { font-size: 10px; }
.certificate small { color: var(--muted-2); font-size: 8px; }

.preview-workflow,
.preview-typebot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 12px;
  background-image: radial-gradient(#dce1e5 1px, transparent 1px);
  background-size: 16px 16px;
}

.workflow-node,
.preview-typebot span {
  position: relative;
  z-index: 2;
  min-width: 62px;
  padding: 10px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(25, 35, 47, .09);
  font-size: 7px;
  font-weight: 700;
  text-align: center;
}

.workflow-node.done { border-color: #bfe5ce; color: var(--green); }
.workflow-node.action { border-color: #b9e7f7; color: var(--cyan-deep); }

.preview-workflow > i,
.preview-typebot > i {
  width: 20px;
  height: 1px;
  flex: 0 1 auto;
  background: var(--line-strong);
}

.preview-site {
  display: grid;
  grid-template-columns: 46px 1fr;
  padding: 13px;
  background: #f4f6f7;
}

.site-sidebar {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 12px 10px;
  border-radius: 11px 0 0 11px;
  background: #20262d;
}

.site-sidebar i {
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .22);
}

.site-sidebar i:first-child { background: var(--cyan); }

.site-canvas {
  padding: 19px;
  border-radius: 0 11px 11px 0;
  background: #fff;
}

.site-canvas > span {
  display: block;
  width: 60%;
  height: 10px;
  margin-bottom: 14px;
  border-radius: 4px;
  background: #252b32;
}

.site-canvas > b {
  display: block;
  width: 88%;
  height: 5px;
  margin-bottom: 6px;
  border-radius: 99px;
  background: #e5e7e9;
}

.site-canvas > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 24px;
}

.site-canvas > div i {
  height: 75px;
  border-radius: 8px;
  background: linear-gradient(145deg, #dff5fd, #edf0f2);
}

.preview-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  background: #edf8f2;
}

.preview-messages > span {
  max-width: 80%;
  padding: 11px 13px;
  border-radius: 12px 12px 12px 3px;
  background: #fff;
  box-shadow: 0 7px 17px rgba(25, 50, 38, .06);
  font-size: 8px;
}

.preview-messages > .reply {
  align-self: flex-end;
  border-radius: 12px 12px 3px 12px;
  background: #d9f7e5;
}

.preview-messages small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--green);
  font-size: 8px;
  font-weight: 700;
}

.preview-messages .online-dot { width: 6px; height: 6px; }

.preview-typebot span:nth-of-type(1) { transform: translateY(-34px); }
.preview-typebot span:nth-of-type(2) { transform: translateY(8px); border-color: #b9e7f7; }
.preview-typebot span:nth-of-type(3) { transform: translateY(-20px); border-color: #cfc7f6; }

.preview-inbox {
  display: grid;
  grid-template-columns: 34% 66%;
  padding: 14px;
  background: #f3f6f8;
}

.inbox-list {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 11px;
  border-radius: 11px 0 0 11px;
  background: #fff;
}

.inbox-list i {
  height: 28px;
  border-radius: 7px;
  background: #eef1f4;
}

.inbox-list i:first-child { background: var(--cyan-soft-2); }

.inbox-chat {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 20px 13px;
  border-left: 1px solid var(--line);
  border-radius: 0 11px 11px 0;
  background: #fff;
}

.inbox-chat span {
  width: 68%;
  height: 26px;
  border-radius: 9px 9px 9px 3px;
  background: #edf0f3;
}

.inbox-chat .right {
  align-self: flex-end;
  border-radius: 9px 9px 3px 9px;
  background: #d9f3fd;
}

.preview-backups {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
  background: linear-gradient(150deg, #fff, #f4faf6);
}

.preview-backups > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  font-size: 8px;
}

.preview-backups span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.preview-backups i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.preview-backups b {
  color: var(--green);
}

.preview-uptime {
  padding: 19px;
  background: linear-gradient(155deg, #fff, #effbff);
}

.preview-uptime > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 9px;
}

.preview-uptime > div span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-weight: 700;
}

.preview-uptime .online-dot { width: 6px; height: 6px; }
.preview-uptime strong { font-size: 14px; }

.preview-uptime svg {
  width: 100%;
  height: 112px;
  margin-top: 25px;
}

.preview-uptime path {
  fill: none;
  stroke: var(--cyan-deep);
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
}

.preview-support {
  min-height: 245px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #E5DDD5;
}

.wa-window {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(20, 45, 34, .1);
}

.wa-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  background: #075E54;
}

.wa-header-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 15px;
  height: 15px;
  color: rgba(255, 255, 255, .65);
  transform: translateY(-50%);
}

.support-avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #128C7E;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

.wa-header strong,
.wa-header small {
  display: block;
}

.wa-header strong { color: #fff; font-size: 10px; }
.wa-header small { display: flex; align-items: center; gap: 5px; color: #CFF2E5; font-size: 7px; }
.wa-header .online-dot { width: 5px; height: 5px; background: #25D366; }

.wa-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 12px;
  background: #ECE5DD;
  background-image: radial-gradient(rgba(0, 0, 0, .025) 1px, transparent 1px);
  background-size: 14px 14px;
}

.wa-bubble {
  position: relative;
  width: fit-content;
  max-width: 82%;
  padding: 8px 10px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
  font-size: 8px;
  line-height: 1.45;
}

.wa-in {
  align-self: flex-start;
  border-top-left-radius: 2px;
}

.wa-out {
  align-self: flex-end;
  border-top-right-radius: 2px;
  background: #DCF8C6;
}

.wa-ticks {
  display: inline-block;
  margin-left: 5px;
  color: #34B7F1;
  font-size: 8px;
  font-style: normal;
}

.preview-logs {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 19px;
  background: #13171c;
  color: #95a0aa;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 8px;
}

.preview-logs span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.preview-logs i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.preview-logs .current {
  color: #f5f8fa;
}

.preview-logs .current i {
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: softBlink 1.2s ease-in-out infinite;
}

/* Flow */
.flow-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.flow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.flow-line {
  position: absolute;
  z-index: 0;
  top: 57px;
  right: 8%;
  left: 8%;
  height: 2px;
  overflow: visible;
  background: #d3d8dd;
}

.flow-orb {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(52, 190, 242, .16), 0 0 22px rgba(52, 190, 242, .7);
  transform: translate(-50%, -50%);
  animation: flowTravel 6s ease-in-out infinite;
}

@keyframes flowTravel {
  0%, 8% { left: 0; opacity: 0; }
  14% { opacity: 1; }
  86% { opacity: 1; }
  92%, 100% { left: 100%; opacity: 0; }
}

.flow-step {
  min-width: 0;
  position: relative;
  z-index: 1;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .86);
  transition: transform .3s var(--ease), border-color .25s ease, box-shadow .3s var(--ease);
}

.flow-step:hover {
  border-color: rgba(52, 190, 242, .5);
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.flow-number {
  position: absolute;
  top: 13px;
  right: 15px;
  color: var(--muted-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
}

.flow-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 45px;
  border: 1px solid #d7e7ed;
  border-radius: 15px;
  background: #fff;
  color: var(--cyan-deep);
  box-shadow: 0 7px 18px rgba(22, 34, 47, .08);
}

.flow-icon svg {
  width: 23px;
  height: 23px;
}

.flow-step h3 {
  margin-bottom: 9px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 740;
  letter-spacing: -.035em;
  line-height: 1.28;
}

.flow-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

/* Apps */
.apps-section {
  background: #fff;
}

.apps-library {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.app-card {
  min-width: 0;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 13px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform .28s var(--ease), border-color .22s ease, box-shadow .28s var(--ease);
}

.app-card:hover {
  border-color: rgba(52, 190, 242, .52);
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.app-logo {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
}

.app-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.app-card h3 {
  margin-bottom: 2px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 740;
  letter-spacing: -.025em;
}

.app-card p {
  margin-bottom: 0;
  color: var(--muted-2);
  font-size: 10px;
}

.included {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  margin-top: 4px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.included i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

/* Apps — featured 3 */
.apps-featured {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.app-card.app-card-featured {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 16px;
  padding: 28px 26px;
  border-radius: 22px;
}

.app-card-featured .included {
  position: absolute;
  top: 20px;
  right: 20px;
  grid-column: auto;
  margin-top: 0;
}

.app-logo-lg {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

.app-logo-lg img {
  width: 46px;
  height: 46px;
}

.app-card-featured h3 {
  margin-bottom: 6px;
  font-size: 19px;
}

.app-card-featured p {
  color: var(--muted-2);
  font-size: 13.5px;
  line-height: 1.5;
}

/* Apps — compact chips for the rest of the catalog */
.apps-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.app-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 650;
}

.app-chip img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.app-chip-more {
  border-style: dashed;
  color: var(--muted-2);
  font-weight: 600;
}

/* Apps — "ver catálogo completo" toggle */
.apps-more-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.apps-more-trigger .apps-more-label-open {
  display: none;
}

.apps-more-trigger[aria-expanded="true"] .apps-more-label-closed {
  display: none;
}

.apps-more-trigger[aria-expanded="true"] .apps-more-label-open {
  display: inline;
}

.apps-more-chevron {
  width: 16px;
  height: 16px;
  transition: transform .24s var(--ease);
}

.apps-more-trigger[aria-expanded="true"] .apps-more-chevron {
  transform: rotate(90deg);
}

.apps-more-panel[hidden] {
  display: none;
}

/* Comparison */
.comparison {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.comparison-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
}

.comparison-without {
  background: #fff;
}

.comparison-with {
  border-color: #2b333c;
  background: var(--surface-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.comparison-with::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 190, 242, .22), transparent 67%);
  pointer-events: none;
}

.comparison-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.comparison-with .comparison-title {
  border-color: rgba(255, 255, 255, .1);
}

.comparison-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 500;
}

.comparison-without .comparison-mark {
  background: var(--red-soft);
  color: var(--red);
}

.comparison-with .comparison-mark {
  background: rgba(52, 190, 242, .14);
  color: var(--cyan);
}

.comparison-mark svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.3;
}

.comparison-title p {
  margin-bottom: 2px;
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.comparison-with .comparison-title p {
  color: var(--cyan);
}

.comparison-title h3 {
  font-family: "Inter", sans-serif;
  font-size: 19px;
  font-weight: 740;
  letter-spacing: -.035em;
  line-height: 1.3;
}

.comparison-card ul {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 14px;
}

.comparison-with li {
  color: #c5cbd2;
}

.comparison-card li > span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 1px;
  border-radius: 7px;
  font-size: 14px;
}

.comparison-without li > span {
  background: var(--red-soft);
  color: var(--red);
}

.comparison-with li > span {
  background: rgba(52, 190, 242, .12);
  color: var(--cyan);
}

.comparison-card li svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.4;
}

/* Pricing */
.pricing {
  background: #fff;
}

.pricing-controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px auto 40px;
}

.segmented {
  display: flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
}

.segmented button {
  min-width: max-content;
  padding: 9px 15px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.segmented button[aria-pressed="true"] {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(20, 28, 38, .09);
}

.segmented button span {
  margin-left: 4px;
  color: var(--green);
  font-size: 9px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: #fff;
  transition: transform .32s var(--ease), border-color .25s ease, box-shadow .32s var(--ease);
}

.plan-card:hover {
  border-color: rgba(52, 190, 242, .45);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.plan-card.featured {
  border-color: #2d353f;
  background: var(--surface-dark);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.popular-badge {
  position: absolute;
  top: 17px;
  right: 17px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--cyan);
  color: #072431;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.plan-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.featured .plan-head {
  padding-right: 82px;
}

.plan-head p {
  margin-bottom: 2px;
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.featured .plan-head p {
  color: #8d98a4;
}

.plan-head h3 {
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -.055em;
}

.plan-capacity {
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  text-transform: uppercase;
}

.featured .plan-capacity {
  background: rgba(255, 255, 255, .08);
  color: #bdc5cd;
}

.plan-desc {
  min-height: 24px;
  margin: 16px 0 6px;
  color: var(--muted);
  font-size: 13px;
}

.featured .plan-desc {
  color: #aeb6be;
}

.plan-usecase {
  min-height: 42px;
  margin: 0 0 22px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--cyan-soft);
  color: var(--cyan-deep);
  font-size: 12px;
  line-height: 1.5;
}

.featured .plan-usecase {
  background: rgba(52, 190, 242, .14);
  color: var(--cyan-bright);
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.plan-price > span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.plan-price strong {
  font-family: "Sora", sans-serif;
  font-size: 49px;
  font-weight: 650;
  letter-spacing: -.07em;
  line-height: 1;
}

.featured .plan-price strong {
  color: var(--cyan);
}

.plan-price small {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
}

.plan-billing {
  min-height: 19px;
  margin: 8px 0 18px;
  color: var(--muted-2);
  font-size: 10px;
}

.plan-card .plan-buy {
  width: 100%;
  margin-bottom: 24px;
}

.featured .button-cyan {
  border-color: var(--cyan);
}

.plan-specs {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.featured .plan-specs {
  border-color: rgba(255, 255, 255, .1);
}

.plan-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.featured .plan-specs li {
  color: #d2d7dc;
}

.plan-specs svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--green);
  stroke-width: 2.4;
}

.plan-specs b {
  font-weight: 650;
}

.plan-specs span {
  margin-left: auto;
  color: var(--muted-2);
  font-size: 10px;
}

/* Founder */
.founder-section {
  padding-top: 48px;
  background: #fff;
}

.founder-card {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: stretch;
  gap: 54px;
  padding: 24px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--surface-dark);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.founder-photo {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 24px;
  background: #292f37;
}

.founder-photo::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(to top, rgba(13, 16, 20, .66), transparent);
  pointer-events: none;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-photo > span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  background: rgba(14, 18, 23, .7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #e8edf2;
  font-size: 11px;
  font-weight: 650;
}

.founder-photo .online-dot {
  width: 7px;
  height: 7px;
}

.founder-copy {
  align-self: center;
  max-width: 590px;
  padding: 48px 46px 48px 0;
}

.founder-copy .eyebrow {
  color: var(--cyan);
}

.founder-copy h2 {
  max-width: 560px;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 650;
  letter-spacing: -.06em;
}

.founder-name {
  margin: 20px 0 22px;
  color: var(--cyan);
  font-weight: 700;
}

.founder-copy > p:not(.eyebrow):not(.founder-name) {
  margin-bottom: 15px;
  color: #adb5bd;
  font-size: 14px;
  line-height: 1.65;
}

.founder-copy .button {
  margin-top: 13px;
  border-color: rgba(255, 255, 255, .17);
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.founder-copy .button:hover {
  border-color: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .24);
}

/* Final CTA */
.final-cta {
  padding-top: 36px;
  background: #fff;
}

.final-cta-inner {
  position: relative;
  overflow: hidden;
  padding: 104px 42px;
  border: 1px solid #cceaf5;
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 16%, rgba(52, 190, 242, .2), transparent 25%),
    radial-gradient(circle at 88% 80%, rgba(98, 113, 231, .1), transparent 30%),
    #edfaff;
  text-align: center;
}

.final-cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(5, 143, 199, .12) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at center, transparent 15%, #000 90%);
  pointer-events: none;
}

.final-cta-inner > *:not(.final-orbit) {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 850px;
  margin-inline: auto;
  font-size: clamp(42px, 6.3vw, 76px);
  font-weight: 650;
  letter-spacing: -.07em;
}

.final-cta-inner > p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.final-orbit {
  position: absolute;
  z-index: 1;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 46, 56, .1);
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-sm);
  animation: orbitFloat 5.5s ease-in-out infinite;
}

.final-orbit img,
.final-orbit svg {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.orbit-one { top: 58px; left: 7%; }
.orbit-two { top: 94px; right: 9%; animation-delay: -2s; }
.orbit-three { right: 14%; bottom: 45px; width: 56px; height: 56px; border-radius: 18px; animation-delay: -3.4s; }
.orbit-three svg { width: 27px; height: 27px; color: var(--cyan-deep); }

@keyframes orbitFloat {
  50% { transform: translateY(-10px) rotate(2deg); }
}

/* Footer */
.site-footer {
  position: relative;
  margin-top: 128px;
  padding: 0 0 24px;
  overflow: hidden;
  background: var(--surface-dark);
  color: #fff;
}

.footer-cta-wrap {
  position: relative;
  margin-top: 46px;
}

.footer-cta-band {
  position: relative;
  overflow: hidden;
  padding: 56px 32px;
  border: 1px solid rgba(91, 157, 255, .18);
  border-radius: 30px;
  background: linear-gradient(160deg, #131b2c 0%, #0c111c 100%);
  text-align: center;
}

.footer-cta-glow {
  position: absolute;
  z-index: 0;
  inset: -40%;
  background:
    radial-gradient(circle at 24% 30%, rgba(91, 157, 255, .28), transparent 40%),
    radial-gradient(circle at 78% 70%, rgba(52, 211, 153, .16), transparent 38%);
  animation: ctaGlowDrift 9s ease-in-out infinite;
}

@keyframes ctaGlowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, -4%) scale(1.08); }
}

.footer-cta-content {
  position: relative;
  z-index: 1;
}

.footer-cta-content .eyebrow {
  color: #5B9DFF;
}

.footer-cta-content h3 {
  max-width: 480px;
  margin: 10px auto 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 3.4vw, 32px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: #fff;
}

.footer-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #fff;
  color: #0c111c;
  font-size: 14px;
  font-weight: 720;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.footer-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(91, 157, 255, .28);
}

.footer-cta-btn svg {
  width: 15px;
  height: 15px;
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
}

.pulse-dot::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(37, 211, 102, .45);
  animation: pulseRing 1.8s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: scale(.6); opacity: 1; }
  100% { transform: scale(2.1); opacity: 0; }
}

.cta-app-icon {
  position: absolute;
  z-index: 0;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
  animation: ctaAppFloat var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform;
}

.cta-app-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes ctaAppFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(var(--dx, 8px), var(--dy, -12px)) rotate(var(--rot, 4deg)) scale(1.05); }
}

.cta-app-1 { top: 14px;    left: 5%;   --dur: 6.4s; --delay: -.6s;  --dx: 10px; --dy: -14px; --rot: 5deg; }
.cta-app-2 { top: 24px;    right: 7%;  --dur: 7.2s; --delay: -2.4s; --dx: -9px; --dy: -10px; --rot: -4deg; }
.cta-app-3 { top: 44%;     left: 2%;   --dur: 8s;   --delay: -1.1s; --dx: 8px;  --dy: 12px;  --rot: 3deg; width: 44px; height: 44px; }
.cta-app-4 { top: 40%;     right: 2.5%;--dur: 6.8s; --delay: -3.2s; --dx: -8px; --dy: 10px;  --rot: -5deg; width: 44px; height: 44px; }
.cta-app-5 { bottom: 18px; left: 10%;  --dur: 7.6s; --delay: -.9s;  --dx: 9px;  --dy: -8px;  --rot: -3deg; }
.cta-app-6 { top: 62%; right: 3%; width: 44px; height: 44px; --dur: 6.2s; --delay: -2.8s; --dx: -10px;--dy: -9px;  --rot: 4deg; }
.cta-app-7 { bottom: 40px; left: 27%;  --dur: 8.4s; --delay: -1.8s; --dx: 6px;  --dy: 9px;   --rot: 3deg; width: 40px; height: 40px; display: none; }
.cta-app-8 { bottom: 40px; right: 27%; --dur: 7s;   --delay: -3.6s; --dx: -6px; --dy: 8px;   --rot: -3deg; width: 40px; height: 40px; display: none; }

@media (min-width: 860px) {
  .cta-app-7, .cta-app-8 { display: grid; }
}

.footer-integrations-badge {
  position: absolute;
  z-index: 3;
  right: 40px;
  bottom: -24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 9px 9px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
  animation: badgeFloat 6s ease-in-out infinite;
}

.footer-integrations-icons {
  display: flex;
}

.footer-integrations-icons img {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #fff;
  object-fit: contain;
  margin-left: -9px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
}

.footer-integrations-icons img:first-child {
  z-index: 4;
  margin-left: 0;
}
.footer-integrations-icons img:nth-child(2) { z-index: 3; }
.footer-integrations-icons img:nth-child(3) { z-index: 2; }
.footer-integrations-icons img:nth-child(4) { z-index: 1; }

.footer-integrations-badge span {
  color: #0c111c;
  font-size: 12px;
  font-weight: 720;
  white-space: nowrap;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .7fr .7fr 1fr;
  gap: 52px;
  margin-top: 54px;
}

.footer-brand .brand-mark {
  border: 1px solid rgba(255, 255, 255, .1);
  transition: transform .25s var(--ease), border-color .25s ease;
}

.footer-brand .brand:hover .brand-mark {
  border-color: rgba(91, 157, 255, .5);
  transform: translateY(-2px) rotate(-3deg);
}

.footer-brand p {
  max-width: 260px;
  margin: 17px 0 0;
  color: #8f98a2;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-links a {
  position: relative;
  color: #aeb6be;
  font-size: 12px;
  transition: color .2s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: #5B9DFF;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-contact p {
  margin-bottom: 11px;
  color: #8f98a2;
  font-size: 11px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
}

.footer-contact svg {
  width: 14px;
  height: 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  color: #727b85;
  font-size: 10px;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 14px;
  color: #5f6771;
  font-size: 10px;
}

@media (min-width: 861px) and (max-height: 900px) {
  .hero {
    padding-top: 26px;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
  }

  .hero-copy h1 {
    font-size: clamp(26px, 3.6vw, 44px);
  }

  .hero-subtitle {
    margin-top: 18px;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-proof {
    margin-top: 16px;
  }

  .hero-product {
    margin-top: 54px;
  }
}

/* Responsive */
@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

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

  .deploy-status-card {
    grid-column: 1 / 7;
    grid-row: 1;
  }

  .vps-card {
    grid-column: 1 / 4;
    grid-row: 2;
  }

  .ssl-card {
    grid-column: 4 / 7;
    grid-row: 2;
  }

  .dashboard-grid > .app-installed-card:nth-of-type(4) {
    grid-column: 1 / 4;
    grid-row: 3;
  }

  .dashboard-grid > .app-installed-card:nth-of-type(5) {
    grid-column: 4 / 7;
    grid-row: 3;
  }

  .backup-card {
    grid-column: 1 / 4;
    grid-row: 4;
  }

  .monitor-card {
    grid-column: 4 / 7;
    grid-row: 4;
  }

  .github-card {
    grid-column: 1 / 7;
    grid-row: 5;
    min-height: 108px;
  }

  .library-card,
  .library-card-large {
    grid-column: span 6;
  }

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

  .flow-line {
    display: none;
  }

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

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

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

  .plans-grid {
    gap: 14px;
  }

  .plan-card {
    padding: 23px;
  }

  .founder-card {
    gap: 36px;
  }

  .founder-copy {
    padding-right: 24px;
  }
}

@media (max-width: 860px) {
  .section-pad {
    padding: 96px 0;
  }

  .hero {
    padding-top: 70px;
    padding-bottom: 72px;
  }

  .hero-copy h1 {
    font-size: clamp(45px, 9.8vw, 72px);
  }

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

  .toolbar-path {
    display: none;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .split-heading > p {
    max-width: 680px;
  }

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

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

  .apps-featured {
    grid-template-columns: 1fr;
  }

  .comparison-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    width: min(100%, 650px);
    margin-inline: auto;
    padding: 30px;
  }

  .plan-card.featured {
    order: -1;
  }

  .founder-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .founder-photo {
    min-height: 520px;
  }

  .founder-copy {
    max-width: 680px;
    padding: 48px 24px 38px;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
  }
}

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

  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    padding: 9px 10px;
  }

  .nav-shell {
    min-height: 56px;
    padding: 6px 7px 6px 12px;
  }

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

  .brand {
    font-size: 14px;
  }

  .nav-login,
  .nav-actions > .button {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  .mobile-menu {
    width: 100%;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-copy h1 {
    font-size: clamp(39px, 12.8vw, 58px);
    letter-spacing: -.065em;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-proof {
    display: grid;
    justify-content: start;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .hero-product {
    width: calc(100% - 16px);
    margin-top: 58px;
  }

  .product-window {
    padding: 10px;
    border-radius: 24px;
  }

  .product-toolbar {
    min-height: 54px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 16px;
  }

  .toolbar-user {
    font-size: 9px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .deploy-status-card,
  .vps-card,
  .ssl-card,
  .dashboard-grid > .app-installed-card:nth-of-type(4),
  .dashboard-grid > .app-installed-card:nth-of-type(5),
  .backup-card,
  .monitor-card,
  .github-card {
    grid-column: 1;
    grid-row: auto;
  }

  .deploy-status-card {
    min-height: 340px;
  }

  .dash-card {
    padding: 17px;
    border-radius: 17px;
  }

  .ssl-card {
    grid-template-columns: auto 1fr;
  }

  .ssl-card .status-pill {
    grid-column: 1 / -1;
    width: max-content;
  }

  .floating-note {
    display: none;
  }

  .trust-heading {
    display: block;
  }

  .trust-heading span {
    display: block;
    margin-top: 2px;
  }

  .marquee {
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .section-heading > p:not(.eyebrow),
  .split-heading > p {
    font-size: 15px;
  }

  .library-tabs {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 24px;
  }

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

  .library-card,
  .library-card-large {
    min-height: 410px;
    grid-column: 1;
    padding: 17px;
  }

  .library-card-copy {
    gap: 11px;
  }

  .feature-icon,
  .feature-app {
    width: 40px;
    height: 40px;
  }

  .preview-support {
    grid-template-columns: 1fr;
  }

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

  .flow-step {
    min-height: 210px;
  }

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

  .apps-library {
    grid-template-columns: 1fr;
  }

  .app-card {
    grid-template-columns: auto 1fr auto;
  }

  .included {
    grid-column: auto;
    margin-top: 0;
  }

  .comparison-card {
    padding: 25px 21px;
  }

  .comparison-title {
    align-items: flex-start;
  }

  .comparison-mark {
    width: 42px;
    height: 42px;
  }

  .plan-card {
    padding: 24px 20px;
  }

  .featured .plan-head {
    padding-right: 0;
    padding-top: 30px;
  }

  .popular-badge {
    top: 16px;
    left: 20px;
    right: auto;
  }

  .plan-price strong {
    font-size: 44px;
  }

  .founder-card {
    width: calc(100% - 20px);
    padding: 10px;
    border-radius: 25px;
  }

  .founder-photo {
    min-height: 390px;
    border-radius: 19px;
  }

  .founder-copy {
    padding: 38px 12px 24px;
  }

  .founder-copy h2 {
    font-size: 39px;
  }

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

  .final-cta-inner {
    width: calc(100% - 12px);
    padding: 82px 22px;
    border-radius: 28px;
  }

  .final-cta h2 {
    font-size: clamp(39px, 11vw, 56px);
  }

  .final-cta-inner > p:not(.eyebrow) {
    font-size: 15px;
  }

  .final-orbit {
    opacity: .62;
  }

  .orbit-one { top: 25px; left: 15px; width: 52px; height: 52px; border-radius: 16px; }
  .orbit-one img { width: 30px; height: 30px; }
  .orbit-two { top: 31px; right: 17px; width: 52px; height: 52px; border-radius: 16px; }
  .orbit-two svg { width: 29px; height: 29px; }
  .orbit-three { display: none; }

  .site-footer {
    margin-top: 96px;
  }

  .footer-cta-band {
    padding: 42px 22px;
  }

  .cta-app-icon,
  .footer-integrations-badge {
    display: none !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 42px;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .button {
    white-space: normal;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .toolbar-brand span:last-child {
    display: none;
  }

  .deploy-status-card {
    min-height: 360px;
  }

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

  .card-head.compact {
    flex-direction: row;
  }

  .fake-field {
    grid-template-columns: auto 1fr;
  }

  .fake-field b {
    grid-column: 1 / -1;
    width: max-content;
  }

  .preview-workflow,
  .preview-typebot {
    padding-inline: 6px;
  }

  .workflow-node,
  .preview-typebot span {
    min-width: 54px;
    padding-inline: 5px;
  }

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

  .app-card {
    grid-template-columns: auto 1fr;
  }

  .included {
    grid-column: 1 / -1;
  }

  .plan-price strong {
    font-size: 40px;
  }
}

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

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

  .js .hero-card,
  .js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .marquee {
    width: 100%;
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .marquee-track {
    animation: none !important;
  }

  .marquee-track[aria-hidden="true"] {
    display: none;
  }

  .flow-orb {
    left: 100%;
    opacity: 1;
  }
}

/* ---------- Scenario picker ("Escolha pelo seu cenário") ---------- */
.scenario-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.scenario-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.scenario-table th,
.scenario-table td {
  padding: 18px 22px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line);
}

.scenario-table th {
  font-family: "Sora", sans-serif;
  font-weight: 650;
  font-size: 12px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--muted);
  background: #f7f8fa;
}

.scenario-table tbody tr:last-child td {
  border-bottom: none;
}

.scenario-table tbody tr:hover {
  background: #fafbfc;
}

.scenario-plan-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--cyan-deep);
  font-family: "Sora", sans-serif;
  font-weight: 650;
  font-size: 13.5px;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}

.scenario-plan-link:hover {
  transform: translateX(2px);
  background: var(--cyan-soft-2);
}

.scenario-plan-link svg {
  width: 15px;
  height: 15px;
}

.scenario-plan-link.featured {
  background: var(--cyan);
  color: #fff;
}

@media (max-width: 700px) {
  .scenario-table {
    min-width: 420px;
  }
}

/* ---------- "Which plan?" calculator modal ---------- */
.calculator-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 22px;
  font-size: 13.5px;
}

.calculator-open-btn svg {
  width: 15px;
  height: 15px;
}

.calculator-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.calculator-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 16, 0.68);
  backdrop-filter: blur(4px);
}

.calculator-modal-panel {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: min(88vh, 900px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}

.calculator-modal-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.calculator-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.calculator-modal-close svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 700px) {
  .calculator-modal {
    padding: 0;
  }
  .calculator-modal-panel {
    max-width: 100%;
    height: 100vh;
    border-radius: 0;
  }
}

/* ---------- Testimonials (real, published reviews, 2026-08-20) ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: var(--yellow, #e9a82e);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-card blockquote {
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cyan-soft);
  color: var(--cyan-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial-card figcaption b {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
}

.testimonial-card figcaption small {
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Nav dropdown (Soluções/Stacks/Recursos menu, 2026-08-20) ---------- */
.desktop-nav { display: flex; align-items: center; gap: 8px; }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  background: none; border: 0; cursor: pointer; font: inherit;
  color: var(--muted); font-size: 14px; font-weight: 600; padding: 8px 10px;
  border-radius: 8px; display: inline-flex; align-items: center; gap: 4px;
}
.nav-dropdown-trigger::after {
  content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-top: -3px;
}
.nav-dropdown-trigger:hover, .nav-dropdown:hover .nav-dropdown-trigger { color: var(--ink); background: var(--bg-soft); }
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 240px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 10px; display: none; flex-direction: column; gap: 2px;
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-panel, .nav-dropdown-panel:focus-within { display: flex; }
.nav-dropdown-panel a {
  padding: 10px 12px; border-radius: 10px; font-size: 13.5px; color: var(--ink-soft); font-weight: 600;
}
.nav-dropdown-panel a:hover { background: var(--bg-soft); color: var(--ink); }
.desktop-nav > a { font-size: 14px; font-weight: 600; color: var(--muted); padding: 8px 10px; }
.desktop-nav > a:hover { color: var(--ink); }
@media (max-width: 980px) { .desktop-nav { display: none; } }

/* ---------- FAQ accordion (light theme, 2026-08-20) ---------- */
.faq-light { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq-light details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.faq-light summary { list-style: none; cursor: pointer; padding: 20px 22px; font-family: "Sora", sans-serif; font-weight: 650; font-size: 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--ink); }
.faq-light summary::-webkit-details-marker { display: none; }
.faq-light summary .chev { width: 18px; height: 18px; flex-shrink: 0; color: var(--cyan-deep); transition: transform .2s ease; }
.faq-light details[open] summary .chev { transform: rotate(45deg); }
.faq-light .ans { padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.faq-light .ans ul { margin: 8px 0 0 18px; }
.faq-light .ans li { margin-bottom: 4px; }

/* ---------- Comparison table (light theme, 2026-08-20) ---------- */
.table-wrap-light { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
table.compare-light { width: 100%; border-collapse: collapse; min-width: 560px; }
table.compare-light th, table.compare-light td { padding: 16px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--ink-soft); }
table.compare-light th { font-family: "Sora", sans-serif; font-weight: 650; font-size: 12px; text-transform: uppercase; letter-spacing: .02em; color: var(--muted); background: var(--bg-soft); }
table.compare-light tbody tr:last-child td { border-bottom: none; }
table.compare-light tbody tr:hover { background: var(--bg-soft); }
table.compare-light td.row-label { font-family: "Sora", sans-serif; font-weight: 650; color: var(--ink); }
table.compare-light .ok { color: var(--green); font-weight: 650; }
table.compare-light .bad { color: var(--red); font-weight: 650; }

/* ---------- Quick-answer box (light theme, 2026-08-20) ---------- */
.quick-answer-light { border: 1px solid var(--cyan); border-radius: var(--radius); background: var(--cyan-soft); padding: 24px 26px; }
.quick-answer-light .qa-label { font-family: "Sora", sans-serif; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--cyan-deep); margin-bottom: 8px; display: block; font-weight: 700; }
.quick-answer-light p { color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.quick-answer-light strong { color: var(--cyan-deep); }

/* ---------- Generic content helpers (light theme, 2026-08-20) ---------- */
.eyebrow-plain { font-family: "Sora", sans-serif; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--cyan-deep); font-weight: 700; }
.content-note { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-soft); padding: 20px 22px; font-size: 13.5px; color: var(--muted); }
.content-note b { color: var(--ink); }
.step-list { counter-reset: step; display: grid; gap: 16px; max-width: 720px; }
.step-list .step { display: flex; gap: 16px; align-items: flex-start; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 20px 22px; }
.step-list .step-num { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--cyan-soft); color: var(--cyan-deep); display: flex; align-items: center; justify-content: center; font-family: "Sora", sans-serif; font-weight: 700; font-size: 13px; }
.step-list .step h3 { font-size: 15.5px; margin-bottom: 4px; font-family: "Sora", sans-serif; }
.step-list .step p { color: var(--muted); font-size: 13.5px; }
