:root {
  --bg: #07090f;
  --bg-soft: #0b0e17;
  --panel: rgba(17, 20, 32, .78);
  --panel-solid: #101420;
  --text: #f8f8fb;
  --muted: #a7aec3;
  --muted-2: #747d98;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.13);
  --blue: #6b8cff;
  --violet: #a970ff;
  --cyan: #6fd7ff;
  --green: #78e3b4;
  --orange: #ffb86b;
  --radius: 24px;
  --shadow: 0 30px 90px rgba(0,0,0,.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(93,95,255,.12), transparent 38%),
    linear-gradient(180deg, #080a10 0%, #07090f 65%, #090b12 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.ambient {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: .12;
  z-index: -1;
}
.ambient-a { left: -220px; top: 22%; background: var(--violet); }
.ambient-b { right: -250px; top: 60%; background: var(--blue); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: rgba(7,9,15,.72);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.brand-logo {
  width: 36px;
  height: 25px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 16px rgba(105, 126, 255, .22));
}
  position: absolute;
  inset: 9px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
}
.brand-name {
  font-size: .93rem;
  letter-spacing: .16em;
  font-weight: 750;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #c6ccdc;
  font-size: .91rem;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  padding: 10px 15px;
  border: 1px solid rgba(125,145,255,.35);
  border-radius: 12px;
  background: rgba(102,119,255,.09);
}
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  align-items: center;
  gap: 46px;
  padding-top: 88px;
  padding-bottom: 82px;
}
.eyebrow {
  margin-bottom: 16px;
  color: #9eb1ff;
  font-size: .75rem;
  letter-spacing: .2em;
  font-weight: 750;
}
h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  max-width: 610px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 5.05vw, 5.35rem);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 740;
}
h1 span, h2 span {
  background: linear-gradient(100deg, #f2f5ff 0%, #8eb0ff 42%, #c58cff 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  max-width: 570px;
  margin-bottom: 32px;
  color: #aeb5c7;
  font-size: 1.03rem;
  line-height: 1.72;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 13px;
  border: 1px solid transparent;
  font-size: .94rem;
  font-weight: 700;
  transition: .2s ease;
}
.button.primary {
  background: linear-gradient(135deg, #7092ff, #8d68ff);
  box-shadow: 0 10px 35px rgba(109,112,255,.28);
}
.button.primary:hover { transform: translateY(-2px); box-shadow: 0 15px 42px rgba(109,112,255,.36); }
.button.ghost { border-color: var(--line-strong); background: rgba(255,255,255,.025); color: #d7dceb; }
.button.ghost:hover { background: rgba(255,255,255,.055); }
.hero-trust {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted-2);
  font-size: .83rem;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(120,227,180,.08);
}

.hero-product { min-width: 0; transform: translateY(-8px); }
.product-window {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(12,15,24,.92);
  box-shadow: 0 30px 90px rgba(0,0,0,.45), 0 0 0 1px rgba(112,135,255,.05);
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
  transform-origin: center;
}
.window-topbar {
  height: 44px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid var(--line);
  background: #0a0d15;
  color: #818ba4;
  font-size: .7rem;
}
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #353b4d; }
.window-title { justify-self: center; }
.window-status { justify-self: end; color: #78d6ad; }
.product-grid { display: grid; grid-template-columns: 140px 1fr; min-height: 460px; }
.product-sidebar {
  padding: 20px 14px 14px;
  border-right: 1px solid var(--line);
  background: #0b0e17;
  display: flex;
  flex-direction: column;
}
.mini-brand { display: flex; gap: 8px; align-items: center; padding: 0 8px 18px; font-size: .75rem; }
.mini-mark { width: 17px; height: 17px; border-radius: 50%; background: linear-gradient(135deg,var(--cyan),var(--violet)); }
.product-sidebar ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 5px; }
.product-sidebar li {
  padding: 9px 8px;
  border-radius: 8px;
  color: #7f899f;
  font-size: .66rem;
}
.product-sidebar li span { margin-right: 7px; color: #697596; }
.product-sidebar li.active { background: rgba(106,126,255,.1); color: #dfe5ff; }
.sidebar-footer {
  margin-top: auto;
  padding: 12px 7px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .62rem;
}
.sidebar-footer small { display: block; color: #6f7891; }
.avatar {
  width: 27px; height: 27px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg,#607cff,#a267ff);
  font-size: .68rem; font-weight: 700;
}
.product-main { padding: 24px; min-width: 0; }
.product-heading { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.product-heading small { color: #7a849e; font-size: .64rem; }
.product-heading h3 { margin-top: 2px; font-size: 1.25rem; letter-spacing: -.03em; }
.date-pill { padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; color: #7d869e; font-size: .62rem; }
.metric-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 19px 0 13px; }
.metric-card {
  position: relative;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.018);
}
.metric-card small, .metric-card em { display: block; font-size: .58rem; color: #7d879f; font-style: normal; }
.metric-card strong { display: block; margin: 4px 0 5px; font-size: 1.05rem; }
.metric-card em { color: #82d2ad; }
.metric-icon { position: absolute; right: 11px; top: 11px; color: #7188e8; font-size: .73rem; }
.product-lower { display: grid; grid-template-columns: 1.5fr .8fr; gap: 10px; }
.attention-card, .assistant-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.018);
}
.attention-card { padding: 16px; }
.card-title { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.card-title small { color: #8fa6ff; font-size: .58rem; text-transform: uppercase; letter-spacing: .1em; }
.card-title h4 { margin: 3px 0 0; font-size: .8rem; }
.severity { padding: 4px 6px; border-radius: 6px; background: rgba(255,184,107,.1); color: var(--orange); font-size: .53rem; }
.attention-card p { margin: 10px 0; color: #8790a7; font-size: .63rem; line-height: 1.5; }
.action-row { display: flex; gap: 7px; }
.action-row button {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: transparent;
  color: #aeb6ca;
  font-size: .55rem;
}
.action-row .filled { border-color: transparent; background: rgba(105,128,255,.15); color: #cfd8ff; }
.assistant-card { padding: 16px; display: flex; gap: 11px; align-items: start; }
.assistant-card small { color: #9aabff; font-size: .54rem; letter-spacing: .12em; }
.assistant-card p { margin: 5px 0 0; color: #9ca5ba; font-size: .63rem; line-height: 1.55; }
.rynna-orb {
  flex: 0 0 auto;
  width: 38px; height: 38px; border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.9) 0 2%, transparent 15%),
    radial-gradient(circle at 40% 40%, #83e3ff 0 14%, #6681ff 38%, #a25fff 66%, transparent 68%);
  box-shadow: 0 0 34px rgba(103,123,255,.42);
}
.rynna-orb.small { width: 34px; height: 34px; }

.integration-strip {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #646d84;
  font-size: .68rem;
  letter-spacing: .12em;
  text-align: center;
}

.section { padding-top: 128px; padding-bottom: 128px; }
.section-heading { max-width: 760px; margin-bottom: 54px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
h2 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5vw, 4.85rem);
  line-height: 1.01;
  letter-spacing: -.055em;
  font-weight: 720;
}
.section-heading p, .split-copy > p, .security-copy > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 16px;
}
.feature-card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(19,23,36,.82), rgba(12,15,24,.82));
}
.feature-card.large { min-height: 390px; }
.feature-number { margin-bottom: 80px; color: #69728b; font-size: .68rem; letter-spacing: .14em; }
.feature-card h3 { max-width: 320px; margin-bottom: 12px; font-size: 1.3rem; letter-spacing: -.025em; }
.feature-card p { max-width: 410px; color: #8f98ad; font-size: .9rem; }
.connection-map { position: absolute; inset: 0; pointer-events: none; }
.map-center, .map-node {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(134,150,255,.2);
  background: #121725;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  font-size: .68rem;
  font-weight: 800;
  z-index: 2;
}
.map-center {
  right: 130px; top: 78px; width: 64px; height: 64px;
  background: radial-gradient(circle at 35% 35%,#87e5ff,#6e79ff 45%,#9b5eff 75%);
  color: white;
}
.map-node { width: 40px; height: 40px; color: #aeb7d1; }
.n1 { right: 230px; top: 42px; }
.n2 { right: 55px; top: 45px; }
.n3 { right: 250px; top: 148px; }
.n4 { right: 42px; top: 148px; }
.connection-map .line {
  position: absolute;
  height: 1px;
  width: 90px;
  top: 109px;
  right: 172px;
  transform-origin: right center;
  background: linear-gradient(90deg, transparent, rgba(124,144,255,.28));
}
.l1 { transform: rotate(23deg); }
.l2 { right: 78px; transform: rotate(-20deg); }
.l3 { top: 144px; transform: rotate(-26deg); }
.l4 { right: 79px; top: 144px; transform: rotate(28deg); }

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.capability-list { margin-top: 38px; border-top: 1px solid var(--line); }
.capability-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.capability-list span { color: #63708e; font-size: .66rem; letter-spacing: .1em; }
.capability-list p { margin: 0; color: #979fb3; font-size: .9rem; }
.capability-list strong { color: #e7e9f1; }

.rynna-demo { position: relative; }
.rynna-demo::before {
  content: "";
  position: absolute;
  inset: 10% 15%;
  border-radius: 50%;
  background: rgba(103,109,255,.18);
  filter: blur(90px);
  z-index: -1;
}
.chat-window {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: rgba(13,16,26,.93);
  box-shadow: var(--shadow);
}
.chat-top {
  padding: 17px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}
.chat-top strong { display: block; font-size: .86rem; }
.chat-top small { display: block; color: #747e98; font-size: .64rem; }
.online { margin-left: auto; color: #7fd1ae; font-size: .63rem; }
.chat-body { min-height: 360px; padding: 34px 24px 26px; display: flex; flex-direction: column; gap: 24px; }
.message {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: .86rem;
}
.message.user { align-self: flex-end; background: #202941; color: #e7ebf7; border-bottom-right-radius: 5px; }
.message.assistant {
  display: flex;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.018);
  color: #a9b1c4;
  border-bottom-left-radius: 5px;
}
.tiny-orb {
  flex: 0 0 auto;
  width: 21px; height: 21px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,#9af1ff,#6a7aff 50%,#9d64ff 75%);
  box-shadow: 0 0 18px rgba(107,124,255,.3);
}
.message p { margin-bottom: 10px; }
.message p:last-child { margin-bottom: 0; }
.message ol { margin: 8px 0 12px 18px; padding: 0; }
.message li { margin-bottom: 7px; }
.chat-input {
  margin: 0 18px 18px;
  min-height: 54px;
  padding: 8px 8px 8px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  color: #66708a;
  font-size: .8rem;
  background: #0b0e17;
}
.chat-input button {
  margin-left: auto;
  width: 37px; height: 37px;
  border: 0; border-radius: 10px;
  background: linear-gradient(135deg,#6c8dff,#9567ff);
  cursor: default;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.workflow-step {
  position: relative;
  min-height: 235px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.workflow-step:last-child { border-right: 0; }
.workflow-step span { display: block; margin-bottom: 80px; color: #65708d; font-size: .64rem; letter-spacing: .1em; }
.workflow-step h3 { margin-bottom: 9px; font-size: 1.08rem; }
.workflow-step p { color: #858ea5; font-size: .82rem; }

.integration-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.integration-card {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: rgba(255,255,255,.018);
}
.integration-icon {
  width: 47px; height: 47px;
  display: grid; place-items: center;
  margin-bottom: 72px;
  border-radius: 13px;
  font-size: .85rem;
  font-weight: 800;
}
.google { background: rgba(106,140,255,.1); color: #8da9ff; }
.shopify { background: rgba(120,227,180,.09); color: #82d8b3; }
.amazon { background: rgba(255,184,107,.08); color: #f0b16e; }
.ads { background: rgba(169,112,255,.1); color: #b68aff; }
.integration-card h3 { margin-bottom: 10px; font-size: 1.12rem; }
.integration-card p { min-height: 82px; color: #8f98ad; font-size: .84rem; }
.integration-card > span { color: #66708a; font-size: .67rem; text-transform: uppercase; letter-spacing: .09em; }

.security-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 60px;
  padding: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 0%, rgba(101,122,255,.12), transparent 42%),
    rgba(14,17,27,.82);
}
.security-panel::after {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  right: -65px; bottom: -100px;
  border-radius: 50%;
  border: 1px solid rgba(120,145,255,.08);
  box-shadow: 0 0 0 35px rgba(120,145,255,.025), 0 0 0 70px rgba(120,145,255,.018);
}
.security-points { display: grid; gap: 14px; align-content: center; }
.security-points > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.security-points > div:last-child { border-bottom: 0; }
.security-points span {
  width: 24px; height: 24px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(120,227,180,.1); color: #87dab9;
  font-size: .72rem;
}
.security-points p { margin: 0; color: #8992a9; font-size: .82rem; }
.security-points strong { color: #e7e9f0; }

.final-cta {
  position: relative;
  overflow: hidden;
  margin-bottom: 90px;
  padding: 105px 32px;
  text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(18,22,35,.9), rgba(11,14,23,.92));
}
.final-cta h2 { max-width: 880px; margin-inline: auto; }
.final-cta p { max-width: 690px; margin: 0 auto 28px; color: #9da6ba; }
.final-cta small { display: block; margin-top: 14px; color: #646d84; }
.large-button { min-height: 52px; padding-inline: 25px; }
.cta-glow {
  position: absolute;
  width: 560px; height: 260px;
  left: 50%; top: -180px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(90deg,#6677ff,#ad6cff);
  filter: blur(90px);
  opacity: .2;
  pointer-events: none;
}

.site-footer { border-top: 1px solid var(--line); background: #07090f; }
.footer-grid {
  padding-top: 64px;
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.footer-brand p { margin-top: 13px; color: #68728b; font-size: .8rem; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.footer-links strong { display: block; margin-bottom: 15px; font-size: .72rem; color: #d3d7e3; }
.footer-links a { display: block; margin-bottom: 9px; color: #6d7690; font-size: .75rem; }
.footer-links a:hover { color: #c8cedd; }
.footer-bottom {
  padding: 20px 0 26px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: #59627a;
  font-size: .68rem;
}

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

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; padding-top: 90px; }
  .hero-copy { max-width: 760px; }
  .hero-product { transform: none; }
  .product-window { transform: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card.large { grid-column: 1 / -1; }
  .split-section { grid-template-columns: 1fr; gap: 55px; }
  .workflow-grid { grid-template-columns: repeat(3,1fr); }
  .workflow-step:nth-child(3) { border-right: 0; }
  .workflow-step:nth-child(n+4) { border-top: 1px solid var(--line); }
  .integration-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 26px, 1180px); }
  .nav-toggle {
    display: grid; gap: 5px;
  }
  .nav-toggle span { width: 23px; height: 1px; background: #c5cbe0; }
  .nav-links {
    position: absolute;
    left: 13px; right: 13px; top: 67px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(10,13,21,.97);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 9px; }
  .hero { padding-top: 70px; gap: 38px; }
  h1 { font-size: clamp(3.05rem, 15vw, 4.5rem); }
  .product-grid { grid-template-columns: 1fr; }
  .product-sidebar { display: none; }
  .product-main { padding: 18px; }
  .metric-row { grid-template-columns: 1fr 1fr; }
  .metric-card:last-child { grid-column: 1 / -1; }
  .product-lower { grid-template-columns: 1fr; }
  .integration-strip {
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    padding: 26px 0;
  }
  .integration-strip span:last-child { grid-column: 1 / -1; }
  .section { padding-top: 90px; padding-bottom: 90px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card.large { grid-column: auto; }
  .map-center { right: 100px; }
  .n1 { right: 195px; }
  .n2 { right: 25px; }
  .n3 { right: 210px; }
  .n4 { right: 13px; }
  .workflow-grid { grid-template-columns: 1fr; border-bottom: 0; }
  .workflow-step {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .workflow-step:nth-child(n+4) { border-top: 0; }
  .workflow-step span { margin-bottom: 48px; }
  .integration-grid { grid-template-columns: 1fr; }
  .security-panel { grid-template-columns: 1fr; padding: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr 1fr; }
  .footer-bottom { gap: 16px; flex-direction: column; }
}

@media (max-width: 520px) {
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .metric-row { grid-template-columns: 1fr; }
  .metric-card:last-child { grid-column: auto; }
  .product-heading { flex-direction: column; }
  .final-cta { padding: 78px 20px; }
  .footer-links { grid-template-columns: 1fr 1fr; row-gap: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}


/* ---------- Multi-page site ---------- */
.page-hero {
  min-height: 640px;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 90px;
  border-bottom: 1px solid var(--line);
}
.page-hero-copy { max-width: 940px; }
.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3.8rem, 7vw, 7.2rem);
}
.page-hero p {
  max-width: 740px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}
.detail-grid { display: grid; gap: 15px; }
.detail-grid.two { grid-template-columns: repeat(2, 1fr); }
.detail-grid.three { grid-template-columns: repeat(3, 1fr); }
.detail-grid.four { grid-template-columns: repeat(4, 1fr); }
.detail-card {
  min-height: 275px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18,22,35,.78), rgba(10,13,21,.72));
}
.detail-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  margin-bottom: 64px;
  border-radius: 12px;
  background: rgba(108,128,255,.1);
  color: #9fb0ff;
  font-size: .75rem;
  font-weight: 800;
}
.detail-card h3 { font-size: 1.18rem; margin-bottom: 10px; letter-spacing: -.025em; }
.detail-card p { color: #8d96ab; font-size: .86rem; }
.card-meta {
  display: inline-block;
  margin-top: 18px;
  color: #6e7892;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.two-column-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
}
.story-copy p { color: #929bb0; line-height: 1.75; }
.check-list { list-style: none; margin: 28px 0 0; padding: 0; }
.check-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--line);
  color: #a7afc1;
  font-size: .9rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 12px;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(120,227,180,.09);
  color: #84d9b6;
  font-size: .65rem;
}
.visual-panel {
  min-height: 440px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: radial-gradient(circle at 50% 25%, rgba(104,123,255,.14), transparent 42%), #0c0f18;
  overflow: hidden;
}
.mini-dashboard {
  width: 78%;
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: #10141f;
  box-shadow: var(--shadow);
}
.dash-line { height: 14px; border-radius: 7px; background: #202942; width: 45%; margin-bottom: 30px; }
.dash-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 12px; }
.dash-cards i { height: 70px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.018); }
.dash-panel { height: 92px; border: 1px solid var(--line); border-radius: 12px; background: rgba(106,126,255,.035); margin-top: 10px; }
.dash-panel.short { width: 68%; height: 60px; }
.stack-list { border-top: 1px solid var(--line); }
.stack-list > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.stack-list span { color: #8093de; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.stack-list p { margin: 0; color: #979fb3; }
.prompt-showcase {
  min-height: 320px;
  padding: 42px;
  display: flex;
  align-items: center;
  gap: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: radial-gradient(circle at 15% 20%, rgba(111,132,255,.12), transparent 35%), #0c0f18;
}
.prompt-orb { width: 72px; height: 72px; }
.prompt-label { color: #8fa4ff; font-size: .68rem; letter-spacing: .17em; }
.prompt-showcase h2 { margin: 8px 0 0; font-size: clamp(2rem,4.5vw,4.4rem); }
.prompt-results { margin-top: 16px; }
.question-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 13px; }
.question-card {
  min-height: 120px;
  padding: 25px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.018);
  color: #c2c8d8;
  font-size: 1rem;
}
.roadmap-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.roadmap-row > div { min-height: 180px; padding: 26px; border-right: 1px solid var(--line); }
.roadmap-row > div:last-child { border-right: 0; }
.roadmap-row span, .roadmap-row small { display: block; color: #68738c; font-size: .65rem; text-transform: uppercase; letter-spacing: .09em; }
.roadmap-row strong { display: block; margin: 45px 0 5px; font-size: 1.05rem; }
.security-diagram { display: grid; gap: 12px; }
.security-layer {
  padding: 22px;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.018);
}
.security-layer span {
  grid-row: span 2;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #151b2c;
  color: #8fa4ff;
  font-size: .7rem;
}
.security-layer strong { font-size: .95rem; }
.security-layer small { color: #758099; }
.security-layer.accent { border-color: rgba(116,137,255,.26); background: rgba(96,116,255,.06); }
.security-arrow { text-align: center; color: #4d5873; }
.fine-note { color: #69738b !important; font-size: .78rem !important; }
.legal-callout {
  padding: 48px;
  border: 1px solid rgba(255,184,107,.17);
  border-radius: 24px;
  background: rgba(255,184,107,.035);
}
.legal-callout h2 { font-size: clamp(2.1rem,4vw,3.6rem); }
.legal-callout p { max-width: 790px; color: #969fb3; }
.process-list { border-top: 1px solid var(--line); }
.process-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding: 55px 0;
  border-bottom: 1px solid var(--line);
}
.process-row > span { color: #65708c; font-size: .72rem; letter-spacing: .1em; }
.process-row h2 { margin-bottom: 10px; font-size: clamp(2.4rem,5vw,4.8rem); }
.process-row p { max-width: 690px; color: #929bb0; font-size: 1rem; }
.pricing-panel {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  padding: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: radial-gradient(circle at 12% 0%, rgba(105,124,255,.13), transparent 35%), rgba(14,17,27,.82);
}
.status-pill, .draft-badge {
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid rgba(122,143,255,.22);
  border-radius: 999px;
  background: rgba(111,132,255,.07);
  color: #9fb0ff;
  font-size: .63rem;
  letter-spacing: .12em;
}
.pricing-copy h2 { margin: 22px 0 14px; }
.pricing-copy p { color: #959eb3; }
.pricing-placeholder {
  margin-top: 36px;
  padding: 18px;
  border: 1px dashed rgba(255,255,255,.13);
  border-radius: 14px;
  color: #848ea6;
  font-size: .85rem;
}
.pricing-includes > strong { display: block; margin-bottom: 10px; }
.statement-card {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.018);
}
.statement-card > span { color: #7c8bc1; font-size: .66rem; letter-spacing: .14em; }
.statement-card blockquote {
  margin: 70px 0 0;
  font-size: clamp(1.75rem,3vw,3rem);
  line-height: 1.15;
  letter-spacing: -.04em;
  color: #e5e8f1;
}
.legal-hero { padding-top: 145px; padding-bottom: 65px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { margin-bottom: 24px; font-size: clamp(3.2rem,6vw,6rem); }
.legal-hero p { color: #68728b; margin-top: 18px; }
.draft-badge { border-color: rgba(255,184,107,.23); background: rgba(255,184,107,.06); color: #e4aa6e; }
.legal-body { max-width: 860px; padding-top: 70px; padding-bottom: 120px; }
.legal-intro {
  margin-bottom: 55px;
  padding: 22px;
  border-left: 2px solid #7f8fff;
  background: rgba(112,132,255,.045);
}
.legal-body h2 { margin-top: 48px; margin-bottom: 12px; font-size: 1.45rem; letter-spacing: -.025em; }
.legal-body p { color: #989fb1; line-height: 1.8; }
.not-found { min-height: 72vh; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.not-found h1 { max-width: 780px; }
.not-found p { color: #949db0; margin-bottom: 28px; }

@media (max-width: 1000px) {
  .detail-grid.four { grid-template-columns: repeat(2,1fr); }
  .detail-grid.three { grid-template-columns: 1fr 1fr; }
  .two-column-story { grid-template-columns: 1fr; gap: 50px; }
  .roadmap-row { grid-template-columns: repeat(2,1fr); }
  .roadmap-row > div:nth-child(2) { border-right: 0; }
  .roadmap-row > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pricing-panel { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .page-hero { min-height: auto; padding-top: 90px; padding-bottom: 70px; }
  .page-hero h1 { font-size: clamp(3rem,14vw,4.7rem); }
  .detail-grid.two, .detail-grid.three, .detail-grid.four { grid-template-columns: 1fr; }
  .detail-card { min-height: 235px; }
  .prompt-showcase { padding: 28px; align-items: flex-start; flex-direction: column; }
  .question-grid { grid-template-columns: 1fr; }
  .roadmap-row { grid-template-columns: 1fr; }
  .roadmap-row > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .roadmap-row > div:last-child { border-bottom: 0; }
  .process-row { grid-template-columns: 1fr; gap: 18px; padding: 40px 0; }
  .pricing-panel, .legal-callout { padding: 28px; }
  .legal-hero { padding-top: 110px; }
}


/* ---------- Expanded business capabilities ---------- */
.nav-links { gap: 20px; }
.home-capability-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.home-capability-card { min-height:250px; padding:25px; border:1px solid var(--line); border-radius:20px; background:rgba(255,255,255,.018); transition:.2s ease; }
.home-capability-card:hover { transform:translateY(-3px); border-color:rgba(130,145,255,.25); background:rgba(105,125,255,.035); }
.home-capability-card > span { color:#7788c8; font-size:.64rem; letter-spacing:.12em; }
.home-capability-card h3 { margin:70px 0 10px; font-size:1.2rem; letter-spacing:-.025em; }
.home-capability-card p { color:#8992a8; font-size:.83rem; }
.section-link-row { margin-top:25px; }
.section-link-row a,.text-link { color:#9dafef; font-size:.88rem; }
.section-link-row a span { margin-left:5px; }
.commerce-architecture { padding:35px; border:1px solid var(--line-strong); border-radius:26px; background:radial-gradient(circle at 50% 0%,rgba(102,121,255,.12),transparent 38%),rgba(13,16,26,.85); }
.architecture-top { max-width:330px; margin:0 auto; padding:20px; text-align:center; border:1px solid rgba(120,140,255,.23); border-radius:15px; background:rgba(104,124,255,.06); }
.architecture-top span,.store-row span { display:block; color:#7585bf; font-size:.61rem; letter-spacing:.11em; }
.architecture-top strong { display:block; margin-top:5px; }
.architecture-line { width:1px; height:45px; margin:auto; background:linear-gradient(rgba(124,143,255,.35),rgba(124,143,255,.08)); }
.store-row { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; position:relative; }
.store-row::before { content:""; position:absolute; height:1px; background:rgba(124,143,255,.15); left:12%; right:12%; top:-1px; }
.store-row > div { min-height:135px; padding:19px; border:1px solid var(--line); border-radius:14px; background:#0d111b; }
.store-row strong { display:block; margin:34px 0 4px; font-size:.88rem; }
.store-row small { color:#68738d; font-size:.65rem; }
.capability-gap { margin-top:15px; }
.capability-suite { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.capability-suite-card { min-height:355px; padding:29px; border:1px solid var(--line); border-radius:22px; background:linear-gradient(180deg,rgba(18,22,35,.76),rgba(10,13,21,.72)); }
.suite-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:70px; }
.suite-top span { color:#617091; font-size:.66rem; }
.suite-top em { padding:5px 8px; border-radius:999px; background:rgba(107,127,255,.08); color:#889be0; font-size:.58rem; font-style:normal; text-transform:uppercase; letter-spacing:.07em; }
.capability-suite-card h3 { margin-bottom:10px; font-size:1.35rem; }
.capability-suite-card p { color:#919aaf; font-size:.86rem; }
.capability-suite-card ul { list-style:none; margin:22px 0 0; padding:0; display:grid; grid-template-columns:1fr 1fr; gap:8px 16px; }
.capability-suite-card li { position:relative; padding-left:15px; color:#707b95; font-size:.72rem; }
.capability-suite-card li::before { content:"·"; position:absolute; left:0; color:#8da0ec; }
.phone-flow { display:grid; gap:8px; }
.phone-flow > div { padding:20px; display:grid; grid-template-columns:42px 1fr; column-gap:12px; border:1px solid var(--line); border-radius:14px; background:rgba(255,255,255,.018); }
.phone-flow > div span { grid-row:span 2; width:34px; height:34px; border-radius:50%; display:grid; place-items:center; background:#141a2b; color:#8ea2ef; font-size:.66rem; }
.phone-flow > div strong { font-size:.9rem; }
.phone-flow > div small { color:#6e7890; }
.phone-flow > div.accent { border-color:rgba(116,137,255,.26); background:rgba(97,117,255,.06); }
.phone-flow > b { text-align:center; color:#49536c; font-weight:400; }
.channel-cloud { display:flex; flex-wrap:wrap; gap:10px; }
.channel-cloud > span { min-width:190px; flex:1 1 190px; padding:22px; border:1px solid var(--line); border-radius:16px; background:rgba(255,255,255,.018); color:#d7dbea; font-size:.9rem; }
.channel-cloud small { display:block; margin-top:5px; color:#68728a; font-size:.61rem; text-transform:uppercase; letter-spacing:.08em; }
.channel-cloud .current { border-color:rgba(120,227,180,.18); background:rgba(120,227,180,.035); }
.integration-roadmap-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.roadmap-card { min-height:240px; padding:25px; border:1px solid var(--line); border-radius:19px; background:rgba(255,255,255,.018); }
.roadmap-card > span { color:#6e7892; font-size:.6rem; letter-spacing:.09em; }
.roadmap-card h3 { margin:65px 0 9px; font-size:1.15rem; }
.roadmap-card p { color:#8790a6; font-size:.8rem; }
.roadmap-card.current { border-color:rgba(120,227,180,.18); background:rgba(120,227,180,.025); }
@media (max-width:1100px){ .nav-links{gap:14px;font-size:.84rem}.home-capability-grid{grid-template-columns:repeat(2,1fr)}.store-row{grid-template-columns:repeat(2,1fr)}.store-row::before{display:none}.integration-roadmap-grid{grid-template-columns:repeat(2,1fr)} }
@media (max-width:760px){ .home-capability-grid,.capability-suite,.store-row,.integration-roadmap-grid{grid-template-columns:1fr}.home-capability-card{min-height:220px}.home-capability-card h3{margin-top:55px}.commerce-architecture{padding:22px}.capability-suite-card{min-height:auto}.capability-suite-card ul{grid-template-columns:1fr}.suite-top{margin-bottom:50px} }


/* v6 compliance foundation */
.legal-list { margin: 14px 0 0; padding-left: 22px; color: #989fb1; line-height: 1.8; }
.legal-list li { margin: 9px 0; }
.legal-list strong { color: #c8cedd; }
.policy-callout { margin: 22px 0; padding: 20px 22px; border: 1px solid rgba(115,103,240,.28); background: rgba(115,103,240,.07); color: #b8c0d3; line-height: 1.7; border-radius: 14px; }
.policy-callout strong { color: #dce2ef; }
.text-link { color: #a9a1ff; }
.launch-placeholders code { color: #e4aa6e; background: rgba(255,184,107,.08); border: 1px solid rgba(255,184,107,.18); padding: 2px 6px; border-radius: 6px; }
.policy-table-wrap { overflow-x: auto; margin: 26px 0 36px; border: 1px solid var(--line); border-radius: 14px; }
.policy-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.policy-table th, .policy-table td { padding: 16px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); color: #929bb0; line-height: 1.55; }
.policy-table th { color: #d1d6e2; background: rgba(255,255,255,.025); font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; }
.policy-table tr:last-child td { border-bottom: 0; }
