:root {
  color-scheme: light;
  --bg: #f7f5f2;
  --bg-soft: #f1eee9;
  --surface: #fffdfb;
  --surface-muted: #f3f0ec;
  --panel: #ffffff;
  --panel-strong: #faf7f3;
  --text: #24211f;
  --muted: #6f6962;
  --muted-2: #918980;
  --accent: #d76527;
  --accent-dark: #a84616;
  --accent-soft: #f8e6d5;
  --line: #ded8d1;
  --line-strong: #24211f;
  --shadow: 0 24px 70px rgba(55, 43, 32, 0.13);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 4%, rgba(215, 101, 39, 0.14), transparent 28rem),
    linear-gradient(180deg, var(--bg) 0%, #fbfaf8 48%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(36, 33, 31, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(36, 33, 31, .04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 68%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 92px 0; position: relative; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 245, 242, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav { height: 72px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.03em; font-size: 1.12rem; }
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 22px rgba(215, 101, 39, 0.22);
}
.nav-links { display: flex; align-items: center; gap: 26px; color: var(--muted); font-weight: 650; }
.nav-links a:hover { color: var(--text); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--text); }

.hero { padding-top: 84px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 1.05fr); gap: 58px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--accent-dark); font-size: .76rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3rem, 6.8vw, 6.2rem); line-height: .94; letter-spacing: -0.08em; margin-bottom: 26px; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.02; letter-spacing: -0.06em; margin-bottom: 18px; }
h3 { font-size: 1.08rem; letter-spacing: -0.03em; margin-bottom: 10px; }
p { color: var(--muted); line-height: 1.68; }
.hero-text { font-size: 1.16rem; max-width: 620px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 14px; font-weight: 800; border: 1px solid transparent; cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, background .16s ease; }
.btn-primary { color: #fff; background: var(--accent); box-shadow: 0 16px 34px rgba(215, 101, 39, 0.2); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { color: var(--text); background: var(--surface); border-color: var(--line); }
.btn:hover { transform: translateY(-1px); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0; max-width: 620px; }
.hero-stats div { padding: 17px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 255, 255, .68); }
dt { font-weight: 900; font-size: 1.02rem; } dd { margin: 6px 0 0; color: var(--muted); font-size: .87rem; }

.hero-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.glow { position: absolute; border-radius: 50%; filter: blur(34px); opacity: .55; }
.glow-one { width: 290px; height: 290px; background: #f2c9aa; left: 8%; top: 12%; }
.glow-two { width: 230px; height: 230px; background: #e9e3db; right: 0; bottom: 16%; }
.app-card { position: relative; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); overflow: hidden; }
.main-card { width: min(610px, 100%); transform: rotate(.7deg); }
.window-bar { height: 40px; display: flex; align-items: center; gap: 8px; padding: 0 18px; border-bottom: 1px solid var(--line); background: #fff; }
.window-bar span { width: 10px; height: 10px; border-radius: 50%; background: #e25d43; }
.window-bar span:nth-child(2) { background: #e8ae3e; }
.window-bar span:nth-child(3) { background: #58b66a; }
.floating-mic { position: absolute; right: 8%; bottom: 34px; width: 190px; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: 0 20px 45px rgba(55,43,32,.16); transform: rotate(-3deg); background: #fff; }

.trusted-strip { padding: 18px 0; border-block: 1px solid var(--line); background: rgba(255,255,255,.62); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; color: var(--muted); font-weight: 750; text-align: center; }

.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading p { font-size: 1.06rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 28px; border-radius: 20px; border: 1px solid var(--line); background: rgba(255, 255, 255, .78); box-shadow: 0 12px 35px rgba(55,43,32,.06); }
.feature-card .icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 14px; background: var(--accent-soft); color: var(--accent-dark); font-size: 1.45rem; }
.feature-card p { margin-bottom: 0; }

.split-section { background: linear-gradient(180deg, transparent, rgba(241, 238, 233, .74), transparent); }
.split-grid { display: grid; grid-template-columns: .8fr 1fr; gap: 56px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; color: var(--muted); }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -2px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; background: var(--accent-soft); color: var(--accent-dark); font-weight: 900; }
.settings-card { transform: rotate(-.7deg); }

.workflow { background: radial-gradient(circle at 50% 20%, rgba(215, 101, 39, 0.09), transparent 34rem); }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.timeline div { padding: 24px; border-radius: 20px; border: 1px solid var(--line); background: rgba(255,255,255,.72); }
.timeline strong { color: var(--accent-dark); font-size: .85rem; letter-spacing: .12em; }
.timeline p { margin-bottom: 0; font-size: .94rem; }

.cta { padding-top: 40px; }
.cta-card { text-align: center; padding: clamp(38px, 7vw, 76px); border: 1px solid var(--line-strong); border-radius: 24px; background: linear-gradient(135deg, #fff7ef, #ffffff); box-shadow: var(--shadow); }
.cta-card p { max-width: 650px; margin-inline: auto; }
.cta-actions { justify-content: center; margin-bottom: 0; }

.site-footer { padding: 34px 0; border-top: 1px solid var(--line); background: rgba(255,255,255,.52); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-grid p { margin: 0; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links { position: absolute; inset: 72px 20px auto; display: none; flex-direction: column; align-items: stretch; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 253, 251, .98); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .hero-grid, .split-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline, .strip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 68px 0; }
  h1 { font-size: 3.25rem; }
  .hero-stats, .feature-grid, .timeline, .strip-grid { grid-template-columns: 1fr; }
  .floating-mic { width: 138px; right: 2%; bottom: -16px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}
