:root {
  color-scheme: light;
  --ink: #081d35;
  --muted: #557088;
  --soft: #ecf7fb;
  --mist: #f7fbfd;
  --card: rgba(255, 255, 255, 0.82);
  --line: rgba(37, 93, 126, 0.14);
  --blue: #0f6fec;
  --teal: #13b9bd;
  --cyan: #62d7f8;
  --shadow: 0 28px 90px rgba(19, 75, 119, 0.12);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #f8fcff;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(98, 215, 248, 0.3),
      transparent 34rem
    ),
    linear-gradient(180deg, #f9fdff 0%, #eef8fc 48%, #f8fcff 100%);
}

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

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

button {
  cursor: pointer;
}

.site-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(37, 93, 126, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 60px rgba(36, 92, 132, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 150px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #355672;
  font-size: 0.95rem;
  font-weight: 720;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  transition:
    transform 180ms var(--ease-premium),
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 220ms ease;
}

.nav-links a:hover,
.nav-links .active {
  background: rgba(15, 111, 236, 0.08);
  color: var(--ink);
}

.nav-links .nav-cta {
  border: 1px solid rgba(15, 111, 236, 0.22);
  background: rgba(232, 247, 252, 0.92);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 14px 30px rgba(15, 111, 236, 0.1);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  border-color: rgba(19, 185, 189, 0.34);
  background: rgba(213, 244, 250, 0.96);
  color: var(--ink);
}

.hero,
.page-hero {
  padding: 80px 0 54px;
}

.portal-hero {
  text-align: center;
}

.hero-copy,
.page-hero.narrow {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 5vw, 3.95rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.portal-hero h1 span {
  display: block;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.hero-support {
  max-width: 1060px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.75vw, 1.32rem);
  line-height: 1.48;
}

.assistant-home {
  max-width: 990px;
  margin: 46px auto 0;
}

.assistant-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 82px;
  padding: 10px 12px 10px 24px;
  border: 1px solid rgba(15, 111, 236, 0.13);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.assistant-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 0 8px rgba(98, 215, 248, 0.16);
}

.assistant-bar input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 680;
}

.assistant-bar input::placeholder {
  color: #7891a7;
}

.assistant-bar button,
.action-row button,
.mini-actions button {
  min-height: 46px;
  border: 1px solid rgba(15, 111, 236, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 0 18px;
  font-weight: 800;
}

.assistant-bar button {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  box-shadow: 0 18px 40px rgba(15, 111, 236, 0.2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.chips {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.chips button {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid rgba(37, 93, 126, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #365a75;
  padding: 0 15px;
  font-weight: 760;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.assistant-bar:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 111, 236, 0.22);
  box-shadow: 0 30px 90px rgba(19, 75, 119, 0.14);
}

.assistant-bar button:hover,
.chips button:hover {
  transform: translateY(-2px);
}

.assistant-bar button:hover {
  box-shadow: 0 22px 48px rgba(15, 111, 236, 0.26);
}

.chips button:hover {
  border-color: rgba(15, 111, 236, 0.24);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(19, 75, 119, 0.1);
}

.answer-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(15, 111, 236, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  text-align: left;
}

.answer-panel[hidden] {
  display: none;
}

.answer-label {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.answer-panel h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.answer-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.answer-panel a {
  flex: 0 0 auto;
  color: var(--blue);
  font-weight: 850;
}

.answer-panel a::after {
  content: " ->";
}

.section {
  padding: 62px 0;
}

.compact-section {
  padding-top: 20px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.section-heading .section-title-blue {
  color: var(--blue);
  font-size: clamp(1.05rem, 1.55vw, 1.42rem);
  font-weight: 900;
}

.steps-grid,
.use-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

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

.soft-card,
.price-card,
.status-card,
.auth-card,
.final-note {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  box-shadow: 0 18px 70px rgba(19, 75, 119, 0.08);
}

.soft-card {
  padding: 28px;
}

.step-card {
  position: relative;
  overflow: hidden;
  padding: 22px 24px;
  border-color: rgba(15, 111, 236, 0.16);
  background: rgba(232, 247, 252, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    inset 0 -18px 58px rgba(15, 111, 236, 0.05),
    0 22px 70px rgba(19, 75, 119, 0.1);
  backdrop-filter: blur(18px) saturate(135%);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.step-card::before {
  position: absolute;
  inset: 1px 1px auto;
  height: 44%;
  border-radius: 27px 27px 18px 18px;
  background: rgba(255, 255, 255, 0.24);
  content: "";
  pointer-events: none;
}

.step-card::after {
  position: absolute;
  inset: auto 18px 14px;
  height: 1px;
  background: rgba(15, 111, 236, 0.1);
  content: "";
  pointer-events: none;
}

.step-card:hover {
  transform: translateY(-7px);
  border-color: rgba(15, 111, 236, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -18px 58px rgba(15, 111, 236, 0.06),
    0 30px 82px rgba(19, 75, 119, 0.14);
}

.step-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
}

.step-card-head span {
  display: inline-flex;
  color: var(--blue);
  font-size: 1.12rem;
  font-weight: 900;
}

.step-card h3 {
  color: var(--ink);
  text-shadow: none;
}

.soft-card h2,
.soft-card h3,
.price-card h2 {
  margin-bottom: 0;
  font-size: 1.28rem;
}

.soft-card p,
.price-card p,
.final-note p,
.technical-note,
.auth-card p {
  color: var(--muted);
  line-height: 1.58;
}

.soft-card.step-card p {
  color: #3f5f78;
  font-weight: 650;
  text-shadow: none;
}

.step-card > p {
  position: relative;
  z-index: 1;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-cta-row,
.centered-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 850;
  transition:
    transform 180ms var(--ease-premium),
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 220ms ease;
}

.button.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 42px rgba(8, 29, 53, 0.18);
}

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.subtle-link {
  box-shadow: none;
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
  gap: 28px;
}

.split-hero .hero-support {
  margin-left: 0;
}

.status-card {
  padding: 24px;
}

dl {
  margin: 0;
}

.status-card div,
.price-card dl div,
.source-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.status-card div:last-child,
.price-card dl div:last-child,
.source-list div:last-child {
  border-bottom: 0;
}

dt {
  color: var(--muted);
  font-weight: 700;
}

dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
  text-align: right;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 8px 0 22px;
}

.project-hero {
  padding-bottom: 28px;
  text-align: center;
}

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

.project-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 8vw, 7rem);
}

.project-status {
  max-width: 960px;
  margin: 0 auto 24px;
  padding: 8px 28px;
}

.project-status dl {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 26px;
}

.project-status div {
  display: grid;
  gap: 6px;
  padding: 18px 0;
}

.project-status dd {
  text-align: left;
}

.project-status a {
  display: inline-block;
  max-width: 100%;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(15, 111, 236, 0.38);
}

.project-status a:hover {
  color: #0b58c3;
  border-color: rgba(15, 111, 236, 0.7);
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
}

.assistant-ops {
  padding: 26px;
}

.assistant-ops header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.assistant-ops h2,
.assistant-ops p {
  margin-bottom: 0;
}

.assistant-ops h2 {
  max-width: 620px;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1.04;
}

.live-pill {
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(19, 185, 189, 0.13);
  color: #087d89;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 850;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.ops-status {
  min-height: 138px;
  border: 1px solid rgba(37, 93, 126, 0.12);
  border-radius: 22px;
  background: rgba(247, 252, 254, 0.78);
  padding: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 32px rgba(19, 75, 119, 0.05);
}

.ops-status span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ops-status strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.65rem;
  line-height: 1;
}

.ops-status p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.ops-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(240px, 0.82fr);
  gap: 14px;
  margin-top: 16px;
}

.ops-panel {
  border: 1px solid rgba(37, 93, 126, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  padding: 18px;
}

.ops-panel h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.question-review {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid rgba(37, 93, 126, 0.1);
}

.question-review:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.question-review p {
  color: #244b69;
  font-weight: 720;
  line-height: 1.35;
}

.question-review button,
.ops-action-list button {
  border: 1px solid rgba(15, 111, 236, 0.18);
  border-radius: 999px;
  background: rgba(239, 249, 253, 0.9);
  color: var(--ink);
  padding: 10px 13px;
  font-size: 0.86rem;
  font-weight: 820;
}

.ops-action-list {
  display: grid;
  gap: 10px;
}

.ops-action-list button {
  width: 100%;
  min-height: 43px;
  text-align: left;
}

.side-stack {
  display: grid;
  gap: 16px;
}

.qr-card {
  text-align: center;
}

.qr-card a {
  color: var(--muted);
  font-weight: 720;
  white-space: nowrap;
}

.qr-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 150px;
  height: 150px;
  margin: 8px auto 22px;
  padding: 16px;
  border-radius: 24px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.qr-box span {
  margin: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--ink), #196a91);
}

.mini-actions {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.two-columns > article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
}

.source-list strong {
  color: var(--blue);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  margin: 18px 0;
}

.dashboard-grid-three {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.knowledge-card,
.phone-preview-card {
  padding: 30px;
}

.phone-preview-card {
  text-align: center;
}

.phone-preview-heading {
  margin-bottom: 18px;
}

.phone-preview-heading h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.35rem);
  line-height: 1;
}

.pipeline-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.pipeline-list p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  border: 1px solid rgba(37, 93, 126, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 13px 15px;
  color: var(--muted);
  font-weight: 720;
}

.pipeline-list strong {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-size: 0.82rem;
}

.phone-frame {
  width: min(310px, 100%);
  margin: 22px auto 0;
  border: 1px solid rgba(37, 93, 126, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(232, 247, 252, 0.76)
    ),
    #fff;
  padding: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 26px 66px rgba(15, 111, 236, 0.13);
}

.phone-top {
  width: 72px;
  height: 6px;
  margin: 2px auto 12px;
  border-radius: 999px;
  background: rgba(37, 93, 126, 0.2);
}

.phone-screen {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  border-radius: 26px;
  background: #fff;
  padding: 22px 16px 16px;
}

.phone-assistant-head {
  margin-bottom: 24px;
  text-align: center;
}

.phone-assistant-head h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1;
}

.phone-sample-questions {
  display: grid;
  gap: 9px;
}

.phone-sample-questions button {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(37, 93, 126, 0.12);
  border-radius: 16px;
  background: rgba(247, 252, 254, 0.94);
  color: #31536c;
  font-size: 0.86rem;
  font-weight: 780;
  text-align: left;
  transition:
    transform 200ms var(--ease-premium),
    border-color 200ms ease,
    box-shadow 220ms ease;
}

.phone-sample-questions button:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 111, 236, 0.2);
  box-shadow: 0 12px 28px rgba(15, 111, 236, 0.09);
}

.phone-typebox {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  text-align: left;
}

.phone-typebox span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.phone-typebox input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(37, 93, 126, 0.16);
  border-radius: 999px;
  background: rgba(247, 252, 254, 0.96);
  padding: 0 16px;
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 30px rgba(19, 75, 119, 0.08);
}

.public-assistant-main {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 34px 18px;
}

.public-phone-shell {
  width: min(440px, 100%);
  border: 1px solid rgba(37, 93, 126, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.95),
      rgba(247, 252, 254, 0.9)
    ),
    #fff;
  padding: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 28px 88px rgba(19, 75, 119, 0.13);
}

.public-assistant-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.public-assistant-header h1 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 12vw, 3.45rem);
}

.public-chips {
  margin: 18px 0;
  overflow-x: auto;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding-bottom: 4px;
}

.public-chat {
  display: grid;
  gap: 12px;
}

.public-chat .message {
  max-width: none;
  margin-bottom: 0;
}

.public-user-message {
  margin-left: 34px;
  background: rgba(15, 111, 236, 0.09);
  color: var(--ink);
}

.public-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 16px;
}

.public-input-row button {
  min-height: 52px;
  border: 1px solid rgba(15, 111, 236, 0.34);
  border-radius: 16px;
  background: rgba(232, 247, 252, 0.92);
  color: var(--ink);
  padding: 0 16px;
  font-weight: 850;
}

.public-contact {
  width: 100%;
  margin-top: 16px;
}

.metric-panel {
  display: grid;
  min-height: 176px;
  align-content: center;
  padding: 26px;
}

.metric-panel strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.metric-panel span {
  color: var(--muted);
  font-weight: 760;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.metric-grid div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.metric-grid strong {
  display: block;
  font-size: 2rem;
}

.metric-grid span {
  color: var(--muted);
  font-weight: 720;
}

.final-note {
  margin-bottom: 86px;
  padding: 30px;
}

.final-note p {
  max-width: 820px;
  margin: 0;
  font-size: 1.2rem;
  color: var(--ink);
}

.pricing-grid {
  grid-template-columns: repeat(2, 1fr);
  padding: 18px 0 38px;
}

.price-card {
  padding: 30px;
}

.price-card.featured {
  border-color: rgba(15, 111, 236, 0.22);
  background:
    linear-gradient(135deg, rgba(15, 111, 236, 0.08), rgba(98, 215, 248, 0.12)),
    #fff;
}

.price-card dd {
  font-size: 1.15rem;
}

.pricing-page {
  padding-bottom: 90px;
}

.pricing-hero {
  padding-bottom: 20px;
  text-align: center;
}

.pricing-hero h1 {
  max-width: 1160px;
  margin-bottom: 0;
  margin-right: auto;
  margin-left: auto;
}

.pricing-hero h1 span {
  display: block;
}

.pricing-section {
  padding: 48px 0;
}

.section-heading p {
  max-width: 780px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.6;
}

.pay-grid,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pay-card,
.custom-note {
  border: 1px solid rgba(37, 93, 126, 0.13);
  border-radius: 30px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.86),
      rgba(236, 247, 251, 0.66)
    ),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 80px rgba(19, 75, 119, 0.08);
  backdrop-filter: blur(18px);
}

.pay-card {
  display: grid;
  gap: 22px;
  padding: 30px;
}

.pay-card h3,
.plan-card h3,
.custom-note h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.pay-card p,
.plan-card p,
.custom-note p {
  color: var(--muted);
  line-height: 1.58;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 24px;
  color: #244b67;
  font-weight: 700;
  line-height: 1.42;
}

.clean-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  box-shadow: 0 0 0 4px rgba(19, 185, 189, 0.1);
  content: "";
}

.plan-grid {
  padding: 0;
}

.plan-card {
  display: flex;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  gap: 22px;
  padding: 38px 34px 34px;
  border-radius: 32px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(247, 251, 253, 0.8)
    ),
    #fff;
}

.plan-card .eyebrow {
  margin-bottom: 18px;
}

.plan-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 2.25vw, 2.08rem);
  letter-spacing: 0;
  white-space: nowrap;
}

.plan-card > p:not(.eyebrow) {
  min-height: 76px;
  margin-bottom: 0;
}

.plan-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  content: "";
}

.featured-plan {
  border-color: rgba(15, 111, 236, 0.22);
  background:
    linear-gradient(135deg, rgba(15, 111, 236, 0.08), rgba(19, 185, 189, 0.1)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 90px rgba(15, 111, 236, 0.12);
}

.featured-plan::before {
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--cyan));
}

.price-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.price-stack div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 116px;
  border: 1px solid rgba(37, 93, 126, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.88),
      rgba(249, 253, 255, 0.72)
    ),
    rgba(255, 255, 255, 0.78);
  padding: 18px 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.price-stack span,
.plan-detail h4 {
  display: block;
  margin-bottom: 8px;
  color: #5d7890;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-stack strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.28rem, 2vw, 1.68rem);
  line-height: 1.1;
}

.plan-detail {
  display: grid;
  gap: 10px;
}

.plan-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.pricing-button {
  min-height: 54px;
  border: 1px solid rgba(15, 111, 236, 0.2);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9),
      rgba(232, 247, 252, 0.78)
    ),
    rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 16px 34px rgba(15, 111, 236, 0.1);
}

.pricing-button:hover {
  border-color: rgba(19, 185, 189, 0.36);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(213, 244, 250, 0.86)
    ),
    rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.custom-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin: 22px 0 52px;
  padding: 34px 34px 34px 36px;
}

.custom-note > div {
  display: grid;
  gap: 10px;
  max-width: 740px;
}

.custom-note h2 {
  margin-bottom: 0;
}

.custom-note p {
  max-width: none;
  margin-bottom: 0;
}

.custom-note .pricing-button {
  flex-shrink: 0;
  min-width: 174px;
  border-color: rgba(15, 111, 236, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 38px rgba(15, 111, 236, 0.13);
}

.auth-main {
  display: grid;
  min-height: calc(100vh - 130px);
  place-items: center;
  padding: 54px 0 86px;
}

.auth-card {
  width: min(520px, 100%);
  border-color: rgba(37, 93, 126, 0.22);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(250, 254, 255, 0.9)
    ),
    rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 22px 70px rgba(19, 75, 119, 0.11),
    0 0 0 1px rgba(98, 215, 248, 0.1);
  padding: 34px;
}

.auth-card.wide {
  width: min(720px, 100%);
}

.auth-card h1 {
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  white-space: normal;
}

form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

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

label {
  display: grid;
  gap: 8px;
  color: #365a75;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  padding: 0 15px;
  outline: 0;
  transition:
    transform 180ms var(--ease-premium),
    border-color 180ms ease,
    box-shadow 220ms ease,
    background 180ms ease;
}

textarea {
  min-height: 112px;
  resize: vertical;
  padding: 14px 15px;
  line-height: 1.45;
}

select {
  appearance: none;
  cursor: pointer;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, #557088 50%),
    linear-gradient(135deg, #557088 50%, transparent 50%),
    linear-gradient(180deg, #ffffff, #fafdff);
  background-position:
    calc(100% - 22px) 23px,
    calc(100% - 16px) 23px,
    0 0;
  background-repeat: no-repeat;
  background-size:
    6px 6px,
    6px 6px,
    100% 100%;
}

form .button {
  width: 100%;
  margin-top: 8px;
}

.auth-submit {
  border: 1px solid rgba(15, 111, 236, 0.42);
  background:
    linear-gradient(180deg, rgba(44, 160, 245, 0.98), rgba(15, 111, 236, 0.96)),
    #0f6fec;
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 42px rgba(15, 111, 236, 0.22);
}

.auth-submit:hover {
  border-color: rgba(19, 185, 189, 0.5);
  background:
    linear-gradient(180deg, rgba(48, 184, 245, 0.98), rgba(13, 100, 219, 0.98)),
    #0d64db;
}

.two-field-form .button {
  grid-column: 1 / -1;
}

.full-span {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #31536c;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.45;
}

.auth-switch {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 720;
}

.auth-switch a {
  color: var(--blue);
  font-weight: 850;
}

.dashboard-main {
  padding: 48px 0 90px;
}

.dashboard-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.dashboard-hero > div {
  max-width: 760px;
}

.dashboard-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(3rem, 6vw, 5.2rem);
}

.dashboard-hero p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.55;
}

.dashboard-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.dashboard-layout {
  align-items: start;
}

.dashboard-intake-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: start;
}

.dashboard-url {
  font-size: clamp(1.1rem, 2vw, 1.35rem) !important;
  overflow-wrap: anywhere;
}

.setup-progress {
  overflow: hidden;
  height: 12px;
  margin: 28px 0 24px;
  border-radius: 999px;
  background: rgba(37, 93, 126, 0.1);
}

.setup-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.setup-checklist {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: setup;
}

.setup-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  border: 1px solid rgba(37, 93, 126, 0.1);
  border-radius: 16px;
  background: rgba(247, 252, 254, 0.8);
  padding: 9px 11px;
  color: #31536c;
  font-weight: 780;
  counter-increment: setup;
}

.setup-checklist li::before {
  display: grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 111, 236, 0.1);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  content: counter(setup);
}

.setup-checklist .is-current {
  border-color: rgba(15, 111, 236, 0.24);
  background: rgba(232, 247, 252, 0.94);
  color: var(--ink);
}

.dashboard-build-form {
  display: grid;
  gap: 24px;
  margin-top: 0;
}

.nested-form {
  margin-top: 0;
}

.intake-section {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 28px;
  border: 1px solid rgba(37, 93, 126, 0.11);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  padding: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 14px 34px rgba(19, 75, 119, 0.045);
}

.intake-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-top: 4px;
}

.intake-step span {
  display: grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.intake-step h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.intake-step p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

.intake-fields {
  display: grid;
  gap: 18px;
}

.intake-fields textarea {
  min-height: 88px;
}

.social-field-grid,
.quick-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.file-upload-field {
  border: 1px dashed rgba(15, 111, 236, 0.28);
  border-radius: 18px;
  background: rgba(239, 249, 253, 0.65);
  padding: 14px;
}

.file-upload-field input {
  min-height: auto;
  margin-top: 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.file-upload-field span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.faq-builder {
  border: 1px solid rgba(37, 93, 126, 0.12);
  border-radius: 22px;
  background: rgba(247, 252, 254, 0.72);
  padding: 18px;
}

.faq-builder-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.faq-builder h4 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 1rem;
}

.faq-builder p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.small-button {
  width: auto;
  min-height: 40px;
  margin-top: 0;
  padding: 0 14px;
  font-size: 0.86rem;
  white-space: nowrap;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-pair {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px;
  border-top: 1px solid rgba(37, 93, 126, 0.1);
  padding-top: 14px;
}

.faq-pair:first-child {
  border-top: 0;
  padding-top: 0;
}

.faq-pair textarea {
  min-height: 72px;
}

.compact-checklist {
  margin-top: 16px;
}

.compact-checklist li {
  min-height: 36px;
  border-radius: 14px;
  padding: 8px 10px;
  font-size: 0.92rem;
}

.compact-checklist li::before {
  width: 22px;
  height: 22px;
  font-size: 0.74rem;
}

.compact-qr {
  width: 118px;
  height: 118px;
  margin-bottom: 16px;
}

small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 240ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.step-card.reveal-on-scroll.is-visible:hover {
  transform: translateY(-7px);
}

.steps-grid .reveal-on-scroll:nth-child(2) {
  transition-delay: 70ms;
}

.steps-grid .reveal-on-scroll:nth-child(3) {
  transition-delay: 140ms;
}

@media (prefers-reduced-motion: no-preference) {
  .nav-links a:hover,
  .button:hover,
  .pricing-button:hover,
  .auth-submit:hover,
  .assistant-bar button:hover,
  .chips button:hover {
    transform: translateY(-2px);
  }

  .button:active,
  .pricing-button:active,
  .auth-submit:active,
  .assistant-bar button:active,
  .chips button:active {
    transform: translateY(0) scale(0.99);
  }

  .soft-card,
  .price-card,
  .plan-card,
  .custom-note,
  .auth-card,
  .project-status,
  .metric-panel,
  .price-stack div {
    transition:
      transform 260ms var(--ease-premium),
      border-color 220ms ease,
      background 220ms ease,
      box-shadow 260ms ease;
  }

  .soft-card:hover,
  .price-card:hover,
  .plan-card:hover,
  .custom-note:hover,
  .project-status:hover,
  .metric-panel:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 111, 236, 0.24);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 28px 86px rgba(15, 111, 236, 0.13);
  }

  .price-stack div:hover {
    transform: translateY(-3px);
    border-color: rgba(19, 185, 189, 0.26);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.86),
      0 16px 36px rgba(15, 111, 236, 0.1);
  }

  input:focus,
  select:focus,
  textarea:focus {
    transform: translateY(-1px);
    border-color: rgba(15, 111, 236, 0.35);
    background: #ffffff;
    box-shadow:
      0 0 0 4px rgba(98, 215, 248, 0.16),
      0 14px 28px rgba(15, 111, 236, 0.08);
  }

  .nav-cta:hover,
  .pricing-button:hover,
  .auth-submit:hover {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      0 20px 48px rgba(15, 111, 236, 0.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .steps-grid,
  .pricing-grid,
  .pay-grid,
  .plan-grid,
  .dashboard-overview,
  .project-status dl,
  .ops-grid,
  .ops-panel-grid,
  .dashboard-intake-layout,
  .intake-section,
  .social-field-grid,
  .quick-question-grid,
  .faq-pair,
  .dashboard-grid,
  .dashboard-grid-three,
  .split-hero,
  .demo-layout,
  .two-columns {
    grid-template-columns: 1fr;
  }

  .custom-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-status {
    max-width: 100%;
  }

  .project-status a,
  .qr-card a {
    font-size: 0.88rem;
  }

  .assistant-ops header,
  .question-review,
  .faq-builder-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: min(100% - 24px, 1180px);
  }

  .nav-wrap {
    padding: 12px 0;
  }

  .nav {
    border-radius: 20px;
  }

  .nav-links a {
    min-height: 36px;
    padding: 0 9px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .hero,
  .page-hero {
    padding: 54px 0 34px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .chips {
    flex-wrap: wrap;
  }

  .assistant-bar {
    grid-template-columns: auto 1fr;
    padding: 16px;
  }

  .assistant-bar button {
    grid-column: 1 / -1;
  }

  .answer-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .soft-card,
  .price-card,
  .pay-card,
  .auth-card,
  .custom-note,
  .assistant-ops,
  .two-columns > article {
    padding: 22px;
    border-radius: 24px;
  }

  .pricing-logic {
    border-radius: 22px;
    text-align: left;
  }

  .price-stack {
    grid-template-columns: 1fr;
  }

  .plan-card h3 {
    white-space: normal;
  }

  .plan-card > p:not(.eyebrow) {
    min-height: auto;
  }

  .two-field-form {
    grid-template-columns: 1fr;
  }
}
