:root {
  --ca-navy: #04114a;
  --ca-navy-2: #061a6a;
  --ca-blue: #0632ac;
  --ca-blue-2: #0b46d8;
  --ca-blue-3: #2d7bff;
  --ca-blue-4: #3ea8ff;
  --ca-cyan: #5fd4ff;
  --ca-ink: #eaf0ff;
  --ca-mute: #a8b6d8;
  --ca-line: rgba(155, 182, 255, 0.14);
  --ca-paper: rgba(255, 255, 255, 0.05);
  --ca-ice: rgba(255, 255, 255, 0.08);
  --ca-shadow: 0 16px 40px rgba(0, 0, 0, 0.36);
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --content: 1180px;
  --brand-grad: linear-gradient(135deg, #3ea8ff 0%, #2d7bff 50%, #0632ac 100%);
  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ca-ink);
  background:
    radial-gradient(1400px 700px at 50% -300px, rgba(62, 168, 255, 0.18), transparent 60%),
    radial-gradient(900px 500px at 100% 1500px, rgba(11, 70, 216, 0.30), transparent 60%),
    linear-gradient(180deg, #04114a 0%, #061a6a 30%, #04114a 60%, #061a6a 100%);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.shell { width: min(calc(100% - 32px), var(--content)); margin: 0 auto; }
h1, h2, h3, h4 {
  font-family: "Manrope", "Inter", sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ca-blue-3);
  background: linear-gradient(135deg, rgba(95, 212, 255, 0.18), rgba(45, 123, 255, 0.10));
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(45, 123, 255, 0.22);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ca-cyan);
  box-shadow: 0 0 8px var(--ca-cyan);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s var(--easing), box-shadow .2s var(--easing), background .2s var(--easing), border-color .2s var(--easing);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--brand-grad); color: #fff; box-shadow: 0 8px 22px rgba(11, 70, 216, 0.32); }
.btn-secondary { background: var(--ca-paper); color: #fff; border-color: var(--ca-line); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #00227c;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand img { height: 38px; width: auto; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.nav-link { color: #d9e7ff; font-size: .92rem; font-weight: 600; }
.nav-menu { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.nav-menu a {
  color: #d9e7ff;
  font-size: .92rem;
  font-weight: 600;
  opacity: .92;
  transition: opacity .2s var(--easing), color .2s var(--easing);
}
.nav-menu a:hover { opacity: 1; color: #fff; }
.demo-shell {
  display: grid;
  gap: 22px;
}
.demo-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.demo-tab {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #d9e7ff;
  font: inherit;
  font-size: .9rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s var(--easing), border-color .2s var(--easing), color .2s var(--easing), transform .2s var(--easing);
}
.demo-tab:hover { transform: translateY(-1px); }
.demo-tab.active {
  background: linear-gradient(135deg, rgba(95,212,255,.18), rgba(45,123,255,.14));
  border-color: rgba(95,212,255,.30);
  color: #fff;
}
.demo-panels {
  position: relative;
}
.demo-panel {
  display: none;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: stretch;
}
.demo-panel.active {
  display: grid;
}
.demo-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  box-shadow: var(--ca-shadow);
  overflow: hidden;
}
.demo-browser {
  display: grid;
  min-height: 100%;
}
.demo-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.demo-dots {
  display: inline-flex;
  gap: 6px;
}
.demo-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
}
.demo-url {
  font-size: .84rem;
  color: #c7d6f4;
}
.demo-screen {
  padding: 18px;
  display: grid;
  gap: 14px;
}
.demo-screen img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}
.demo-caption {
  color: var(--ca-mute);
  font-size: .92rem;
}
.demo-info {
  padding: 24px;
}
.demo-info h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}
.demo-info p {
  color: var(--ca-mute);
  margin: 0 0 18px;
}
.demo-points {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}
.demo-points li {
  position: relative;
  padding-left: 18px;
  color: var(--ca-mute);
}
.demo-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ca-cyan);
}
.demo-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
section { padding: 84px 0; position: relative; }
.page-hero { padding: 72px 0 40px; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.page-hero h1 { font-size: clamp(2.2rem, 4.1vw, 3.3rem); line-height: 1.03; margin: 18px 0 16px; }
.page-hero p { color: var(--ca-mute); font-size: 1.06rem; margin: 0 0 24px; max-width: 60ch; }
.hero-card, .card, .cta-panel, .shot-card {
  background: var(--ca-paper);
  border: 1px solid var(--ca-line);
  border-radius: var(--radius-xl);
  box-shadow: var(--ca-shadow);
}
.hero-card { padding: 24px; }
.shot-card { overflow: hidden; }
.shot-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.shot-caption {
  padding: 16px 18px 18px;
  color: var(--ca-mute);
  font-size: 0.94rem;
}
.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-stat, .detail-card, .feature-card, .app-panel, .price-card {
  background: var(--ca-ice);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
}
.hero-stat { padding: 16px; }
.hero-stat .k { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: #9bbcff; }
.hero-stat .v { font-size: 1.35rem; font-family: "Manrope", sans-serif; font-weight: 800; color: #fff; margin-top: 4px; }
.hero-stat .d { font-size: .84rem; color: var(--ca-mute); margin-top: 4px; }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 42px; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 14px 0 12px; }
.section-head p { color: var(--ca-mute); margin: 0; font-size: 1.02rem; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.suite-spotlight-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}
.suite-spotlight {
  width: min(100%, calc((100% - 36px) / 3));
}
.suite-spotlight .suite-copy {
  color: var(--ca-mute);
  margin: 0 0 18px;
}
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.detail-card, .feature-card, .app-panel, .price-card { display: block; padding: 24px; transition: transform .25s var(--easing), box-shadow .25s var(--easing), border-color .25s var(--easing); }
.detail-card:hover, .feature-card:hover, .app-panel:hover, .price-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,.28); border-color: rgba(95, 212, 255, 0.24); }
.feature-card h3, .detail-card h3, .app-panel h3, .price-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature-card p, .detail-card p, .app-panel p, .price-card p { color: var(--ca-mute); margin: 0; }
.price-card.featured {
  background: linear-gradient(180deg, rgba(62,168,255,0.16), rgba(255,255,255,0.06));
  border-color: rgba(95,212,255,.28);
}
.price-kicker {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(95,212,255,.12);
  color: #dff1ff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.price-amount {
  display: flex;
  align-items: end;
  gap: 6px;
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
  color: #fff;
}
.price-amount strong { font-size: 2.5rem; line-height: 1; }
.price-amount span { color: var(--ca-mute); font-size: .95rem; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  gap: 10px;
}
.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ca-mute);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ca-cyan);
  box-shadow: 0 0 0 4px rgba(95,212,255,.14);
}
.contact-card {
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--ca-shadow);
}
.contact-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.contact-card p { color: var(--ca-mute); margin: 0 0 18px; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-meta {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: #cfe0ff;
  font-size: 0.94rem;
}
.contact-meta strong { color: #fff; }
.mini-note {
  margin-top: 14px;
  color: var(--ca-mute);
  font-size: 0.9rem;
}
.icon-badge {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(140deg, var(--ca-blue), var(--ca-navy));
  box-shadow: 0 14px 28px rgba(6, 50, 172, 0.3);
  margin-bottom: 16px;
}
.icon-badge img { width: 100%; height: 100%; object-fit: cover; }
.light-band {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.98) 0%, rgba(235, 243, 255, 0.95) 100%);
}
.light-band h2, .light-band h3, .light-band h4 { color: #0a1f54; }
.light-band p, .light-band li, .light-band .section-head p { color: #44577f; }
.light-band .detail-card, .light-band .feature-card, .light-band .app-panel {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(6,50,172,.10);
}
.light-band .price-card,
.light-band .shot-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(6,50,172,.10);
}
.light-band .price-card.featured {
  background: linear-gradient(180deg, rgba(223,239,255,0.98), rgba(255,255,255,0.92));
}
.light-band .price-kicker { color: #0b46d8; background: rgba(11,70,216,.08); }
.light-band .price-amount strong,
.light-band .price-card h3 { color: #0a1f54; }
.light-band .price-amount span,
.light-band .check-list li,
.light-band .shot-caption { color: #44577f; }
.light-band .contact-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(6,50,172,.10);
}
.light-band .contact-card p,
.light-band .mini-note,
.light-band .contact-meta { color: #44577f; }
.light-band .contact-meta strong { color: #0a1f54; }
.light-band .eyebrow { color: #0b46d8; }
.flow-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.flow-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ca-ink);
}
.flow-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 2px;
  flex: none;
  background: rgba(95, 212, 255, .18);
  border: 1px solid rgba(95, 212, 255, .5);
  box-shadow: inset 0 0 0 4px rgba(95, 212, 255, .28);
}
.cta-panel {
  padding: 54px 34px;
  text-align: center;
  background:
    radial-gradient(900px 400px at 0% 0%, rgba(95,212,255,.32), transparent 55%),
    radial-gradient(900px 400px at 100% 100%, rgba(45,123,255,.5), transparent 55%),
    linear-gradient(160deg, var(--ca-navy) 0%, var(--ca-blue-2) 100%);
}
.cta-panel p { color: #c5d3ed; max-width: 62ch; margin: 12px auto 22px; }
.cta-panel .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.legal-shell { width: min(calc(100% - 32px), 860px); margin: 0 auto; }
.legal-prose {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  box-shadow: var(--ca-shadow);
  padding: 34px;
}
.legal-prose h2 { font-size: 1.28rem; margin: 0 0 12px; }
.legal-prose p,
.legal-prose li { color: var(--ca-mute); }
.legal-prose ul { margin: 0 0 24px 18px; }
.legal-prose section + section { margin-top: 28px; }
.bottom-bar { padding: 28px 0 36px; color: var(--ca-mute); font-size: .85rem; }
.bottom-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--ca-line); }
.bottom-bar-links { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bottom-bar-links a { color: #c7d6f4; }
.bottom-bar-links .sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(199,214,244,.45); }
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--easing), transform .7s var(--easing);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 960px) {
  .page-hero-grid, .grid-4, .grid-3, .grid-2, .contact-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .demo-panel { grid-template-columns: 1fr; }
  .suite-spotlight-wrap { justify-content: stretch; }
  .suite-spotlight { width: 100%; }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2, .contact-grid, .pricing-grid { grid-template-columns: 1fr; }
  .bottom-bar-inner { flex-direction: column; align-items: flex-start; }
  .page-hero { padding-top: 56px; }
  section { padding: 64px 0; }
  .legal-prose { padding: 24px; }
  .nav-menu { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
