:root {
  color-scheme: light;
  --navy: #1a2233;
  --cream: #f7f2e9;
  --gold: #d4af37;
  --muted: #6b7280;
  --ink: #101621;
  --surface: #fffaf1;
  --outline: #1a2233;
}

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

body {
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at 15% 20%, #fff6e4 0%, #f7f2e9 50%, #f0e7db 100%);
  color: var(--navy);
  line-height: 1.6;
}

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

.page {
  min-height: 100vh;
  padding: 32px 6vw 64px;
  position: relative;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  font-size: 18px;
}

.brand-tag {
  color: var(--muted);
  font-size: 13px;
}

.header-actions {
  display: flex;
  gap: 12px;
}

.cta,
.ghost {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.ghost {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.cta:hover,
.ghost:hover {
  transform: translateY(-2px);
}

.hero {
  margin-top: 64px;
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  position: relative;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.lead {
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 25px 60px rgba(16, 22, 33, 0.15);
  position: relative;
  z-index: 2;
}

.card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-weight: 600;
}

.chip {
  background: rgba(212, 175, 55, 0.2);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.card-body {
  display: grid;
  gap: 12px;
}

.chat-row {
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 14px;
}

.chat-row.user {
  background: var(--gold);
  color: var(--navy);
  margin-left: auto;
  width: fit-content;
  max-width: 90%;
}

.chat-row.bot {
  background: var(--navy);
  color: var(--cream);
  width: fit-content;
  max-width: 90%;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.mini-grid .label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mini-grid .value {
  font-weight: 600;
}

.halo {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 70% 40%, rgba(212, 175, 55, 0.25), transparent 60%);
  z-index: 0;
}

.features,
.process,
.contact {
  margin-top: 88px;
}

.section-title {
  max-width: 640px;
  margin-bottom: 32px;
}

.section-title h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  margin-bottom: 12px;
}

.section-title p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-grid article {
  border: 1px solid rgba(26, 34, 51, 0.15);
  background: #fff;
  padding: 20px;
  border-radius: 18px;
}

.feature-grid h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.process-steps {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
  background: var(--navy);
  color: var(--cream);
  padding: 20px;
  border-radius: 20px;
}

.step-number {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--gold);
}

.contact-card {
  background: var(--navy);
  color: var(--cream);
  padding: 32px;
  border-radius: 26px;
  display: grid;
  gap: 16px;
}

.contact-card a {
  color: var(--gold);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-grid .label {
  color: rgba(247, 242, 233, 0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

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

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