:root {
  --bg: #f4fbff;
  --bg-soft: rgba(255, 255, 255, 0.62);
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --text: #0f2430;
  --muted: #547184;
  --line: rgba(65, 146, 182, 0.16);
  --primary: #20b7d6;
  --primary-deep: #0f8fb2;
  --accent: #79e1f6;
  --shadow: 0 22px 60px rgba(29, 92, 121, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

::selection {
  background: rgba(32, 183, 214, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Sans SC", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(121, 225, 246, 0.34), transparent 30%),
    radial-gradient(circle at top right, rgba(32, 183, 214, 0.14), transparent 26%),
    linear-gradient(180deg, #eef9ff 0%, #f7fcff 44%, #ffffff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(32, 183, 214, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 183, 214, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 70%);
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(32, 183, 214, 0.45);
  outline-offset: 3px;
}

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

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 48px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 30px rgba(37, 110, 142, 0.08);
}

.skip-link {
  position: absolute;
  left: 18px;
  top: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(32, 183, 214, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-deep);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(32, 183, 214, 0.14);
}

.brand__name,
.brand__sub,
.eyebrow,
.button,
.nav,
.card-index,
.tag {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
}

.brand__name {
  font-weight: 700;
  font-size: 1.05rem;
}

.brand__sub {
  color: var(--muted);
  font-size: 0.86rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a,
.nav-link {
  color: #385365;
  font-size: 0.94rem;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.is-active,
.nav-link:hover,
.nav-link.is-active {
  color: var(--primary-deep);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown .nav-link {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown .nav-link::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(56, 83, 101, 0.6);
  border-bottom: 2px solid rgba(56, 83, 101, 0.6);
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.18s ease;
}

.nav-dropdown[open] .nav-link::after {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-45%);
  min-width: 240px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(32, 183, 214, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 60px rgba(29, 92, 121, 0.16);
  display: none;
}

.nav-dropdown[open] .nav-dropdown__panel {
  display: grid;
  gap: 4px;
}

.nav-dropdown__panel a {
  padding: 10px 12px;
  border-radius: 14px;
  color: #2d4d60;
}

.nav-dropdown__panel a:hover,
.nav-dropdown__panel a.is-active {
  background: rgba(32, 183, 214, 0.10);
  color: var(--primary-deep);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
}

.section {
  padding: 60px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 140px);
  padding-top: 46px;
}

.hero__copy,
.page-hero {
  animation: reveal-up 0.75s ease both;
}

.hero__visual {
  position: relative;
  min-height: 580px;
  animation: reveal-up 0.9s ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary-deep);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.77rem;
  font-weight: 700;
}

h1,
h2,
h3,
strong {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 1.06;
  max-width: 12.5ch;
  text-wrap: balance;
  line-break: strict;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.12;
  text-wrap: balance;
  line-break: strict;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  text-wrap: pretty;
}

.lead {
  margin-top: 22px;
  max-width: 66ch;
  font-size: 1.04rem;
}

.hero__actions,
.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #58cfe6 55%, var(--primary-deep));
  box-shadow: 0 18px 36px rgba(27, 160, 192, 0.28);
}

.button--ghost {
  color: var(--text);
  border-color: rgba(32, 183, 214, 0.22);
  background: rgba(255, 255, 255, 0.66);
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero__facts li,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(32, 183, 214, 0.16);
  border-radius: 999px;
  color: #24485a;
  background: rgba(255, 255, 255, 0.72);
}

.hero-card,
.card,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.hero-card--main {
  position: absolute;
  inset: 48px 0 64px 40px;
  padding: 22px;
}

.hero-card__header,
.hero-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.hero-card__header {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-media {
  margin: 22px 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(32, 183, 214, 0.16);
  background: linear-gradient(180deg, rgba(224, 248, 253, 0.9), rgba(248, 252, 255, 0.7));
}

.hero-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.hero-media figcaption {
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
}

.hero-card__footer {
  align-items: flex-end;
}

.hero-card__footer div {
  display: grid;
  gap: 4px;
}

.hero-card__footer strong {
  color: var(--text);
}

.hero-card__footer span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-card--floating {
  position: absolute;
  padding: 18px 20px;
}

.hero-card--small {
  top: 0;
  right: 0;
  width: 260px;
}

.hero-card--metrics {
  right: 32px;
  bottom: 10px;
  width: 220px;
}

.hero-card--metrics ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text);
}


.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.media-card {
  padding: 18px;
}

.media-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(32, 183, 214, 0.16);
  background: rgba(255, 255, 255, 0.7);
}

.media-card__meta {
  padding-top: 16px;
  display: grid;
  gap: 8px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading--split {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.text-link {
  color: var(--primary-deep);
  font-weight: 700;
}

.cards {
  display: grid;
  gap: 20px;
}

.cards--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card {
  padding: 26px;
  box-shadow: 0 18px 50px rgba(29, 92, 121, 0.11);
}

.card h2 {
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  line-height: 1.18;
  max-width: 22ch;
}

.feature-card {
  min-height: 220px;
}

.card-index {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary-deep);
  font-weight: 700;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.spotlight-card--wide {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 24px;
  grid-column: span 2;
}

.ui-placeholder {
  min-height: 220px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 249, 255, 0.88)),
    linear-gradient(90deg, rgba(32, 183, 214, 0.12), rgba(121, 225, 246, 0.12));
  border: 1px solid rgba(32, 183, 214, 0.14);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.timeline-grid,
.benefits-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.timeline-card strong,
.benefit-item strong,
.contact-card h2,
.contact-number {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
}

.benefit-item {
  padding: 8px 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px;
}

.page-hero {
  padding-top: 64px;
  max-width: 920px;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.8rem);
  line-height: 1.14;
  max-width: 22ch;
}

.page-hero .lead {
  font-size: 1.02rem;
  max-width: 72ch;
}

.capability-stack {
  display: grid;
  gap: 20px;
}

.capability-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.bullet-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.85;
}

.scenario-card {
  min-height: 230px;
}

.contact-card {
  min-height: 240px;
}

.contact-card--wide {
  grid-column: span 2;
}

.contact-number {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 12px;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero__copy,
  .page-hero,
  .hero__visual {
    animation: none;
  }

  .button {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero,
  .spotlight-card--wide,
  .capability-row,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__visual {
    min-height: 540px;
  }

  .cards--4,
  .spotlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .spotlight-card--wide {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
  }

  .nav a,
  .nav .nav-link {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .nav .nav-dropdown {
    width: 100%;
  }

  .nav .nav-dropdown__panel {
    position: static;
    min-width: 0;
    padding: 6px 0 0;
    border: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .nav .nav-dropdown__panel a {
    padding: 10px 12px;
    border: 1px solid rgba(32, 183, 214, 0.12);
    background: rgba(255, 255, 255, 0.65);
  }

  .nav a,
  .nav-link {
    padding: 12px 12px;
    border-radius: 14px;
  }

  .nav a.is-active,
  .nav-link.is-active {
    background: rgba(32, 183, 214, 0.10);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown__panel {
    position: static;
    transform: none;
    min-width: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 6px 0 0;
    display: none;
  }

  .nav-dropdown[open] .nav-dropdown__panel {
    display: grid;
  }

  .nav-dropdown__panel a {
    padding-left: 18px;
  }

  .nav.is-open {
    display: flex;
  }

  .hero {
    gap: 24px;
    padding-top: 24px;
  }

  .hero__visual {
    min-height: 480px;
  }

  .hero-card--main {
    inset: 38px 0 72px;
  }

  .hero-card--small,
  .hero-card--metrics {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .cards--4,
  .cards--2,
  .spotlight-grid,
  .media-grid,
  .timeline-grid,
  .benefits-grid,
  .contact-layout,
  .section-heading--split,
  .footer {
    grid-template-columns: 1fr;
  }

  .footer {
    display: grid;
  }

  .cta-panel {
    padding: 28px 22px;
  }

  h1 {
    max-width: none;
  }
}

.site-shell--marketing {
  width: min(calc(100% - 24px), 1380px);
}

.home-body {
  background:
    radial-gradient(circle at top center, rgba(126, 203, 255, 0.2), transparent 20%),
    linear-gradient(180deg, #07112f 0, #0a1436 880px, #f5f3ee 880px, #f5f3ee 100%);
}

.topbar--marketing {
  position: sticky;
  top: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 44px rgba(8, 18, 54, 0.18);
}

.topbar--marketing .brand__name,
.topbar--marketing .brand__sub,
.topbar--marketing .nav a,
.topbar--marketing .nav-link {
  color: #f5f8ff;
}

.topbar--marketing .brand__sub {
  color: rgba(213, 223, 255, 0.76);
}

.topbar__center {
  display: flex;
  justify-content: center;
}

.nav--marketing {
  justify-content: center;
  gap: 18px;
}

.nav--marketing a,
.nav--marketing .nav-link {
  font-size: 0.9rem;
}

.topbar--marketing .nav a:hover,
.topbar--marketing .nav a.is-active,
.topbar--marketing .nav-link:hover,
.topbar--marketing .nav-link.is-active {
  color: #7be0ff;
}

.topbar--marketing .nav-dropdown .nav-link::after {
  border-right-color: rgba(244, 250, 255, 0.72);
  border-bottom-color: rgba(244, 250, 255, 0.72);
}

.topbar--marketing .nav-dropdown__panel {
  background: rgba(11, 21, 53, 0.96);
  border-color: rgba(113, 142, 255, 0.2);
}

.topbar--marketing .nav-dropdown__panel a {
  color: #eff5ff;
}

.topbar--marketing .nav-dropdown__panel a:hover,
.topbar--marketing .nav-dropdown__panel a.is-active {
  background: rgba(74, 111, 255, 0.16);
  color: #7be0ff;
}

.topbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.button--sm {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.button--dark {
  color: #f5f8ff;
  border-color: rgba(118, 150, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.button--dark:hover {
  background: rgba(255, 255, 255, 0.1);
}

.home-hero--notion {
  position: relative;
  min-height: calc(100vh - 120px);
  padding-top: 48px;
  padding-bottom: 56px;
}

.hero-spotlight {
  position: absolute;
  left: 50%;
  top: 36px;
  width: min(940px, 86vw);
  height: 340px;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(240, 244, 255, 0.32), rgba(130, 175, 255, 0.12) 28%, transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}

.home-hero__copy--centered {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.home-hero__copy--centered h1 {
  max-width: 10ch;
  margin: 0 auto;
  color: #f9fbff;
  font-size: clamp(3.8rem, 8vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.home-hero__lead {
  max-width: 760px;
  margin: 20px auto 0;
  font-size: 1.06rem;
}

.home-hero__actions--centered {
  justify-content: center;
}

.hero-proof {
  margin-top: 18px;
  color: rgba(229, 237, 255, 0.72);
  font-size: 0.92rem;
}

.hero-stage--notion {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  border-radius: 28px;
  border: 1px solid rgba(125, 149, 255, 0.2);
  background: linear-gradient(180deg, rgba(7, 12, 34, 0.72), rgba(8, 17, 48, 0.92));
  box-shadow: 0 38px 90px rgba(5, 12, 35, 0.34);
}

.hero-stage--notion img {
  width: 100%;
  height: min(58vh, 620px);
  object-fit: cover;
  display: block;
}

.trust-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 22px;
  color: rgba(243, 247, 255, 0.72);
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.trust-strip span {
  opacity: 0.84;
}

.home-intro--notion {
  padding-top: 96px;
  padding-bottom: 72px;
}

.section-heading--centered {
  max-width: 840px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-lead {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.02rem;
}

.notion-stack {
  display: grid;
  gap: 22px;
}

.notion-panel {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 36px;
  border: 1px solid rgba(35, 53, 99, 0.08);
  box-shadow: 0 22px 48px rgba(31, 42, 71, 0.08);
}

.notion-panel--light {
  background: #ffffff;
}

.notion-panel--dark {
  background: linear-gradient(180deg, #0a1436 0%, #101d4d 100%);
  border-color: rgba(120, 146, 255, 0.14);
}

.notion-panel--dark h3,
.notion-panel--dark .eyebrow,
.notion-panel--dark .text-link--light {
  color: #f7fbff;
}

.notion-panel--dark p {
  color: rgba(230, 237, 255, 0.76);
}

.notion-panel__copy h3 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.04;
  max-width: 10ch;
}

.notion-panel__media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(36, 58, 104, 0.08);
  background: #f3f6fb;
}

.notion-panel__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.notion-panel__media--compact img {
  min-height: 240px;
}

.text-link--light {
  color: #dce8ff;
}

.notion-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.notion-bento__card {
  padding: 30px 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(36, 58, 104, 0.08);
  box-shadow: 0 18px 42px rgba(31, 42, 71, 0.06);
}

.notion-bento__card .eyebrow {
  margin-bottom: 10px;
}

.notion-bento__card h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
  line-height: 1.16;
}

.cta-panel--notion {
  margin-bottom: 18px;
}

.hero--full {
  min-height: calc(100vh - 126px);
  padding-top: 42px;
}

.hero__copy--immersive {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero--full h1 {
  max-width: 12ch;
  margin: 0 auto;
  color: #f6fbff;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.96;
}

.eyebrow--light,
.lead--light {
  color: rgba(222, 234, 255, 0.86);
}

.lead--light {
  max-width: 52rem;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.06rem;
}

.hero__actions--immersive {
  justify-content: center;
}

.hero__facts--dark {
  justify-content: center;
}

.hero__facts--dark li {
  color: #edf5ff;
  border-color: rgba(117, 149, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stage {
  position: relative;
  margin-top: 34px;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(117, 149, 255, 0.2);
  background: linear-gradient(180deg, #091233 0%, #070f28 100%);
  box-shadow: 0 36px 90px rgba(7, 15, 40, 0.3);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(143, 219, 255, 0.28), transparent 28%);
  pointer-events: none;
}

.hero-stage img {
  width: 100%;
  height: min(68vh, 760px);
  object-fit: cover;
}

.hero-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.hero-summary__card {
  padding: 20px 22px;
  border: 1px solid rgba(117, 149, 255, 0.16);
  border-radius: 24px;
  background: rgba(7, 16, 40, 0.74);
  color: #f6fbff;
  box-shadow: 0 18px 34px rgba(7, 16, 40, 0.18);
}

.hero-summary__card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #7be0ff;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-summary__card strong {
  display: block;
  margin-bottom: 10px;
}

.hero-summary__card p {
  color: rgba(229, 238, 255, 0.72);
}

.platform-ribbon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px 4px;
}

.platform-ribbon span {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(84, 122, 255, 0.14);
  background: rgba(255, 255, 255, 0.76);
  color: #132548;
  display: inline-flex;
  align-items: center;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 0.9rem;
}

.feature-rail-section {
  padding-top: 84px;
}

.feature-rail {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 24px;
  align-items: start;
}

.feature-rail__intro {
  position: sticky;
  top: 112px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(84, 122, 255, 0.14);
  background: linear-gradient(180deg, #091332 0%, #10192d 100%);
  box-shadow: 0 24px 60px rgba(7, 16, 40, 0.22);
}

.feature-rail__intro p {
  color: rgba(224, 234, 255, 0.78);
}

.feature-rail__cards {
  display: grid;
  gap: 20px;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(84, 122, 255, 0.14);
  background: linear-gradient(180deg, #050b22 0%, #0c1634 100%);
  box-shadow: 0 24px 62px rgba(7, 16, 40, 0.28);
}

.feature-showcase__copy h3 {
  color: #f6fbff;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.08;
  max-width: 12ch;
}

.feature-showcase__copy p {
  color: rgba(224, 234, 255, 0.74);
}

.bullet-list--light {
  color: #edf5ff;
}

.showcase-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(117, 149, 255, 0.14);
  background: radial-gradient(circle at top left, rgba(104, 212, 255, 0.2), transparent 24%), linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.mini-window,
.conversation-card,
.stage-screen {
  position: absolute;
  border-radius: 22px;
  border: 1px solid rgba(139, 170, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mini-window--wide {
  top: 34px;
  right: 28px;
  left: 28px;
  height: 170px;
}

.signal-grid {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: grid;
  grid-template-columns: repeat(2, 76px);
  gap: 12px;
}

.signal-grid span,
.metric-bars span {
  display: block;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(123, 224, 255, 0.38), rgba(91, 115, 255, 0.18));
  border: 1px solid rgba(123, 224, 255, 0.18);
}

.signal-grid span {
  height: 76px;
}

.tag-cloud {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 220px;
}

.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #edf5ff;
  border: 1px solid rgba(118, 150, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.conversation-card {
  left: 30px;
  top: 42px;
  width: 54%;
  height: 142px;
}

.conversation-card::before,
.conversation-card::after,
.conversation-card--accent::before,
.stage-screen::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
}

.conversation-card::before {
  top: 24px;
  height: 14px;
}

.conversation-card::after {
  top: 52px;
  height: 54px;
}

.conversation-card--accent {
  right: 28px;
  bottom: 34px;
  left: auto;
  top: auto;
  width: 42%;
  height: 168px;
  background: linear-gradient(180deg, rgba(110, 119, 255, 0.18), rgba(106, 214, 255, 0.16));
}

.conversation-card--accent::before {
  top: 26px;
  height: 72px;
}

.orbit-points {
  position: absolute;
  inset: 0;
}

.orbit-points span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #7be0ff;
  box-shadow: 0 0 0 8px rgba(123, 224, 255, 0.14);
}

.orbit-points span:nth-child(1) {
  top: 28px;
  right: 74px;
}

.orbit-points span:nth-child(2) {
  bottom: 78px;
  left: 40px;
  background: #ffc857;
}

.orbit-points span:nth-child(3) {
  bottom: 26px;
  right: 146px;
  background: #8e7dff;
}

.stage-screen {
  inset: 36px 34px 78px;
}

.stage-screen::before {
  top: 24px;
  height: calc(100% - 48px);
}

.metric-bars {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.6fr;
  gap: 12px;
  align-items: end;
}

.metric-bars span:nth-child(1) {
  height: 44px;
}

.metric-bars span:nth-child(2) {
  height: 64px;
}

.metric-bars span:nth-child(3) {
  height: 92px;
}

.proof-grid-section {
  padding-top: 76px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.proof-card {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.cta-panel--marketing {
  background: linear-gradient(135deg, rgba(8, 18, 54, 0.96), rgba(14, 28, 80, 0.92));
  border-color: rgba(117, 149, 255, 0.16);
}

.cta-panel--marketing h2,
.cta-panel--marketing p,
.footer--marketing p,
.footer--marketing strong {
  color: #eef5ff;
}

.footer--marketing {
  color: rgba(228, 237, 255, 0.74);
}

.footer--marketing .footer__links a {
  color: rgba(228, 237, 255, 0.74);
}

.footer--marketing .footer__links a:hover {
  color: #7be0ff;
}

.home-hero {
  display: grid;
  gap: 28px;
  padding-top: 56px;
}

.home-hero__copy {
  max-width: 760px;
}

.home-hero__copy h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
}

.home-hero__actions {
  margin-top: 26px;
}

.home-hero__visual {
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(117, 149, 255, 0.18);
  background: linear-gradient(180deg, #091233 0%, #070f28 100%);
  box-shadow: 0 30px 80px rgba(7, 15, 40, 0.22);
}

.home-hero__visual img {
  width: 100%;
  height: min(72vh, 780px);
  object-fit: cover;
  display: block;
}

.home-intro {
  padding-top: 88px;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-feature-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(84, 122, 255, 0.14);
  box-shadow: 0 24px 62px rgba(7, 16, 40, 0.18);
}

.home-feature-card--dark {
  background: linear-gradient(180deg, #07102a 0%, #101b46 100%);
}

.home-feature-card--dark h3 {
  margin-bottom: 14px;
  color: #f6fbff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.home-feature-card--dark p {
  color: rgba(225, 235, 255, 0.74);
}

.home-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.home-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(84, 122, 255, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: #132548;
}

@media (max-width: 1180px) {
  .topbar--marketing {
    grid-template-columns: auto 1fr;
  }

  .topbar--marketing .menu-toggle {
    order: 4;
    justify-self: end;
  }

  .topbar__actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .feature-rail,
  .feature-showcase,
  .proof-grid,
  .hero-summary,
  .home-feature-grid,
  .notion-bento,
  .notion-panel {
    grid-template-columns: 1fr;
  }

  .feature-rail__intro {
    position: static;
  }

  .notion-panel__copy h3 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .site-shell--marketing {
    width: min(calc(100% - 16px), 1380px);
  }

  .topbar--marketing {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .topbar__center {
    grid-column: 1 / -1;
    order: 4;
  }

  .topbar__actions {
    grid-column: 1 / -1;
    order: 5;
    justify-content: stretch;
    flex-direction: column;
  }

  .topbar__actions .button {
    width: 100%;
  }

  .nav--marketing {
    justify-content: flex-start;
  }

  .hero--full {
    min-height: auto;
    padding-top: 26px;
  }

  .home-hero--notion {
    padding-top: 24px;
  }

  .hero--full h1 {
    font-size: clamp(2.7rem, 16vw, 4.2rem);
  }

  .home-hero__copy--centered h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
    max-width: none;
  }

  .topbar--marketing {
    background: rgba(255, 255, 255, 0.1);
  }

  .hero-stage--notion img {
    height: auto;
  }

  .trust-strip {
    gap: 14px 18px;
    font-size: 0.85rem;
  }

  .hero-stage img {
    height: auto;
  }

  .home-hero__copy h1 {
    max-width: none;
  }

  .feature-showcase__copy h3 {
    max-width: none;
  }

  .showcase-visual {
    min-height: 260px;
  }

  .notion-panel,
  .notion-bento__card {
    padding: 22px;
  }
}