@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;450;500;550;600;650;700&family=Bricolage+Grotesque:opsz,wght@12..96,500..800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --ink: #21152e;
  --muted: #716a7b;
  --purple: #6e3482;
  --deep: #31154e;
  --line: #eae5ef;
  --soft: #f8f6fb;
  --ok: #2f7a5e;
  --ok-soft: #e5f4ed;
  --warn: #a06a1e;
  --warn-soft: #fff0e3;
  --alert: #b1443f;
  --alert-soft: #fbe7e6;
  --info: #3d6fae;
  --info-soft: #e8f0fb;
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  margin: 0;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; height: auto; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid #a77be7;
  outline-offset: 5px;
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
  font-variant-numeric: tabular-nums;
}

.container { width: min(1240px, calc(100% - 96px)); margin: auto; }

/* -------------------------------------------------- reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger.is-visible > * { transition-delay: calc(var(--i, 0) * 70ms); }

/* -------------------------------------------------------------- header */
.header {
  height: 100px;
  border-bottom: 1px solid #efebf4;
  background: #ffffffee;
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav { height: 100%; display: flex; align-items: center; gap: 40px; }
.brand { display: flex; align-items: center; }
.nav nav { display: flex; margin: auto; gap: 34px; font-size: 14px; font-weight: 550; }
.nav nav a:hover, .text-link:hover, .footer a:hover { color: var(--purple); }
.login { border: 1px solid #dfd8e7; border-radius: 9px; padding: 10px 20px; font-size: 14px; font-weight: 600; }
.login span { margin-left: 17px; }
.menu { display: none; }
.skip { position: fixed; top: -100px; left: 20px; background: var(--ink); color: white; padding: 12px; z-index: 99; }
.skip:focus { top: 10px; }

/* ---------------------------------------------------------------- hero */
.hero {
  padding: 86px 0 72px;
  overflow: hidden;
  background: radial-gradient(ellipse at 85% 45%, #eee5ff 0, transparent 47%), linear-gradient(#fdfcfe, #faf8fd);
}
.hero-grid { display: grid; grid-template-columns: 44% 56%; align-items: center; }
.eyebrow { font-size: 11px; letter-spacing: 1.8px; font-weight: 750; color: var(--purple); display: block; line-height: 1.7; }
.hero .eyebrow { display: flex; gap: 9px; align-items: center; letter-spacing: 1.3px; }
.small-symbol { font-size: 21px; line-height: 1; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-family: 'Bricolage Grotesque', sans-serif; }
h1 { font-size: clamp(46px, 4.5vw, 66px); line-height: 1.08; letter-spacing: -3.1px; font-weight: 750; margin: 25px 0; }
h1 > span { color: var(--purple); }
.hero-copy > p { max-width: 395px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 27px;
  border-radius: 9px; font-size: 14px; font-weight: 650; padding: 15px 20px;
  transition: transform .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 8px 25px #6e34822a; }
.button.primary { background: var(--purple); color: white; box-shadow: 0 5px 15px #6e34821a; }
.button span { font-size: 19px; }
.text-link { font-size: 14px; font-weight: 600; display: inline-flex; gap: 12px; align-items: center; }
.hero-note { font-size: 12px; color: #82778c; display: flex; align-items: center; gap: 10px; margin-top: 29px; }
.note-line { width: 24px; height: 1px; background: #bb9fdb; }

/* --------------------------------------------------------- product mock */
.product-stage { position: relative; margin-left: 10px; margin-right: -55px; padding: 28px 0 45px; }
.app-window {
  background: #fff; border: 1px solid #e9e0f3; border-radius: 13px;
  box-shadow: 0 30px 70px -25px #5f397647, 0 0 0 7px #ffffff77;
  transform: perspective(1500px) rotateY(-7deg) rotateX(3deg) rotateZ(1deg);
  overflow: hidden;
}
.app-bar { height: 37px; background: #fcfbfe; border-bottom: 1px solid #ede8f3; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; font-size: 10px; color: #8a7e95; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { height: 6px; width: 6px; border-radius: 100%; background: #dacde4; }
.window-dots i:first-child { background: #b298ce; }
.app-body { display: flex; min-height: 397px; }
.app-sidebar { width: 132px; flex-shrink: 0; border-right: 1px solid #ece7f1; padding: 23px 12px 12px; background: #fdfcfe; display: flex; flex-direction: column; }
.app-sidebar > img { margin-bottom: 24px; }
.sidebar-item { font-size: 13px; color: #8b7c99; display: flex; gap: 10px; padding: 8px 10px; align-items: center; border-radius: 5px; }
.sidebar-item span { font-size: 10px; }
.sidebar-item.selected { background: #efe7f9; color: var(--purple); }
.sidebar-bottom { display: flex; gap: 8px; align-items: center; margin-top: auto; padding-top: 20px; font-size: 9px; }
.sidebar-bottom > b { background: #e8dcf6; border-radius: 50%; width: 25px; height: 25px; display: grid; place-items: center; font-size: 8px; }
.sidebar-bottom small { font-size: 8px; display: block; color: var(--muted); }
.app-content { padding: 24px 20px 17px; min-width: 0; flex: 1; }
.dashboard-heading { display: flex; justify-content: space-between; gap: 6px; align-items: center; }
.dashboard-heading small { font-size: 7px; letter-spacing: .9px; color: #95899e; }
.dashboard-heading h2 { font-size: 19px; letter-spacing: -.5px; margin: 5px 0 2px; }
.dashboard-heading h2 span { color: #a783d0; margin-left: 6px; }
.dashboard-heading p { font-size: 8px; color: var(--muted); }
.new-project { background: var(--purple); color: #fff; border-radius: 5px; padding: 7px; font-size: 8px; white-space: nowrap; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 21px 0; }
.stat-row > div { border: 1px solid #ece6f2; padding: 11px 9px; border-radius: 7px; }
.stat-row span { display: block; font-size: 8px; color: var(--muted); }
.stat-row strong { display: block; font-size: 19px; margin: 3px 0; letter-spacing: -.5px; }
.stat-row small { font-size: 6.5px; color: #928399; display: block; }
.stat-row .green { color: #5a9384; }
.app-content h3 { font-size: 11px; font-weight: 700; }
.count { background: #f0e7fa; color: var(--purple); font-size: 8px; margin-left: 5px; border-radius: 4px; padding: 2px 5px; }
.attention { display: flex; align-items: center; gap: 8px; padding: 10px 0; border-bottom: 1px solid #f2eef6; }
.attention-icon { width: 27px; height: 27px; border-radius: 6px; display: grid; place-items: center; font-size: 13px; }
.attention > div { flex: 1; }
.attention b, .project-row b { font-size: 8px; display: block; }
.attention small, .project-row small { display: block; color: var(--muted); font-size: 7px; }
.pill { font-size: 6.5px; padding: 3px 5px; border-radius: 4px; white-space: nowrap; }
.orange, .peach { background: var(--warn-soft); color: var(--warn); }
.purple, .lilac { background: #efe7fb; color: #8753bf; }
.teal, .mint { background: var(--ok-soft); color: var(--ok); }
.rose, .blush { background: var(--alert-soft); color: var(--alert); }
.sky, .cyan { background: var(--info-soft); color: var(--info); }
.recent-heading { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.recent-heading > span { color: #9175ab; font-size: 7px; }
.project-row { display: flex; align-items: center; gap: 9px; margin-top: 10px; }
.project-art { height: 29px; width: 29px; border-radius: 7px; background: #eadcf4; color: #6e3992; font-family: serif; font-size: 20px; display: grid; place-items: center; }
.progress { height: 4px; border-radius: 4px; background: #f0eaf6; flex: 1; max-width: 80px; margin-left: auto; overflow: hidden; }
.progress i { display: block; height: 100%; width: 75%; background: #9c71cc; }
.floating-note { position: absolute; bottom: 12px; left: 29px; display: flex; align-items: center; gap: 12px; padding: 14px 22px; background: white; border: 1px solid #e8e0f0; box-shadow: 0 12px 30px #44225d16; border-radius: 10px; }
.floating-note > span { height: 33px; width: 33px; border-radius: 50%; background: #e6f4ec; color: #5a927b; display: grid; place-items: center; }
.floating-note b { font-size: 11px; display: block; }
.floating-note small { font-size: 10px; color: var(--muted); display: block; }
.demo-label { position: absolute; right: 25px; bottom: -12px; font-size: 7px; letter-spacing: 1px; color: #9686a3; }

/* ------------------------------------------------------------- audience */
.audience { border-block: 1px solid var(--line); padding: 30px 0; }
.audience > .container { display: flex; align-items: center; gap: 50px; }
.audience p { font-size: 12px; line-height: 1.7; color: #837a8b; border-right: 1px solid var(--line); padding-right: 35px; flex-shrink: 0; }
.audience b { font-weight: 550; color: #5b5067; }
.audience .container > div { display: flex; justify-content: space-between; align-items: center; flex: 1; gap: 20px; font-size: 15px; font-weight: 600; color: #776880; }
.audience i { color: #c0a7d9; font-style: normal; font-size: 19px; }

/* -------------------------------------------------------------- sections */
.section { padding-top: 100px; padding-bottom: 100px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 42px; }
h2 { font-size: 41px; line-height: 1.2; letter-spacing: -1.7px; font-weight: 650; }
.section-heading h2, .center-heading h2, .ai-copy h2, .faq-section h2 { margin-top: 15px; }
.section-heading > p { width: 335px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.badge-new {
  display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700;
  letter-spacing: .8px; color: var(--purple); background: #efe3fb; border-radius: 20px;
  padding: 4px 10px 4px 8px; margin-bottom: 14px;
}
.badge-new::before { content: '✳'; font-size: 11px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-grid article { border: 1px solid var(--line); border-radius: var(--radius); padding: 29px 29px 25px; background: linear-gradient(135deg, #fff, #fcfbfe); transition: transform .25s ease, box-shadow .25s ease; }
.feature-grid article:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -28px #52347c66; }
.feature-icon { width: 43px; height: 43px; border-radius: 11px; display: grid; place-items: center; font-size: 23px; margin-bottom: 23px; }
.feature-grid h3 { font-size: 19px; letter-spacing: -.5px; margin-bottom: 12px; }
.feature-grid p { font-size: 14px; color: var(--muted); line-height: 1.8; }
.feature-tag { font-size: 9px; letter-spacing: 1.8px; color: #9b8daa; display: block; margin-top: 25px; }

.operations-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 22px; margin-top: 22px; }
.operations-grid article { border-radius: var(--radius); padding: 34px; overflow: hidden; }
.approval-card { background: #f6f2fb; }
.mini-approval { max-width: 344px; margin: 0 auto 30px; padding: 18px 21px 10px; background: white; border: 1px solid #e9e0f0; border-radius: 12px; box-shadow: 0 8px 20px #62467c09; transform: rotate(-2deg); }
.mini-top { display: flex; align-items: center; gap: 10px; }
.file-symbol { height: 36px; width: 36px; background: #e8ddf2; display: grid; place-items: center; font-family: serif; font-size: 23px; color: #77528f; border-radius: 7px; }
.mini-top b { font-size: 13px; display: block; }
.mini-top small { display: block; font-size: 10px; color: var(--muted); }
.version { font-size: 10px; color: #ab96bb; margin-left: auto; }
.approval-state { margin: 17px 0 13px; background: var(--ok-soft); padding: 8px; border-radius: 5px; text-align: center; color: var(--ok); font-size: 12px; font-weight: 600; }
.approval-state span { margin-right: 5px; }
.comment { border-left: 2px solid #dbcce9; padding-left: 10px; }
.comment > b { font-size: 10px; }
.comment p { font-size: 10px; color: var(--muted); }
.example-label { display: block; margin-top: 12px; font-size: 8px; text-align: right; color: #aaa0b4; }
.operations-grid h3 { font-size: 24px; line-height: 1.3; letter-spacing: -.7px; margin: 10px 0 12px; }
.operations-grid article > div > p { font-size: 14px; line-height: 1.8; color: var(--muted); }
.finance-card { background: #f4f7f5; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
.finance-card .eyebrow { color: #628474; }
.finance-preview { border: 1px solid #dde8e0; background: #fff; border-radius: 12px; padding: 23px 25px 0; position: relative; min-height: 174px; overflow: hidden; }
.finance-preview > div > span { font-size: 11px; color: #82988c; }
.finance-preview strong { display: block; font-size: 31px; letter-spacing: -1px; color: #3b6150; font-family: 'IBM Plex Mono', monospace; }
.finance-preview strong span { font-size: 19px; color: #91a499; }
.finance-bars { height: 74px; display: flex; align-items: end; gap: 9px; position: absolute; right: 25px; top: 30px; }
.finance-bars i { height: 30%; width: 17px; background: #dce9e0; border-radius: 4px 4px 0 0; }
.finance-bars i:nth-child(2) { height: 45%; }
.finance-bars i:nth-child(3) { height: 40%; }
.finance-bars i:nth-child(4) { height: 63%; }
.finance-bars i:nth-child(5) { height: 54%; }
.finance-bars i:nth-child(6) { height: 78%; background: #a5c4b0; }
.finance-bars i:nth-child(7) { height: 100%; background: #759d85; }
.finance-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #edf2ee; margin-top: 23px; padding: 13px 0; }
.finance-bottom span { font-size: 10px !important; }

/* --------------------------------------------------- link/contract mocks */
.link-mock { max-width: 344px; margin: 0 auto 26px; padding: 18px 21px; background: white; border: 1px solid #e9e0f0; border-radius: 12px; box-shadow: 0 8px 20px #62467c09; }
.link-mock-row { display: flex; align-items: center; gap: 8px; background: var(--soft); border: 1px solid var(--line); border-radius: 8px; padding: 9px 11px; font-size: 10px; color: #8b7c99; }
.link-mock-row span:last-child { margin-left: auto; color: var(--purple); font-weight: 600; }
.link-mock-fields { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.link-mock-fields > div { display: flex; align-items: center; gap: 8px; font-size: 10px; color: var(--muted); }
.link-mock-fields i { width: 14px; height: 14px; border-radius: 4px; background: var(--ok-soft); color: var(--ok); display: grid; place-items: center; font-style: normal; font-size: 9px; flex-shrink: 0; }
.contract-mock { max-width: 344px; margin: 0 auto 26px; padding: 18px 21px; background: white; border: 1px solid #e9e0f0; border-radius: 12px; box-shadow: 0 8px 20px #62467c09; }
.contract-mock p { font-size: 10px; color: var(--muted); line-height: 1.7; }
.contract-mock .flag { display: flex; gap: 8px; align-items: flex-start; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); font-size: 10px; color: var(--warn); }
.contract-mock .flag span { flex-shrink: 0; }

/* -------------------------------------------------------------- workflow */
.workflow { background: #faf8fd; border-block: 1px solid var(--line); text-align: center; }
.center-heading h2 > span { color: #9373b1; }
.center-heading > p { margin: 20px auto 0; color: var(--muted); font-size: 15px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 38px; text-align: left; margin: 55px 0 38px; }
.steps article { position: relative; }
.steps article > span { height: 40px; width: 40px; display: grid; place-items: center; background: #eee5f7; color: #8c61b4; font-size: 12px; border-radius: 50%; margin-bottom: 20px; font-family: 'IBM Plex Mono', monospace; }
.steps article:not(:last-child):after { content: ''; height: 1px; background: #e1d6ec; position: absolute; top: 20px; left: 55px; width: calc(100% - 35px); }
.steps h3 { font-size: 22px; letter-spacing: -.6px; }
.steps p { font-size: 14px; color: var(--muted); margin: 10px 0 18px; line-height: 1.8; }
.steps small { font-size: 9px; letter-spacing: 1.3px; color: #95829f; }
.workflow .text-link { color: var(--purple); }

/* -------------------------------------------------------------------- IA */
.ai-section { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.ai-copy h2 > span { color: var(--purple); }
.ai-copy > p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-top: 22px; max-width: 395px; }
.ai-copy ul { padding: 0; list-style: none; margin: 28px 0 0; }
.ai-copy li { display: flex; gap: 14px; margin: 19px 0; }
.ai-copy li > span { color: #a784c6; font-size: 21px; }
.ai-copy li b { font-size: 14px; font-weight: 600; }
.ai-copy li p { font-size: 13px; color: var(--muted); margin-top: 4px; max-width: 330px; }
.ai-demo { padding: 29px; border: 1px solid #e9dff3; border-radius: 20px; background: linear-gradient(145deg, #fbf9fe, #f6f0fc); box-shadow: 0 20px 60px -35px #73459355; }
.ai-demo-header { display: flex; align-items: center; gap: 9px; padding-bottom: 22px; border-bottom: 1px solid #e9dff1; margin-bottom: 23px; }
.ai-demo-header > span { font-size: 24px; color: #996bc3; }
.ai-demo-header b { font-size: 14px; font-weight: 600; }
.input-label { font-size: 9px; letter-spacing: 1.5px; color: #a08aad; }
.prompt { margin-top: 12px; font-size: 15px; line-height: 1.8; color: #786586; }
.ai-divider { display: flex; align-items: center; gap: 7px; color: #9466b7; font-size: 11px; margin: 23px 0 15px; }
.ai-divider:after { content: ''; flex: 1; height: 1px; background: #e2d4ee; margin-left: 9px; }
.ai-result { background: white; border: 1px solid #e9e0f1; border-radius: 12px; padding: 21px; }
.ai-result > div { display: flex; gap: 12px; margin-bottom: 20px; }
.ai-result > div:last-child { margin-bottom: 0; }
.ai-result > div > span { font-size: 10px; color: #b39aca; padding-top: 4px; font-family: 'IBM Plex Mono', monospace; }
.ai-result b { font-size: 12px; }
.ai-result p { font-size: 12px; color: #8b7a96; margin-top: 5px; line-height: 1.7; }
.chips { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.chips span { background: #f5effa; border: 1px solid #ece1f5; border-radius: 4px; color: #9370ad; font-size: 9px; padding: 3px 7px; }
.ai-caption { font-size: 9px; color: #a695b2; margin-top: 16px; text-align: center; }

/* --------------------------------------------------------------- pricing */
.pricing-section { display: grid; grid-template-columns: 1fr .8fr; gap: 60px; align-items: center; }
.price-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 40px;
  background: linear-gradient(160deg, #fff, #fbf9fe);
  box-shadow: 0 30px 60px -40px #52347c40;
  position: relative;
}
.trial-badge { display: inline-block; background: var(--purple); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 6px 12px; border-radius: 20px; }
.price-card h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; margin: 20px 0 4px; }
.price-label { font-size: 12px; color: var(--muted); }
.price-amount { font-size: 44px; font-weight: 750; letter-spacing: -1.5px; margin: 12px 0; font-family: 'IBM Plex Mono', monospace; }
.price-amount span { font-size: 22px; }
.price-amount small { font-size: 16px; color: var(--muted); font-family: 'Inter', sans-serif; }
.price-description { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 26px; }

/* ------------------------------------------------------------------- FAQ */
.faq-section { border-top: 1px solid var(--line); display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; padding-top: 75px; padding-bottom: 85px; }
.faq-section h2 { font-size: 34px; }
.faq-section > div > p { color: var(--muted); font-size: 14px; margin-top: 13px; }
.faqs details { border-bottom: 1px solid var(--line); }
.faqs summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 0; font-size: 14px; font-weight: 550; }
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary span { font-size: 20px; font-weight: 400; color: #a382be; transition: transform .2s ease; }
.faqs details[open] summary span { transform: rotate(45deg); }
.faqs details p { font-size: 14px; color: var(--muted); padding-bottom: 20px; line-height: 1.8; }

/* -------------------------------------------------------------- final CTA */
.final-section { padding-bottom: 70px; }
.final-cta {
  border-radius: 24px;
  background: radial-gradient(ellipse at 85% 110%, #a05bdd, transparent 58%), linear-gradient(110deg, #321847, #643190);
  padding: 55px 64px; color: white;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
}
.final-cta .eyebrow { color: #c0a1de; font-size: 10px; }
.final-cta h2 { font-size: 49px; line-height: 1.12; margin: 15px 0 18px; letter-spacing: -1.8px; }
.final-cta p { font-size: 14px; color: #d2c0e0; }
.final-cta > div { position: relative; z-index: 1; }
.button.light { background: white; color: #633389; gap: 30px; padding: 16px 23px; }
.cta-note { display: block; font-size: 11px; margin-top: 15px; color: #d0b6e6; text-align: center; }
.cta-asterisk { position: absolute; right: 7%; bottom: -105px; color: #ffffff08; font-size: 400px; line-height: 1; }

/* ------------------------------------------------------------------ footer */
.footer-top { display: flex; align-items: center; gap: 65px; padding-bottom: 35px; }
.footer-top p { font-size: 12px; color: #928399; line-height: 1.8; }
.footer-top > a:last-child { margin-left: auto; font-size: 13px; font-weight: 550; }
.footer-bottom { padding: 23px 0 28px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; font-size: 10px; color: #a091a9; }
.footer-bottom a { color: #746180; }

/* ----------------------------------------------------------- responsive */
@media (min-width: 1600px) {
  .hero { padding-block: 105px; }
}

@media (max-width: 1150px) {
  .container { width: calc(100% - 64px); }
  .nav nav { gap: 22px; }
  .hero { padding-top: 65px; }
  .hero-grid { grid-template-columns: 43% 57%; }
  h1 { font-size: 51px; }
  .hero-actions { gap: 16px; }
  .product-stage { margin-right: -30px; }
  .app-sidebar { width: 107px; padding-inline: 8px; }
  .app-content { padding: 18px 12px; }
  .dashboard-heading h2 { font-size: 16px; }
  .new-project { font-size: 7px; }
  .stat-row strong { font-size: 16px; }
  .app-body { min-height: 385px; }
  .audience > .container { gap: 25px; }
  .audience .container > div { font-size: 13px; gap: 14px; }
  .ai-section { gap: 55px; }
  .pricing-section { grid-template-columns: 1fr; gap: 40px; }
  .finance-bars { opacity: .6; right: 17px; }
  .finance-bars i { width: 10px; }
  .finance-preview strong { font-size: 27px; }
}

@media (max-width: 850px) {
  .container { width: calc(100% - 48px); }
  .header { height: 82px; }
  .brand img { width: 150px; }
  .nav { gap: 20px; }
  .nav nav { gap: 18px; font-size: 12px; }
  .login { font-size: 12px; padding: 8px 13px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero .eyebrow, .hero-actions, .hero-note { justify-content: center; }
  .hero-copy > p { margin: auto; max-width: 460px; }
  .hero h1 { font-size: 65px; }
  .hero h1 br:nth-child(2) { display: none; }
  .hero h1 > span:before { content: ' '; }
  .product-stage { max-width: 660px; width: 100%; margin: 35px auto 0; padding-bottom: 40px; }
  .app-window { transform: perspective(1800px) rotateY(-4deg) rotateX(2deg); }
  .app-sidebar { width: 140px; }
  .app-content { padding: 24px; }
  .dashboard-heading h2 { font-size: 21px; }
  .stat-row strong { font-size: 21px; }
  .app-body { min-height: 390px; }
  .audience > .container { display: block; text-align: center; }
  .audience p { border: 0; padding: 0; margin-bottom: 18px; }
  .audience p br { display: none; }
  .audience .container > div { justify-content: center; flex-wrap: wrap; }
  .section { padding-block: 70px; }
  .section-heading { align-items: start; gap: 30px; }
  h2 { font-size: 34px; }
  .section-heading > p { max-width: 280px; font-size: 14px; }
  .feature-grid { gap: 13px; }
  .feature-grid article { padding: 23px 20px; }
  .feature-grid h3 { font-size: 17px; }
  .feature-grid p { font-size: 13px; }
  .operations-grid article { padding: 25px; }
  .operations-grid { gap: 15px; }
  .operations-grid h3 { font-size: 21px; }
  .finance-bars { position: static; height: 40px; justify-content: end; margin-top: -20px; }
  .finance-preview { padding: 17px 19px 0; }
  .finance-bottom { margin-top: 15px; }
  .steps { gap: 25px; }
  .ai-section { gap: 40px; }
  .ai-copy h2 { font-size: 33px; }
  .ai-demo { padding: 22px; }
  .faq-section { gap: 35px; }
  .final-cta { padding: 44px; }
  .final-cta h2 { font-size: 42px; }
  .footer-top { gap: 30px; }
  .footer-top p { font-size: 11px; }
}

@media (max-width: 600px) {
  .container { width: calc(100% - 40px); }
  .header { height: 76px; }
  .brand img { width: 140px; }
  .nav { gap: 15px; }
  .nav nav {
    display: none; position: absolute; top: 76px; left: 0; right: 0; padding: 24px;
    background: white; border-bottom: 1px solid var(--line); box-shadow: 0 10px 20px #21152e0a;
    flex-direction: column; gap: 20px; font-size: 15px;
  }
  .nav nav.open { display: flex; }
  .login { margin-left: auto; font-size: 12px; border: 0; padding: 6px 0; }
  .login span { margin-left: 5px; }
  .menu { display: flex; border: 0; background: transparent; padding: 8px 0 8px 8px; flex-direction: column; gap: 6px; cursor: pointer; }
  .menu span { display: block; width: 20px; height: 1.5px; background: var(--ink); }
  .hero { padding: 45px 0 38px; }
  .hero .eyebrow { font-size: 9px; letter-spacing: 1.1px; }
  .hero h1 { font-size: 48px; letter-spacing: -2.4px; margin: 24px 0 20px; }
  .hero h1 br:nth-child(2) { display: block; }
  .hero h1 > span:before { content: none; }
  .hero-copy > p { font-size: 15px; max-width: 340px; }
  .hero-actions { gap: 20px; margin-top: 26px; flex-direction: column; }
  .button { font-size: 14px; padding: 14px 23px; }
  .hero-note { font-size: 10px; margin-top: 22px; }
  .product-stage { margin-top: 33px; padding-top: 8px; padding-bottom: 38px; }
  .app-window { transform: none; box-shadow: 0 15px 40px -15px #5f397647, 0 0 0 4px #fff8; }
  .app-bar { height: 25px; font-size: 7px; padding-inline: 10px; }
  .window-dots i { width: 4px; height: 4px; }
  .app-sidebar { display: none; }
  .app-content { padding: 17px 14px; }
  .app-body { min-height: 328px; }
  .dashboard-heading h2 { font-size: 18px; }
  .dashboard-heading small { font-size: 6px; }
  .dashboard-heading p { font-size: 7px; }
  .new-project { font-size: 6px; }
  .stat-row { margin: 17px 0; gap: 6px; }
  .stat-row > div { padding: 9px 6px; }
  .stat-row strong { font-size: 17px; }
  .stat-row span { font-size: 7px; }
  .stat-row small { font-size: 6px; }
  .app-content h3 { font-size: 10px; }
  .attention { padding: 8px 0; }
  .attention b { font-size: 7px; }
  .attention small { font-size: 6px; }
  .pill { font-size: 6px; }
  .recent-heading { margin-top: 13px; }
  .project-row { margin-top: 9px; }
  .floating-note { left: 12px; bottom: 11px; gap: 9px; padding: 10px 13px; }
  .floating-note > span { width: 26px; height: 26px; font-size: 12px; }
  .floating-note b { font-size: 9px; }
  .floating-note small { font-size: 8px; }
  .demo-label { font-size: 6px; bottom: -6px; right: 0; }
  .audience { padding: 25px 0; }
  .audience p { font-size: 11px; }
  .audience .container > div { gap: 8px 12px; font-size: 12px; }
  .audience i { font-size: 13px; }
  .audience i:nth-of-type(2) { display: none; }
  .audience .container > div span { white-space: nowrap; }
  .section { padding-block: 55px; }
  .section-heading { display: block; }
  .section-heading > p { width: auto; max-width: none; margin-top: 14px; }
  h2 { font-size: 28px; }
  .feature-grid { grid-template-columns: 1fr; }
  .operations-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps article:not(:last-child):after { display: none; }
  .ai-section { grid-template-columns: 1fr; }
  .ai-copy > p { max-width: none; }
  .price-amount { font-size: 36px; }
  .faq-section { grid-template-columns: 1fr; }
  .final-cta { flex-direction: column; text-align: center; gap: 26px; padding: 36px 26px; }
  .final-cta h2 { font-size: 32px; }
  .footer-top { flex-direction: column; text-align: center; gap: 16px; }
  .footer-top > a:last-child { margin-left: 0; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button:hover { transform: none; }
}
