:root {
  --primary: #041632;
  --primary-2: #1b2b48;
  --accent: #fd761a;
  --accent-soft: #ffdbca;
  --bg: #f7f9fb;
  --surface: #ffffff;
  --surface-soft: #f2f4f6;
  --line: #d9dce1;
  --text: #191c1e;
  --muted: #555a61;
  --shadow: 0 24px 70px rgba(4, 22, 50, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button {
  font: inherit;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 550, "GRAD" 0, "opsz" 24;
  display: inline-block;
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 32px;
  color: white;
  background: rgba(4, 22, 50, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand,
.header-cta,
.primary-link,
.secondary-link,
.hero-actions,
.proof-row,
.widget-header,
.lead-top,
.alert-preview,
.demo-strip,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
}

.brand-mark,
.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #341100;
  background: var(--accent);
}

.brand-logo {
  overflow: hidden;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.brand-logo img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
}

.brand small {
  margin-top: 3px;
  color: #d7e2ff;
  font-size: 13px;
}

nav {
  display: flex;
  gap: 24px;
  color: #d7e2ff;
  font-size: 14px;
  font-weight: 750;
}

nav a:hover {
  color: white;
}

.header-cta {
  min-height: 42px;
  padding: 0 16px;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  color: #341100;
  background: var(--accent);
  font-weight: 900;
}

main {
  overflow: hidden;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: 56px 32px 40px;
  background:
    linear-gradient(90deg, rgba(247, 249, 251, 0.96) 0%, rgba(247, 249, 251, 0.82) 46%, rgba(4, 22, 50, 0.18) 100%),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero-copy {
  max-width: 640px;
}

.hero-lockup {
  width: min(340px, 86vw);
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  mix-blend-mode: multiply;
}

.eyebrow {
  margin: 0 0 10px;
  color: #9d4300;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  color: var(--primary);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-subtitle {
  max-width: 590px;
  margin-bottom: 28px;
  color: #30343a;
  font-size: 20px;
  line-height: 1.5;
}

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

.primary-link,
.secondary-link {
  min-height: 48px;
  padding: 0 18px;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-link {
  color: #341100;
  background: var(--accent);
  box-shadow: 0 18px 36px rgba(253, 118, 26, 0.24);
}

.secondary-link {
  color: var(--primary);
  background: white;
  border: 1px solid var(--line);
}

.primary-link:hover,
.secondary-link:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.proof-row {
  gap: 10px;
  flex-wrap: wrap;
}

.proof-row div {
  min-width: 128px;
  padding: 12px 14px;
  border: 1px solid rgba(4, 22, 50, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.proof-row strong,
.proof-row span {
  display: block;
}

.proof-row strong {
  color: var(--primary);
  font-size: 22px;
}

.proof-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.hero-product {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: end;
}

.widget-preview,
.lead-preview {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.widget-preview {
  padding: 18px;
  background: white;
}

.widget-header {
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.widget-header > .material-symbols-outlined,
.widget-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #341100;
  background: var(--accent);
}

.widget-logo {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
}

.widget-logo img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}

.widget-header strong,
.widget-header small {
  display: block;
}

.widget-header strong {
  color: var(--primary);
}

.widget-header small {
  color: var(--muted);
  font-size: 12px;
}

.chat-message {
  width: min(100%, 430px);
  padding: 14px 15px;
  margin-bottom: 14px;
  color: white;
  background: var(--primary);
  border-radius: 8px;
  border-bottom-left-radius: 3px;
  line-height: 1.45;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.chip-row span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
}

.chip-row .active {
  color: #341100;
  background: var(--accent);
  border-color: #9d4300;
}

.mini-field {
  display: grid;
  gap: 6px;
  padding: 13px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--surface-soft);
}

.mini-field span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-field strong {
  color: var(--primary);
  font-size: 14px;
}

.widget-preview button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  color: #341100;
  background: var(--accent);
  font-weight: 900;
}

.lead-preview {
  padding: 18px;
  color: white;
  background: rgba(4, 22, 50, 0.94);
}

.lead-top {
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
  color: #d7e2ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-top span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #341100;
  background: var(--accent);
}

.lead-preview h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.lead-preview p {
  color: #d7e2ff;
  line-height: 1.5;
}

.alert-preview {
  gap: 8px;
  margin-top: 18px;
  padding: 12px;
  border-radius: 8px;
  color: #341100;
  background: var(--accent-soft);
  font-weight: 850;
}

.problem-band,
.feature-grid,
.demo-strip,
.pricing-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.problem-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
  padding: 54px 0;
}

.problem-band h2,
.demo-strip h2,
.pricing-copy h2 {
  margin-bottom: 0;
  color: var(--primary);
  font-size: 34px;
  line-height: 1.1;
}

.problem-band > p,
.demo-strip p,
.pricing-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: 54px;
}

.feature-grid article {
  min-height: 230px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(4, 22, 50, 0.06);
}

.feature-grid .material-symbols-outlined {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #341100;
  background: var(--accent);
}

.feature-grid h3 {
  margin-bottom: 9px;
  color: var(--primary);
  font-size: 19px;
}

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

.demo-strip {
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    url("https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=1400&q=80") center / cover;
  box-shadow: var(--shadow);
}

.demo-strip p {
  max-width: 680px;
  margin-top: 8px;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 32px;
  align-items: center;
  padding: 72px 0;
}

.pricing-card {
  padding: 24px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: #341100;
  background: var(--accent-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 18px 0 16px;
  color: var(--primary);
  font-size: 24px;
}

.price,
.monthly {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price strong {
  color: var(--primary);
  font-size: 54px;
  line-height: 1;
}

.monthly strong {
  color: var(--primary);
  font-size: 24px;
}

.price span,
.monthly span {
  color: var(--muted);
  font-weight: 700;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.full-width {
  width: 100%;
}

footer {
  justify-content: space-between;
  gap: 18px;
  padding: 22px 32px;
  color: #d7e2ff;
  background: var(--primary);
  font-size: 14px;
}

footer nav {
  display: flex;
  gap: 14px;
  color: #d7e2ff;
}

footer nav a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1060px) {
  .hero,
  .problem-band,
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding: 12px 16px;
  }

  nav {
    display: none;
  }

  .header-cta {
    min-width: 44px;
    padding: 0 12px;
  }

  .header-cta .material-symbols-outlined {
    display: none;
  }

  .hero {
    padding: 34px 16px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .proof-row div {
    flex: 1 1 140px;
  }

  .problem-band,
  .feature-grid,
  .demo-strip,
  .pricing-section {
    width: calc(100% - 32px);
  }

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

  .demo-strip {
    display: grid;
  }

  footer {
    display: grid;
    padding: 20px 16px;
  }
}
