@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --font-display: "Instrument Serif", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: Manrope, Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --bg: #f7f2ea;
  --bg-soft: #efe6d7;
  --surface: #fffaf2;
  --surface-strong: #fffefd;
  --text: #211a16;
  --muted: #6e6259;
  --line: #ded0bd;
  --brand: #c96442;
  --brand-strong: #9c3f24;
  --brand-soft: #f0c2a3;
  --ink: #31231c;
  --green: #4d7c59;
  --blue: #496f85;
  --shadow: 0 24px 70px rgba(48, 35, 28, 0.16);
  --radius: 8px;
  --max: 1160px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #161311;
  --bg-soft: #211b17;
  --surface: #241d19;
  --surface-strong: #2f261f;
  --text: #f5eee5;
  --muted: #c9b9aa;
  --line: #4a3b32;
  --brand: #df7f55;
  --brand-strong: #ffad7e;
  --brand-soft: #6d3b2a;
  --ink: #fff7eb;
  --green: #91bb8d;
  --blue: #91b7c8;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 5%, rgba(201, 100, 66, 0.16), transparent 31rem),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px;
  border: 1px solid color-mix(in srgb, var(--line), transparent 18%);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface), transparent 12%);
  box-shadow: 0 12px 36px rgba(48, 35, 28, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.nav-links,
.hero-actions,
.site-footer nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.brand .brand-ai {
  margin-inline-start: 0.12em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-soft);
}

.nav-links {
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--bg-soft), transparent 24%);
}

.nav-links a {
  padding: 8px 13px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--surface);
  color: var(--text);
}

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.theme-toggle,
.button {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.theme-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 68px;
  padding: 3px;
  background: var(--bg-soft);
  border-color: var(--line);
  color: var(--muted);
}

.theme-toggle span {
  display: grid;
  place-items: center;
  border-radius: 6px;
}

[data-theme="light"] .theme-toggle .sun,
[data-theme="dark"] .theme-toggle .moon {
  background: var(--surface-strong);
  color: var(--brand-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 10px 22px rgba(156, 63, 36, 0.17);
}

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

.button.small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.92rem;
}

.button.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
  box-shadow: none;
}

main {
  overflow: hidden;
}

.hero,
.section,
.feature-grid,
.workflow,
.cta-panel,
.page-hero,
.product-showcase,
.pricing-grid,
.faq,
.contact-layout {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 1fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: 58px 0 38px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 5.65rem;
}

h2 {
  margin-bottom: 16px;
  font-size: 4.05rem;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.16;
}

.hero-subtitle {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: .25rem;
  margin-bottom: .5rem;
}

.hero-text,
.page-hero p,
.contact-layout > div > p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.18rem;
  font-weight: 500;
}

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

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

.hero-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface), transparent 18%);
}

.hero-stats dt {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 0.94;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 2% 6% 4%;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--brand-soft), transparent 45%), transparent 48%),
    var(--surface);
  box-shadow: var(--shadow);
}

.avatar-switch {
  position: relative;
  width: min(92%, 520px);
  aspect-ratio: 1;
}

.avatar-switch img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1.2s ease;
  filter: drop-shadow(0 26px 34px rgba(33, 26, 22, 0.18));
}

.avatar-switch img.active {
  opacity: 1;
}

.call-card {
  position: absolute;
  z-index: 2;
  width: min(260px, 56vw);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface-strong), transparent 7%);
  box-shadow: var(--shadow);
}

.call-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.call-card strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.call-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.active-call {
  top: 82px;
  left: -36px;
}

.calendar-card {
  right: -36px;
  bottom: 72px;
}

.status-dot {
  display: inline-block !important;
  width: 9px;
  height: 9px;
  margin: 0 7px 0 0 !important;
  border-radius: 50%;
  background: var(--green);
}

.trusted-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 88px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.trusted-strip span {
  padding: 18px 10px;
  background: color-mix(in srgb, var(--surface), transparent 8%);
  color: var(--muted);
  text-align: center;
  font-weight: 750;
}

.section {
  padding: 80px 0;
}

.two-col,
.split-band {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 52px;
  align-items: start;
}

.rich-copy p {
  color: var(--muted);
  font-size: 1.18rem;
}

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

.feature-grid.compact {
  padding-bottom: 0;
}

.feature-card {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface), transparent 10%);
}

.feature-card p,
.step p,
.capability-list p,
.integration-grid p,
.price-card p,
.faq p,
.demo-card p {
  color: var(--muted);
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--brand-strong);
  font-weight: 850;
}

.workflow {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 52px;
  margin-bottom: 44px;
  padding: 44px;
  border-radius: var(--radius);
  background: var(--text);
  color: var(--bg);
}

.workflow h2,
.workflow .eyebrow {
  color: var(--bg);
}

.workflow-copy p:not(.eyebrow),
.step p {
  color: color-mix(in srgb, var(--bg), transparent 24%);
}

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

.step {
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--bg), transparent 72%);
  border-radius: var(--radius);
}

.step span {
  color: var(--brand-strong);
  font-weight: 850;
}

.step strong {
  display: block;
  margin: 8px 0;
  color: var(--bg);
  font-size: 1.1rem;
}

.split-band {
  align-items: center;
  margin-bottom: 62px;
}

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

.industry-list a {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-weight: 760;
}

.cta-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 72px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.cta-panel img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
}

.cta-panel h2 {
  margin-bottom: 0;
  font-size: 2.95rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  max-width: 410px;
  margin: 12px 0 0;
}

.footer-brand {
  color: var(--text);
}

.site-footer nav {
  gap: 20px;
  align-self: start;
  font-weight: 720;
}

.footer-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0 28px;
  border-top: 1px solid var(--line);
  font-size: .8rem;
  color: var(--muted);
}

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

.footer-bottom a {
  color: var(--muted);
  text-decoration: underline;
}

.hear-voice-btn {
  margin-top: 24px;
}

.share-strip {
  display: flex;
  align-items: center;
  gap: 4px;
}

.share-strip span {
  font-size: .75rem;
  font-weight: 600;
  margin-right: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.share-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 5px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  transition: color .15s;
}

.share-btn:hover {
  color: var(--accent);
}

.page-hero {
  padding: 52px 0 48px;
}

.page-hero h1 {
  font-size: 5.35rem;
}

.product-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: stretch;
  padding-bottom: 90px;
}

.phone-panel {
  display: grid;
  align-content: space-between;
  min-height: 620px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #14100e;
  color: #f8efe2;
  box-shadow: var(--shadow);
}

.screen-top,
.screen-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.screen-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.screen-top small,
.screen-bottom {
  color: #d7c5b3;
}

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

.transcript p {
  margin: 0;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #f8efe2;
}

.transcript b {
  display: block;
  margin-bottom: 6px;
  color: #ffad7e;
}

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

.capability-list article,
.integration-grid div,
.price-card,
.faq details,
.demo-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface), transparent 8%);
}

.capability-list article {
  padding: 28px;
}

.capability-list span {
  color: var(--brand-strong);
  font-weight: 850;
}

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

.integration-grid div {
  min-height: 150px;
  padding: 22px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 82px;
}

.price-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 28px;
}

.price-card.featured {
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--brand-soft), transparent 44%), transparent),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.plan {
  color: var(--brand-strong) !important;
  font-weight: 850;
  text-transform: uppercase;
}

.price-card h2 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1;
}

.price-card h2 span {
  color: var(--muted);
  font-size: 1rem;
}

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

.price-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.faq {
  max-width: 860px;
  padding-bottom: 86px;
}

.faq details {
  margin-top: 12px;
  padding: 20px;
}

.faq summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 780;
}

.faq p {
  margin: 12px 0 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: start;
  min-height: calc(100vh - 210px);
  padding: 94px 0 82px;
}

.contact-layout h1 {
  font-size: 5.2rem;
}

.demo-card {
  display: flex;
  gap: 16px;
  align-items: center;
  max-width: 520px;
  margin-top: 32px;
  padding: 18px;
}

.demo-card img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.lead-form.submitted {
  outline: 3px solid color-mix(in srgb, var(--green), transparent 64%);
}

.lead-form button:disabled {
  cursor: default;
  opacity: 0.82;
}

@media (max-width: 930px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: center;
    order: 3;
  }

  .hero,
  .two-col,
  .workflow,
  .split-band,
  .product-showcase,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  h1,
  .page-hero h1,
  .contact-layout h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 3.25rem;
  }

  .cta-panel h2 {
    font-size: 2.45rem;
  }

  .hero-visual {
    min-height: 560px;
  }

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

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 20px, var(--max));
    margin-top: 10px;
  }

  .header-actions .button {
    display: none;
  }

  .nav-links {
    overflow-x: auto;
    justify-content: stretch;
  }

  .nav-links a {
    flex: 1;
    text-align: center;
  }

  .hero,
  .section,
  .feature-grid,
  .workflow,
  .cta-panel,
  .page-hero,
  .product-showcase,
  .pricing-grid,
  .faq,
  .contact-layout,
  .trusted-strip,
  .site-footer {
    width: min(100% - 22px, var(--max));
  }

  h1,
  .page-hero h1,
  .contact-layout h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-text,
  .page-hero p,
  .contact-layout > div > p {
    font-size: 1.08rem;
  }

  .cta-panel h2 {
    font-size: 2.1rem;
  }

  .hero-stats,
  .trusted-strip,
  .feature-grid,
  .pricing-grid,
  .integration-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-visual::before {
    inset: 8% 0 8%;
  }

  .active-call {
    top: 28px;
    left: 0;
  }

  .calendar-card {
    right: 0;
    bottom: 18px;
  }

  .call-card {
    width: min(250px, 76vw);
  }

  .workflow {
    padding: 26px;
  }

  .phone-panel {
    min-height: 560px;
    border-radius: 22px;
  }

  .site-footer {
    display: grid;
  }
}
