:root {
  --bg: #05070d;
  --bg2: #080c15;
  --panel: #0b111c;
  --panel2: #0e1624;
  --line: rgba(255,255,255,.09);
  --line2: rgba(255,255,255,.14);
  --text: #f7f9fc;
  --muted: #9aa7b9;
  --muted2: #68758a;
  --purple: #9a67ff;
  --blue: #39a9ff;
  --green: #43e6a4;
  --max: 1180px;
}
* { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 67% 8%, rgba(113,66,255,.16), transparent 25%),
    radial-gradient(circle at 94% 35%, rgba(31,151,255,.09), transparent 23%),
    var(--bg);
  overflow-x: hidden;
  font-size: 16px;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
  z-index: -1
}
a { color: inherit }
a:focus-visible, button:focus-visible, .btn:focus-visible, .demo-tab:focus-visible, summary:focus-visible, .copy:focus-visible, .close:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 6px
}
.container { width: min(var(--max), calc(100% - 40px)); margin: auto }
nav {
  height: 76px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(5,7,13,.72);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 50
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 760;
  letter-spacing: -.6px
}
.logo-mark {
  position: relative;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center
}
.logo-mark:before{
  content:"";
  position:absolute;
  width:7px;
  height:7px;
  right:1px;
  top:-1px;
  border-radius:1px;
  background:#fff;
  transform:rotate(45deg);
  box-shadow:
    0 0 5px #fff,
    0 0 12px rgba(255,255,255,.9),
    0 0 20px rgba(170,130,255,.65);
  animation:diamondGlow 2.7s ease-in-out infinite;
}
@keyframes diamondGlow{
  0%,100%{
    opacity:.55;
    box-shadow:
      0 0 3px #fff,
      0 0 8px rgba(255,255,255,.7),
      0 0 14px rgba(170,130,255,.4);
  }
  50%{
    opacity:1;
    box-shadow:
      0 0 6px #fff,
      0 0 14px rgba(255,255,255,.95),
      0 0 24px rgba(170,130,255,.75);
  }
}
.logo-mark svg { width: 36px; height: 36px }
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #aeb8c8;
  font-size: 13px
}
.nav-links a { text-decoration: none }
.nav-links a:hover { color: #fff }
.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(154,103,255,.38);
  background: rgba(154,103,255,.09);
  border-radius: 11px;
  color: #fff !important
}
.lang-switch { display: none }
.hero { padding: 78px 0 0 }
.hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 42px
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(154,103,255,.32);
  background: rgba(154,103,255,.07);
  border-radius: 999px;
  padding: 8px 13px;
  color: #d8caff;
  font-size: 12px;
  font-weight: 650
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(67,230,164,.8)
}
h1 {
  font-size: clamp(48px, 6vw, 78px);
  line-height: .99;
  letter-spacing: -4.2px;
  margin: 22px 0 20px
}
.gradient {
  background: linear-gradient(105deg, #fff 5%, #c29cff 48%, #58c2ff 100%);
  -webkit-background-clip: text;
  color: transparent
}
.hero p {
  max-width: 600px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65
}
.actions {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  margin-top: 30px
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  border-radius: 13px;
  padding: 15px 22px;
  font-size: 14px;
  font-weight: 780;
  transition: .2s;
  border: 0;
  cursor: pointer
}
.btn-primary {
  color: #fff;
  background: linear-gradient(105deg, #9655ff, #188cff);
  box-shadow: 0 12px 45px rgba(93,56,255,.20)
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 55px rgba(93,56,255,.32)
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  color: #dbe2ef
}
.btn-secondary:hover { background: rgba(255,255,255,.075) }
.apple { width: 18px; height: 18px; fill: currentColor }
.microtrust {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
  margin-top: 17px;
  color: #8491a4;
  font-size: 11px
}
.microtrust span:before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 6px }
.note {
  color: var(--green) !important;
  font-size: 11px;
  margin-top: 11px;
  text-shadow: 0 0 10px rgba(67,230,164,.18)
}
.mac-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 0
}
.aura {
  position: absolute;
  width: 78%;
  height: 56%;
  left: 11%;
  top: 22%;
  background: rgba(103,65,255,.35);
  filter: blur(85px);
  z-index: 0
}
.mac {
  position: relative;
  z-index: 1;
  width: min(112%, 780px);
  max-width: 780px;
  margin: 0 auto;
  display: block;
  flex: 0 1 auto;
  filter: drop-shadow(0 38px 48px rgba(0,0,0,.62));
  animation: none !important;
  transform: none !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision
}
.screen {
  background: #161a25;
  border: 6px solid #303744;
  border-bottom-width: 9px;
  border-radius: 18px 18px 7px 7px;
  aspect-ratio: 16/10;
  overflow: hidden
}
.desktop {
  height: 100%;
  display: flex;
  background: radial-gradient(circle at 70% 25%, rgba(75,46,141,.35), transparent 33%), #080c15
}
.side {
  width: 23%;
  background: rgba(13,20,32,.95);
  border-right: 1px solid rgba(255,255,255,.06);
  padding: 13px
}
.app {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 18px
}
.mini-logo {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #9e55ff, #19aaff);
  font-size: 10px;
  position: relative;
  overflow: visible !important;
  color: #fff;
  box-shadow: 0 0 18px rgba(128,70,255,.35), inset 0 1px 0 rgba(255,255,255,.35)
}
.mini-logo:before { content: "N"; font-size: 12px; font-weight: 900; line-height: 1 }
.mini-logo:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  right: -2px;
  top: -2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px #fff, 0 0 14px #8d5cff;
  animation: novaSpark 1.9s infinite
}
@keyframes novaSpark {
  0%, 100% { transform: rotate(45deg) scale(.8); opacity: .65 }
  50% { transform: rotate(45deg) scale(1.15); opacity: 1 }
}
.new {
  background: #176eff;
  border-radius: 6px;
  padding: 8px;
  text-align: center;
  font-size: 9px;
  margin-bottom: 16px
}
.label {
  font-size: 7.5px;
  color: #667388;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 12px 4px 7px
}
.item {
  font-size: 8.5px;
  color: #8794a7;
  padding: 7px;
  border-radius: 5px
}
.item.active { background: rgba(139,92,246,.12); color: #d9ccff }
.main {
  flex: 1;
  display: flex;
  flex-direction: column
}
.top {
  height: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  font-size: 10px
}
.online {
  color: var(--green);
  font-size: 7.5px;
  margin-top: 2px
}
.demo-tabs {
  display: flex;
  gap: 6px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: #0b111d
}
.demo-tab {
  border: 0;
  background: transparent;
  color: #68768a;
  font: 600 8px -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 6px 8px;
  border-radius: 5px;
  cursor: pointer
}
.demo-tab.active { background: rgba(128,83,231,.16); color: #ddd2ff }
.demo-stage {
  position: relative;
  min-height: 180px;
  padding: 18px 8%
}
.demo-copy { animation: demoIn .45s ease }
.demo-kicker {
  font-size: 6.5px;
  letter-spacing: 1.3px;
  color: #9274ff;
  font-weight: 800
}
.demo-title {
  font-size: 13px;
  font-weight: 750;
  margin-top: 6px;
  color: #f0f3fa
}
.demo-user {
  font-size: 9px;
  color: #7d8a9d;
  margin-top: 4px
}
.demo-agent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 13px;
  color: #aeb9c9;
  font-size: 9px;
  max-width: 350px
}
.ai-avatar {
  width: 19px;
  height: 19px;
  flex: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #9c57ff, #159eff);
  display: grid;
  place-items: center;
  color: #fff;
  position: relative;
  overflow: visible !important;
  box-shadow: 0 0 18px rgba(128,70,255,.35), inset 0 1px 0 rgba(255,255,255,.35)
}
.ai-avatar:before { content: "N"; font-size: 12px; font-weight: 900; line-height: 1 }
.ai-avatar:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  right: -2px;
  top: -2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px #fff, 0 0 14px #8d5cff;
  animation: novaSpark 1.9s infinite
}
.task {
  margin-top: 14px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.035);
  border-radius: 8px;
  animation: taskPulse 3.2s ease-in-out infinite;
  position: relative;
  box-shadow: inset 0 0 28px rgba(130,77,255,.035), 0 0 25px rgba(85,62,160,.05)
}
.task:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a978ff, transparent);
  animation: taskScan 2.8s linear infinite
}
@keyframes taskScan {
  from { transform: translateX(-30%); opacity: 0 }
  25% { opacity: 1 }
  to { transform: translateX(30%); opacity: 0 }
}
.task-head {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  margin-bottom: 6px
}
.active { color: var(--green) }
.task-meta {
  color: #647287;
  font-size: 8px;
  margin-bottom: 9px
}
.progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #718096;
  margin-bottom: 5px
}
.progress-row b { color: #a98bff }
.bar {
  height: 4px;
  background: #263246;
  border-radius: 9px;
  overflow: hidden
}
.bar i {
  display: block;
  width: 74%;
  height: 100%;
  background: linear-gradient(90deg, #8955ff, #20a9ff)
}
.task-foot {
  display: flex;
  justify-content: space-between;
  color: #536177;
  font-size: 7px;
  margin-top: 7px
}
.input {
  margin: 0 8% 12px;
  height: 30px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  color: #5e6b7d;
  font-size: 8px
}
.send {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #fff;
  color: #111;
  display: grid;
  place-items: center
}
.base {
  height: 15px;
  background: linear-gradient(#9ca4ad, #646b73);
  border-radius: 0 0 25px 25px;
  max-width: 107%;
  width: 107%;
  margin-left: -3.5%
}
.base:after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  margin: auto;
  background: #7e858d;
  border-radius: 0 0 8px 8px
}
.section { padding: 110px 0 0 }
.center { text-align: center }
.eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a07dff;
  font-weight: 800
}
.title {
  font-size: 40px;
  letter-spacing: -2px;
  margin-top: 10px
}
.sub {
  max-width: 690px;
  margin: 12px auto;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px
}
.proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 35px
}
.proof {
  position: relative;
  min-height: 158px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 24px 22px;
  border: 1px solid rgba(255,255,255,.09);
  background:
    radial-gradient(circle at 18% 0%, rgba(154,103,255,.075), transparent 48%),
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease
}
.proof:hover {
  transform: translateY(-2px);
  border-color: rgba(154,103,255,.24);
  background:
    radial-gradient(circle at 18% 0%, rgba(154,103,255,.11), transparent 50%),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  box-shadow: 0 12px 32px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.035)
}
.proof strong {
  display: block;
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -1.2px;
  font-weight: 800;
  background: linear-gradient(105deg, #fff 8%, #c7a9ff 72%, #9b7cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}
.proof h3 {
  margin-top: 13px;
  color: #f4f6fb;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -.2px;
  font-weight: 720
}
.proof span {
  display: block;
  color: #8996a9;
  font-size: 11px;
  line-height: 1.45;
  margin-top: 7px
}
.usecases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 35px
}
.card {
  padding: 25px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  border-radius: 17px;
  min-height: 180px
}
.icon { font-size: 23px; margin-bottom: 17px }
.card h3 { font-size: 16px; margin-bottom: 8px }
.card p { color: #8491a4; font-size: 13px; line-height: 1.58 }
.example {
  margin-top: 17px;
  padding: 11px 12px;
  border-radius: 10px;
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.06);
  color: #b5c0cf;
  font-size: 11px;
  line-height: 1.5
}
.how {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 42px auto 0;
  max-width: 980px;
  text-align: center
}
.step {
  position: relative;
  padding: 0 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}
.step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 17px;
  right: 28px;
  width: calc(100% - 58px);
  height: 1px;
  background: linear-gradient(90deg, rgba(154,103,255,.45), rgba(255,255,255,.05))
}
.step-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(154,103,255,.12);
  border: 1px solid rgba(154,103,255,.35);
  color: #d7c7ff;
  font-size: 12px;
  font-weight: 800;
  margin: 0 auto 16px
}
.step h3 { font-size: 16px; margin-bottom: 7px }
.step p {
  color: #8491a4;
  font-size: 13px;
  line-height: 1.55;
  max-width: 280px
}
.result-demo {
  margin-top: 42px;
  border: 1px solid var(--line2);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(145deg, #0c1421, #070c14);
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease
}
.result-demo:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.13);
  box-shadow: 0 16px 42px rgba(0,0,0,.14)
}
.result-head {
  height: 46px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.055);
  background: rgba(255,255,255,.012)
}
.result-head strong {
  color: #dce3ed;
  font-size: 10px;
  line-height: 1;
  font-weight: 700
}
.result-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #a4afbe;
  font-size: 10px;
  line-height: 1
}
.result-status i {
  width: 5px;
  height: 5px;
  flex: none;
  border-radius: 50%;
  background: var(--green)
}
.result-body {
  min-height: 286px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 30px 34px
}
.result-chat,
.result-output {
  min-width: 0;
  display: flex;
  justify-content: center;
  flex-direction: column
}
.result-chat {
  padding: 4px 42px 4px 10px;
  border-right: 1px solid rgba(255,255,255,.065)
}
.result-output { padding: 4px 10px 4px 42px }
.result-label,
.output-title {
  color: #9272ed;
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.25px;
  text-transform: uppercase
}
.result-chat .quote {
  margin-top: 14px;
  max-width: 465px;
  color: #edf1f7;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -.22px;
  font-weight: 560
}
.result-chat .small {
  margin-top: 12px;
  max-width: 445px;
  color: #8995a5;
  font-size: 11px;
  line-height: 1.55
}
.output-card {
  width: 90%;
  min-height: 170px;
  padding: 27px 29px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  background: rgba(255,255,255,.022)
}
.output-main {
  margin-top: 13px;
  color: #f4f6fa;
  font-size: 37px;
  line-height: 1;
  letter-spacing: -1.7px;
  font-weight: 800
}
.output-sub {
  margin-top: 10px;
  color: #99a5b5;
  font-size: 11px;
  line-height: 1.45
}
.saving {
  margin-top: 14px;
  color: var(--green);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 650
}
.privacy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 40px
}
.privacy-copy,
.privacy-panel {
  min-width: 0;
  min-height: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.038), rgba(255,255,255,.016));
  padding: 28px 30px;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease
}
.privacy-copy:hover,
.privacy-panel:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.019));
  box-shadow: 0 10px 30px rgba(0,0,0,.10)
}
.privacy-copy h3,
.privacy-panel-title {
  margin: 0;
  color: #f0f3f8;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -.55px;
  font-weight: 700
}
.privacy-copy>p {
  margin-top: 10px;
  max-width: 590px;
  color: #8995a6;
  font-size: 12px;
  line-height: 1.6
}
.privacy-list {
  display: grid;
  gap: 0;
  margin-top: 23px
}
.privacy-item {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  padding: 14px 0;
  color: #aeb8c7;
  font-size: 11px;
  line-height: 1.5
}
.privacy-item+.privacy-item { border-top: 1px solid rgba(255,255,255,.055) }
.privacy-item .check {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 6px;
  background: rgba(67,230,164,.065);
  border: 1px solid rgba(67,230,164,.16);
  color: var(--green);
  display: grid;
  place-items: center;
  flex: none;
  font-size: 10px;
  font-weight: 700
}
.privacy-item b {
  display: block;
  color: #e4e9f1;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 650
}
.privacy-item em {
  display: block;
  margin-top: 4px;
  color: #7f8b9c;
  font-style: normal
}
.security-badge {
  display: block;
  width: max-content;
  padding: 0;
  margin: 0 0 18px;
  border: 0;
  background: none;
  color: #9272ed;
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.25px;
  text-transform: uppercase
}
.security-list {
  display: grid;
  gap: 0
}
.security-row {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: 18px;
  align-items: center;
  min-height: 45px;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,.055);
  font-size: 11px
}
.security-row:last-child { border-bottom: 0 }
.security-row span { color: #7e8b9d }
.security-row b {
  color: #dfe5ed;
  font-weight: 600;
  text-align: right
}
.security-row a {
  color: #d7ccff;
  text-decoration: none;
  transition: color .18s ease
}
.security-row a:hover { color: #f1edff }
.security-row a i {
  display: inline-block;
  margin-left: 2px;
  font-style: normal;
  transition: transform .18s ease
}
.security-row a:hover i { transform: translateX(3px) }
.pricing-wrap {
  max-width: 600px;
  margin: 36px auto 0;
  border: 1px solid rgba(154,103,255,.3);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.018));
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.2)
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 9px
}
.pricing-amount strong {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1;
  background: linear-gradient(105deg, #fff 8%, #c7a9ff 72%, #9b7cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}
.pricing-amount span {
  font-size: 14px;
  color: #8491a4;
  font-weight: 600
}
.pricing-list {
  display: grid;
  gap: 13px;
  margin: 28px auto 0;
  text-align: left;
  max-width: 400px
}
.pricing-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: #c3cbd9;
  font-size: 13px;
  line-height: 1.5
}
.pricing-note {
  color: #69778b;
  font-size: 11px;
  margin-top: 22px
}
.integrations {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 18px 28px;
  max-width: 980px;
  margin: 34px auto 0;
  align-items: start
}
.platform {
  min-height: 82px;
  border: 0;
  background: transparent;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  color: #d7deea;
  font-size: 11px;
  text-align: center
}
.brand {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(145deg, #273246, #111827);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 8px 24px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .2s ease, box-shadow .2s ease
}
.platform:hover .brand {
  transform: translateY(-3px);
  box-shadow: 0 13px 30px rgba(0,0,0,.35), 0 0 24px rgba(125,82,255,.13)
}
.brand-svg { width: 30px; height: 30px; display: block }
.platform .brand { display: grid; place-items: center }
.slack-svg { width: 31px; height: 31px }
.m365-svg { width: 31px; height: 31px }
.integration-icon { overflow: hidden }
.integration-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block
}
.integration-icon img[alt="Microsoft 365"] { width: 48px; height: 48px }
.faq {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 14px !important;
  margin-top: 35px
}
.faq-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  min-width: 0 !important;
  align-self: start !important
}
.faq-col details {
  align-self: stretch !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important
}
.faq details {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
  border-radius: 14px;
  padding: 17px 18px
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 700
}
.faq summary::-webkit-details-marker { display: none }
.faq summary:after {
  content: "+";
  float: right;
  color: #8390a3;
  font-size: 18px;
  font-weight: 400
}
.faq details[open] summary:after { content: "−" }
.faq p {
  color: #7f8c9f;
  font-size: 12px;
  line-height: 1.6;
  margin-top: 10px
}
.final {
  margin: 110px 0 85px;
  padding: 52px;
  border: 1px solid rgba(110,76,255,.35);
  border-radius: 24px;
  background: radial-gradient(circle at 20% 50%, rgba(99,60,255,.16), transparent 38%), radial-gradient(circle at 85% 40%, rgba(13,167,255,.12), transparent 36%), #0a1020;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  position: relative;
  overflow: hidden
}
.final:before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -150px;
  top: -230px;
  border-radius: 50%;
  border: 1px solid rgba(151,105,255,.24);
  box-shadow: 0 0 90px rgba(112,70,255,.15);
  animation: novaReactor 12s linear infinite
}
@keyframes novaReactor { to { transform: rotate(360deg) } }
.final h2 {
  font-size: 37px;
  letter-spacing: -1.8px
}
.final p {
  color: #8d99ac;
  font-size: 13px;
  margin-top: 8px
}
.final-meta {
  color: #6f7c90;
  font-size: 10px;
  margin-top: 10px
}
footer {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 26px 0;
  color: #68758a;
  font-size: 11px
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 15px
}
.foot a { text-decoration: none }
.foot a:hover { color: #fff }
.mobile-download { display: none }
@keyframes demoIn {
  from { opacity: 0; transform: translateY(5px) }
  to { opacity: 1; transform: none }
}
@keyframes taskPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(139,92,246,0) }
  50% { box-shadow: 0 0 25px rgba(125,81,255,.08) }
}
.download-pulse { animation: downloadPulse 2.7s infinite }
@keyframes downloadPulse {
  0%, 100% { box-shadow: 0 12px 45px rgba(93,56,255,.2) }
  50% { box-shadow: 0 12px 58px rgba(93,56,255,.28) }
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: .65s ease
}
.reveal.visible {
  opacity: 1;
  transform: none
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100dvh;
  padding: 20px;
  background: rgba(2,6,15,.52);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s, visibility .22s
}
.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}
.modal {
  position: relative;
  margin: 0 auto;
  width: min(620px, calc(100vw - 40px));
  max-height: calc(100dvh - 40px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  background: linear-gradient(145deg, #0f1929, #07101d);
  box-shadow: 0 28px 90px rgba(0,0,0,.5);
  transform: translateY(10px) scale(.985);
  transition: transform .24s;
  flex: none
}
.modal-backdrop.open .modal { transform: none }
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 19px;
  border-bottom: 1px solid rgba(255,255,255,.07)
}
.modal-brand {
  display: flex;
  align-items: center;
  gap: 11px
}
.modal-brand-icon {
  width: 34px;
  height: 34px;
  position: relative
}
.modal-brand-icon:before {
  content: "N";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-family: Arial, sans-serif;
  font-size: 24px;
  letter-spacing: -3px;
  color: #fff;
  background: linear-gradient(135deg, #d9a7ff 0%, #7b5cff 45%, #27c6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(141,83,255,.7))
}
.modal-brand-icon:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  right: 1px;
  top: 3px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: 0 0 12px #fff, 0 0 24px #9a67ff;
  animation: novaSpark 2.4s ease-in-out infinite
}
.modal-brand-icon svg { opacity: 0 }
.modal-head h3 {
  font-size: 18px;
  color: #f7f9fc
}
.close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
  color: #8996a8;
  font-size: 19px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, color .2s
}
.close:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: #fff
}
.modal-body { padding: 23px 28px 20px }
.modal-v2 {
  width: min(680px, calc(100vw - 40px));
  background:
    linear-gradient(155deg, rgba(255,255,255,.04), rgba(255,255,255,0) 40%),
    linear-gradient(145deg, #101b2c, #070e1a);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%)
}
.modal-v2 .modal-head { padding: 22px 26px }
.modal-v2 .modal-brand-icon { width: 30px; height: 30px }
.modal-v2 .modal-head h3 {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -.4px
}
.modal-v2 .modal-body { padding: 0 }
.mstep { padding: 26px 28px }
.mstep+.mstep { border-top: 1px solid rgba(255,255,255,.07) }
.mstep-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px
}
.mstep-num {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(155deg, rgba(184,145,255,.28), rgba(154,103,255,.08));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(184,145,255,.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 0 16px rgba(154,103,255,.28);
  color: #e7dcff;
  font-size: 13px;
  font-weight: 800
}
.mstep-head h4 {
  font-size: 17px;
  font-weight: 500;
  color: #f4f6fb
}
.mflow-grid {
  margin-left: 44px;
  display: grid;
  align-items: center;
  column-gap: 14px;
  row-gap: 12px;
  grid-template-columns: auto auto auto auto auto;
  justify-content: start
}
.mflow-grid.grow-mid { grid-template-columns: auto auto minmax(0, 1fr) auto auto }
.mflow-grid .g-c1 { grid-column: 1; grid-row: 1; justify-self: start }
.mflow-grid .g-a1 { grid-column: 2; grid-row: 1; justify-self: center }
.mflow-grid .g-c2 { grid-column: 3; grid-row: 1; justify-self: start; min-width: 0; width: 100% }
.mflow-grid .g-a2 { grid-column: 4; grid-row: 1; justify-self: center }
.mflow-grid .g-c3 { grid-column: 5; grid-row: 1; justify-self: start }
.mflow-grid .g-cap1 { grid-column: 1; grid-row: 2 }
.mflow-grid .g-cap2 { grid-column: 3; grid-row: 2 }
.mflow-grid .g-cap3 { grid-column: 5; grid-row: 2 }
.mflow-arrow {
  color: #7c889b;
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  padding: 0 10px
}
.mkeys {
  display: flex;
  align-items: center;
  gap: 8px
}
.mkey {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  border-radius: 10px;
  position: relative;
  border: 1px solid #5b5b5b;
  background: linear-gradient(155deg, #1a1c2b, #100f18);
  box-shadow: 0 0 0 3px #0e1626, 0 0 0 5px rgba(185,140,255,.55), 0 0 5px 7px rgba(168,113,255,.45), 0 0 42px 7px rgba(168,113,255,.22);
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Arial, sans-serif
}
.mkey.mtype {
  min-width: 46px;
  height: 46px;
  box-shadow: none;
  color: #b394ff;
  font: 700 13px ui-monospace, SFMono-Regular, Menlo, monospace
}
.mkey.mreturn {
  padding: 0 20px;
  border: 2px solid #919191;
  box-shadow: 0 0 0 2px #0e1626, 0 0 0 5px rgba(185,140,255,.55), 0 0 20px 7px rgba(168,113,255,.45), 0 0 42px 7px rgba(168,113,255,.22)
}
.mplus {
  color: #7c889b;
  font-size: 18px;
  font-weight: 700;
  padding: 0 10px
}
.mflow-caption {
  color: #7c889b;
  font-size: 11px;
  display: block;
  text-align: center;
  padding-top: 5px
}
.mcopy-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 46px;
  padding: 0 20px;
  border-radius: 14px;
  position: relative;
  border: 2px solid #a54ef5;
  background: linear-gradient(155deg, #1a1c2b, #100f18);
  box-shadow: 0 0 0 4px #0e1626, 0 0 0 5px rgba(185,140,255,.55), 0 0 20px 7px rgba(168,113,255,.45), 0 0 42px 7px rgba(168,113,255,.22);
  color: #ffffff;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: box-shadow .18s, transform .18s;
  font-family: inherit;
  animation: softPulse 3s ease-in-out infinite
}
.mcopy-btn:hover {
  box-shadow: 0 0 0 4px #0e1626, 0 0 0 5px rgba(200,168,255,.65), 0 0 26px 8px rgba(168,113,255,.55), 0 0 52px 8px rgba(168,113,255,.3)
}
.mcopy-btn.copied {
  border-color: #58e6a8;
  box-shadow: 0 0 0 4px #0e1626, 0 0 0 5px rgba(88,230,168,.55), 0 0 20px 7px rgba(88,230,168,.42), 0 0 42px 7px rgba(88,230,168,.22);
  color: #7bffc4
}
.mcopy-btn svg { width: 16px; height: 16px }
@keyframes softPulse {
  0%, 100% { box-shadow: 0 0 0 4px #0e1626, 0 0 0 5px rgba(185,140,255,.4), 0 0 15px 5px rgba(168,113,255,.3), 0 0 35px 5px rgba(168,113,255,.15); transform: scale(1) }
  50% { box-shadow: 0 0 0 4px #0e1626, 0 0 0 5px rgba(185,140,255,.6), 0 0 25px 8px rgba(168,113,255,.45), 0 0 45px 8px rgba(168,113,255,.25); transform: scale(1.02) }
}
.mterm {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(155deg, rgba(255,255,255,.05), rgba(0,0,0,.15) 60%),
    rgba(3,6,12,.55);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 6px 16px rgba(0,0,0,.25)
}
.mterm-caret {
  color: #6b7688;
  font: 700 12px ui-monospace, monospace;
  flex: none
}
.mterm code {
  flex: 1;
  min-width: 0;
  font: 11px ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #d6e3f8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}
.mfoot {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding: 18px 28px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #9aa7b9;
  font-size: 12px;
  justify-content: center
}
.mfoot span {
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative
}
.mfoot span::before {
  content: "✓";
  width: 15px;
  height: 15px;
  flex: none;
  border-radius: 50%;
  background: rgba(67,230,164,.12);
  border: 1px solid rgba(67,230,164,.4);
  color: #43e6a4;
  display: grid;
  place-items: center;
  font-size: 9px;
  line-height: 1;
  padding-top: 1px
}
.hero-integrations {
  position: relative;
  z-index: 4;
  width: min(var(--max), calc(100% - 40px));
  margin: 8px auto 0;
  padding: 24px 0 18px;
  text-align: center
}
.hero-integrations-head {
  text-align: center;
  margin-bottom: 20px
}
.hero-integrations-head h2 {
  font-size: 24px;
  letter-spacing: -.8px;
  font-weight: 800;
  background: linear-gradient(90deg, #fff 20%, #c9b6ff 55%, #fff 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}
.hero-integrations-head p {
  margin-top: 5px;
  color: #8491a4;
  font-size: 12px
}
.integration-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(64px, 94px));
  gap: 40px 20px;
  align-items: start;
  justify-content: center;
  justify-items: center;
  margin: 0 auto
}
.integration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: #e4e9f1;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), filter .35s
}
.integration:hover {
  transform: translateY(-6px) scale(1.03);
  filter: drop-shadow(0 12px 24px rgba(108,67,255,.18))
}
.integration-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  padding: 0;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform .2s ease, filter .2s ease
}
.integration-icon img {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain
}
.integration:hover .integration-icon {
  transform: translateY(-3px);
  filter: brightness(1.08)
}
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 24px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
  border-radius: 16px;
  max-width: 620px
}
.avatars {
  display: flex;
  align-items: center;
  padding-left: 2px
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #080c15;
  margin-left: -7px;
  box-shadow: 0 3px 12px rgba(0,0,0,.35)
}
.avatar:first-child { margin-left: 0 }
.trust-copy {
  display: flex;
  flex-direction: column;
  gap: 2px
}
.stars {
  color: #FFD21F !important;
  opacity: 1 !important;
  filter: none !important;
  text-shadow: 0 0 5px rgba(255,210,31,.65), 0 0 14px rgba(255,210,31,.28) !important;
  font-weight: 900
}
.stars .star { color: #FFD21F; display: inline-block }
.rating {
  color: #b9c2cf;
  font-size: 12px;
  margin-left: 5px;
  letter-spacing: 0
}
.trust-copy strong {
  font-size: 12px;
  font-weight: 650;
  color: #e8edf5
}
.trust-copy span {
  font-size: 11px;
  color: #7f8ca0
}
@media (max-width: 950px) {
  .hero-grid { grid-template-columns: 1fr }
  .mac-wrap { margin-top: 45px }
  .usecases { grid-template-columns: repeat(2, 1fr) }
  .integration-grid { grid-template-columns: repeat(5, 1fr); gap: 28px 16px }
  .hero-integrations { margin-top: 0 }
  .trust-strip { margin-left: auto; margin-right: auto }
  .proof { min-height: 150px }
}
@media (max-width: 700px) {
  .container { width: min(100% - 28px, var(--max)) }
  .nav-links { display: none }
  .hero { padding-top: 50px }
  h1 { letter-spacing: -3px; font-size: clamp(42px, 12vw, 62px) }
  .proof-row,
  .how,
  .privacy,
  .result-body { grid-template-columns: 1fr }
  .proof-row { gap: 8px }
  .proof { min-height: 140px; padding: 21px 19px }
  .proof strong { font-size: 24px }
  .usecases { grid-template-columns: 1fr }
  .integration-grid { grid-template-columns: repeat(4, 1fr); gap: 24px 8px }
  .integration-icon { width: 43px; height: 43px; padding: 0; border-radius: 11px }
  .integration-icon img { width: 43px; height: 43px }
  .integration { font-size: 9px }
  .faq { grid-template-columns: 1fr !important }
  .step { padding: 0 0 28px }
  .step:not(:last-child):after { display: none }
  .title { font-size: 31px }
  .final { flex-direction: column; align-items: flex-start; padding: 30px }
  .final h2 { font-size: 29px }
  .mobile-download {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 10px;
    left: 12px;
    right: 12px;
    z-index: 90;
    padding: 13px 18px;
    border-radius: 13px;
    background: linear-gradient(105deg, #8d42ff, #137cff);
    box-shadow: 0 10px 35px rgba(0,0,0,.55);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,.18)
  }
  .modal-backdrop { padding: 14px }
  .modal { width: min(620px, calc(100vw - 28px)); max-height: calc(100dvh - 28px); border-radius: 19px }
  .modal-body { padding: 20px 17px 18px }
  .command { padding-left: 10px }
  .command code { font-size: 9px }
  .modal-v2 { width: min(680px, calc(100vw - 20px)) }
  .modal-v2 .modal-head { padding: 18px 18px }
  .modal-v2 .modal-head h3 { font-size: 17px }
  .mstep { padding: 20px 18px }
  .mflow-grid {
    margin-left: 0;
    grid-template-columns: 1fr !important;
    row-gap: 14px
  }
  .mflow-grid .g-c1,
  .mflow-grid .g-c2,
  .mflow-grid .g-c3,
  .mflow-grid .g-cap1,
  .mflow-grid .g-cap2,
  .mflow-grid .g-cap3 { grid-column: 1 }
  .mflow-grid .g-c1 { grid-row: 1 }
  .mflow-grid .g-cap1 { grid-row: 2 }
  .mflow-grid .g-c2 { grid-row: 3 }
  .mflow-grid .g-cap2 { grid-row: 4 }
  .mflow-grid .g-c3 { grid-row: 5 }
  .mflow-grid .g-cap3 { grid-row: 6 }
  .mflow-grid .g-a1,
  .mflow-grid .g-a2 { display: none }
  .mflow-grid .g-c2,
  .mflow-grid .g-c3 { width: 100% }
  .mterm code { font-size: 10px }
  .mfoot { padding: 15px 18px; gap: 14px; font-size: 11px }
  .result-demo { border-radius: 14px }
  .result-head { height: 45px; padding: 0 15px }
  .result-body {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 24px 20px
  }
  .result-chat {
    padding: 3px 0 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.065)
  }
  .result-output { padding: 24px 0 3px }
  .result-chat .quote { font-size: 15px }
  .output-card {
    width: 100%;
    min-height: 0;
    padding: 24px
  }
  .output-main { font-size: 33px }
  .privacy { grid-template-columns: 1fr; gap: 14px; margin-top: 32px }
  .privacy-copy,
  .privacy-panel { padding: 24px 21px; border-radius: 15px }
  .privacy-copy h3,
  .privacy-panel-title { font-size: 19px }
  .security-row { grid-template-columns: minmax(0, .65fr) minmax(0, 1.35fr); gap: 12px; min-height: 48px }
  .pricing-wrap { padding: 30px 22px }
  .pricing-amount strong { font-size: 46px }
  .trust-strip { justify-content: center; gap: 11px; padding: 12px 10px }
  .avatar { width: 34px; height: 34px }
  .stars { font-size: 14px }
  .trust-copy strong { font-size: 10px }
  .trust-copy span { font-size: 9px }
}
@media (max-width: 600px) {
  .hero-integrations { padding: 18px 0 14px }
  .hero-integrations-head h2 { font-size: 19px }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after { scroll-behavior: auto !important; animation: none !important; transition: none !important }
  .reveal { opacity: 1; transform: none }
}
.mac-wrap:before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(161,112,255,.18);
  box-shadow: 0 0 80px rgba(112,72,255,.13), inset 0 0 70px rgba(55,164,255,.06);
  animation: novaReactor 8s linear infinite !important
}
.mac-wrap:after {
  content: "";
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(76,178,255,.20);
  animation: novaReactorReverse 5.5s linear infinite !important
}
@keyframes novaReactorReverse { to { transform: rotate(-360deg) } }
.aura {
  animation: neuralAura 5s ease-in-out infinite
}
@keyframes neuralAura {
  0%, 100% { opacity: .72; transform: scale(.98) }
  50% { opacity: 1; transform: scale(1.04) }
}
.btn-primary { position: relative; overflow: hidden }
.btn-primary:before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.34) 48%, transparent 70%);
  transform: translateX(-120%);
  animation: novaShine 3.6s ease-in-out infinite
}
@keyframes novaShine {
  0%, 45% { transform: translateX(-120%) }
  70%, 100% { transform: translateX(120%) }
}
.btn-primary>* { position: relative }
.hero .badge .dot {
  animation: neuralDot 1.4s ease-in-out infinite
}
@keyframes neuralDot {
  0%, 100% { transform: scale(.8); box-shadow: 0 0 5px rgba(67,230,164,.5) }
  50% { transform: scale(1.35); box-shadow: 0 0 22px rgba(67,230,164,1) }
}
.reveal.visible { animation: novaReveal .8s cubic-bezier(.2, .8, .2, 1) both }
@keyframes novaReveal {
  from { opacity: 0; transform: translateY(22px) scale(.985); filter: blur(4px) }
  to { opacity: 1; transform: none; filter: none }
}

/* ===== COOKIE BAR STYLES ===== */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  border-top: 2px solid rgba(108, 92, 231, 0.3);
  padding: 14px 24px;
  z-index: 99999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #ffffff;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
  to { transform: translateY(0); }
}

.cookie-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
}

.cookie-bar-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 300px;
}

.cookie-bar-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cookie-bar-text strong {
  font-size: 0.95rem;
  display: inline;
}

.cookie-bar-desc {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  display: inline;
}

.cookie-bar-desc a {
  color: #a78bfa;
  text-decoration: none;
  transition: color 0.2s;
}

.cookie-bar-desc a:hover {
  color: #c4b5fd;
  text-decoration: underline;
}

.cookie-bar-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}

.cookie-btn-primary {
  background: linear-gradient(135deg, #6c5ce7, #a855f7);
  color: #fff;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.cookie-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(108, 92, 231, 0.4);
}

.cookie-btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 800px) {
  .cookie-bar {
    padding: 12px 18px;
  }
  .cookie-bar-content {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cookie-bar-text {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
  .cookie-bar-desc {
    font-size: 0.8rem;
  }
  .cookie-bar-actions {
    justify-content: center;
  }
  .cookie-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    flex: 1;
    min-width: 80px;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .cookie-bar {
    padding: 10px 12px;
  }
  .cookie-bar-actions {
    flex-wrap: wrap;
  }
  .cookie-btn {
    flex: 1 1 100%;
    min-width: unset;
  }
}