:root {
  --indigo: #4b45e4;
  --indigo-dark: #3b35c9;
  --indigo-soft: #e2e5fd;
  --navy: #1e2a6e;
  --ink: #172044;
  --body: #5c6478;
  --muted: #677084;
  --bg: #f2f4f9;
  --card: #ffffff;
  --line: #e3e7f0;
  --line-strong: #cbd2e2;
  --success: #15803d;
  --warning: #c2410c;
  --display: "Poppins", system-ui, sans-serif;
  --text: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(75, 69, 228, 0.35);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--display);
  letter-spacing: -0.02em;
}

.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 56px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
}

.nav-in {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 74px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: inline-grid;
  grid-template-columns: auto auto;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
  background: var(--indigo);
}

.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffffff;
}

.brand-ring {
  width: 12px;
  height: 12px;
  border: 3px solid #ffffff;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
}

.nav-links a {
  border-radius: 8px;
  padding: 9px 12px;
  transition: background 150ms ease, color 150ms ease;
}

.nav-links a:hover,
.nav-links a.is-active,
body:has(#start:target) .nav-links a[href="/#start"],
body:has(#product:target) .nav-links a[href="/#product"] {
  background: var(--indigo-soft);
  color: var(--indigo);
}

.nav-links a.is-active,
body:has(#start:target) .nav-links a[href="/#start"],
body:has(#product:target) .nav-links a[href="/#product"] {
  box-shadow: inset 0 -2px 0 var(--indigo);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.mobile-nav-actions {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  padding: 0 20px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.btn:hover {
  transform: none;
}

.btn-solid {
  background: var(--indigo);
  color: #ffffff;
}

.btn-solid:hover {
  background: var(--indigo-dark);
}

.btn-line {
  border-color: var(--line-strong);
  background: var(--card);
  color: var(--navy);
}

.btn-ghost {
  padding-inline: 10px;
  color: var(--body);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--indigo);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 72px 0;
}

section[id] {
  scroll-margin-top: 74px;
}

.section-white {
  background: var(--card);
}

.section-title {
  max-width: 15em;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.16;
}

.section-copy {
  max-width: 38em;
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.6;
}

.management-note {
  max-width: 34em;
  margin-top: 18px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--indigo);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
}

.text-link:hover {
  color: var(--indigo-dark);
}

.hero {
  padding: 76px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.75fr);
  gap: 72px;
  align-items: center;
}

.hero h1 {
  max-width: 15em;
  margin-top: 18px;
  font-size: clamp(32px, 4.6vw, 50px);
  font-weight: 600;
  line-height: 1.1;
}

.hero-copy {
  max-width: 34em;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
}

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

.reassurance {
  max-width: 45em;
  margin-top: 22px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
}

.channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.channel-badge {
  --channel-color: var(--indigo);
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 7px 11px 7px 8px;
  white-space: nowrap;
}

.channel-whatsapp {
  --channel-color: #168c4b;
}

.channel-email {
  --channel-color: #d64f42;
}

.channel-sms {
  --channel-color: #217a50;
}

.channel-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--channel-color);
}

.channel-badge-compact {
  min-height: 28px;
  gap: 6px;
  border-color: transparent;
  background: var(--bg);
  font-size: 11px;
  padding: 4px 8px 4px 5px;
}

.channel-badge-compact .channel-icon {
  width: 18px;
  height: 18px;
}

.window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(30, 42, 110, 0.06);
}

.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: #fbfcff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.live::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--success);
  content: "";
}

.moment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 20px;
  border-bottom: 1px solid var(--line);
}

.moment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.moment small,
.metric span,
.pill,
.label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.moment strong {
  display: block;
  margin-top: 5px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.4;
}

.moment-outcome,
.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: var(--indigo-soft);
  color: var(--indigo);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 10px;
  white-space: nowrap;
}

.window-footer {
  padding: 18px 20px;
  background: #f8fafc;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.path-grid,
.fit-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
  gap: 1px;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.use-case-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(30, 42, 110, 0.035);
}

.use-case-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--indigo-soft);
  color: var(--indigo);
}

.use-case-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.use-case-card h3 {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.use-case-card p {
  margin-top: 10px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.55;
}

.path {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 30px;
  background: #ffffff;
}

.path-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: var(--indigo-soft);
  color: var(--indigo);
  font-size: 13px;
  font-weight: 600;
}

.path h3,
.card h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
}

.path p,
.card p {
  margin-top: 9px;
  color: var(--body);
  font-size: 15.5px;
}

.path strong {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 15px;
}

.story-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(440px, 0.9fr);
  gap: 70px;
  align-items: center;
}

.outcome-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px 190px;
  gap: 12px;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.outcome-row span:first-child {
  color: var(--navy);
  font-size: 15px;
}

.outcome-row strong {
  color: var(--navy);
  font-size: 14px;
}

.outcome-arrow {
  color: var(--indigo);
  text-align: center;
}

.journey-window .window-top {
  background: #f8f9ff;
}

.journey-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
}

.journey-row small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-row p {
  margin-top: 5px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.question-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.question-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 10px;
}

.dashboard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(30, 42, 110, 0.06);
}

.intelligence-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 470px);
  gap: clamp(46px, 7vw, 84px);
}

.intelligence-dashboard {
  width: min(100%, 470px);
  justify-self: end;
  overflow: clip;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

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

.metric {
  padding: 24px;
  background: #ffffff;
}

.intelligence-dashboard .metric {
  min-width: 0;
  padding: 22px 24px;
}

.metric strong {
  display: block;
  color: var(--navy);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.intelligence-dashboard .metric strong {
  font-size: clamp(24px, 2.6vw, 30px);
}

.intelligence-dashboard .metric span {
  display: block;
  max-width: 11em;
  margin-top: 9px;
  line-height: 1.28;
}

.insights,
.card-grid,
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.insights {
  grid-template-columns: repeat(2, 1fr);
  padding: 20px;
  margin-top: 0;
}

.intelligence-dashboard .insights {
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px;
}

.insight,
.card,
.plan,
.quote-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.insight {
  padding: 18px;
  background: #fbfcff;
}

.intelligence-dashboard .insight {
  min-width: 0;
}

.insight p {
  margin-top: 8px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
}

.quote-card {
  padding: 28px;
  border-top: 2px solid var(--indigo);
}

.quote-card blockquote {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.quote-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.pricing-band {
  background: var(--navy);
  color: #cfd5f2;
}

.pricing-band h2,
.pricing-band .eyebrow {
  color: #ffffff;
}

.pricing-band .section-copy {
  color: #cfd5f2;
}

.pricing-focus,
.trial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 380px);
  gap: 52px;
  align-items: start;
}

.starter-mini {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  align-items: baseline;
  margin-top: 24px;
  border: 1px solid rgba(226, 229, 253, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 13px 16px;
}

.starter-mini span,
.starter-mini small {
  color: #cfd5f2;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
}

.starter-mini strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.plans {
  grid-template-columns: repeat(5, 1fr);
}

.plan {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 24px;
}

.plan-featured {
  min-height: auto;
  border-top: 2px solid var(--indigo);
  padding: 30px;
}

.plan-featured .tag {
  margin-bottom: 18px;
}

.plan-featured .btn {
  margin-top: 24px;
}

.plan-name {
  color: var(--navy);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.plan-price {
  min-height: 68px;
  margin-top: 16px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.12;
}

.plan-per {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-summary {
  min-height: 96px;
  margin-top: 16px;
  color: var(--body);
  font-size: 14.5px;
}

.plan ul,
.card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.plan li,
.card li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
}

.addons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.addons span {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #ffffff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  padding: 12px 14px;
}

.trial-steps {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
  gap: 1px;
}

.trial-steps article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  background: #ffffff;
  padding: 20px;
}

.trial-steps span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  background: var(--indigo-soft);
  color: var(--indigo);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
}

.trial-steps p {
  color: var(--navy);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
}

.quiet-upgrade {
  max-width: 780px;
}

.dashboard-preview {
  min-height: calc(100vh - 74px);
  padding: 28px;
  background:
    radial-gradient(circle at 15% 4%, rgba(226, 229, 253, 0.95), transparent 24rem),
    linear-gradient(180deg, #f7f8fc 0%, #eef2f8 100%);
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  width: min(100%, 1280px);
  min-height: calc(100vh - 130px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(30, 42, 110, 0.12);
}

.dashboard-sidebar {
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.dashboard-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
}

.workspace-chip {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  padding: 14px;
}

.workspace-chip strong,
.workspace-chip span {
  display: block;
}

.workspace-chip strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 14px;
  line-height: 1.25;
}

.workspace-chip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.dashboard-nav {
  display: grid;
  gap: 7px;
  margin-top: 24px;
}

.dashboard-nav a {
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--body);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
}

.dashboard-nav a:hover,
.dashboard-nav a.is-selected {
  border-color: rgba(75, 69, 228, 0.18);
  background: var(--indigo-soft);
  color: var(--indigo);
}

.dashboard-main {
  min-width: 0;
  padding: 30px;
}

.dashboard-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.dashboard-topbar h1 {
  max-width: 760px;
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 600;
  line-height: 1;
}

.dashboard-topbar p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 18px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.6;
}

.dashboard-work {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 20px;
  margin-top: 34px;
}

.inbox-preview,
.setup-preview,
.dashboard-section-grid article,
.dashboard-next-note {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(30, 42, 110, 0.07);
}

.preview-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--display);
  font-weight: 600;
}

.preview-card-header span:not(.live) {
  color: var(--indigo);
  font-size: 13px;
}

.preview-row {
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.preview-row:last-child {
  border-bottom: 0;
}

.preview-row > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-row strong,
.setup-preview strong,
.dashboard-section-grid strong,
.dashboard-next-note strong {
  color: var(--navy);
  font-family: var(--display);
  font-weight: 600;
}

.preview-row p,
.setup-preview p,
.dashboard-section-grid p,
.dashboard-next-note p {
  margin-top: 5px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.45;
}

.preview-row em {
  border-radius: 999px;
  background: var(--indigo-soft);
  color: var(--indigo);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  padding: 7px 10px;
}

.setup-preview article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.setup-preview article:last-child {
  border-bottom: 0;
}

.setup-preview article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--indigo-soft);
  color: var(--indigo);
  font-size: 12px;
  font-weight: 700;
}

.dashboard-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.dashboard-section-grid article {
  padding: 20px;
}

.dashboard-next-note {
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--navy);
}

.dashboard-next-note p,
.dashboard-next-note strong {
  color: #ffffff;
}

.app-body {
  min-height: 100vh;
  background: #eef2f8;
}

.auth-screen,
.onboarding-screen {
  min-height: 100vh;
  padding: clamp(28px, 4.5vw, 56px);
  background:
    radial-gradient(circle at 16% 8%, rgba(226, 229, 253, 0.95), transparent 25rem),
    radial-gradient(circle at 82% 18%, rgba(75, 69, 228, 0.12), transparent 27rem),
    linear-gradient(180deg, #f8f9fd 0%, #edf1f8 100%);
}

.auth-grid,
.onboarding-shell {
  width: min(100%, 1160px);
  margin: 0 auto;
}

.auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 470px);
  min-height: calc(100vh - 112px);
  align-items: center;
  gap: clamp(34px, 5.5vw, 68px);
}

.auth-grid-compact {
  max-width: 1040px;
}

.auth-story .dashboard-brand,
.onboarding-shell > .dashboard-brand {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.auth-story h1,
.onboarding-hero h1 {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.032em;
  line-height: 1.12;
}

.auth-story p:not(.eyebrow),
.onboarding-hero p {
  max-width: 560px;
  margin-top: 16px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

.auth-card,
.trial-summary-card,
.panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(30, 42, 110, 0.1);
}

.auth-card {
  padding: clamp(26px, 4vw, 38px);
}

.auth-card h2 {
  margin-top: 18px;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.22;
}

.auth-card p {
  margin-top: 10px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.55;
}

.auth-card .auth-pilot-warning {
  margin: 20px 0;
  padding: 14px 16px;
  border: 1px solid #d7dced;
  border-radius: 12px;
  background: #f5f7fd;
  color: var(--navy);
}

.auth-card label {
  margin-top: 16px;
}

.auth-card .btn,
.onboarding-actions .btn {
  width: 100%;
  margin-top: 8px;
}

.preview-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: var(--indigo-soft);
  color: var(--indigo);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 11px;
  text-transform: uppercase;
}

.auth-footnote {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.auth-footnote a {
  color: var(--indigo);
  font-weight: 700;
}

.auth-journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 36px;
}

.auth-journey article,
.auth-note,
.setup-progress article {
  border: 1px solid rgba(203, 210, 226, 0.78);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  padding: 16px;
}

.auth-journey article.is-current {
  border-color: rgba(75, 69, 228, 0.35);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(75, 69, 228, 0.1);
}

.auth-journey span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--indigo-soft);
  color: var(--indigo);
  font-size: 12px;
  font-weight: 800;
}

.auth-journey strong,
.auth-note strong,
.setup-progress strong {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.auth-note {
  max-width: 520px;
  margin-top: 26px;
}

.auth-note span {
  display: block;
  margin-top: 8px;
  font-size: 15px;
}

.code-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
  margin: 22px 0 18px;
}

.code-row input {
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 0;
  text-align: center;
  color: var(--navy);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
}

.onboarding-screen {
  display: grid;
  align-items: center;
}

.onboarding-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 350px);
  gap: 40px;
  align-items: end;
}

.trial-summary-card {
  padding: 28px;
}

.trial-summary-card strong {
  display: block;
  margin-top: 18px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
}

.trial-summary-card p {
  margin-top: 10px;
  font-size: 15px;
}

.onboarding-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.setup-choice {
  display: grid;
  min-height: 226px;
  grid-template-rows: auto auto auto 1fr;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  cursor: pointer;
  padding: 20px;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.setup-choice:hover {
  border-color: rgba(75, 69, 228, 0.28);
  box-shadow: 0 18px 42px rgba(30, 42, 110, 0.08);
}

.setup-choice input {
  width: 18px;
  height: 18px;
  margin: 0 0 24px;
  accent-color: var(--indigo);
}

.setup-choice span {
  color: var(--indigo);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.setup-choice strong {
  margin-top: 12px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

.setup-choice em {
  margin-top: 12px;
  color: var(--body);
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
}

.onboarding-actions {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(180px, 220px) minmax(220px, 1fr);
  gap: 12px;
  align-items: center;
  justify-self: end;
  width: min(100%, 520px);
  margin-top: 8px;
}

.sikio-app {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(226, 229, 253, 0.9), transparent 27rem),
    linear-gradient(180deg, #f7f8fc 0%, #eef2f8 100%);
}

.sikio-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  padding: 28px 20px;
}

.sikio-nav {
  display: grid;
  gap: 7px;
  margin-top: 24px;
}

.sikio-nav a {
  border: 1px solid transparent;
  border-radius: 13px;
  color: var(--body);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 13px;
}

.sikio-nav a:hover,
.sikio-nav a.is-selected {
  border-color: rgba(75, 69, 228, 0.18);
  background: var(--indigo-soft);
  color: var(--indigo);
}

.trial-meter {
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  padding: 16px;
}

.trial-meter span,
.trial-meter p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.trial-meter strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
}

.trial-meter div {
  height: 8px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--indigo-soft);
}

.trial-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--indigo);
}

.trial-meter p {
  margin-top: 12px;
  line-height: 1.45;
}

.sikio-main {
  min-width: 0;
  padding: clamp(22px, 3.2vw, 42px);
}

.sikio-topbar,
.first-run-strip,
.settings-panel {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.sikio-topbar h1 {
  max-width: 720px;
  margin-top: 16px;
  font-size: clamp(34px, 4.2vw, 52px);
}

.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.first-run-strip {
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--navy);
  color: #cfd5f2;
  padding: clamp(24px, 3.2vw, 34px);
}

.first-run-strip h2 {
  max-width: 620px;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.12;
}

.first-run-strip p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 13px;
}

.first-run-strip .eyebrow {
  color: #bfc4ff;
}

.setup-progress {
  display: grid;
  min-width: 300px;
  gap: 8px;
}

.setup-progress article {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
}

.setup-progress span {
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid var(--line-strong);
  border-radius: 999px;
}

.setup-progress article.checked span,
.setup-progress article.active span {
  border-color: var(--indigo);
  background: var(--indigo);
}

.setup-progress article.active {
  border-color: rgba(75, 69, 228, 0.36);
}

.setup-progress strong {
  margin-top: 0;
}

.app-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.app-metrics article {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(30, 42, 110, 0.06);
}

.app-metrics strong {
  display: block;
  color: var(--navy);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.app-metrics span,
.app-metrics em {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.app-metrics span {
  color: var(--navy);
}

.app-metrics em {
  color: var(--muted);
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
  margin-top: 22px;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.panel {
  min-width: 0;
  overflow: hidden;
  padding: 0;
}

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

.panel-head h2 {
  margin-top: 5px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.22;
}

.conversation-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto 42px;
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.conversation-row:last-child {
  border-bottom: 0;
}

.conversation-row > span,
.campaign-row span,
.campaign-row small,
.conversation-row small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conversation-row strong,
.campaign-row strong,
.workflow-lane strong,
.insight-card strong {
  color: var(--navy);
  font-family: var(--display);
  font-weight: 600;
}

.conversation-row p,
.profile-summary,
.insight-card p,
.wallet-card p {
  margin-top: 4px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.45;
}

.conversation-row em,
.mini-link {
  border-radius: 999px;
  background: var(--indigo-soft);
  color: var(--indigo);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  padding: 7px 10px;
  white-space: nowrap;
}

.profile-avatar {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--navy);
  color: #ffffff;
  font-family: var(--display);
  font-weight: 700;
}

.profile-summary {
  padding: 18px 22px 0;
}

.contact-panel dl {
  display: grid;
  gap: 1px;
  margin: 18px 0 0;
  background: var(--line);
}

.contact-panel dl div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 12px;
  background: #ffffff;
  padding: 14px 22px;
}

.contact-panel dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-panel dd {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.contact-panel .text-link {
  margin: 18px 22px 22px;
}

.campaign-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px;
  gap: 8px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}

.campaign-row:last-child {
  border-bottom: 0;
}

.campaign-row em {
  color: var(--body);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.workflow-lane {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 7px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}

.workflow-lane span {
  color: var(--body);
  font-size: 14px;
}

.insight-card {
  margin: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfcff;
  padding: 16px;
}

.wallet-card {
  margin: 20px;
  border-radius: 18px;
  background: var(--navy);
  color: #dfe4ff;
  padding: 22px;
}

.wallet-card strong {
  display: block;
  color: #ffffff;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 600;
}

.wallet-card span {
  display: block;
  margin-top: 4px;
  color: #cfd5f2;
  font-size: 13px;
  font-weight: 700;
}

.wallet-card p {
  color: #dfe4ff;
}

.settings-panel {
  margin-top: 18px;
  padding: 24px;
}

.settings-panel p {
  max-width: 720px;
  margin-top: 8px;
  font-size: 15px;
}

.chain {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.chain-step {
  min-height: 164px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  padding: 20px 18px;
}

.chain-step:last-child {
  background: var(--navy);
  border-color: var(--navy);
}

.chain-step:last-child p,
.chain-step:last-child .label {
  color: #ffffff;
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.mode {
  border-top: 2px solid var(--indigo-soft);
  padding-top: 16px;
}

.pulse {
  overflow: hidden;
  max-width: 680px;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}

.pulse-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: var(--navy);
  color: #ffffff;
  font-family: var(--display);
  font-weight: 600;
}

.pulse-line {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.pulse-line:last-child {
  border-bottom: 0;
}

.pulse-line strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
}

.pulse-line p {
  margin-top: 5px;
  font-size: 14.5px;
}

.receipt {
  display: inline-block;
  margin-top: 8px;
  color: var(--indigo);
  font-size: 12.5px;
  font-weight: 600;
}

.ask-box,
.review-box,
.notice-box {
  max-width: 720px;
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  padding: 28px;
}

.question {
  border-radius: 10px;
  background: var(--indigo-soft);
  color: var(--navy);
  font-family: var(--display);
  font-weight: 600;
  padding: 13px 16px;
}

.answer p {
  margin-top: 14px;
}

.review-box {
  max-width: none;
  border: 2px solid var(--indigo);
  padding: 36px;
}

.review-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 26px;
}

.review-cols h3 {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
}

.review-cols li {
  margin-bottom: 8px;
}

.form {
  max-width: 680px;
  margin-top: 30px;
  border-radius: 16px;
  background: #ffffff;
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--bg);
  color: var(--navy);
  padding: 11px 13px;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

.footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
  font-size: 13px;
  padding: 30px 0;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.footer a:hover {
  color: var(--indigo);
}

@media (max-width: 1080px) {
  .hero-grid,
  .story-grid,
  .split,
  .pricing-focus,
  .trial-grid,
  .dashboard-work,
  .auth-grid,
  .onboarding-hero,
  .work-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .plans,
  .chain,
  .dashboard-section-grid,
  .onboarding-board,
  .ops-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sikio-app {
    grid-template-columns: 230px minmax(0, 1fr);
  }

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

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

  .intelligence-dashboard {
    max-width: 560px;
    justify-self: start;
  }
}

@media (max-width: 980px) {
  .nav-in {
    position: relative;
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .nav-links,
  .desktop-nav-actions {
    display: none;
  }

  .mobile-nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
  }

  .mobile-trial {
    min-height: 40px;
    padding: 0 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  .mobile-nav {
    position: relative;
  }

  .mobile-nav summary {
    display: grid;
    width: 42px;
    height: 42px;
    cursor: pointer;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    background: #ffffff;
    list-style: none;
  }

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

  .mobile-nav summary span,
  .mobile-nav summary span::before,
  .mobile-nav summary span::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
    content: "";
  }

  .mobile-nav summary span {
    position: relative;
  }

  .mobile-nav summary span::before {
    position: absolute;
    top: -6px;
  }

  .mobile-nav summary span::after {
    position: absolute;
    top: 6px;
  }

  .mobile-nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: min(78vw, 290px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(30, 42, 110, 0.16);
    padding: 8px;
  }

  .mobile-nav-panel a {
    border-radius: 8px;
    color: var(--navy);
    font-family: var(--display);
    font-size: 15px;
    font-weight: 500;
    padding: 11px 12px;
  }

  .mobile-nav-panel a:hover,
  .mobile-nav-panel a.is-active {
    background: var(--indigo-soft);
    color: var(--indigo);
  }
}

@media (max-width: 760px) {
  .wrap {
    padding: 0 32px;
  }

  .dashboard-preview {
    padding: 16px;
  }

  .auth-screen,
  .onboarding-screen {
    padding: 24px;
  }

  .auth-grid {
    min-height: auto;
  }

  .auth-story .dashboard-brand,
  .onboarding-shell > .dashboard-brand {
    margin-bottom: 44px;
  }

  .auth-journey,
  .app-metrics,
  .onboarding-board,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .onboarding-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .sikio-app {
    display: block;
  }

  .sikio-sidebar {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sikio-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .sikio-nav a {
    white-space: nowrap;
  }

  .trial-meter {
    margin-top: 18px;
  }

  .sikio-topbar,
  .first-run-strip,
  .settings-panel {
    display: grid;
  }

  .topbar-actions {
    justify-content: flex-start;
  }

  .setup-progress {
    min-width: 0;
  }

  .dashboard-shell {
    display: block;
    min-height: auto;
  }

  .dashboard-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dashboard-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .dashboard-nav a {
    white-space: nowrap;
  }

  .dashboard-topbar {
    flex-direction: column;
  }

  .hero {
    padding: 56px 0 44px;
  }

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

  .hero-copy,
  .section-copy {
    font-size: 17px;
  }

  .section {
    padding: 62px 0;
  }

  .moment,
  .outcome-row,
  .path,
  .journey-row {
    grid-template-columns: 1fr;
  }

  .outcome-arrow {
    display: none;
  }

  .plans,
  .chain,
  .mode-grid,
  .card-grid,
  .insights,
  .metric-grid,
  .addons,
  .dashboard-section-grid,
  .review-cols,
  .form-row,
  .conversation-row,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .preview-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .plan {
    min-height: auto;
  }

  .intelligence-dashboard {
    width: 100%;
  }

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

  .intelligence-dashboard .metric {
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .nav-in {
    padding-inline: 20px;
  }

  .intelligence-dashboard .metric-grid,
  .intelligence-dashboard .insights,
  .contact-panel dl div {
    grid-template-columns: 1fr;
  }

  .auth-story h1,
  .onboarding-hero h1,
  .sikio-topbar h1 {
    font-size: clamp(32px, 10vw, 44px);
  }
}
