:root {
  color-scheme: dark;
  --bg: #06070a;
  --bg-elevated: rgba(14, 18, 24, 0.9);
  --bg-soft: rgba(18, 23, 30, 0.78);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #f4efe6;
  --muted: #aaa39a;
  --muted-strong: #cac2b6;
  --accent: #e8a15b;
  --accent-soft: rgba(232, 161, 91, 0.16);
  --success: #8dd3a8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(232, 161, 91, 0.18), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(104, 138, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #090b10 0%, #050608 100%);
  min-height: 100vh;
}

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

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

.shell {
  width: min(var(--content-width), calc(100vw - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(6, 7, 10, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner,
.site-footer__inner {
  width: min(var(--content-width), calc(100vw - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ffd9a5);
  box-shadow: 0 0 28px rgba(232, 161, 91, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.nav a:hover,
.footer-links a:hover,
.inline-link:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--accent), #f0bb80);
  color: #15110d;
}

.button--secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-strong);
  color: var(--text);
}

.hero {
  padding: 84px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.section-card,
.legal-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(17, 21, 27, 0.96), rgba(10, 12, 17, 0.92));
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(232, 161, 91, 0.2);
  color: #ffcb94;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

h1 {
  margin-top: 18px;
  font-family: "Merriweather", "Iowan Old Style", Georgia, serif;
  font-size: clamp(2.7rem, 6.8vw, 5.35rem);
  font-weight: 600;
  line-height: 1.02;
}

h2 {
  font-family: "Merriweather", "Iowan Old Style", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.08;
}

h3 {
  font-size: 1.32rem;
  font-weight: 600;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 740px;
  margin: 22px 0 0;
  font-size: 1.02rem;
  color: var(--muted-strong);
}

.hero-actions,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.metric {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.42rem;
  color: var(--text);
}

.metric span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  padding: 24px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
}

.hero-panel__body {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 16px;
  height: 100%;
}

.signal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.conversation {
  display: grid;
  gap: 12px;
}

.chat-photo {
  position: relative;
  overflow: hidden;
  min-height: 228px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #10151b;
}

.chat-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 19, 0.05), rgba(10, 14, 19, 0.42)),
    linear-gradient(0deg, rgba(6, 7, 10, 0.5), transparent 38%);
  pointer-events: none;
}

.chat-photo__image {
  width: 100%;
  height: 100%;
  min-height: 228px;
  object-fit: cover;
}

.chat-photo__label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(7, 10, 14, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
}

.bubble {
  max-width: 90%;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 0.98rem;
  line-height: 1.5;
}

.bubble--inbound {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bubble--outbound {
  margin-left: auto;
  background: linear-gradient(135deg, rgba(232, 161, 91, 0.2), rgba(255, 190, 126, 0.12));
  border: 1px solid rgba(232, 161, 91, 0.26);
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(7, 10, 14, 0.92);
  border: 1px solid rgba(141, 211, 168, 0.18);
}

.quote-card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.quote-card__price strong {
  font-size: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(141, 211, 168, 0.1);
  color: var(--success);
  font-size: 0.84rem;
  width: fit-content;
}

.section {
  padding: 26px 0;
}

.section-card,
.legal-card {
  padding: 34px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 26px;
}

.grid-three,
.grid-two {
  display: grid;
  gap: 18px;
}

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

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

.pricing-intro {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.pricing-intro p {
  margin: 0;
  color: var(--muted-strong);
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(24, 29, 37, 0.95), rgba(14, 18, 24, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.pricing-card--featured {
  position: relative;
  transform: translateY(-8px);
  background:
    radial-gradient(circle at top, rgba(232, 161, 91, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(27, 22, 18, 0.96), rgba(17, 20, 26, 0.94));
  border-color: rgba(232, 161, 91, 0.34);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(232, 161, 91, 0.08);
}

.pricing-card__badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(232, 161, 91, 0.18);
  color: #ffcb94;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-card__header {
  display: grid;
  gap: 8px;
}

.pricing-card__header p,
.pricing-card__usage {
  margin: 0;
}

.pricing-card__name {
  font-size: 1.46rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-card__price strong {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  line-height: 1;
  color: var(--text);
}

.pricing-card__price span {
  color: var(--muted-strong);
  font-size: 1.02rem;
  font-weight: 600;
}

.pricing-card__usage {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.pricing-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted-strong);
  line-height: 1.55;
}

.pricing-list li::marker {
  color: #ffcb94;
}

.pricing-card .button {
  margin-top: auto;
  width: 100%;
}

.feature,
.step,
.faq,
.outcome {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature p,
.step p,
.faq p,
.outcome p {
  margin-bottom: 0;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(232, 161, 91, 0.12);
  border: 1px solid rgba(232, 161, 91, 0.24);
  color: #ffcb94;
  font-weight: 700;
}

.highlight {
  color: var(--text);
}

.site-footer {
  padding: 30px 0 52px;
}

.site-footer__inner {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
}

.legal-wrap {
  padding: 64px 0;
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
}

.legal-card h1 {
  font-size: clamp(2.8rem, 7vw, 4.8rem);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.legal-card p,
.legal-card li {
  color: var(--muted-strong);
}

.legal-card ul {
  padding-left: 18px;
  line-height: 1.7;
}

.inline-link {
  color: #ffcb94;
}

@media (max-width: 920px) {
  .hero-grid,
  .grid-three,
  .grid-two,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .site-header__inner,
  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 54px;
  }

  .hero-copy,
  .hero-panel,
  .section-card,
  .legal-card {
    padding: 24px;
  }

  h1 {
    line-height: 1.02;
  }

  .nav {
    flex-wrap: wrap;
  }
}
