:root {
  --ink: #14211f;
  --muted: #61706d;
  --paper: #f7faf8;
  --white: #ffffff;
  --line: #dce6e2;
  --deep: #0b2927;
  --deep-2: #103a36;
  --green: #1f9e7c;
  --green-2: #36c49b;
  --mint: #dff7ed;
  --gold: #efb95b;
  --shadow: 0 24px 70px rgba(17, 55, 48, .14);
  --shadow-soft: 0 14px 36px rgba(17, 55, 48, .09);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: 12px; transform: translateY(-150%); z-index: 9999; background: #fff; padding: 12px 18px; border-radius: 10px; box-shadow: var(--shadow-soft); }
.skip-link:focus { transform: translateY(0); }
.site-header { position: fixed; z-index: 1000; top: 0; left: 0; right: 0; border-bottom: 1px solid transparent; transition: .3s ease; }
.site-header.scrolled { background: rgba(247,250,248,.9); backdrop-filter: blur(18px); border-color: rgba(18,64,57,.1); box-shadow: 0 8px 28px rgba(15,43,39,.06); }
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand img { width: 42px; height: 42px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.08; }
.brand-copy strong { font-size: 18px; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: #6e7d79; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 650; color: #40514e; }
.main-nav a { position: relative; transition: color .2s ease; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--green); transition: right .25s ease; }
.main-nav > a:hover { color: var(--deep); }
.main-nav > a:hover::after { right: 0; }
.nav-cta { padding: 11px 18px; border-radius: 99px; background: var(--deep); color: #fff; box-shadow: 0 10px 24px rgba(11,41,39,.18); }
.nav-cta:hover { background: var(--green); color: #fff !important; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 12px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 22px; height: 2px; border-radius: 2px; background: var(--deep); transition: .25s ease; }
.hero { position: relative; min-height: 860px; padding: 150px 0 86px; overflow: hidden; background: radial-gradient(circle at 72% 24%, rgba(96,224,178,.15), transparent 28%), linear-gradient(180deg, #fbfdfc 0%, #edf5f1 100%); }
.hero::before { content: ""; position: absolute; width: 680px; height: 680px; border: 1px solid rgba(31,158,124,.09); border-radius: 50%; right: -250px; top: -250px; box-shadow: 0 0 0 90px rgba(31,158,124,.025), 0 0 0 180px rgba(31,158,124,.02); }
.hero-grid-bg { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(20,74,65,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(20,74,65,.09) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to bottom, black, transparent 76%); }
.hero-grid { position: relative; display: grid; grid-template-columns: .9fr 1.2fr; align-items: center; gap: 50px; }
.hero-copy { max-width: 570px; }
.eyebrow, .section-label, .mini-label { display: inline-flex; align-items: center; gap: 9px; color: #167b62; background: rgba(31,158,124,.09); border: 1px solid rgba(31,158,124,.16); border-radius: 99px; padding: 8px 13px; font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-2); box-shadow: 0 0 0 5px rgba(54,196,155,.14); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(54,196,155,0); } }
h1, h2, h3, h4, p { margin-top: 0; }
h1 { margin: 28px 0 24px; font-size: clamp(48px, 6vw, 78px); line-height: .98; letter-spacing: -.055em; font-weight: 790; }
h1 span { color: var(--green); }
.hero-lead { max-width: 630px; color: #53635f; font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 13px 21px; border-radius: 14px; border: 1px solid transparent; font-size: 14px; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--deep); color: #fff; box-shadow: 0 14px 30px rgba(11,41,39,.2); }
.button-primary:hover { background: #11453f; box-shadow: 0 17px 35px rgba(11,41,39,.25); }
.button-ghost { background: rgba(255,255,255,.7); border-color: rgba(20,64,57,.15); color: var(--deep); }
.button-ghost:hover { background: #fff; border-color: rgba(20,64,57,.28); }
.button-light { background: #fff; color: var(--deep); box-shadow: 0 14px 32px rgba(0,0,0,.16); }
.button-outline { border-color: #c9d7d3; background: #fff; color: var(--deep); }
.hero-points { display: flex; flex-wrap: wrap; gap: 15px 20px; color: #50605c; font-size: 12px; font-weight: 650; }
.hero-points span { display: flex; align-items: center; gap: 7px; }
.hero-points i { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--green); font-style: normal; font-weight: 900; }
.product-stage { position: relative; min-width: 0; transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); transform-origin: center; }
.browser-shell { position: relative; z-index: 2; border: 1px solid rgba(255,255,255,.8); border-radius: 22px; overflow: hidden; background: #fff; box-shadow: 0 50px 100px rgba(12,49,43,.21), 0 12px 28px rgba(12,49,43,.14); }
.browser-top { height: 44px; display: grid; grid-template-columns: 100px 1fr 60px; align-items: center; padding: 0 15px; background: #f4f7f6; border-bottom: 1px solid #e4ece9; }
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 8px; height: 8px; border-radius: 50%; background: #cad6d2; }
.browser-dots span:first-child { background: #ff8d83; } .browser-dots span:nth-child(2) { background: #f4c769; } .browser-dots span:nth-child(3) { background: #65c99e; }
.browser-address { justify-self: center; width: min(330px, 80%); padding: 7px 14px; border-radius: 8px; background: #fff; color: #788681; font-size: 10px; text-align: center; box-shadow: inset 0 0 0 1px #e3eae8; }
.lock { margin-right: 6px; color: #44a984; font-size: 7px; }
.browser-menu { justify-self: end; color: #96a39f; letter-spacing: 2px; }
.app-shell { display: grid; grid-template-columns: 58px 1fr; min-height: 493px; background: #f1f6f4; }
.app-sidebar { background: var(--deep); padding: 14px 9px; display: flex; flex-direction: column; align-items: center; gap: 9px; }
.mini-brand { width: 34px; height: 34px; margin-bottom: 10px; padding: 5px; border-radius: 10px; background: rgba(255,255,255,.1); }
.mini-brand img { filter: brightness(0) invert(1); }
.side-item { width: 36px; height: 36px; border: 0; border-radius: 10px; display: grid; place-items: center; background: transparent; color: #8eb0a9; }
.side-item svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linejoin: round; stroke-linecap: round; }
.side-item.active { background: var(--green); color: #fff; box-shadow: 0 8px 18px rgba(31,158,124,.35); }
.side-spacer { flex: 1; }
.avatar-mini { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #e5c18a; color: #493519; font-size: 11px; font-weight: 900; border: 2px solid rgba(255,255,255,.45); }
.app-main { min-width: 0; padding: 25px 24px; }
.app-head { display: flex; justify-content: space-between; align-items: center; }
.app-kicker { font-size: 9px; text-transform: uppercase; letter-spacing: .1em; color: #788985; }
.app-head h3 { margin: 2px 0 0; font-size: 18px; letter-spacing: -.03em; }
.head-actions { display: flex; align-items: center; gap: 12px; }
.head-actions > span { width: 29px; height: 29px; border-radius: 9px; background: #fff; box-shadow: inset 0 0 0 1px #e2ebe8; position: relative; }
.head-actions > span::before { content: ""; position: absolute; width: 6px; height: 6px; border-radius: 50%; background: #e96969; right: 5px; top: 5px; }
.avatar { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: #e4bd88; color: #4b361c; font-size: 9px; font-weight: 900; }
.summary-cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 20px; }
.summary-cards article { position: relative; display: grid; grid-template-columns: 36px 1fr; align-items: center; gap: 10px; min-height: 78px; padding: 13px; border-radius: 13px; background: #fff; box-shadow: 0 10px 20px rgba(25,67,59,.05); }
.summary-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; font-weight: 900; }
.summary-icon.mint { background: #e1f7ef; color: #239b78; } .summary-icon.gold { background: #fff0d6; color: #c58419; }
.summary-cards small { display: block; font-size: 8px; color: #82908d; }
.summary-cards strong { font-size: 21px; line-height: 1; }
.summary-cards em { position: absolute; right: 12px; bottom: 10px; font-size: 7px; color: #45a889; font-style: normal; }
.dashboard-grid { display: grid; grid-template-columns: 1.35fr .75fr; gap: 12px; margin-top: 12px; }
.feed-card, .poll-card { border-radius: 15px; background: #fff; box-shadow: 0 10px 22px rgba(25,67,59,.05); }
.feed-card { padding: 15px; }
.card-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.card-title small { display: block; color: #899692; font-size: 8px; }
.card-title strong { font-size: 11px; }
.card-title button { border: 0; background: transparent; color: var(--green); font-size: 7px; font-weight: 800; }
.feed-item { display: grid; grid-template-columns: 30px 1fr; gap: 9px; padding: 10px 0; border-top: 1px solid #edf2f0; }
.feed-icon { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 9px; font-size: 10px; font-weight: 900; }
.feed-icon.blue { background: #e5efff; color: #477bc2; }.feed-icon.green { background: #e1f7ed; color: #1a946e; }.feed-icon.purple { background: #efe7ff; color: #8058c1; }
.feed-item strong { display: block; font-size: 8.5px; }
.feed-item p { margin: 2px 0; font-size: 7px; color: #72817d; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feed-item small { font-size: 6.5px; color: #a1aca9; }
.poll-card { padding: 15px; background: linear-gradient(155deg, #103b36, #0a2927); color: #fff; }
.poll-badge { display: inline-flex; padding: 4px 7px; border-radius: 99px; background: rgba(63,202,158,.16); color: #70deb9; font-size: 6px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.poll-card h4 { margin: 10px 0 4px; font-size: 11px; }
.poll-card > p { margin-bottom: 14px; color: #9ebbb5; font-size: 7px; }
.poll-row { display: flex; justify-content: space-between; font-size: 7px; color: #bed1cd; }
.poll-row b { color: #fff; }
.poll-bar { height: 4px; margin: 4px 0 10px; border-radius: 99px; background: rgba(255,255,255,.09); overflow: hidden; }
.poll-bar i { display: block; height: 100%; border-radius: inherit; background: var(--green-2); }
.poll-card button { width: 100%; margin-top: 4px; padding: 8px; border: 0; border-radius: 8px; background: #fff; color: var(--deep); font-size: 7px; font-weight: 900; }
.glow { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .5; }
.glow-one { width: 260px; height: 260px; background: #58dcb1; right: -90px; top: -90px; }.glow-two { width: 210px; height: 210px; background: #90b8ff; left: -80px; bottom: -80px; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,.94); backdrop-filter: blur(16px); box-shadow: 0 18px 44px rgba(14,57,50,.16); border: 1px solid rgba(255,255,255,.85); }
.floating-card > span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 9px; background: var(--mint); color: var(--green); font-size: 11px; font-weight: 900; }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 9px; }.floating-card small { font-size: 7px; color: #7b8985; margin-top: 2px; }
.floating-left { left: -30px; bottom: 44px; animation: float 4.5s ease-in-out infinite; }.floating-right { right: -24px; top: 100px; animation: float 5s ease-in-out .7s infinite; }
@keyframes float { 50% { transform: translateY(-9px); } }
.trust-strip { position: relative; z-index: 5; background: #fff; border-top: 1px solid #e4ece9; border-bottom: 1px solid #e4ece9; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid div { padding: 27px 30px; border-right: 1px solid #e8efed; }.trust-grid div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }.trust-grid strong { font-size: 13px; }.trust-grid span { margin-top: 3px; color: #7a8985; font-size: 11px; }
.section { padding: 110px 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 85px; }
.section-label { padding: 7px 11px; font-size: 10px; }
.section-label.light { color: #8de4c3; background: rgba(66,197,154,.13); border-color: rgba(119,223,188,.18); }
.section-copy h2, .section-heading h2 { margin: 22px 0 20px; font-size: clamp(36px, 4.6vw, 58px); line-height: 1.08; letter-spacing: -.045em; }
.section-copy p, .section-heading p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.contrast-list { display: grid; gap: 14px; margin-top: 30px; }
.contrast-list > div { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: start; }
.contrast-list span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 10px; font-weight: 900; }.contrast-list .bad { background: #fde7e7; color: #c95555; }.contrast-list .good { background: var(--mint); color: var(--green); }
.contrast-list p { margin: 3px 0 0; font-size: 14px; line-height: 1.6; }
.solution-board { padding: 16px; border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow); border: 1px solid #e3ece9; transform: rotate(1deg); }
.board-head { display: flex; justify-content: space-between; padding: 16px 18px 20px; }.board-head span { font-weight: 850; }.board-head small { color: var(--green); font-weight: 800; }
.board-row { display: grid; grid-template-columns: 46px 1fr 25px; gap: 15px; align-items: center; padding: 20px 18px; margin-top: 8px; border-radius: 18px; background: #f5f9f7; transition: transform .25s ease, background .25s ease; }
.board-row:hover { transform: translateX(-5px); background: #edf7f3; }
.board-num { font-size: 11px; color: var(--green); font-weight: 900; letter-spacing: .1em; }.board-row strong, .board-row small { display: block; }.board-row strong { font-size: 16px; }.board-row small { margin-top: 3px; color: #798783; font-size: 12px; }.board-row i { font-style: normal; color: #9aa6a3; }
.modules-section { background: #fff; }
.module-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.module-card { min-height: 280px; padding: 26px; border: 1px solid #e2ebe8; border-radius: 22px; background: #fbfdfc; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.module-card:hover { transform: translateY(-7px); border-color: #c4ded6; box-shadow: var(--shadow-soft); }
.module-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; margin-bottom: 25px; }.module-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-blue { color:#3376c8;background:#e7f0ff}.icon-purple{color:#7d55c7;background:#f0e9ff}.icon-orange{color:#bd7223;background:#fff0de}.icon-green{color:#168a68;background:#e2f8ef}.icon-pink{color:#bf5681;background:#fde9f1}.icon-teal{color:#277f87;background:#e1f5f5}.icon-navy{color:#324f73;background:#e7eef6}.icon-gold{color:#a97420;background:#fff1d6}
.module-card h3 { margin-bottom: 10px; font-size: 18px; letter-spacing: -.02em; }.module-card p { color: #697874; font-size: 14px; line-height: 1.65; }.module-card > span { display: block; margin-top: 22px; color: #83908d; font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.experience-section { background: linear-gradient(180deg, #edf5f1, #f7faf8); }
.experience-layout { display: grid; grid-template-columns: 330px 1fr; gap: 20px; padding: 20px; border-radius: 30px; background: #fff; border: 1px solid #e0e9e6; box-shadow: var(--shadow); }
.tab-list { display: flex; flex-direction: column; gap: 8px; padding: 7px; }
.tab-button { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 14px; min-height: 92px; padding: 17px; border: 0; border-radius: 18px; background: transparent; text-align: left; cursor: pointer; transition: .25s ease; }
.tab-button > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: #eef4f2; color: #71817d; font-size: 11px; font-weight: 900; }.tab-button strong, .tab-button small { display: block; }.tab-button strong { font-size: 15px; }.tab-button small { margin-top: 4px; color: #7d8b87; font-size: 11px; }.tab-button.active { background: var(--deep); color: #fff; }.tab-button.active > span { background: var(--green); color: #fff; }.tab-button.active small { color: #9dbbb4; }
.tab-stage { min-width: 0; overflow: hidden; border-radius: 22px; background: #edf5f1; }
.tab-panel { display: none; grid-template-columns: .85fr 1.15fr; align-items: center; min-height: 510px; padding: 46px; gap: 35px; animation: panelin .35s ease; }.tab-panel.active { display: grid; }
@keyframes panelin { from { opacity: 0; transform: translateY(10px); } }
.panel-copy h3 { margin: 18px 0 15px; font-size: 35px; line-height: 1.12; letter-spacing: -.04em; }.panel-copy p { color: #61716d; font-size: 14px; line-height: 1.7; }.panel-copy ul { margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }.panel-copy li { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 750; }.panel-copy li::before { content: "✓"; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 7px; background: #d7f2e8; color: var(--green); font-size: 10px; }
.mini-label { padding: 6px 9px; font-size: 8px; }
.phone-mock { justify-self: center; position: relative; width: 248px; padding: 9px; border-radius: 37px; background: #142927; box-shadow: 0 28px 55px rgba(12,44,39,.27); }.phone-notch { position: absolute; z-index: 2; width: 90px; height: 19px; top: 10px; left: 50%; transform: translateX(-50%); border-radius: 0 0 14px 14px; background: #142927; }.phone-screen { min-height: 476px; overflow: hidden; padding: 27px 16px 14px; border-radius: 29px; background: #f7faf8; }.phone-head { display: grid; grid-template-columns: 25px 1fr 25px; align-items: center; gap: 8px; }.phone-head img { width: 24px; }.phone-head span { font-size: 10px; font-weight: 850; }.phone-head i { font-size: 10px; color: #7d8b87; font-style: normal; }.hello { display: grid; margin-top: 28px; }.hello small { font-size: 9px; color: #7c8c88; }.hello strong { font-size: 18px; letter-spacing: -.03em; }.quick-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin-top: 16px; }.quick-grid span { padding: 12px 4px; border-radius: 12px; background: #fff; text-align: center; box-shadow: 0 7px 18px rgba(20,65,57,.06); }.quick-grid b, .quick-grid small { display: block; }.quick-grid b { font-size: 17px; color: var(--green); }.quick-grid small { margin-top: 2px; font-size: 7px; color: #7b8985; }.phone-card { margin-top: 13px; padding: 18px; border-radius: 18px; color: #fff; background: linear-gradient(145deg, #164b43, #0c2d2a); }.tiny-tag { display: inline-flex; padding: 4px 6px; border-radius: 99px; background: rgba(69,207,162,.17); color: #8aebc9; font-size: 6px; font-weight: 900; letter-spacing: .08em; }.phone-card strong { display: block; margin-top: 13px; font-size: 13px; }.phone-card p { margin: 5px 0 16px; color: #b4cec8; font-size: 8px; }.phone-card button { width: 100%; border: 0; padding: 9px; border-radius: 9px; background: #fff; color: var(--deep); font-size: 8px; font-weight: 900; }.phone-nav { display: flex; justify-content: space-around; margin-top: 23px; }.phone-nav i { width: 8px; height: 8px; border-radius: 50%; background: #ccd8d4; }.phone-nav i.active { background: var(--green); box-shadow: 0 0 0 5px #dcf2ea; }
.analytics-mock { padding: 24px; border-radius: 22px; background: #fff; box-shadow: 0 22px 55px rgba(20,65,57,.12); }.analytics-head { display: flex; justify-content: space-between; align-items: center; }.analytics-head small, .analytics-head strong { display: block; }.analytics-head small { color: #879490; font-size: 9px; }.analytics-head strong { font-size: 17px; }.analytics-head button { padding: 8px 11px; border: 1px solid #dce7e3; border-radius: 9px; background: #f7faf8; font-size: 8px; font-weight: 800; } .analytics-actions { display: flex; align-items: center; gap: 8px; } .version-badge { display: inline-flex; align-items: center; min-height: 28px; padding: 0 9px; border: 1px solid #dce7e3; border-radius: 999px; background: #eef8f4; color: #157b63; font-size: 8px; font-weight: 900; letter-spacing: .04em; }.metric-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin-top: 22px; }.metric-row span { position: relative; padding: 13px; border-radius: 12px; background: #f5f9f7; }.metric-row small, .metric-row b, .metric-row em { display: block; }.metric-row small { font-size: 7px; color: #84928e; }.metric-row b { margin-top: 5px; font-size: 20px; }.metric-row em { position: absolute; right: 10px; bottom: 11px; color: var(--green); font-size: 7px; font-style: normal; font-weight: 800; }.chart { position: relative; height: 190px; margin-top: 18px; border-radius: 13px; overflow: hidden; background-image: linear-gradient(#edf2f0 1px, transparent 1px); background-size: 100% 45px; }.chart svg { width: 100%; height: 165px; }.chart .line { fill: none; stroke: var(--green); stroke-width: 4; }.chart .fill { fill: url(#chartfill); }.chart-labels { position: absolute; z-index: 2; bottom: 0; left: 0; right: 0; display: flex; justify-content: space-around; font-size: 7px; color: #83918d; }
.community-mock { padding: 23px; border-radius: 22px; background: #fff; box-shadow: 0 22px 55px rgba(20,65,57,.12); }.community-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid #edf2f0; font-size: 11px; font-weight: 850; }.member-stack { display: flex; align-items: center; }.member-stack i { width: 25px; height: 25px; margin-left: -7px; border-radius: 50%; border: 2px solid #fff; background: #d8ab79; }.member-stack i:nth-child(2) { background: #9eb8d3; }.member-stack i:nth-child(3) { background: #d4949e; }.member-stack b { margin-left: 4px; color: #75837f; font-size: 8px; }.chat-bubble { position: relative; max-width: 86%; margin-top: 19px; padding: 13px 14px 22px; border-radius: 15px; }.chat-bubble.left { background: #f1f6f4; }.chat-bubble.right { margin-left: auto; background: var(--deep); color: #fff; }.chat-bubble small { font-size: 7px; font-weight: 850; color: var(--green); }.chat-bubble.right small { color: #70d7b6; }.chat-bubble p { margin: 4px 0 0; font-size: 9px; line-height: 1.5; }.chat-bubble time { position: absolute; right: 10px; bottom: 7px; color: #8d9a96; font-size: 6px; }.chat-bubble.right time { color: #88aaa2; }.resolved-chip { margin: 17px auto; width: max-content; max-width: 100%; padding: 7px 10px; border-radius: 99px; background: #dcf4ea; color: #17805f; font-size: 7px; font-weight: 850; }.chat-compose { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding: 8px 8px 8px 13px; border-radius: 12px; border: 1px solid #dfe8e5; color: #9aa6a3; font-size: 8px; }.chat-compose button { width: 29px; height: 29px; border: 0; border-radius: 9px; background: var(--green); color: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.step { position: relative; padding: 34px; min-height: 300px; border-radius: 25px; background: #fff; border: 1px solid #e0e9e6; box-shadow: 0 16px 40px rgba(20,65,57,.06); }.step > span { position: absolute; right: 24px; top: 22px; color: #c8d5d1; font-size: 12px; font-weight: 900; letter-spacing: .1em; }.step-icon { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 20px; background: var(--deep); color: #fff; font-size: 23px; box-shadow: 0 14px 28px rgba(11,41,39,.18); }.step h3 { margin: 28px 0 12px; font-size: 21px; letter-spacing: -.02em; }.step p { color: #697874; font-size: 14px; line-height: 1.7; }
.pilot-section { padding-top: 40px; }
.pilot-card { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 580px; overflow: hidden; border-radius: 36px; background: linear-gradient(130deg, #0a2826 0%, #124b42 100%); color: #fff; box-shadow: 0 35px 85px rgba(7,41,36,.24); }
.pilot-copy { padding: 70px; }.pilot-copy h2 { margin: 24px 0 20px; font-size: clamp(38px, 4.5vw, 58px); line-height: 1.05; letter-spacing: -.045em; }.pilot-copy > p { color: #afd0c8; font-size: 16px; line-height: 1.75; }.pilot-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin: 35px 0; }.pilot-stats strong, .pilot-stats span { display: block; }.pilot-stats strong { font-size: 30px; }.pilot-stats span { margin-top: 4px; color: #9bbdb5; font-size: 10px; text-transform: uppercase; letter-spacing: .07em; }
.pilot-visual { position: relative; min-height: 580px; overflow: hidden; background: radial-gradient(circle at 54% 45%, rgba(75,224,177,.22), transparent 26%), linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.13)); }.pilot-visual::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 130px; background: #082321; clip-path: polygon(0 60%, 20% 48%, 42% 58%, 65% 30%, 100% 47%, 100% 100%, 0 100%); }.building { position: absolute; z-index: 2; bottom: 85px; display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; align-content: start; padding: 24px 16px; border: 1px solid rgba(255,255,255,.14); background: linear-gradient(180deg, #1c5c51, #103a35); box-shadow: 0 18px 30px rgba(0,0,0,.2); }.building i { width: 15px; height: 11px; background: #f0c978; border-radius: 2px; box-shadow: 0 0 12px rgba(240,201,120,.35); }.building-one { left: 40px; width: 100px; height: 210px; }.building-two { left: 155px; width: 115px; height: 290px; }.building-three { right: 35px; width: 95px; height: 170px; }.portal-ring { position: absolute; z-index: 4; left: 50%; top: 28%; transform: translate(-50%,-50%); width: 140px; height: 140px; display: grid; place-items: center; border-radius: 50%; background: rgba(13,48,43,.72); border: 1px solid rgba(135,232,198,.42); box-shadow: 0 0 0 18px rgba(50,187,145,.08), 0 0 60px rgba(71,219,172,.34); backdrop-filter: blur(10px); }.portal-ring img { width: 77px; filter: brightness(0) invert(1); }.path-line { position: absolute; z-index: 3; left: 50%; top: 40%; bottom: 0; width: 2px; background: linear-gradient(#6fe0b8, transparent); box-shadow: 0 0 20px #61dab1; }
.roadmap-section { background: #fff; }.roadmap-grid { gap: 90px; }.roadmap { display: grid; }.roadmap-item { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 17px; padding: 0 0 32px; }.roadmap-item::before { content: ""; position: absolute; left: 23px; top: 47px; bottom: 0; width: 1px; background: #d9e3df; }.roadmap-item:last-child::before { display: none; }.roadmap-item > span { position: relative; z-index: 2; width: 47px; height: 47px; display: grid; place-items: center; border-radius: 15px; background: #eef3f1; color: #7d8b87; font-weight: 900; }.roadmap-item.done > span { background: #d9f2e8; color: var(--green); }.roadmap-item.current > span { background: var(--deep); color: #fff; box-shadow: 0 10px 24px rgba(11,41,39,.2); }.roadmap-item small, .roadmap-item strong { display: block; }.roadmap-item small { color: var(--green); font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }.roadmap-item strong { margin-top: 4px; font-size: 16px; }.roadmap-item p { margin: 4px 0 0; color: #7a8884; font-size: 12px; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }.accordion { display: grid; gap: 10px; }.faq-item { border: 1px solid #dfe8e5; border-radius: 17px; background: #fff; overflow: hidden; }.faq-item button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 22px; border: 0; background: transparent; text-align: left; cursor: pointer; font-size: 14px; font-weight: 800; }.faq-item button i { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; background: #edf4f1; color: var(--green); font-style: normal; }.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }.faq-answer p { overflow: hidden; margin: 0; padding: 0 22px; color: #667671; font-size: 13px; line-height: 1.7; transition: padding .28s ease; }.faq-item.open { border-color: #bddbd2; box-shadow: 0 12px 30px rgba(18,67,58,.07); }.faq-item.open .faq-answer { grid-template-rows: 1fr; }.faq-item.open .faq-answer p { padding: 0 22px 20px; }
.demo-section { padding-top: 40px; }.demo-card { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; padding: 62px; border-radius: 34px; background: linear-gradient(135deg, #0a2826, #155247); color: #fff; box-shadow: 0 32px 80px rgba(7,41,36,.23); }.demo-copy h2 { margin: 22px 0 18px; font-size: clamp(38px,4.4vw,56px); line-height: 1.05; letter-spacing: -.045em; }.demo-copy > p { color: #afd0c8; line-height: 1.7; }.demo-note { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; margin-top: 24px; padding: 13px; border-radius: 13px; background: rgba(255,255,255,.07); color: #bdd8d1; font-size: 11px; }.demo-note span { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 8px; background: rgba(68,213,166,.18); color: #7ee4bf; font-weight: 900; }.demo-note p { margin: 2px 0 0; }.demo-form { display: grid; gap: 14px; padding: 25px; border-radius: 24px; background: #fff; color: var(--ink); box-shadow: 0 25px 55px rgba(0,0,0,.2); }.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }.demo-form label { display: grid; gap: 7px; color: #53635f; font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }.demo-form input, .demo-form textarea { width: 100%; border: 1px solid #dce6e2; border-radius: 12px; background: #f8fbfa; padding: 12px 13px; color: var(--ink); font-size: 13px; font-weight: 500; text-transform: none; letter-spacing: 0; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; resize: vertical; }.demo-form input:focus, .demo-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(31,158,124,.1); }.demo-form .button-light { background: var(--deep); color: #fff; box-shadow: none; }.form-status { min-height: 18px; margin: -3px 0 0; color: #60706c; font-size: 11px; }
.site-footer { margin-top: 110px; background: #071f1d; color: #fff; }.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding: 70px 0 50px; }.brand-light .brand-copy small { color: #8badA5; }.brand-light img { filter: brightness(0) invert(1); }.footer-brand p { max-width: 360px; margin: 22px 0 0; color: #8eadA6; font-size: 13px; }.footer-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; }.footer-links div { display: flex; flex-direction: column; gap: 10px; }.footer-links strong { margin-bottom: 7px; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: #6bd5b3; }.footer-links a { color: #aac3bd; font-size: 13px; }.footer-links a:hover { color: #fff; }.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0 28px; border-top: 1px solid rgba(255,255,255,.08); color: #76968f; font-size: 10px; }
.request-dialog { width: min(620px, calc(100% - 30px)); border: 0; border-radius: 25px; padding: 34px; color: var(--ink); box-shadow: 0 35px 100px rgba(5,30,26,.35); }.request-dialog::backdrop { background: rgba(4,25,22,.72); backdrop-filter: blur(6px); }.dialog-close { position: absolute; right: 16px; top: 13px; width: 36px; height: 36px; border: 0; border-radius: 10px; background: #eef3f1; font-size: 22px; cursor: pointer; }.dialog-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: #dff6ed; color: var(--green); font-size: 23px; font-weight: 900; }.request-dialog h2 { margin: 20px 0 8px; font-size: 30px; letter-spacing: -.04em; }.request-dialog > p { color: #697874; font-size: 13px; }.request-dialog textarea { width: 100%; padding: 14px; border: 1px solid #dce6e2; border-radius: 13px; background: #f7faf8; color: #3c4d49; font-size: 12px; resize: none; }.dialog-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }.request-dialog > small { display: block; min-height: 18px; margin-top: 10px; color: var(--green); font-weight: 800; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: 1fr; }.hero-copy { max-width: 760px; text-align: center; margin-inline: auto; }.hero-actions, .hero-points { justify-content: center; }.product-stage { width: min(850px,100%); margin: 25px auto 0; transform: none; }.hero { padding-top: 140px; }.module-grid { grid-template-columns: repeat(2,1fr); }.experience-layout { grid-template-columns: 260px 1fr; }.tab-panel { padding: 30px; }.pilot-copy { padding: 55px 45px; }.demo-card { gap: 35px; padding: 45px; }
}
@media (max-width: 850px) {
  .site-header { background: rgba(247,250,248,.93); backdrop-filter: blur(16px); border-bottom-color: rgba(18,64,57,.08); }.menu-toggle { display: flex; }.menu-toggle.active span:first-child { transform: translateY(7px) rotate(45deg); }.menu-toggle.active span:nth-child(2) { opacity: 0; }.menu-toggle.active span:last-child { transform: translateY(-7px) rotate(-45deg); }.main-nav { position: fixed; top: 78px; left: 18px; right: 18px; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; border-radius: 20px; background: #fff; box-shadow: 0 25px 70px rgba(9,45,39,.24); transform: translateY(-18px) scale(.97); opacity: 0; visibility: hidden; transition: .25s ease; }.main-nav.open { transform: none; opacity: 1; visibility: visible; }.main-nav a { padding: 14px; border-radius: 12px; }.main-nav a:hover { background: #f1f7f4; }.main-nav > a::after { display: none; }.nav-cta { margin-top: 6px; text-align: center; }.trust-grid { grid-template-columns: repeat(2,1fr); }.trust-grid div:nth-child(2) { border-right: 0; }.trust-grid div:nth-child(-n+2) { border-bottom: 1px solid #e8efed; }.two-col, .faq-grid { grid-template-columns: 1fr; gap: 50px; }.experience-layout { grid-template-columns: 1fr; }.tab-list { flex-direction: row; overflow-x: auto; }.tab-button { min-width: 240px; }.tab-panel { grid-template-columns: 1fr; }.panel-copy { max-width: 600px; }.pilot-card, .demo-card { grid-template-columns: 1fr; }.pilot-visual { min-height: 440px; }.steps-grid { grid-template-columns: 1fr; }.step { min-height: auto; }.roadmap-grid { gap: 50px; }.footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }.nav-wrap { height: 70px; }.main-nav { top: 70px; }.brand img { width: 38px; height: 38px; }.brand-copy strong { font-size: 16px; }.brand-copy small { font-size: 8px; }.hero { min-height: auto; padding: 122px 0 65px; }.eyebrow { font-size: 9px; }.hero-copy { text-align: left; }.hero h1 { font-size: clamp(45px, 14.5vw, 66px); }.hero-lead { font-size: 16px; }.hero-actions, .hero-points { justify-content: flex-start; }.hero-actions .button { width: 100%; }.hero-points { display: grid; }.browser-shell { border-radius: 14px; }.browser-top { grid-template-columns: 50px 1fr 30px; height: 36px; padding: 0 8px; }.browser-address { width: 90%; font-size: 7px; }.app-shell { grid-template-columns: 43px 1fr; min-height: 340px; }.app-sidebar { padding: 8px 5px; }.mini-brand { width: 28px; height: 28px; }.side-item { width: 29px; height: 29px; }.app-main { padding: 14px 11px; }.app-head h3 { font-size: 13px; }.summary-cards article { min-height: 60px; grid-template-columns: 27px 1fr; padding: 8px; }.summary-icon { width: 27px; height: 27px; }.summary-cards strong { font-size: 15px; }.summary-cards em { display: none; }.dashboard-grid { grid-template-columns: 1fr; }.poll-card { display: none; }.feed-card { padding: 10px; }.floating-card { display: none; }.trust-grid { grid-template-columns: 1fr 1fr; }.trust-grid div { padding: 18px 14px; }.trust-grid strong { font-size: 11px; }.trust-grid span { font-size: 9px; }.section { padding: 78px 0; }.section-copy h2, .section-heading h2 { font-size: 38px; }.section-copy p, .section-heading p { font-size: 15px; }.module-grid { grid-template-columns: 1fr; }.module-card { min-height: 0; }.experience-layout { padding: 10px; border-radius: 22px; }.tab-list { padding: 0; }.tab-button { min-width: 215px; min-height: 78px; padding: 12px; }.tab-panel { min-height: 0; padding: 27px 18px 35px; }.panel-copy h3 { font-size: 30px; }.phone-mock { width: 230px; }.analytics-mock, .community-mock { padding: 15px; }.metric-row { grid-template-columns: 1fr; }.chart { height: 150px; }.pilot-copy { padding: 42px 25px; }.pilot-copy h2 { font-size: 39px; }.pilot-stats { gap: 8px; }.pilot-stats strong { font-size: 24px; }.pilot-stats span { font-size: 8px; }.pilot-visual { min-height: 380px; }.building-one { left: 20px; }.building-two { left: 110px; }.building-three { right: 12px; }.portal-ring { width: 110px; height: 110px; }.portal-ring img { width: 60px; }.faq-grid { gap: 35px; }.demo-card { padding: 36px 20px; }.demo-copy h2 { font-size: 39px; }.demo-form { padding: 18px; }.field-row { grid-template-columns: 1fr; }.footer-top { padding-top: 50px; }.footer-links { grid-template-columns: 1fr 1fr; gap: 20px; }.footer-bottom { display: grid; gap: 6px; }.request-dialog { padding: 25px 18px; }.dialog-actions .button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }.reveal { opacity: 1; transform: none; }
}
