:root {
  --bg: #070a0f;
  --bg-soft: #0a0e15;
  --surface: #0f1520;
  --surface-2: #131b28;
  --surface-3: #172233;
  --line: rgba(151, 177, 219, 0.14);
  --line-strong: rgba(116, 165, 255, 0.27);
  --text: #f7f9fc;
  --muted: #98a5b8;
  --muted-2: #6d7a90;
  --blue: #4f8cff;
  --blue-bright: #6aa2ff;
  --cyan: #58d6ff;
  --green: #45d899;
  --amber: #f5b95d;
  --red: #ff6c7f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: #263650 #080b10;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -20%, rgba(66, 129, 255, 0.12), transparent 34%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: white;
  background: rgba(79, 140, 255, 0.65);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.018;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  z-index: -1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(68, 128, 255, 0.095), transparent 66%);
  transition: opacity 0.4s ease;
}

@media (pointer: fine) {
  body:hover .cursor-glow {
    opacity: 1;
  }
}

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

.section {
  position: relative;
  padding: 120px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 20px;
  transition: padding 0.3s ease;
}

.site-header.scrolled {
  padding-top: 10px;
}

.nav-shell {
  width: min(100%, 1240px);
  min-height: 66px;
  margin: 0 auto;
  padding: 0 10px 0 16px;
  display: flex;
  align-items: center;
  gap: 28px;
  border: 1px solid transparent;
  border-radius: 20px;
  transition: 0.3s ease;
}

.site-header.scrolled .nav-shell {
  border-color: rgba(134, 164, 210, 0.13);
  background: rgba(8, 12, 18, 0.76);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  font-size: 17px;
  font-weight: 770;
  letter-spacing: -0.04em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 8px 25px rgba(79, 140, 255, 0.22);
}

.brand span span {
  color: var(--blue-bright);
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: #aab5c6;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--blue-bright);
  transition: right 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: white;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: white;
  transition: 0.25s ease;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 720;
  letter-spacing: -0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

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

.button-small {
  min-height: 43px;
  padding: 0 17px;
  border-radius: 12px;
  font-size: 13px;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #4e88ff, #3970e7);
  box-shadow: 0 14px 36px rgba(55, 111, 231, 0.28), inset 0 1px rgba(255, 255, 255, 0.18);
}

.button-primary:hover {
  box-shadow: 0 18px 44px rgba(55, 111, 231, 0.38), inset 0 1px rgba(255, 255, 255, 0.22);
}

.button-secondary,
.button-ghost {
  border-color: var(--line);
  color: #dce4ef;
  background: rgba(16, 22, 32, 0.7);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(109, 158, 255, 0.35);
  background: rgba(21, 31, 47, 0.92);
}

.button-light {
  color: #07101f;
  background: white;
  box-shadow: 0 14px 35px rgba(15, 42, 86, 0.2);
}

.full-button {
  width: 100%;
}

.hero {
  min-height: 920px;
  padding-top: 190px;
  padding-bottom: 115px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(rgba(107, 148, 208, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 148, 208, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  top: -440px;
  left: 50%;
  z-index: -3;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.16), transparent 68%);
  filter: blur(10px);
}

.hero-orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  width: 420px;
  height: 420px;
  top: 120px;
  right: -220px;
  background: radial-gradient(circle, rgba(65, 129, 255, 0.16), transparent 68%);
}

.hero-orb-two {
  width: 300px;
  height: 300px;
  bottom: 30px;
  left: -180px;
  background: radial-gradient(circle, rgba(79, 214, 255, 0.09), transparent 68%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 60px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 26px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c7d7f2;
  border: 1px solid rgba(102, 155, 255, 0.21);
  border-radius: 999px;
  background: rgba(39, 74, 131, 0.18);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.eyebrow-neutral {
  color: #aebcd0;
  border-color: var(--line);
  background: rgba(17, 24, 36, 0.72);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(69, 216, 153, 0.1), 0 0 16px rgba(69, 216, 153, 0.6);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(51px, 5.4vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 790;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #ffffff 8%, #9fc4ff 48%, #5e95ff 88%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 610px;
  margin: 29px 0 0;
  color: #9eabbd;
  font-size: 18px;
  line-height: 1.68;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.play-icon {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  font-size: 8px;
}

.hero-proof {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-proof div {
  padding: 0 24px;
  border-left: 1px solid var(--line);
}

.hero-proof div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 4px;
  color: #e8edf5;
  font-size: 13px;
}

.hero-proof span {
  color: var(--muted-2);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  width: 720px;
  margin-left: -25px;
  transform: perspective(1600px) rotateY(-5deg) rotateX(1.5deg);
  transform-origin: center;
}

.mockup-glow {
  position: absolute;
  inset: 3% 6% -2%;
  z-index: -1;
  border-radius: 34px;
  background: rgba(59, 113, 238, 0.2);
  filter: blur(50px);
}

.app-window {
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(142, 174, 225, 0.22);
  border-radius: 24px;
  background: #0a0e15;
  box-shadow:
    0 45px 120px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset;
}

.app-titlebar {
  height: 52px;
  padding: 0 17px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(143, 169, 206, 0.1);
  background: #0d121b;
}

.window-controls {
  display: flex;
  gap: 7px;
}

.window-controls span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2b3543;
}

.app-name {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e7edf7;
  font-size: 11px;
  font-weight: 700;
}

.app-name img {
  border-radius: 7px;
}

.live-pill {
  justify-self: end;
  padding: 6px 9px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #9bb3d7;
  border: 1px solid rgba(129, 155, 195, 0.12);
  border-radius: 999px;
  background: #111823;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.live-pill span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(69, 216, 153, 0.6);
}

.app-body {
  min-height: 518px;
  display: flex;
}

.app-sidebar {
  width: 147px;
  padding: 18px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid rgba(143, 169, 206, 0.09);
  background: #0c1119;
}

.sidebar-brand-mark {
  width: 28px;
  height: 28px;
  margin: 0 0 12px 5px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(92, 147, 255, 0.18);
  border-radius: 8px;
  color: #9fc0ff;
  background: rgba(73, 130, 239, 0.1);
  font-size: 9px;
  font-weight: 800;
}

.side-item {
  height: 34px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 9px;
  color: #77869a;
  background: transparent;
  font-size: 9px;
  font-weight: 650;
  text-align: left;
}

.side-item.active {
  color: #d8e5fb;
  background: linear-gradient(90deg, rgba(65, 125, 241, 0.18), rgba(65, 125, 241, 0.05));
  box-shadow: inset 2px 0 #4f8cff;
}

.side-icon {
  width: 15px;
  color: #8fa7cd;
  font-size: 13px;
  text-align: center;
}

.sidebar-spacer {
  flex: 1;
}

.profile-chip {
  padding: 9px 7px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(140, 164, 200, 0.08);
}

.profile-chip > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  color: white;
  background: linear-gradient(145deg, #3b7df4, #2853a1);
  font-size: 9px;
  font-weight: 800;
}

.profile-chip strong,
.profile-chip small {
  display: block;
}

.profile-chip strong {
  color: #d6deea;
  font-size: 8px;
}

.profile-chip small {
  margin-top: 2px;
  color: #5e6d82;
  font-size: 6px;
}

.app-content {
  min-width: 0;
  flex: 1;
  padding: 27px 29px 20px;
  background:
    radial-gradient(circle at 68% 18%, rgba(56, 105, 200, 0.08), transparent 31%),
    #090e15;
}

.workspace-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.workspace-heading p {
  margin: 0 0 4px;
  color: #64738a;
  font-size: 8px;
}

.workspace-heading h2 {
  margin: 0;
  color: #edf3fc;
  font-size: 18px;
  letter-spacing: -0.035em;
}

.icon-button {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(145, 171, 209, 0.1);
  border-radius: 8px;
  color: #718199;
  background: #0f1621;
}

.command-card {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid rgba(100, 147, 233, 0.19);
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(49, 93, 179, 0.12), rgba(10, 15, 23, 0.75)),
    #0d141e;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.command-top {
  display: flex;
  align-items: center;
  gap: 9px;
}

.command-top p {
  margin: 0;
  color: #98a7bc;
  font-size: 8px;
}

.command-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #a9c7ff;
  background: rgba(79, 140, 255, 0.13);
  font-size: 10px;
}

.command-field {
  height: 42px;
  margin-top: 12px;
  padding-left: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(126, 154, 196, 0.13);
  border-radius: 10px;
  color: #526278;
  background: rgba(4, 7, 11, 0.48);
  font-size: 8px;
}

.command-field button {
  width: 29px;
  height: 29px;
  margin-right: 6px;
  border: 0;
  border-radius: 8px;
  color: white;
  background: #477fe8;
}

.command-actions {
  margin-top: 10px;
  display: flex;
  gap: 15px;
  color: #718199;
  font-size: 7px;
}

.app-grid {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 13px;
}

.mini-card {
  min-height: 150px;
  padding: 14px;
  border: 1px solid rgba(132, 160, 201, 0.11);
  border-radius: 13px;
  background: rgba(14, 20, 30, 0.76);
}

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

.mini-label {
  display: block;
  margin-bottom: 3px;
  color: #64738a;
  font-size: 6px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.mini-card h3 {
  margin: 0;
  color: #dce6f5;
  font-size: 10px;
}

.running-pill,
.confidence {
  padding: 5px 7px;
  border-radius: 999px;
  font-size: 6px;
  font-weight: 800;
}

.running-pill {
  color: #65dca3;
  background: rgba(69, 216, 153, 0.1);
}

.confidence {
  color: #9cbcff;
  background: rgba(79, 140, 255, 0.1);
}

.task-row {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.task-row > span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.check {
  color: #63dca5;
  background: rgba(69, 216, 153, 0.1);
  font-size: 7px;
}

.pulse-ring {
  border: 1px solid rgba(81, 143, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(79, 140, 255, 0.07);
  position: relative;
}

.pulse-ring::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6296ff;
  animation: pulseDot 1.6s ease infinite;
}

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

.task-row strong {
  color: #b9c6d8;
  font-size: 7px;
}

.task-row small {
  margin-top: 2px;
  color: #59687c;
  font-size: 6px;
}

.progress-track {
  height: 3px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: 99px;
  background: #172131;
}

.progress-track span {
  display: block;
  width: 61%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4d84ef, #65b6ff);
  animation: progressFlow 2.8s ease-in-out infinite;
}

.decision-box {
  min-height: 64px;
  margin-top: 14px;
  padding: 10px;
  display: flex;
  gap: 8px;
  border: 1px solid rgba(101, 148, 235, 0.12);
  border-radius: 9px;
  background: rgba(42, 75, 134, 0.08);
}

.decision-symbol {
  color: #6599ff;
  font-size: 10px;
}

.decision-box p {
  margin: 0;
  color: #8797ac;
  font-size: 7px;
  line-height: 1.55;
}

.permission-row {
  margin-top: 13px;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(142, 164, 197, 0.08);
  font-size: 6px;
}

.permission-row span {
  color: #58677a;
}

.permission-row strong {
  color: #8096b7;
}

.quick-strip {
  margin-top: 14px;
  padding: 11px 13px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border: 1px solid rgba(131, 159, 198, 0.09);
  border-radius: 12px;
  background: rgba(12, 18, 27, 0.75);
}

.quick-strip > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-icon {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 7px;
  color: #76a5ff;
  background: rgba(79, 140, 255, 0.1);
  font-size: 9px;
}

.quick-strip p,
.quick-strip strong,
.quick-strip small {
  display: block;
  margin: 0;
}

.quick-strip strong {
  color: #9eacc0;
  font-size: 6px;
}

.quick-strip small {
  margin-top: 2px;
  color: #536176;
  font-size: 5px;
}

.floating-card {
  position: absolute;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(137, 170, 224, 0.16);
  border-radius: 13px;
  background: rgba(13, 19, 29, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  animation: floatCard 5s ease-in-out infinite;
}

.floating-card-left {
  left: -34px;
  bottom: 74px;
}

.floating-card-right {
  right: -25px;
  top: 105px;
  animation-delay: -2s;
}

.floating-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 9px;
  color: #71e4aa;
  background: rgba(69, 216, 153, 0.1);
  font-size: 10px;
}

.voice-wave {
  color: #82abff;
  background: rgba(79, 140, 255, 0.1);
  font-size: 7px;
  letter-spacing: 1px;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  color: #dbe4f1;
  font-size: 8px;
}

.floating-card small {
  margin-top: 3px;
  color: #69788d;
  font-size: 6px;
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.logo-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(128, 155, 198, 0.08);
  border-bottom: 1px solid rgba(128, 155, 198, 0.08);
  background: rgba(9, 13, 20, 0.68);
}

.logo-strip-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 46px;
}

.logo-strip-inner > span {
  flex-shrink: 0;
  color: #637086;
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.capability-ticker {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8d9bb0;
  font-size: 12px;
  font-weight: 650;
}

.capability-ticker i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #33425a;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 54px;
}

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

.section-heading.centered .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 760;
}

.section-heading p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.features {
  background:
    radial-gradient(circle at 50% 20%, rgba(52, 99, 194, 0.07), transparent 32%),
    var(--bg);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.bento-card {
  min-height: 355px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent 40%),
    var(--surface);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(97, 145, 235, 0.3);
  background:
    linear-gradient(145deg, rgba(67, 120, 224, 0.05), transparent 45%),
    #101722;
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 728px;
}

.bento-wide {
  grid-column: span 2;
  min-height: 355px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.card-kicker {
  color: #70819b;
  font-size: 10px;
  font-weight: 730;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bento-card h3 {
  max-width: 490px;
  margin: 17px 0 0;
  font-size: 27px;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.bento-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(103, 155, 255, 0.16);
  border-radius: 13px;
  color: #8eb4ff;
  background: linear-gradient(145deg, rgba(79, 140, 255, 0.15), rgba(79, 140, 255, 0.04));
  font-size: 18px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.vision-demo {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.vision-window {
  overflow: hidden;
  border: 1px solid rgba(126, 159, 208, 0.14);
  border-radius: 15px;
  background: #0a0f16;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.vision-toolbar {
  height: 32px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(126, 159, 208, 0.08);
}

.vision-toolbar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #273244;
}

.vision-content {
  height: 250px;
  position: relative;
  padding: 46px;
  background:
    radial-gradient(circle at 80% 20%, rgba(69, 119, 211, 0.08), transparent 35%),
    #0c121b;
}

.vision-copy {
  width: 57%;
}

.vision-copy span {
  height: 8px;
  margin-bottom: 12px;
  display: block;
  border-radius: 10px;
  background: #202b3c;
}

.vision-copy span:nth-child(2) {
  width: 82%;
}

.vision-copy span:nth-child(3) {
  width: 61%;
}

.vision-button {
  width: 100px;
  height: 38px;
  margin-top: 31px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #c7d9fa;
  background: #2d65c9;
  font-size: 9px;
  font-weight: 750;
}

.scan-box {
  position: absolute;
  width: 126px;
  height: 64px;
  left: 34px;
  bottom: 33px;
  border: 1px solid #65a0ff;
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(79, 140, 255, 0.12);
}

.scan-box::before,
.scan-box::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
}

.scan-box::before {
  top: -2px;
  left: -2px;
  border-top: 2px solid #85b4ff;
  border-left: 2px solid #85b4ff;
}

.scan-box::after {
  right: -2px;
  bottom: -2px;
  border-right: 2px solid #85b4ff;
  border-bottom: 2px solid #85b4ff;
}

.scan-label {
  position: absolute;
  top: -23px;
  left: -1px;
  padding: 4px 6px;
  border-radius: 5px;
  color: #d7e6ff;
  background: #3d77e6;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.scan-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #5e9bff, transparent);
  box-shadow: 0 0 11px rgba(82, 147, 255, 0.8);
  animation: scan 4s ease-in-out infinite;
}

.vision-status {
  margin-top: 13px;
  padding: 0 3px;
  display: flex;
  justify-content: space-between;
  color: #607087;
  font-size: 9px;
}

.vision-status strong {
  color: #8eaddd;
}

.teach-timeline {
  margin-top: 42px;
  display: flex;
  align-items: center;
}

.timeline-step {
  color: #5d6b80;
  font-size: 8px;
  font-weight: 650;
}

.timeline-step i {
  width: 25px;
  height: 25px;
  margin: 0 auto 7px;
  display: grid;
  place-items: center;
  border: 1px solid #29374c;
  border-radius: 50%;
  color: #58677d;
  background: #111925;
  font-style: normal;
}

.timeline-step.active {
  color: #9eb7dc;
}

.timeline-step.active i {
  color: #b9d0fb;
  border-color: rgba(91, 146, 253, 0.35);
  background: rgba(79, 140, 255, 0.12);
}

.timeline-line {
  height: 1px;
  flex: 1;
  margin: 0 8px 19px;
  background: linear-gradient(90deg, #395c9c, #283548);
}

.knowledge-packs {
  margin-top: 28px;
  display: grid;
  gap: 9px;
}

.knowledge-packs > div {
  padding: 11px;
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 9px;
  border: 1px solid rgba(130, 158, 199, 0.1);
  border-radius: 11px;
  background: rgba(8, 12, 18, 0.42);
}

.knowledge-packs span {
  width: 30px;
  height: 30px;
  grid-row: span 2;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #74a0f7;
  background: rgba(79, 140, 255, 0.09);
  font-size: 11px;
}

.knowledge-packs strong {
  color: #afbdd0;
  font-size: 9px;
}

.knowledge-packs small {
  color: #5d6b80;
  font-size: 7px;
}

.planner-visual {
  min-height: 220px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(131, 160, 205, 0.11);
  border-radius: 17px;
  background:
    radial-gradient(circle at 60% 20%, rgba(63, 119, 223, 0.09), transparent 40%),
    rgba(7, 11, 17, 0.6);
}

.planner-node {
  display: flex;
  align-items: center;
  gap: 11px;
}

.planner-node > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid #2c394d;
  border-radius: 10px;
  color: #596a80;
  background: #111925;
  font-size: 9px;
  font-weight: 750;
}

.planner-node p,
.planner-node strong,
.planner-node small {
  margin: 0;
  display: block;
}

.planner-node p {
  color: #78879b;
  font-size: 9px;
  font-weight: 700;
}

.planner-node small {
  margin-top: 3px;
  color: #4f5c6f;
  font-size: 7px;
  font-weight: 500;
}

.planner-node.completed > span {
  color: #67dca6;
  border-color: rgba(69, 216, 153, 0.25);
  background: rgba(69, 216, 153, 0.08);
}

.planner-node.current > span {
  color: #c2d8ff;
  border-color: rgba(79, 140, 255, 0.38);
  background: rgba(79, 140, 255, 0.13);
  box-shadow: 0 0 0 4px rgba(79, 140, 255, 0.05);
}

.planner-node.current p {
  color: #b5c8e6;
}

.planner-connector {
  width: 1px;
  height: 25px;
  margin-left: 15px;
  background: #283548;
}

.planner-connector.completed {
  background: linear-gradient(#3a8666, #3b62a8);
}

.tray-demo {
  height: 55px;
  margin-top: 43px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  border: 1px solid rgba(138, 166, 206, 0.11);
  border-radius: 12px;
  color: #64728a;
  background: #0b1017;
  font-size: 7px;
}

.tray-demo .tray-ai {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: white;
  background: linear-gradient(135deg, #58bfee, #547cf3);
  font-size: 7px;
  font-weight: 800;
  box-shadow: 0 0 15px rgba(79, 140, 255, 0.27);
}

.tray-demo strong {
  color: #9aa9bd;
  font-size: 7px;
}

.workflow {
  overflow: hidden;
  background:
    linear-gradient(to bottom, transparent, rgba(15, 23, 35, 0.48) 45%, transparent),
    var(--bg);
}

.workflow::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  top: 10%;
  right: -500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 108, 214, 0.11), transparent 65%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.step-card {
  min-height: 340px;
  padding: 30px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.022), transparent 46%),
    rgba(14, 20, 30, 0.82);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(101, 149, 239, 0.28);
}

.step-number {
  position: absolute;
  top: 26px;
  right: 27px;
  color: #303d51;
  font-size: 35px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.step-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(94, 149, 255, 0.18);
  border-radius: 15px;
  color: #9abaff;
  background: linear-gradient(145deg, rgba(79, 140, 255, 0.15), rgba(79, 140, 255, 0.035));
  font-size: 19px;
}

.step-card h3 {
  margin: 73px 0 0;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.step-card p {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.step-detail {
  position: absolute;
  left: 30px;
  bottom: 27px;
  padding-top: 18px;
  color: #72829b;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 740;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.control {
  background:
    radial-gradient(circle at 22% 50%, rgba(48, 95, 183, 0.07), transparent 30%),
    #080c12;
}

.control-layout {
  display: grid;
  grid-template-columns: 0.87fr 1.13fr;
  align-items: center;
  gap: 90px;
}

.control-copy h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.control-copy > p {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.control-list {
  margin-top: 35px;
  display: grid;
  gap: 17px;
}

.control-list > div {
  display: flex;
  gap: 13px;
}

.control-list > div > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(69, 216, 153, 0.16);
  border-radius: 8px;
  color: #69dca7;
  background: rgba(69, 216, 153, 0.08);
  font-size: 9px;
}

.control-list p,
.control-list strong,
.control-list small {
  display: block;
  margin: 0;
}

.control-list strong {
  color: #d4dce8;
  font-size: 13px;
}

.control-list small {
  margin-top: 5px;
  color: #748198;
  font-size: 12px;
  line-height: 1.5;
}

.control-panel {
  padding: 25px;
  border: 1px solid rgba(125, 158, 209, 0.16);
  border-radius: 25px;
  background:
    linear-gradient(145deg, rgba(59, 103, 189, 0.06), transparent 40%),
    #0d131d;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
}

.panel-head {
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.panel-head span,
.panel-head strong {
  display: block;
}

.panel-head span {
  margin-bottom: 4px;
  color: #6d7b91;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-head strong {
  font-size: 18px;
}

.secure-badge {
  margin: 0 !important;
  padding: 7px 9px;
  color: #66dca5 !important;
  border: 1px solid rgba(69, 216, 153, 0.16);
  border-radius: 999px;
  background: rgba(69, 216, 153, 0.08);
  font-size: 8px !important;
}

.scope-card {
  margin: 20px 0 5px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(112, 155, 233, 0.17);
  border-radius: 14px;
  background: rgba(45, 83, 152, 0.08);
}

.scope-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #86adfb;
  background: rgba(79, 140, 255, 0.12);
}

.scope-card div {
  flex: 1;
}

.scope-card small,
.scope-card strong {
  display: block;
}

.scope-card small {
  margin-bottom: 4px;
  color: #64738a;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.scope-card strong {
  color: #c6d2e3;
  font-size: 11px;
}

.scope-card button {
  padding: 7px 9px;
  border: 1px solid rgba(123, 158, 213, 0.13);
  border-radius: 8px;
  color: #8da2c2;
  background: #111a27;
  font-size: 8px;
}

.permission-toggle {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.permission-toggle span,
.permission-toggle small {
  display: block;
}

.permission-toggle span {
  margin-bottom: 3px;
  color: #c6d0de;
  font-size: 11px;
  font-weight: 650;
}

.permission-toggle small {
  color: #66758c;
  font-size: 9px;
}

.toggle {
  width: 39px;
  height: 22px;
  padding: 3px;
  position: relative;
  border: 0;
  border-radius: 999px;
  background: #232e3d;
}

.toggle span {
  width: 16px;
  height: 16px;
  margin: 0;
  border-radius: 50%;
  background: #78869a;
  transition: transform 0.25s ease, background 0.25s ease;
}

.toggle.active {
  background: #3268cf;
}

.toggle.active span {
  transform: translateX(17px);
  background: white;
}

.stop-control {
  margin-top: 20px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 108, 127, 0.14);
  border-radius: 12px;
  background: rgba(255, 108, 127, 0.04);
}

.stop-control span {
  color: #9c7180;
  font-size: 9px;
}

.stop-control strong {
  color: #dc9ca7;
  font-size: 9px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.plans {
  background:
    radial-gradient(circle at 50% 38%, rgba(56, 109, 215, 0.08), transparent 38%),
    var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  align-items: stretch;
}

.price-card {
  min-height: 515px;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.price-card.featured {
  border-color: rgba(93, 146, 246, 0.38);
  background:
    radial-gradient(circle at 50% -10%, rgba(65, 124, 239, 0.15), transparent 37%),
    #111925;
  box-shadow: 0 27px 80px rgba(28, 64, 128, 0.17);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 9px;
  border-radius: 999px;
  color: #b8d0ff;
  background: rgba(79, 140, 255, 0.13);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.plan-name {
  color: #7f91ad;
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.price-card h3 {
  margin: 20px 0 0;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.plan-copy {
  min-height: 68px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.price-status {
  margin: 24px 0 0;
  padding: 13px;
  border: 1px solid rgba(127, 159, 209, 0.12);
  border-radius: 11px;
  color: #a9b9d2;
  background: rgba(9, 14, 21, 0.45);
  font-size: 11px;
  font-weight: 650;
}

.price-card ul {
  margin: 25px 0 30px;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 23px;
  color: #9dabbf;
  font-size: 12px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #67dca7;
  font-size: 10px;
}

.price-card .button {
  margin-top: auto;
}

.faq {
  background: #080c12;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
  align-items: start;
}

.faq .section-heading {
  position: sticky;
  top: 120px;
}

.text-link {
  margin-top: 26px;
  display: inline-flex;
  gap: 8px;
  color: #9bbaff;
  font-size: 13px;
  font-weight: 720;
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  min-height: 85px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  color: #dce4ef;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  padding-right: 25px;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.faq-item button i {
  width: 26px;
  height: 26px;
  position: relative;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-item button i::before,
.faq-item button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: #8291a7;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open button i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.faq-answer > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer > p {
  padding: 0 40px 28px 0;
}

.final-cta {
  padding-top: 90px;
  padding-bottom: 90px;
}

.cta-card {
  min-height: 310px;
  padding: 54px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  border: 1px solid rgba(132, 172, 247, 0.32);
  border-radius: 30px;
  background:
    linear-gradient(130deg, rgba(41, 93, 202, 0.95), rgba(35, 72, 155, 0.9)),
    #356ed9;
  box-shadow: 0 35px 100px rgba(28, 71, 160, 0.28);
}

.cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, transparent, black 50%, transparent);
}

.cta-orb {
  position: absolute;
  width: 430px;
  height: 430px;
  top: -250px;
  right: 4%;
  border-radius: 50%;
  background: rgba(116, 190, 255, 0.2);
  filter: blur(10px);
}

.cta-card > *:not(.cta-grid, .cta-orb) {
  position: relative;
  z-index: 2;
}

.cta-card > img {
  border-radius: 17px;
  box-shadow: 0 15px 35px rgba(2, 21, 60, 0.25);
}

.cta-card h2 {
  margin: 14px 0 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.cta-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.site-footer {
  padding: 25px 0 28px;
  border-top: 1px solid var(--line);
  background: #06090e;
}

.footer-grid {
  padding: 55px 0;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 90px;
}

.footer-brand p {
  max-width: 300px;
  margin: 20px 0 0;
  color: #6f7c90;
  font-size: 13px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: #d1d9e5;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.footer-links a {
  color: #748197;
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #59667a;
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(0.9); opacity: 0.65; }
  50% { transform: scale(1.45); opacity: 1; }
}

@keyframes progressFlow {
  0%, 100% { width: 52%; }
  50% { width: 73%; }
}

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

@keyframes scan {
  0%, 100% { top: 27%; opacity: 0; }
  20% { opacity: 1; }
  75% { opacity: 1; }
  90% { top: 80%; opacity: 0; }
}

@media (max-width: 1180px) {
  .hero {
    min-height: auto;
    padding-top: 160px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    max-width: 820px;
    margin: 0 auto;
  }

  .hero-copy .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1,
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    width: min(92vw, 760px);
    margin: 25px auto 0;
    transform: none;
  }

  .control-layout {
    gap: 55px;
  }
}

@media (max-width: 960px) {
  .main-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav.open {
    position: fixed;
    inset: 88px 20px auto;
    padding: 18px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(9, 13, 20, 0.97);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
  }

  .main-nav.open a {
    padding: 15px 12px;
    border-radius: 10px;
    font-size: 15px;
  }

  .main-nav.open a:hover {
    background: var(--surface);
  }

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

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

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-large {
    grid-column: span 2;
  }

  .control-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq .section-heading {
    position: static;
  }

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

  .price-card {
    min-height: auto;
  }

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

  .cta-card .button {
    grid-column: 2;
    justify-self: start;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 88px 0;
  }

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

  .nav-shell {
    min-height: 60px;
  }

  .hero {
    padding-top: 145px;
    padding-bottom: 75px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 63px);
  }

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

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

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-proof div {
    padding: 0 11px;
  }

  .hero-proof strong {
    font-size: 11px;
  }

  .hero-proof span {
    font-size: 9px;
  }

  .hero-visual {
    width: 820px;
    margin-left: 50%;
    transform: translateX(-50%) scale(0.58);
    transform-origin: top center;
    margin-bottom: -225px;
  }

  .floating-card {
    display: none;
  }

  .logo-strip-inner {
    min-height: 100px;
    display: block;
    padding: 24px 0;
  }

  .capability-ticker {
    margin-top: 17px;
    gap: 15px;
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .capability-ticker span:nth-of-type(n+4),
  .capability-ticker i:nth-of-type(n+4) {
    display: none;
  }

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

  .section-heading h2,
  .control-copy h2 {
    font-size: 39px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .bento-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .bento-large,
  .bento-wide {
    grid-column: span 1;
  }

  .bento-large {
    min-height: 660px;
  }

  .bento-wide {
    display: block;
  }

  .planner-visual {
    margin-top: 28px;
  }

  .vision-content {
    padding: 36px 24px;
  }

  .control-panel,
  .bento-card,
  .step-card,
  .price-card {
    padding: 23px;
  }

  .cta-card {
    min-height: auto;
    padding: 35px 25px;
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cta-card > img {
    width: 52px;
  }

  .cta-card .button {
    grid-column: 1;
    width: 100%;
  }

  .footer-links {
    gap: 24px;
  }

  .footer-bottom {
    display: grid;
    gap: 9px;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    transform: translateX(-50%) scale(0.48);
    margin-bottom: -275px;
  }

  .hero-proof {
    gap: 13px;
  }

  .hero-proof div {
    padding: 0;
    border: 0;
  }

  .app-window {
    min-height: 570px;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


.legal-page {
  min-height: 100vh;
  padding: 155px 0 90px;
  background:
    radial-gradient(circle at 50% 0%, rgba(66, 129, 255, 0.11), transparent 30%),
    var(--bg);
}

.legal-shell {
  max-width: 820px;
}

.legal-shell h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 72px);
  letter-spacing: -0.06em;
}

.legal-updated {
  margin: 18px 0 55px;
  color: #6e7c91;
  font-size: 12px;
}

.legal-shell section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-shell h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.legal-shell section p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.legal-shell section a {
  color: #8fb4ff;
}

.legal-note {
  margin-top: 30px;
  padding: 15px 17px;
  border: 1px solid rgba(245, 185, 93, 0.16);
  border-radius: 12px;
  color: #b99b6d;
  background: rgba(245, 185, 93, 0.05);
  font-size: 12px;
}
