:root {
  --paper: oklch(98% 0.012 82);
  --paper-2: oklch(95% 0.017 82);
  --paper-3: oklch(91% 0.022 82);
  --ink: oklch(24% 0.07 252);
  --ink-2: oklch(35% 0.055 252);
  --muted: oklch(51% 0.035 252);
  --muted-soft: oklch(66% 0.026 252);
  --navy: oklch(23% 0.09 253);
  --navy-deep: oklch(16% 0.065 253);
  --coral: oklch(68% 0.17 31);
  --coral-soft: oklch(89% 0.052 31);
  --mint: oklch(75% 0.12 160);
  --sky: oklch(72% 0.105 238);
  --line: oklch(84% 0.02 82);
  --line-strong: oklch(76% 0.03 82);
  --white-tint: oklch(99% 0.006 82);
  --shadow: 0 26px 80px rgba(18, 31, 54, 0.14);
  --shadow-soft: 0 14px 40px rgba(18, 31, 54, 0.08);
  --radius: 8px;
  --radius-lg: 18px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-height: 100vh;
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 115, 92, 0.13), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(85, 151, 224, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--paper), var(--paper-2) 54%, var(--paper));
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

section {
  padding: 104px 0;
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.navbar.scrolled {
  background: rgba(251, 248, 241, 0.86);
  border-color: rgba(27, 47, 82, 0.1);
  box-shadow: 0 12px 36px rgba(18, 31, 54, 0.06);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo-img {
  width: auto;
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.89rem;
  font-weight: 700;
  transition: color 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white-tint);
  background: linear-gradient(135deg, var(--coral), oklch(60% 0.145 28));
  box-shadow: 0 16px 34px rgba(255, 105, 82, 0.26);
}

.btn-secondary {
  color: var(--navy);
  border: 1px solid rgba(27, 47, 82, 0.16);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-lg {
  min-height: 52px;
  padding: 0 24px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(27, 47, 82, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  z-index: 99;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-bottom: 1px solid rgba(27, 47, 82, 0.12);
  background: rgba(251, 248, 241, 0.94);
  backdrop-filter: blur(18px);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(27, 47, 82, 0.1);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 138px 0 86px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(27, 47, 82, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 47, 82, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 76%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--paper-2));
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 64px;
}

.brand-mark {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(27, 47, 82, 0.1);
  border-radius: 24px;
  background: var(--white-tint);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.brand-mark img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 20px;
}

.eyebrow,
.section-label,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(255, 115, 92, 0.12);
}

.hero h1,
.section-copy h2,
.center-head h2,
.final-card h2 {
  font-family: Sora, "Schibsted Grotesk", system-ui, sans-serif;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  margin: 18px 0 22px;
  color: var(--navy);
  font-size: clamp(3.25rem, 8vw, 6.7rem);
  font-weight: 850;
}

.hero-sub {
  max-width: 570px;
  color: var(--ink-2);
  font-size: clamp(1.06rem, 1.7vw, 1.24rem);
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 540px;
  margin-top: 42px;
}

.trust-strip div {
  padding: 16px;
  border: 1px solid rgba(27, 47, 82, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.trust-strip strong {
  display: block;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1;
}

.trust-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-product {
  perspective: 1200px;
}

.product-shell {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  color: var(--white-tint);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 115, 92, 0.14), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--navy-deep);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transform: rotateX(2deg) rotateY(-5deg);
}

.conversation-head,
.agent-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-topbar {
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  align-items: center;
  height: 64px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.16);
}

.window-dots {
  display: flex;
  gap: 7px;
  justify-self: start;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.product-brand {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 12px;
  font-size: 0.86rem;
}

.console-logo-chip {
  display: grid;
  place-items: center;
  width: 124px;
  height: 36px;
  padding: 6px 12px 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.console-logo-chip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 54%;
  transform: translateX(1px);
}

.product-brand strong {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

.live-pill {
  justify-self: end;
  padding: 6px 10px;
  border: 1px solid rgba(98, 214, 163, 0.25);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(98, 214, 163, 0.08);
  font-size: 0.72rem;
  font-weight: 750;
}

.product-grid {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 170px;
  min-height: 430px;
}

.inbox-panel,
.conversation-panel,
.ops-panel {
  padding: 18px;
}

.inbox-panel,
.ops-panel {
  background: rgba(255, 255, 255, 0.025);
}

.conversation-panel {
  border-inline: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-label {
  color: var(--coral);
}

.channel {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.64);
  background: transparent;
  text-align: left;
  font-size: 0.75rem;
}

.channel span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  color: var(--navy-deep);
  background: var(--mint);
  font-size: 0.66rem;
  font-weight: 850;
}

.channel b {
  margin-left: auto;
  color: var(--white-tint);
  font-size: 0.72rem;
}

.channel.active {
  color: var(--white-tint);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.mini-chart {
  display: grid;
  grid-template-columns: 1fr repeat(5, 11px);
  align-items: end;
  gap: 8px;
  margin-top: 28px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

.mini-chart small,
.conversation-head span,
.booking-card p,
.action,
.agent-card span {
  color: rgba(255, 255, 255, 0.62);
}

.mini-chart strong {
  display: block;
  margin-top: 5px;
  color: var(--white-tint);
  font-size: 1.2rem;
}

.mini-chart > span {
  display: block;
  min-height: 16px;
  border-radius: 999px;
  background: linear-gradient(to top, var(--coral), var(--mint));
}

.conversation-head {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.conversation-head em {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--coral-soft);
  background: rgba(255, 115, 92, 0.12);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
}

.messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 18px;
}

.message {
  max-width: 82%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.84rem;
}

.message.user {
  align-self: flex-end;
  color: var(--navy);
  background: var(--paper);
  border-bottom-right-radius: 4px;
}

.message.agent {
  color: var(--white-tint);
  background: rgba(98, 214, 163, 0.1);
  border: 1px solid rgba(98, 214, 163, 0.18);
  border-bottom-left-radius: 4px;
}

.booking-card {
  width: min(100%, 320px);
  padding: 16px;
  border: 1px solid rgba(98, 214, 163, 0.22);
  border-radius: var(--radius);
  background: rgba(98, 214, 163, 0.08);
}

.booking-card span {
  color: var(--mint);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.booking-card strong {
  display: block;
  margin: 5px 0 3px;
}

.action {
  margin-top: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.74rem;
}

.action.done::before,
.action.pending::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.action.pending::before {
  background: var(--coral);
}

.signal-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  width: min(470px, calc(100% - 56px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(9, 20, 38, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

.signal-card > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 7px rgba(255, 115, 92, 0.12);
}

.signal-card p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.75rem;
}

.signal-card button {
  padding: 8px 11px;
  border-radius: var(--radius);
  color: var(--white-tint);
  background: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
}

.logo-band {
  padding: 34px 0;
  border-block: 1px solid rgba(27, 47, 82, 0.1);
  background: rgba(255, 255, 255, 0.42);
}

.logo-band .container {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 28px;
}

.logo-band p {
  color: var(--muted);
  font-size: 0.86rem;
}

.logo-placeholders {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.logo-placeholders div {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(27, 47, 82, 0.18);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--white-tint);
  font-size: 0.8rem;
  font-weight: 750;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 78px;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.section-copy h2,
.center-head h2,
.final-card h2 {
  margin-top: 14px;
  color: var(--navy);
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  font-weight: 850;
}

.section-copy p:not(.section-label) {
  max-width: 560px;
  margin-top: 20px;
  color: var(--ink-2);
  font-size: 1.04rem;
}

.problem,
.how,
.benefits {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent);
}

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

.surface,
.feature-card,
.timeline-step,
.impact-board,
.command-center,
.final-card {
  border: 1px solid rgba(27, 47, 82, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.surface {
  padding: 28px;
}

.surface-icon,
.feature-card span,
.timeline-step span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 32px;
  padding: 0 10px;
  border-radius: var(--radius);
  color: var(--white-tint);
  background: var(--navy);
  font-size: 0.75rem;
  font-weight: 850;
}

.surface h3,
.feature-card h3,
.timeline-step h3 {
  margin: 20px 0 8px;
  color: var(--navy);
  font-size: 1.04rem;
}

.surface p,
.feature-card p,
.timeline-step p,
.usecase-card small,
.final-card p,
.impact-board blockquote,
.footer p,
.footer-links a {
  color: var(--muted);
}

.command-center {
  display: grid;
  gap: 16px;
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 115, 92, 0.1), transparent 18rem),
    var(--navy);
  color: var(--white-tint);
}

.agent-card,
.knowledge-card,
.automation-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.agent-card {
  gap: 14px;
}

.agent-card img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.agent-card div {
  flex: 1;
}

.agent-card strong,
.agent-card span {
  display: block;
}

.agent-card em {
  color: var(--mint);
  font-style: normal;
  font-weight: 800;
}

.knowledge-card .panel-label {
  margin-bottom: 12px;
}

.knowledge-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.knowledge-card b {
  color: var(--mint);
}

.automation-card strong {
  color: var(--coral-soft);
}

.automation-card p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.64);
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.feature-list div {
  padding: 16px 18px;
  border: 1px solid rgba(27, 47, 82, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
}

.feature-list h3 {
  color: var(--navy);
  font-size: 1rem;
}

.feature-list p {
  margin-top: 4px;
  color: var(--muted);
}

.center-head {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}

.center-head .section-label {
  justify-content: center;
}

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

.timeline-step {
  padding: 30px;
}

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

.feature-card {
  min-height: 230px;
  padding: 28px;
}

.feature-card span {
  background: var(--coral);
}

.usecases .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  align-items: start;
}

.usecases .section-copy {
  max-width: 760px;
}

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

.usecase-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(27, 47, 82, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.usecase-card-dark {
  color: var(--white-tint);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 115, 92, 0.12), transparent 16rem),
    var(--navy);
}

.usecase-card-head {
  display: grid;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(27, 47, 82, 0.11);
}

.usecase-card-dark .usecase-card-head {
  border-color: rgba(255, 255, 255, 0.12);
}

.usecase-card-head span {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.usecase-card-head strong {
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.3;
}

.usecase-card-dark .usecase-card-head strong {
  color: var(--white-tint);
}

.usecase-items {
  display: grid;
  gap: 17px;
  padding-top: 20px;
}

.usecase-items div {
  display: grid;
  gap: 4px;
}

.usecase-items b {
  color: var(--navy);
  font-size: 0.96rem;
}

.usecase-card-dark .usecase-items b {
  color: var(--white-tint);
}

.usecase-items small {
  font-size: 0.84rem;
  line-height: 1.5;
}

.usecase-card-dark .usecase-items small {
  color: rgba(255, 255, 255, 0.66);
}

.impact-board {
  padding: 34px;
}

.impact-main strong {
  display: block;
  color: var(--coral);
  font-family: Sora, "Schibsted Grotesk", system-ui, sans-serif;
  font-size: clamp(4rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.impact-main span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
}

.impact-board blockquote {
  margin: 30px 0;
  padding: 20px;
  border: 1px solid rgba(255, 115, 92, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 115, 92, 0.07);
  font-size: 1.08rem;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.impact-stats div {
  padding: 16px;
  border: 1px solid rgba(27, 47, 82, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
}

.impact-stats b,
.impact-stats span {
  display: block;
}

.impact-stats b {
  color: var(--navy);
  font-size: 1.3rem;
}

.impact-stats span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.final-cta {
  padding-top: 48px;
}

.final-card {
  position: relative;
  overflow: hidden;
  max-width: 940px;
  margin: 0 auto;
  padding: 58px;
  text-align: center;
}

.final-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 115, 92, 0.12), transparent 24rem),
    radial-gradient(circle at 80% 70%, rgba(85, 151, 224, 0.1), transparent 20rem);
  pointer-events: none;
}

.final-card > * {
  position: relative;
}

.final-logo {
  width: min(220px, 64vw);
  height: auto;
  margin: 0 auto 24px;
}

.final-card h2 {
  max-width: 760px;
  margin-inline: auto;
}

.final-card p:not(.section-label) {
  max-width: 620px;
  margin: 18px auto 0;
}

.cta-actions {
  justify-content: center;
}

.footer {
  padding: 38px 0;
  border-top: 1px solid rgba(27, 47, 82, 0.1);
  background: rgba(255, 255, 255, 0.42);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-logo-img {
  height: 34px;
  width: auto;
  opacity: 0.92;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer p,
.footer-links a {
  font-size: 0.82rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(14, 28, 50, 0.54);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s var(--ease);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: relative;
  width: min(460px, 100%);
  padding: 34px;
  border: 1px solid rgba(27, 47, 82, 0.12);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateY(12px);
  transition: transform 0.24s var(--ease);
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(27, 47, 82, 0.06);
}

.modal h3 {
  color: var(--navy);
  font-size: 1.5rem;
}

.modal p {
  margin: 8px 0 24px;
  color: var(--muted);
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(27, 47, 82, 0.14);
  border-radius: var(--radius);
  outline: 0;
  color: var(--ink);
  background: var(--white-tint);
}

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(255, 115, 92, 0.62);
}

.form-group input::placeholder {
  color: var(--muted-soft);
}

.form-submit {
  width: 100%;
  height: 48px;
  margin-top: 4px;
  border-radius: var(--radius);
  color: var(--white-tint);
  background: var(--coral);
  font-weight: 850;
}

.form-success {
  text-align: center;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: var(--white-tint);
  background: var(--coral);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.58s var(--ease), transform 0.58s var(--ease);
}

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

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

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

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 1100px) {
  .hero-container,
  .split-section,
  .split-section.reverse,
  .usecases .container {
    grid-template-columns: 1fr;
  }

  .hero-product {
    order: -1;
  }

  .product-shell {
    transform: none;
  }

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

  .logo-band .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 70px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 17vw, 4.6rem);
  }

  .hero-container {
    gap: 38px;
  }

  .trust-strip,
  .problem-grid,
  .features-grid,
  .timeline,
  .impact-stats,
  .logo-placeholders {
    grid-template-columns: 1fr;
  }

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

  .conversation-panel {
    border-inline: 0;
    border-block: 1px solid rgba(255, 255, 255, 0.1);
  }

  .signal-card {
    position: static;
    width: auto;
    margin: 0 14px 14px;
    grid-template-columns: auto 1fr;
  }

  .signal-card button {
    grid-column: 1 / -1;
  }

  .usecase-list {
    grid-template-columns: 1fr;
  }

  .final-card {
    padding: 36px 20px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 460px) {
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
  }

  .product-topbar {
    gap: 12px;
  }

  .window-dots {
    display: none;
  }

  .product-brand strong,
  .live-pill {
    display: none;
  }

  .modal {
    padding: 30px 20px;
  }
}
