:root {
  --dark: #021a18;
  --dark-2: #072321;
  --panel: #f4f5f3;
  --soft-green: #d8f0a3;
  --accent: #d7f59f;
  --text: #0f1716;
  --muted: #62706c;
  --white: #ffffff;
  --line: rgba(15, 23, 22, 0.12);
  --dark-line: rgba(255,255,255,0.12);
  --radius: 26px;
  --shadow: 0 16px 60px rgba(0, 0, 0, 0.12);
  --container: 1320px;
  --container-wide: 1500px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #efefef;
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(var(--container), calc(100% - 80px)); margin: 0 auto; }
.container-wide { width: min(var(--container-wide), calc(100% - 60px)); margin: 0 auto; }

.page-glow {
  position: fixed;
  inset: auto;
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: .22;
}
.glow-left { left: -10vw; top: 30vh; background: radial-gradient(circle, #b7ff4f 0%, #1dd16a 40%, transparent 70%); }
.glow-right { right: -12vw; top: 4vh; background: radial-gradient(circle, #1aff86 0%, #8fff86 35%, transparent 70%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,245,243,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}
.site-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(172, 233, 126, 0.18) 28%, rgba(85, 179, 255, 0.14) 50%, transparent 72%);
  transform: translateX(-100%);
  animation: headerSweep 10s linear infinite;
  pointer-events: none;
}
.nav-shell {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  height: 46px;
  width: auto;
  display: block;
}

.nav-actions, .hero-actions, .trusted-logos, .security-badges, .footer-links-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.nav-links a {
  color: #41504c;
  font-size: 14px;
}
.nav-text-link {
  font-size: 14px;
  color: #2f3c39;
  margin-right: 8px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 13px 22px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 15px 26px; }
.btn-accent {
  background: var(--accent);
  color: #1a231f;
  box-shadow: 0 10px 30px rgba(194, 245, 120, 0.25);
}
.btn-dark {
  background: #1f3130;
  color: white;
}
.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.16);
}
.btn-light {
  background: #ffffff;
  color: #203130;
}

.hero {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-dark {
  background: radial-gradient(circle at 50% 30%, rgba(82, 160, 226, 0.20), transparent 14%), linear-gradient(180deg, #021614 0%, #031b18 100%);
  color: white;
}
.hero-inner {
  min-height: calc(100vh - 74px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 80px 0 24px;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.02), transparent 50%);
  opacity: .7;
}
.hero-rays {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 33%, rgba(82,173,235,0.75) 0 5%, transparent 11%),
    linear-gradient(120deg, transparent 0 18%, rgba(20,255,107,0.32) 24%, transparent 34%),
    linear-gradient(34deg, transparent 0 16%, rgba(21,255,94,0.24) 24%, transparent 35%),
    linear-gradient(210deg, transparent 0 18%, rgba(20,255,107,0.18) 24%, transparent 32%),
    linear-gradient(300deg, transparent 0 16%, rgba(20,255,107,0.18) 23%, transparent 33%);
  filter: blur(16px) saturate(120%);
  transform: scale(1.1);
  animation: raysMove 11s ease-in-out infinite;
}
.hero-orb-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.hero-orb {
  width: min(190px, 26vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(207,240,255,0.9), rgba(98,185,235,0.72) 40%, rgba(22,64,92,0.35) 70%, rgba(0,0,0,0) 75%);
  box-shadow: 0 0 60px rgba(118,204,255,0.6), 0 0 120px rgba(118,204,255,0.18);
  animation: orbSpin 14s linear infinite;
  transform-origin: center;
  will-change: transform;
}
.hero-pill {
  position: absolute;
  top: 42%;
  transform: translate(135px, -50%);
  background: rgba(255,255,255,0.94);
  color: #202725;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.16);
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 84px);
  line-height: .98;
  letter-spacing: -0.055em;
  max-width: 980px;
}
.hero-copy h1 span { color: var(--soft-green); }
.hero-copy p {
  max-width: 760px;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255,255,255,0.74);
  margin: 22px auto 28px;
}
.hero-actions {
  justify-content: center;
}
.trusted-row {
  width: 100%;
  margin-top: auto;
  padding-top: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trusted-label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .2em;
  color: rgba(220,236,230,0.66);
}
.trusted-logos span {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}

.video-section {
  padding: 34px 0 24px;
  position: relative;
  z-index: 2;
}
.video-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.75));
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-copy {
  padding: 28px 32px 12px;
}
.video-copy h2 {
  margin: 10px 0 8px;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.05em;
}
.video-copy p { color: #596561; max-width: 820px; }
.video-wrap {
  padding: 0 20px 20px;
}
.video-wrap video {
  width: 100%;
  display: block;
  border-radius: 20px;
  background: #051a18;
  border: 1px solid rgba(0,0,0,0.08);
  max-height: 780px;
  object-fit: cover;
}
.embed-video {
  pointer-events: none;
}
.embed-video::-webkit-media-controls {
  display: none !important;
}

.light-panel { padding: 24px 0; position: relative; z-index: 2; }
.panel {
  background: linear-gradient(180deg, rgba(245,246,243,0.92), rgba(242,242,241,0.86));
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 28px;
  padding: 44px;
  box-shadow: var(--shadow);
}
.transparent-panel { background: transparent; border: none; box-shadow: none; padding: 44px 20px; }
.section-top {
  margin-bottom: 28px;
}
.two-col-head {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 22px;
  align-items: start;
}
.two-col-head p {
  color: #5e6865;
  font-size: 18px;
  line-height: 1.5;
  max-width: 320px;
  justify-self: end;
}
.narrow-head h2 { max-width: 840px; }
.mini-label {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.8);
}
.mini-label.dark { color: #5f6a67; }
.section-top h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 900px;
}
.tab-switcher {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.tab-btn {
  border: none;
  background: transparent;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  color: #4a5754;
  cursor: pointer;
}
.tab-btn.active {
  background: #172726;
  color: white;
}
.tab-stage {
  border-radius: 22px;
  background: #dddedd;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  position: relative;
}
.tab-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.tab-screen.active {
  opacity: 1;
  pointer-events: auto;
}
.stage-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}
.start-demo-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #1c2422;
  margin-bottom: 18px;
  text-align: center;
}
.btn-stage { border-radius: 999px; padding: 17px 30px; }
.powered {
  position: absolute;
  bottom: 18px;
  color: rgba(0,0,0,0.16);
  font-weight: 600;
}
.bubble-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.chat-bubble {
  background: white;
  padding: 20px 26px;
  border-radius: 18px;
  font-size: 24px;
  font-weight: 500;
  max-width: 720px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.status-badge {
  background: #1a2b29;
  color: #dff2a7;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.deploy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.deploy-card {
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.45);
  padding: 22px;
  min-height: 420px;
}
.deploy-card h3 { margin: 0 0 8px; font-size: 34px; letter-spacing: -0.04em; }
.deploy-card p { margin: 0 0 18px; color: #65706d; max-width: 460px; line-height: 1.6; }
.mock-window {
  position: relative;
  height: 255px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(233,235,233,0.6));
  overflow: hidden;
}
.left-window::before {
  content: '';
  position: absolute;
  left: 12%; top: 10%;
  width: 14%; height: 72%;
  background: rgba(22,39,37,0.08);
  border-radius: 10px;
}
.left-window::after {
  content: '';
  position: absolute;
  right: 10%; top: 22%;
  width: 48%; height: 42%;
  background: rgba(22,39,37,0.06);
  border-radius: 12px;
}
.mock-topline { position: absolute; left: 14%; top: 9%; width: 58%; height: 7px; background: rgba(181,217,129,0.65); border-radius: 999px; }
.mock-sidebar { position: absolute; left: 28%; top: 30%; width: 10%; height: 9px; background: rgba(0,0,0,0.08); border-radius: 999px; }
.mock-content { position: absolute; left: 38%; top: 24%; width: 30%; height: 22px; background: rgba(0,0,0,0.11); border-radius: 10px; }
.mock-button {
  position: absolute;
  left: 37%; top: 50%;
  background: #12211f;
  color: white;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
}
.right-window {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(225,228,225,0.35));
}
.right-window::before {
  content: '';
  position: absolute;
  left: 23%; bottom: -8%;
  width: 54%; height: 70%;
  transform: perspective(500px) rotateX(62deg);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(219,223,220,0.7));
  border: 1px solid rgba(0,0,0,0.06);
}
.floating-launch {
  position: absolute;
  left: 44%; top: 43%;
  transform: translate(-50%, -50%);
  background: #465351;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
}
.tool-pill {
  margin: 26px auto 0;
  max-width: 600px;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.tool-pill p { margin: 2px 0 0; color: #7a8581; font-size: 14px; }
.tool-icons { display: flex; gap: 8px; }
.tool-icons span {
  width: 28px; height: 28px; border-radius: 50%;
  display: block;
  background: linear-gradient(135deg, #ffe7b8, #ff835d);
}
.tool-icons span:nth-child(2) { background: linear-gradient(135deg, #7ce4ff, #408fff); }
.tool-icons span:nth-child(3) { background: linear-gradient(135deg, #d3ffa7, #77d341); }

.realtime-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.realtime-card {
  min-height: 560px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
}
.hero-chat {
  background:
    radial-gradient(circle at 32% 40%, rgba(214,255,192,0.92), rgba(144,213,128,0.74) 28%, rgba(12,82,109,0.72) 60%, #07221f 100%);
}
.chat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0.55) 100%);
}
.chat-bubble-card {
  position: absolute;
  top: 34%; left: 19%;
  background: white;
  color: #1d2624;
  padding: 18px 20px;
  border-radius: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  width: min(420px, 70%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.chat-bubble-card p { margin: 0; font-size: 21px; line-height: 1.1; }
.avatar {
  width: 74px; height: 74px; border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #f5deb7 0 20%, #d3b08b 21% 40%, #6b7f93 41% 70%, #c7d2d9 71%);
  flex-shrink: 0;
}
.mic-dot {
  position: absolute;
  left: 18%; bottom: 35%;
  width: 28px; height: 28px; border-radius: 50%;
  background: #030706;
  box-shadow: 0 0 0 7px rgba(255,255,255,.1);
}
.card-copy {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
}
.card-copy h3 { margin: 0 0 10px; font-size: 36px; letter-spacing: -0.04em; }
.card-copy p { margin: 0; line-height: 1.65; color: rgba(255,255,255,0.72); max-width: 470px; }
.dark-copy p { color: rgba(255,255,255,0.72); }
.status-card {
  background: linear-gradient(180deg, rgba(220,248,178,0.76), rgba(90,156,76,0.42));
}
.status-stack {
  position: absolute;
  top: 31%; left: 18%; right: 12%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.status-stack span {
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  color: rgba(14,22,20,0.28);
  font-size: 15px;
  font-weight: 600;
}
.status-stack .active {
  font-size: 32px;
  color: white;
  background: #122a29;
  box-shadow: 0 10px 34px rgba(0,0,0,0.12);
}
.status-card .card-copy p { color: rgba(19,31,29,0.72); }

.dark-enterprise {
  margin-top: 26px;
  padding: 40px 0 0;
  background:
    linear-gradient(180deg, rgba(5,32,29,0.98), rgba(3,24,22,0.98)),
    radial-gradient(circle at 50% 120%, rgba(195,255,142,0.30), transparent 28%);
  color: white;
  position: relative;
  overflow: hidden;
}
.dark-enterprise::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -8%;
  width: 70vw; height: 28vw;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 100%, rgba(217,245,159,0.55), rgba(20,255,90,0.18) 40%, transparent 70%);
  filter: blur(30px);
}
.enterprise-grid {
  position: relative;
  z-index: 1;
  border: 1px solid var(--dark-line);
  border-radius: 28px;
  padding: 42px;
  background: rgba(3,24,22,0.36);
}
.enterprise-top {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 24px;
}
.enterprise-top h2 { font-size: clamp(34px, 5vw, 62px); margin: 0 0 8px; letter-spacing: -0.05em; }
.enterprise-top p { margin: 0; color: rgba(255,255,255,0.68); font-size: 22px; max-width: 600px; }
.uptime-box { justify-self: end; text-align: left; }
.uptime-box span { display: block; color: rgba(255,255,255,0.72); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; margin-bottom: 8px; }
.uptime-box strong { font-size: clamp(56px, 8vw, 120px); line-height: .9; color: rgba(255,255,255,0.88); }
.enterprise-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-bottom: 24px;
}
.enterprise-card, .security-card, .enterprise-cta {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background: rgba(2,20,18,0.4);
}
.enterprise-card { padding: 26px; min-height: 340px; }
.enterprise-card h3 { margin: 24px 0 10px; font-size: 34px; letter-spacing: -0.04em; }
.enterprise-card p { margin: 0; color: rgba(255,255,255,0.68); line-height: 1.7; }
.enterprise-icon { height: 160px; border-radius: 18px; position: relative; }
.enterprise-icon.network::before {
  content: '';
  position: absolute; inset: 16px;
  background:
    radial-gradient(circle, transparent 0 8px, rgba(255,255,255,.7) 9px 10px, transparent 11px) 15% 65%/70px 70px,
    radial-gradient(circle, transparent 0 8px, rgba(255,255,255,.7) 9px 10px, transparent 11px) 50% 50%/70px 70px,
    radial-gradient(circle, transparent 0 8px, rgba(255,255,255,.7) 9px 10px, transparent 11px) 84% 66%/70px 70px,
    radial-gradient(circle, transparent 0 8px, rgba(255,255,255,.7) 9px 10px, transparent 11px) 30% 18%/70px 70px,
    radial-gradient(circle, transparent 0 8px, rgba(255,255,255,.7) 9px 10px, transparent 11px) 70% 18%/70px 70px,
    radial-gradient(circle, transparent 0 8px, rgba(255,255,255,.7) 9px 10px, transparent 11px) 50% 86%/70px 70px;
  opacity: .7;
}
.enterprise-icon.wave::before {
  content: '';
  position: absolute; inset: 10px 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='180' viewBox='0 0 420 180'%3E%3Cpath d='M0 110 C40 40 70 150 110 90 C150 30 170 170 215 95 C255 28 290 165 330 72 C360 20 390 150 420 88' fill='none' stroke='rgba(255,255,255,0.68)' stroke-width='3'/%3E%3Cpath d='M0 104 C38 65 77 132 120 98 C160 65 184 148 220 102 C255 62 292 130 336 90 C360 72 391 115 420 96' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
}
.enterprise-icon.server::before {
  content: '';
  position: absolute; inset: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='160' viewBox='0 0 320 160'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.72)' stroke-width='3'%3E%3Crect x='30' y='86' width='70' height='44' rx='6'/%3E%3Crect x='190' y='20' width='70' height='44' rx='6'/%3E%3Crect x='220' y='96' width='70' height='44' rx='6'/%3E%3Cpath d='M100 108 H150 V42 H190'/%3E%3Cpath d='M100 108 H180 V118 H220'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}
.security-card {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.security-card h3 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 48px); letter-spacing: -0.045em; }
.security-card p { margin: 0; color: rgba(255,255,255,0.68); line-height: 1.7; max-width: 700px; }
.badge {
  width: 110px; height: 110px; border-radius: 50%;
  display: grid; place-items: center;
  border: 2px solid rgba(255,255,255,0.6);
  color: white; font-weight: 700;
}
.enterprise-cta {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.enterprise-cta p { margin: 0; font-size: 32px; letter-spacing: -0.04em; }

.footer-style {
  min-height: 720px;
  display: flex;
  align-items: center;
  position: relative;
}
.footer-beam {
  position: absolute;
  left: 50%; top: 10%;
  transform: translateX(-50%);
  width: 86vw;
  height: 30vw;
  background: conic-gradient(from 180deg at 50% 100%, transparent 0deg 28deg, rgba(213,248,152,0.65) 38deg 44deg, transparent 52deg 308deg, rgba(213,248,152,0.65) 316deg 322deg, transparent 330deg 360deg);
  filter: blur(28px);
  opacity: .72;
}
.footer-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}
.footer-keywords {
  display: grid;
  gap: 12px;
  margin-bottom: 48px;
}
.footer-keywords span {
  color: rgba(207,240,185,0.52);
  font-size: clamp(28px, 4vw, 52px);
}
.footer-keywords h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  letter-spacing: -0.05em;
}
.footer-keywords strong { color: white; }
.footer-brand {
  font-size: clamp(64px, 8vw, 140px);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
}
.footer-contact {
  color: rgba(255,255,255,0.64);
  margin-top: 16px;
}
.footer-contact a { text-decoration: underline; }
.footer-links-row {
  justify-content: center;
  margin-top: 86px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  gap: 26px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .two-col-head, .enterprise-top, .realtime-grid, .deploy-grid, .enterprise-cards, .security-card, .enterprise-cta {
    grid-template-columns: 1fr;
  }
  .two-col-head p, .uptime-box { justify-self: start; }
  .hero-pill { transform: translate(95px, -50%); }
  .realtime-card, .deploy-card, .enterprise-card { min-height: auto; }
  .panel, .enterprise-grid { padding: 30px; }
}

@media (max-width: 760px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .container-wide { width: min(var(--container-wide), calc(100% - 20px)); }
  .nav-shell { min-height: 68px; }
  .nav-actions { gap: 8px; }
  .nav-text-link { display: none; }
  .btn { padding: 11px 14px; border-radius: 12px; font-size: 14px; }
  .hero-inner { min-height: auto; padding: 58px 0 24px; }
  .hero-pill { position: static; transform: none; margin-left: 10px; }
  .hero-orb-wrap { flex-direction: column; align-items: center; gap: 14px; }
  .hero-copy p { font-size: 17px; }
  .panel, .transparent-panel, .enterprise-grid { padding: 22px; }
  .tab-stage { min-height: 420px; }
  .chat-bubble, .status-stack .active { font-size: 20px; }
  .chat-bubble-card { left: 8%; width: 84%; top: 24%; }
  .avatar { width: 58px; height: 58px; }
  .card-copy h3, .enterprise-card h3, .deploy-card h3, .enterprise-cta p { font-size: 26px; }
  .badge { width: 84px; height: 84px; font-size: 14px; }
  .footer-links-row { gap: 14px; margin-top: 50px; }
}

@keyframes headerSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes orbSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.03); }
  100% { transform: rotate(360deg) scale(1); }
}
@keyframes raysMove {
  0% { transform: scale(1.1) rotate(0deg); filter: blur(16px) saturate(120%); }
  50% { transform: scale(1.16) rotate(4deg); filter: blur(18px) saturate(135%); }
  100% { transform: scale(1.1) rotate(0deg); filter: blur(16px) saturate(120%); }
}


.nav-text-link{display:none!important}
.brand-logo{height:54px;filter:contrast(1.15) saturate(1.05);object-fit:contain}
.hero-mark{position:relative;width:min(230px,30vw);aspect-ratio:1;display:grid;place-items:center;animation:floatMark 7s ease-in-out infinite}
.mark-core{position:absolute;inset:23%;border-radius:38% 62% 58% 42% / 40% 38% 62% 60%;background:linear-gradient(135deg,#42f99f 0%,#bfffd8 38%,#0c3d37 100%);box-shadow:0 0 40px rgba(66,249,159,.35),0 0 100px rgba(88,196,255,.18);animation:morphMark 9s ease-in-out infinite}
.mark-ring{position:absolute;inset:8%;border-radius:50%;border:1px solid rgba(196,255,224,.35);box-shadow:0 0 30px rgba(81,255,171,.12) inset;animation:spinSlow 18s linear infinite}
.mark-glow{position:absolute;inset:-8%;border-radius:50%;background:radial-gradient(circle, rgba(82,173,235,.22), rgba(21,255,94,.12) 42%, transparent 68%);filter:blur(18px)}
.hero-copy h1{max-width:1100px}
.hero-copy p{max-width:840px}
.gradient-stage{background:linear-gradient(180deg,#d9f0a8 0%, #eef2ea 78%)}
.gradient-stage .stage-inner{background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0))}
.gradient-stage .start-demo-title{font-size:clamp(38px,4vw,60px)}
.gradient-stage .btn-stage{background:linear-gradient(135deg,#102221,#173736);padding:18px 32px;box-shadow:0 18px 35px rgba(0,0,0,.12)}
.tool-pill{max-width:690px;padding:14px 20px}
.tool-logos{gap:10px;flex-wrap:nowrap}
.tool-logo{width:56px;min-width:56px;height:56px;padding:0;border-radius:50%;font-size:0;position:relative;overflow:hidden;display:grid;place-items:center;background:#fff;border:1px solid rgba(0,0,0,.08);box-shadow:0 2px 8px rgba(0,0,0,.05)}
.tool-logo.hubspot{color:#ff6c37}
.tool-logo.salesforce{color:#00a1e0}
.tool-logo.zapier{color:#ff5a00}
.tool-logo.more{font-size:16px;font-weight:800;color:#1d2624;letter-spacing:-.02em}
.reply-bubble{position:absolute;left:17%;top:47%;background:white;color:#1d2624;padding:12px 16px;border-radius:14px;font-size:16px;font-weight:500;box-shadow:0 10px 30px rgba(0,0,0,.1)}
.chat-bubble-card{top:20%;left:25%;width:min(430px,72%)}
.avatar{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cdefs%3E%3CradialGradient id='a' cx='35%25' cy='30%25' r='70%25'%3E%3Cstop offset='0' stop-color='%23f9e2c3'/%3E%3Cstop offset='.55' stop-color='%23d8b38f'/%3E%3Cstop offset='1' stop-color='%238aa0b1'/%3E%3C/radialGradient%3E%3C/defs%3E%3Ccircle cx='45' cy='45' r='45' fill='url(%23a)'/%3E%3Ccircle cx='45' cy='36' r='14' fill='%23eac19d'/%3E%3Cpath d='M20 78c5-14 16-22 25-22s20 8 25 22' fill='%23d6dee5'/%3E%3Cpath d='M30 34c4-10 26-13 31 1' stroke='%23725c4b' stroke-width='5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-size:cover}
.security-card{justify-content:flex-start}
.footer-brand{font-family:'Montserrat',sans-serif;font-style:normal;font-weight:500;letter-spacing:-0.06em;display:flex;justify-content:center;align-items:baseline;gap:.02em}
.footer-brand .footer-on{font-weight:500}
.footer-brand .footer-create{font-weight:800}
.keyword-marquee{display:flex;gap:56px;white-space:nowrap;animation:scrollWords 18s linear infinite;color:rgba(207,240,185,0.6);font-size:clamp(28px,4vw,52px);width:max-content;padding-left:20px}
.footer-keywords{overflow:hidden;align-items:center}
.footer-keywords span{font-size:inherit}
.footer-socials{display:flex;justify-content:center;gap:14px;margin-top:28px}
.footer-socials a{width:48px;height:48px;border-radius:50%;display:grid;place-items:center;border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.05);color:#fff;font-weight:700;font-size:22px;backdrop-filter:blur(8px)}
.footer-links-row{margin-top:30px}
@keyframes floatMark{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
@keyframes morphMark{0%,100%{border-radius:38% 62% 58% 42% / 40% 38% 62% 60%;transform:rotate(0deg)}50%{border-radius:56% 44% 34% 66% / 54% 57% 43% 46%;transform:rotate(180deg)}}
@keyframes spinSlow{from{transform:rotate(0)}to{transform:rotate(360deg)}}
@keyframes scrollWords{0%{transform:translateX(18%)}100%{transform:translateX(-42%)}}
@media (max-width:760px){.brand-logo{height:42px}.tool-pill{border-radius:22px}.tool-logos{flex-wrap:wrap}.keyword-marquee{gap:28px}}


/* final requested tweaks */
.hero-mark{overflow:visible}
.mark-star{position:absolute;inset:22%;background:url("../img/Oncreate_logo_favicon.png") center/70% no-repeat;opacity:1;filter:brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,.28));animation:pulseStar 5s ease-in-out infinite}
.hero-pill{right:calc(50% - 250px);left:auto;transform:none}
.tab-switcher{justify-content:flex-start}
.tool-pill{max-width:760px}
.tool-icons.tool-logos{display:flex;align-items:center;gap:12px;flex-wrap:nowrap}
.tool-logo{width:56px;min-width:56px;height:56px;padding:0;border-radius:50%;font-size:0;position:relative;overflow:hidden;display:grid;place-items:center;background:#fff;border:1px solid rgba(0,0,0,.08);box-shadow:0 2px 8px rgba(0,0,0,.05)}
.tool-logo::before{content:'';position:absolute;inset:0;display:block}
.tool-logo.hubspot::before{background:linear-gradient(135deg,#ffd2b8,#ffefe5)}
.tool-logo.salesforce::before{background:linear-gradient(135deg,#c9ecff,#eef8ff)}
.tool-logo.zapier::before{background:linear-gradient(135deg,#ffe0ce,#fff3eb)}
.tool-logo.more{font-size:16px;font-weight:800;color:#1d2624;letter-spacing:-.02em}
.tool-logo.hubspot::after,.tool-logo.salesforce::after,.tool-logo.zapier::after{content:attr(data-logo);position:absolute;inset:0;display:grid;place-items:center;font-size:10px;font-weight:800;letter-spacing:-.02em}
.tool-logo.hubspot::after{content:'HubSpot';color:#ff6c37}
.tool-logo.salesforce::after{content:'Salesforce';color:#00a1e0;font-size:8.5px}
.tool-logo.zapier::after{content:'Zapier';color:#ff5a00}
.footer-keywords{justify-items:center}
.keyword-marquee{min-width:160%;justify-content:flex-start;padding-left:0}
.footer-keywords h2{max-width:1100px;font-size:clamp(30px,4.6vw,78px);line-height:1.02;text-align:center}
.footer-socials .social-link{width:50px;height:50px;font-size:0}
.footer-socials .social-link svg{width:24px;height:24px}
.footer-socials .social-link.chatgpt svg{width:26px;height:26px}
.footer-contact a,.footer-contact{color:rgba(255,255,255,.72)}
@keyframes pulseStar{0%,100%{opacity:.82;transform:scale(.96)}50%{opacity:1;transform:scale(1.04)}}
@media (max-width: 900px){.hero-pill{position:static;margin-top:12px}.keyword-marquee{min-width:220%}.footer-keywords h2{max-width:92%}}


/* v5 targeted refinements */
.mark-star{background:none !important;}
.mark-star::before{content:"";position:absolute;inset:18%;background:url("../img/Oncreate_logo_favicon.png") center/58% no-repeat;filter:grayscale(1) brightness(6);opacity:.20;}
.mark-star::after{content:"";position:absolute;inset:18%;background:url("../img/Oncreate_logo_favicon.png") center/58% no-repeat;opacity:.12;filter:blur(3px) grayscale(1) brightness(5.2);}
.enterprise-motion{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin:0 0 24px;}
.motion-card{height:150px;border:1px solid rgba(255,255,255,.12);border-radius:22px;background:rgba(2,20,18,.35);display:grid;place-items:center;position:relative;overflow:hidden;}
.motion-card::before{content:"";position:absolute;inset:auto -10% -35% -10%;height:75%;background:radial-gradient(circle at 50% 40%, rgba(67,194,255,.45), transparent 62%);filter:blur(18px);}
.motion-card img{position:relative;max-width:64%;max-height:64px;object-fit:contain;filter:drop-shadow(0 10px 18px rgba(0,0,0,.18));animation:logoFloat 5s ease-in-out infinite;}
.motion-hubspot img{animation-delay:0s;}
.motion-salesforce img{animation-delay:1.2s;}
.motion-zoho img{animation-delay:2.4s;}
.tool-logo{width:56px;min-width:56px;height:56px;padding:0;border-radius:50%;font-size:0;position:relative;overflow:hidden;display:grid;place-items:center;background:#fff;border:1px solid rgba(0,0,0,.08);box-shadow:0 2px 8px rgba(0,0,0,.05)}
.tool-logo::before,.tool-logo::after{display:none !important;}
.tool-logo img{max-width:66%;max-height:66%;object-fit:contain;display:block}
.tool-logo.salesforce img{width:82%;height:82%;}
.tool-logo.zapier img{width:78%;height:78%;}
.footer-keywords h2{max-width:1040px;letter-spacing:-0.06em;line-height:.98;}
.footer-contact{margin-top:18px;}
.footer-socials .social-link{overflow:hidden;}
.footer-socials .social-link img{width:56%;height:56%;object-fit:contain;display:block;}
.footer-socials .social-link.chatgpt img{width:66%;height:66%;filter:grayscale(1) brightness(1.7);}
.footer-socials .social-link.claude img{width:58%;height:58%;filter:brightness(4.7);}
.footer-socials .social-link.gemini img{width:60%;height:60%;}
.footer-links-row{padding-bottom:26px;row-gap:10px;}
.footer-style{padding-bottom:28px;}
@keyframes logoFloat{0%,100%{transform:translateY(0) rotate(0deg) scale(1)}50%{transform:translateY(-8px) rotate(3deg) scale(1.04)}}
@media (max-width:1100px){.enterprise-motion{grid-template-columns:1fr;}}
@media (max-width:760px){.footer-links-row{padding-bottom:20px;margin-top:24px}.enterprise-motion{gap:14px}.motion-card{height:120px}}

.footer-keywords-clean{display:flex;justify-content:center;align-items:center;margin-bottom:36px;overflow:visible}
.footer-keywords-clean h2{max-width:980px;margin:0 auto;font-size:clamp(34px,4.7vw,74px);line-height:1.05;letter-spacing:-0.05em;text-align:center}
.keyword-marquee{display:none !important}
.footer-links-row{padding-bottom:18px}


/* custom file arrangement + premium spacing + outlined tool circles */
.tool-pill{max-width:900px;padding:22px 28px;border-radius:28px;gap:24px;align-items:center}
.tool-icons.tool-logos{display:flex;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap}
.tool-logo{width:72px;min-width:72px;height:72px;border-radius:50%;background:transparent !important;border:1.5px solid rgba(15,23,22,.16) !important;box-shadow:none !important;padding:0;display:grid;place-items:center;overflow:hidden}
.tool-logo img{max-width:58%;max-height:58%;width:auto;height:auto;object-fit:contain;display:block}
.tool-logo.salesforce img{max-width:72%;max-height:72%}
.tool-logo.zoho img{max-width:62%;max-height:62%}
.tool-logo.more{font-size:20px;font-weight:800;color:#1d2624;background:transparent !important}
.tool-pill strong{display:block;margin-bottom:4px;font-size:18px}
.tool-pill p{margin:0;font-size:14px;line-height:1.6}
.footer-keywords-clean{margin-top:56px;margin-bottom:56px;padding:38px 0}
.footer-keywords-clean h2{max-width:960px}
@media (max-width:760px){.tool-pill{padding:20px;border-radius:24px;gap:18px}.tool-logo{width:64px;min-width:64px;height:64px}.footer-keywords-clean{margin-top:40px;margin-bottom:40px;padding:28px 0}}


/* production refinements - april 2026 */
html, body {
  max-width: 100%;
}

img, video {
  max-width: 100%;
  height: auto;
}

.hero-mark {
  width: min(220px, 34vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: visible;
}

.mark-star,
.mark-star::before,
.mark-star::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.mark-core {
  inset: 26%;
  border-radius: 36% 64% 58% 42% / 42% 40% 60% 58%;
  background: linear-gradient(145deg, rgba(66,249,159,.92) 0%, rgba(187,255,214,.88) 34%, rgba(11,63,58,.96) 100%);
  box-shadow: 0 0 46px rgba(66,249,159,.28), 0 0 90px rgba(88,196,255,.14);
}

.mark-ring {
  inset: 8%;
  border: 1px solid rgba(196,255,224,.3);
}

.mark-glow {
  inset: -10%;
}

.motion-demo-pill {
  top: 50%;
  left: 50%;
  right: auto;
  transform: translate(112px, -50%);
  white-space: nowrap;
  animation: pillFloat 6.5s ease-in-out infinite;
}

/* corrected only for the "Works with your tools" section */
.tool-pill-screenshot {
  max-width: 100%;
  background: #f7f7f6;
  border: 1px solid rgba(15, 23, 22, 0.08);
  border-radius: 28px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: none;
}

.tool-copy {
  flex: 1;
  min-width: 280px;
}

.tool-copy strong {
  display: block;
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #111917;
}

.tool-copy p {
  margin: 0;
  color: #7b8581;
  font-size: 14px;
  line-height: 1.5;
  max-width: 640px;
}

.tool-icons.tool-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 1;
  flex-wrap: nowrap;
}

.tool-logo {
  width: 74px;
  height: 74px;
  min-width: 74px;
  min-height: 74px;
  flex: 0 0 74px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1.5px solid rgba(15, 23, 22, 0.14) !important;
  background: transparent !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.tool-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 52%;
  max-height: 52%;
  object-fit: contain;
}

.tool-logo.hubspot img {
  max-width: 50%;
  max-height: 50%;
}

.tool-logo.salesforce img {
  max-width: 60%;
  max-height: 60%;
}

.tool-logo.zoho img {
  max-width: 54%;
  max-height: 54%;
}

.tool-logo.more {
  font-size: 18px;
  font-weight: 800;
  color: #111917;
  letter-spacing: -0.03em;
  line-height: 1;
}

.footer-brand {
  gap: 0;
}

.footer-brand .footer-on {
  font-weight: 500;
}

.footer-brand .footer-create {
  font-weight: 800;
}

.footer-keywords-clean {
  margin-top: 48px;
  margin-bottom: 48px;
  padding: 28px 0;
}

.footer-keywords-clean h2 {
  max-width: 980px;
}

@media (max-width: 1180px) {
  .tool-pill-screenshot {
    flex-direction: column;
    align-items: flex-start;
  }

  .tool-icons.tool-logos {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .motion-demo-pill {
    position: static;
    transform: none;
    margin-top: 14px;
  }

  .hero-orb-wrap {
    flex-direction: column;
    align-items: center;
  }

  .tool-logo {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    flex: 0 0 64px;
  }

  .tool-logo.more {
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  .hero-copy h1 {
    font-size: clamp(38px, 11vw, 60px);
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 1.7;
  }

  .video-copy,
  .video-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .tool-pill-screenshot {
    padding: 20px;
    border-radius: 24px;
    gap: 18px;
  }

  .tool-copy strong {
    font-size: 16px;
  }

  .tool-copy p {
    font-size: 13px;
  }

  .tool-icons.tool-logos {
    gap: 10px;
  }

  .tool-logo {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    flex: 0 0 64px;
  }

  .tool-logo.more {
    font-size: 16px;
  }

  .footer-links-row {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .nav-actions {
    width: 100%;
    justify-content: stretch;
  }

  .nav-actions .btn {
    flex: 1 1 0;
  }

  .tool-icons.tool-logos {
    justify-content: center;
  }
}

@keyframes pillFloat {
  0%, 100% { transform: translate(112px, -50%) translateY(0); }
  50% { transform: translate(112px, -50%) translateY(-10px); }
}


/* april 2026 final production fix - works with your tools logos */
.tool-pill-screenshot {
  flex-wrap: nowrap;
}

.tool-copy {
  padding-right: 6px;
}

.tool-icons.tool-logos {
  align-items: center;
}

.tool-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.tool-logo img {
  margin: 0 auto;
  transform: translateZ(0);
}

.tool-logo.hubspot img {
  max-width: 48%;
  max-height: 48%;
  transform: translateY(0);
}

.tool-logo.salesforce img {
  max-width: 66%;
  max-height: 66%;
  transform: translateY(1px);
}

.tool-logo.zoho img {
  max-width: 56%;
  max-height: 56%;
  transform: translateY(0);
}

.tool-logo.more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  padding-top: 1px;
}

@media (max-width: 760px) {
  .tool-pill-screenshot {
    flex-wrap: wrap;
  }

  .tool-copy {
    padding-right: 0;
  }
}
/* FINAL FORCE FIX - Works with your tools */
.tool-pill.tool-pill-screenshot {
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  align-items: center !important;
  gap: 24px !important;
  max-width: 100% !important;
  padding: 24px 28px !important;
}

.tool-pill.tool-pill-screenshot .tool-copy {
  min-width: 0 !important;
  padding-right: 0 !important;
}

.tool-pill.tool-pill-screenshot .tool-icons.tool-logos {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 18px !important;
  flex-wrap: nowrap !important;
  margin: 0 auto !important;
}

.tool-pill.tool-pill-screenshot .tool-logo {
  width: 74px !important;
  height: 74px !important;
  min-width: 74px !important;
  min-height: 74px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.tool-pill.tool-pill-screenshot .tool-logo img {
  margin: 0 auto !important;
  display: block !important;
}

@media (max-width: 900px) {
  .tool-pill.tool-pill-screenshot {
    grid-template-columns: 1fr !important;
  }

  .tool-pill.tool-pill-screenshot .tool-icons.tool-logos {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
}