:root {
  --ink: #293f49;
  --ink-soft: #263f49;
  --surface: #f7f8f6;
  --paper: #ffffff;
  --line: #dce4d8;
  --muted: #747b7d;
  --green: #85b63f;
  --green-deep: #628f2e;
  --green-soft: #edf5df;
  --white: #ffffff;
  --display: "Bahnschrift", "DIN Alternate", "Arial Narrow", sans-serif;
  --body: "Aptos", "Segoe UI Variable", "Trebuchet MS", sans-serif;
  --container: min(1180px, calc(100vw - 48px));
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--surface); font-family: var(--body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
.container { width: var(--container); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -60px; background: var(--green); color: var(--ink); padding: 10px 16px; border-radius: 4px; font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; border-bottom: 1px solid transparent; color: var(--white); transition: background .3s, border-color .3s, backdrop-filter .3s; }
.site-header.scrolled { background: rgba(7, 17, 15, .84); border-color: rgba(255,255,255,.09); backdrop-filter: blur(18px); }
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 21px; font-weight: 700; letter-spacing: -.04em; }
.brand > span > span { color: var(--green); }
.brand-mark { width: 36px; height: 36px; color: var(--green); fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark circle { fill: currentColor; stroke: none; }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; margin-right: 34px; }
.desktop-nav a { color: rgba(255,255,255,.7); font-size: 14px; font-weight: 600; transition: color .2s; }
.desktop-nav a:hover { color: var(--white); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 0 24px; border: 0; border-radius: 7px; font-weight: 800; letter-spacing: -.01em; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid rgba(186,255,40,.55); outline-offset: 3px; }
.button-small { min-height: 42px; padding: 0 18px; border: 1px solid rgba(255,255,255,.22); color: var(--white); font-size: 13px; }
.button-small:hover { background: var(--white); color: var(--ink); }
.button-primary { background: var(--green); color: var(--ink); box-shadow: 0 12px 40px rgba(186,255,40,.15); }
.button-primary:hover { background: #c8ff55; box-shadow: 0 16px 50px rgba(186,255,40,.24); }
.button-primary svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.menu-button { display: none; width: 44px; height: 44px; padding: 0; background: transparent; border: 0; position: relative; }
.menu-button span:not(.sr-only) { position: absolute; left: 10px; width: 24px; height: 2px; background: white; transition: transform .25s, top .25s; }
.menu-button span:nth-child(2) { top: 16px; }.menu-button span:nth-child(3) { top: 25px; }
.menu-button[aria-expanded="true"] span:nth-child(2) { top: 21px; transform: rotate(45deg); }.menu-button[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
.mobile-nav { display: none; }

.hero { min-height: 100vh; padding: 150px 0 0; position: relative; isolation: isolate; color: var(--white); background: var(--ink); overflow: hidden; }
.hero-grid, .download-grid { position: absolute; inset: 0; z-index: -2; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, black 20%, transparent 90%); }
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { width: 500px; height: 500px; right: 4%; top: 16%; background: radial-gradient(circle, rgba(117,190,0,.13), transparent 67%); }
.hero-glow-two { width: 380px; height: 380px; left: -12%; top: 45%; background: radial-gradient(circle, rgba(186,255,40,.07), transparent 70%); }
.hero-layout { display: grid; grid-template-columns: .93fr 1.07fr; gap: 80px; align-items: center; min-height: 620px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #dbe4dc; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.04); border-radius: 30px; padding: 7px 13px 7px 9px; font-size: 12px; font-weight: 700; letter-spacing: .035em; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(186,255,40,.1); animation: pulse 2.5s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(186,255,40,0); } }
.hero h1 { max-width: 690px; margin: 28px 0 24px; font-family: var(--display); font-size: clamp(58px, 6vw, 88px); line-height: .94; letter-spacing: -.065em; font-weight: 650; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.78); }
.hero-lead { max-width: 600px; color: #aebbb4; font-size: 18px; line-height: 1.65; }
.hero-lead strong { color: var(--white); font-weight: 700; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 800; }
.text-link svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; color: #809087; font-size: 12px; font-weight: 700; }
.hero-meta span { display: flex; align-items: center; gap: 6px; }
.hero-meta svg { width: 14px; fill: none; stroke: var(--green); stroke-width: 2.4; }

.product-stage { position: relative; min-height: 570px; display: grid; place-items: center; perspective: 1200px; }
.app-window { width: min(100%, 500px); position: relative; z-index: 3; background: #f7f9f4; color: var(--ink); border: 1px solid rgba(255,255,255,.13); border-radius: 18px; box-shadow: 0 45px 100px rgba(0,0,0,.48), 0 0 0 1px rgba(255,255,255,.07); overflow: hidden; transform: rotateY(-5deg) rotateX(2deg); transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.product-stage:hover .app-window { transform: rotateY(0) rotateX(0) translateY(-5px); }
.window-bar { height: 58px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; background: #0b1714; color: white; }
.window-brand { display: flex; align-items: center; gap: 8px; font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: -.02em; }
.window-brand svg { width: 25px; fill: none; stroke: var(--green); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.window-brand circle { fill: var(--green); stroke: none; }
.window-controls { display: flex; gap: 9px; }.window-controls i { width: 8px; height: 8px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; }
.window-body { padding: 26px; }
.local-id { display: flex; align-items: center; justify-content: space-between; border: 1px solid #dce2d8; background: white; padding: 17px 18px; border-radius: 10px; }
.local-id span, .connect-form label { display: block; margin-bottom: 2px; color: #78827b; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.local-id strong { font-family: var(--display); font-size: 25px; letter-spacing: .08em; }
.local-id button { width: 37px; height: 37px; display: grid; place-items: center; background: #edf1e9; border: 0; border-radius: 7px; color: #415049; cursor: pointer; }
.local-id button:hover { background: #e2e8dd; }.local-id button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.availability { display: flex; align-items: center; gap: 7px; margin: 10px 2px 22px; color: #607066; font-size: 10px; font-weight: 700; }.availability span { width: 6px; height: 6px; border-radius: 50%; background: #78c800; }
.connect-form label { margin: 0 0 8px; }
.id-field { height: 50px; display: flex; border: 1px solid #cbd2c8; border-radius: 9px; overflow: hidden; background: white; transition: border .2s, box-shadow .2s; }
.id-field:focus-within { border-color: #80bd13; box-shadow: 0 0 0 3px rgba(128,189,19,.12); }
.id-field input { width: 100%; min-width: 0; border: 0; outline: 0; padding: 0 15px; background: transparent; font-size: 13px; }
.id-field button { width: 51px; flex: 0 0 51px; display: grid; place-items: center; margin: 4px; border: 0; border-radius: 6px; background: var(--green); cursor: pointer; }
.id-field button svg { width: 19px; fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; }
.recent-title { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; color: #56625b; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }.recent-title small { color: #7aac25; }
.recent-device { display: flex; align-items: center; margin-top: 10px; padding: 12px; border: 1px solid #e0e4dd; border-radius: 9px; background: #fdfefb; }
.mini-screen { width: 36px; height: 25px; margin-right: 11px; border: 2px solid #68756e; border-radius: 3px; position: relative; }.mini-screen::after { content: ""; position: absolute; width: 12px; height: 2px; left: 10px; bottom: -6px; background: #68756e; }
.recent-device > span:nth-child(2) { display: flex; flex-direction: column; }.recent-device strong { font-size: 11px; }.recent-device small { color: #879188; font-size: 9px; }.online-dot { width: 7px; height: 7px; margin-left: auto; border-radius: 50%; background: #87ce11; }
.orbit { position: absolute; border: 1px solid rgba(186,255,40,.13); border-radius: 50%; }.orbit-one { width: 520px; height: 520px; }.orbit-two { width: 390px; height: 390px; border-style: dashed; animation: rotate 30s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.connection-line { position: absolute; z-index: 1; width: 620px; height: 180px; border: 1px solid transparent; border-top-color: rgba(186,255,40,.35); border-radius: 50%; transform: rotate(-18deg); }
.device-card { position: absolute; z-index: 5; top: 70px; right: -25px; display: flex; align-items: center; gap: 10px; min-width: 205px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; background: rgba(16,31,26,.9); backdrop-filter: blur(12px); box-shadow: 0 20px 50px rgba(0,0,0,.28); }
.device-icon { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 7px; background: rgba(186,255,40,.1); }.device-icon svg { width: 18px; fill: none; stroke: var(--green); stroke-width: 1.7; }
.device-card > span:nth-child(2) { display: flex; flex-direction: column; }.device-card strong { font-size: 10px; }.device-card small { color: #75867c; font-size: 8px; }.device-card > i { width: 7px; height: 7px; margin-left: auto; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.secure-chip { position: absolute; z-index: 5; bottom: 60px; left: -12px; display: flex; align-items: center; gap: 9px; padding: 10px 14px; border: 1px solid rgba(186,255,40,.22); border-radius: 30px; color: #dbe5dc; background: rgba(11,26,21,.88); backdrop-filter: blur(12px); font-size: 10px; font-weight: 700; }.secure-chip svg { width: 16px; fill: none; stroke: var(--green); stroke-width: 1.8; }
.trust-bar { display: flex; align-items: center; justify-content: space-between; min-height: 88px; margin-top: 32px; border-top: 1px solid rgba(255,255,255,.09); color: #728078; }
.trust-bar p { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }.trust-bar div { display: flex; align-items: center; gap: 25px; font-size: 12px; font-weight: 600; }.trust-bar i { width: 4px; height: 4px; border-radius: 50%; background: var(--green); }

.section { padding: 130px 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; margin-bottom: 65px; }
.section-heading p { max-width: 430px; margin: 0 0 6px; color: var(--muted); font-size: 17px; }
.section-kicker { display: block; margin-bottom: 16px; color: #568408; font-size: 11px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.section-kicker.light { color: var(--green); }
.section h2 { margin: 0; font-family: var(--display); font-size: clamp(46px, 5vw, 70px); line-height: .98; letter-spacing: -.055em; font-weight: 650; }
.section h2 em, .download-section h2 em { color: #758078; font-style: normal; font-weight: 450; }
.feature-grid { display: grid; grid-template-columns: 1.14fr .86fr .86fr; gap: 16px; }
.feature-card { min-height: 380px; position: relative; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(251,252,247,.7); overflow: hidden; transition: transform .3s, border-color .3s, box-shadow .3s; }
.feature-card:hover { transform: translateY(-6px); border-color: #aab5a5; box-shadow: 0 20px 60px rgba(42,58,49,.08); }
.feature-card-large { background: var(--ink-soft); color: white; border-color: var(--ink-soft); }
.feature-number { position: absolute; right: 27px; top: 23px; color: #9aa49d; font-family: var(--display); font-size: 11px; letter-spacing: .1em; }
.feature-card-large .feature-number { color: #5d6b64; }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 90px; border-radius: 12px; background: #e5e9df; color: #34433c; }.feature-icon svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feature-card-large .feature-icon { background: rgba(186,255,40,.12); color: var(--green); }
.feature-card h3 { margin: 0 0 10px; font-family: var(--display); font-size: 25px; letter-spacing: -.035em; }.feature-card p { margin: 0; color: #6a756e; font-size: 14px; line-height: 1.6; }.feature-card-large p { color: #8c9c93; max-width: 310px; }
.id-demo { position: absolute; right: -20px; bottom: 28px; display: flex; align-items: center; gap: 5px; transform: rotate(-4deg); }.id-demo span { padding: 7px 8px; background: #26362f; border: 1px solid #354940; border-radius: 5px; color: #dfe9e2; font-family: var(--display); font-size: 13px; letter-spacing: .08em; }.id-demo i { margin-left: 5px; color: var(--green); font-style: normal; }

.steps-section { background: #e7e9e1; border-block: 1px solid #d5d9cf; }
.steps-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: start; }
.steps-sticky { position: sticky; top: 130px; }.steps-sticky p { max-width: 370px; margin: 24px 0 28px; color: var(--muted); }.steps-sticky .text-link { color: #477108; }
.steps-list { list-style: none; padding: 0; margin: 0; }
.step-item { min-height: 230px; display: grid; grid-template-columns: 42px 150px 1fr; gap: 30px; align-items: center; border-top: 1px solid #c6ccc1; }.step-item:last-child { border-bottom: 1px solid #c6ccc1; }
.step-index { align-self: start; padding-top: 34px; color: #78837b; font-family: var(--display); font-size: 11px; font-weight: 700; }
.step-item h3 { margin: 0 0 9px; font-family: var(--display); font-size: 25px; letter-spacing: -.035em; }.step-item p { max-width: 330px; margin: 0; color: var(--muted); font-size: 14px; }
.step-visual { width: 132px; height: 110px; display: grid; place-items: center; border: 1px solid #c8cec4; border-radius: 14px; background: rgba(255,255,255,.36); overflow: hidden; }.download-visual svg { width: 42px; fill: none; stroke: #50740c; stroke-width: 1.2; }.code-visual { grid-template-columns: repeat(3, auto); gap: 4px; padding: 20px; }.code-visual b { padding: 8px 6px; border: 1px solid #bac2b7; border-radius: 4px; background: #f3f4ef; font-family: var(--display); font-size: 12px; letter-spacing: .04em; }.connected-visual { grid-template-columns: auto 1fr auto; padding: 24px; }.connected-visual i { width: 22px; height: 30px; border: 2px solid #627168; border-radius: 4px; }.connected-visual i:last-child { width: 30px; height: 22px; }.connected-visual span { height: 1px; position: relative; background: #7bac1d; }.connected-visual span::after { content: ""; position: absolute; width: 5px; height: 5px; right: 0; top: -2px; border-radius: 50%; background: var(--green-deep); }

.free-section { background: var(--surface); }
.free-card { min-height: 590px; position: relative; display: grid; grid-template-columns: 1fr .72fr; gap: 90px; align-items: center; padding: 75px 85px; background: #12231e; color: white; border-radius: 30px; overflow: hidden; }
.free-card::before { content: "0"; position: absolute; left: 34%; top: -130px; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.045); font-family: var(--display); font-size: 700px; line-height: 1; pointer-events: none; }
.free-card::after { content: ""; position: absolute; width: 420px; height: 420px; left: -220px; bottom: -250px; border-radius: 50%; background: rgba(186,255,40,.09); filter: blur(20px); }
.free-copy { position: relative; z-index: 1; }.free-copy h2 span { color: var(--green); }.free-copy h2 em { color: #84948c; }.free-copy > p { max-width: 500px; margin: 25px 0 30px; color: #9caaa2; font-size: 17px; }.free-copy ul { display: grid; gap: 9px; list-style: none; padding: 0; margin: 0; }.free-copy li { display: flex; align-items: center; gap: 9px; color: #d9e1dc; font-size: 13px; font-weight: 700; }.free-copy li svg { width: 16px; fill: none; stroke: var(--green); stroke-width: 2.2; }
.license-card { position: relative; z-index: 1; padding: 29px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(255,255,255,.075); box-shadow: 0 35px 60px rgba(0,0,0,.23); backdrop-filter: blur(15px); }
.license-top { display: flex; justify-content: space-between; color: #9eaaa3; font-size: 9px; font-weight: 900; letter-spacing: .14em; }.license-top i { padding: 3px 7px; color: var(--green); border: 1px solid rgba(186,255,40,.27); border-radius: 20px; font-style: normal; }
.license-price { display: flex; align-items: baseline; margin-top: 24px; }.license-price sup { align-self: flex-start; margin-top: 15px; color: var(--green); font-size: 16px; font-weight: 800; }.license-price strong { color: var(--green); font-family: var(--display); font-size: 105px; line-height: .9; letter-spacing: -.07em; }.license-price > span { margin-left: 8px; color: #94a198; font-size: 10px; }
.license-rule { height: 1px; margin: 24px 0 15px; background: rgba(255,255,255,.13); }.license-row { display: flex; justify-content: space-between; padding: 8px 0; color: #aeb9b2; font-size: 11px; }.license-row b { color: #f2f7f3; }.button-light { width: 100%; margin-top: 20px; background: white; color: var(--ink); }.license-card > small { display: block; margin-top: 11px; color: #6f7e76; font-size: 8px; text-align: center; }

.use-cases { padding-top: 20px; }.section-heading.compact { display: block; }.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.case-card { min-height: 330px; display: flex; flex-direction: column; padding: 32px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }.case-tag { color: #62920e; font-size: 9px; font-weight: 900; letter-spacing: .15em; }.case-card h3 { max-width: 300px; margin: 55px 0 12px; font-family: var(--display); font-size: 26px; line-height: 1.15; letter-spacing: -.035em; }.case-card p { margin: 0; color: var(--muted); font-size: 13px; }.case-line { height: 1px; margin-top: auto; margin-bottom: 15px; background: #dee2da; }.case-caption { color: #8b958e; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.faq-section { padding-top: 80px; border-top: 1px solid #d9ddd5; }.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 110px; }.faq-intro { position: sticky; top: 130px; align-self: start; }.faq-intro p { max-width: 300px; color: var(--muted); }.accordion { border-top: 1px solid #c8cec4; }.faq-item { border-bottom: 1px solid #c8cec4; }.faq-item button { width: 100%; min-height: 88px; display: flex; justify-content: space-between; align-items: center; padding: 0; background: transparent; border: 0; color: var(--ink); text-align: left; cursor: pointer; }.faq-item button span { font-family: var(--display); font-size: 20px; font-weight: 650; letter-spacing: -.025em; }.faq-item button i { width: 18px; height: 18px; position: relative; flex: 0 0 18px; margin-left: 20px; }.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; left: 2px; top: 8px; width: 14px; height: 1px; background: var(--ink); transition: transform .25s; }.faq-item button i::after { transform: rotate(90deg); }.faq-item button[aria-expanded="true"] i::after { transform: rotate(0); }.faq-answer { overflow: hidden; }.faq-answer p { max-width: 620px; margin: -4px 0 28px; color: var(--muted); font-size: 14px; }

.download-section { min-height: 590px; position: relative; isolation: isolate; display: grid; place-items: center; padding: 100px 0; background: #07110f; color: white; overflow: hidden; text-align: center; }.download-section::before, .download-section::after { content: ""; position: absolute; z-index: -1; border: 1px solid rgba(186,255,40,.12); border-radius: 50%; }.download-section::before { width: 650px; height: 650px; }.download-section::after { width: 440px; height: 440px; border-style: dashed; }.download-content { display: flex; flex-direction: column; align-items: center; }.download-section h2 { margin: 0; font-family: var(--display); font-size: clamp(48px, 6vw, 75px); line-height: 1; letter-spacing: -.055em; }.download-section h2 em { color: #738078; }.download-content > p { margin: 25px 0; color: #8e9c94; }.button-download { min-width: 240px; min-height: 65px; }.button-download svg { width: 26px; fill: currentColor; stroke: none; }.button-download span { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; font-size: 16px; }.button-download small { font-size: 8px; letter-spacing: .1em; }.download-note { margin-top: 12px; color: #57665d; font-size: 9px; }

.site-footer { background: #050c0a; color: white; }.footer-main { min-height: 180px; display: grid; grid-template-columns: .6fr 1fr .8fr; gap: 60px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.09); }.footer-main > p { max-width: 380px; color: #69766f; font-size: 13px; }.footer-main nav { display: flex; justify-content: flex-end; gap: 23px; color: #8d9992; font-size: 11px; font-weight: 700; }.footer-main nav a:hover { color: white; }.footer-bottom { height: 70px; display: flex; justify-content: space-between; align-items: center; color: #4c5952; font-size: 10px; }.footer-bottom b { color: var(--green); }
.toast { position: fixed; z-index: 200; left: 50%; bottom: 28px; transform: translate(-50%, 30px); padding: 11px 18px; background: var(--green); color: var(--ink); border-radius: 30px; font-size: 12px; font-weight: 800; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; box-shadow: 0 15px 40px rgba(0,0,0,.25); }.toast.show { opacity: 1; transform: translate(-50%, 0); }
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1) var(--delay, 0ms), transform .7s cubic-bezier(.2,.7,.2,1) var(--delay, 0ms); }.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  :root { --container: min(920px, calc(100vw - 40px)); }
  .desktop-nav { gap: 20px; margin-right: 20px; }.hero-layout { gap: 25px; grid-template-columns: .9fr 1.1fr; }.hero h1 { font-size: 60px; }.product-stage { transform: scale(.88); transform-origin: center; }.feature-grid { grid-template-columns: 1fr 1fr; }.feature-card-large { grid-row: span 2; }.steps-layout { gap: 55px; }.free-card { padding: 60px; gap: 50px; }.faq-layout { gap: 65px; }
}

@media (max-width: 780px) {
  :root { --container: calc(100vw - 32px); }.site-header { background: rgba(7,17,15,.92); backdrop-filter: blur(14px); }.header-inner { height: 68px; }.desktop-nav, .header-cta { display: none; }.menu-button { display: block; }.mobile-nav { position: fixed; inset: 68px 0 0; padding: 28px 16px; background: #07110f; flex-direction: column; align-items: stretch; gap: 0; transform: translateX(100%); transition: transform .3s; }.mobile-nav.open { display: flex; transform: translateX(0); }.mobile-nav a { padding: 17px 6px; border-bottom: 1px solid rgba(255,255,255,.09); font-family: var(--display); font-size: 24px; }.mobile-nav .button { margin-top: 25px; padding: 0 20px; color: var(--ink); background: var(--green); border: 0; font-size: 15px; }
  .hero { padding-top: 120px; }.hero-layout { display: block; }.hero-copy { width: 100%; min-width: 0; max-width: calc(100vw - 32px); }.hero h1 { margin-top: 23px; font-size: clamp(46px, 14vw, 70px); }.hero-lead { max-width: 100%; font-size: 16px; overflow-wrap: break-word; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }.product-stage { min-height: 540px; margin-top: 15px; transform: scale(.86); }.device-card { right: -5px; }.secure-chip { left: 0; }.trust-bar { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; padding: 20px 0; }.trust-bar p { margin: 0; }.trust-bar div { flex-wrap: wrap; gap: 8px 13px; }.trust-bar div i { display: none; }
  .section { padding: 90px 0; }.section-heading { display: block; margin-bottom: 42px; }.section-heading p { margin-top: 24px; }.section h2 { font-size: 48px; }.feature-grid { grid-template-columns: 1fr; }.feature-card { min-height: 320px; }.feature-card-large { grid-row: auto; }.feature-icon { margin-bottom: 60px; }
  .steps-layout { display: block; }.steps-sticky { position: static; margin-bottom: 55px; }.step-item { grid-template-columns: 32px 105px 1fr; gap: 15px; }.step-visual { width: 96px; height: 90px; }.step-item h3 { font-size: 20px; }.step-item p { font-size: 12px; }.code-visual { padding: 10px; }.code-visual b { padding: 5px 3px; font-size: 9px; }
  .free-card { grid-template-columns: 1fr; padding: 45px 24px; border-radius: 20px; }.license-card { max-width: 430px; width: 100%; }.cases-grid { grid-template-columns: 1fr; }.case-card { min-height: 300px; }
  .faq-layout { display: block; }.faq-intro { position: static; margin-bottom: 45px; }.faq-item button span { font-size: 17px; }.download-section { min-height: 560px; }.download-section h2 { font-size: 48px; }.footer-main { grid-template-columns: 1fr; gap: 20px; padding: 45px 0; }.footer-main nav { justify-content: flex-start; flex-wrap: wrap; }.footer-main > p { margin: 0; }.footer-bottom { height: 60px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 44px; }.eyebrow { font-size: 10px; }.product-stage { min-height: 465px; margin: 25px -35px -5px; transform: scale(.72); }.app-window { width: 470px; }.device-card { right: 10px; }.secure-chip { left: 5px; }.hero-meta { gap: 9px 18px; }.step-item { grid-template-columns: 28px 1fr; padding: 30px 0; }.step-visual { grid-column: 2; grid-row: 1; }.step-item > div:last-child { grid-column: 2; }.step-index { grid-row: 1 / span 2; }.free-copy h2, .section h2 { font-size: 42px; }.license-price strong { font-size: 88px; }.download-section h2 { font-size: 42px; }.footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }.reveal { opacity: 1; transform: none; }
}

/* Masterlink product identity */
.site-header { color: var(--ink); }
.site-header.scrolled { background: rgba(255,255,255,.91); border-color: var(--line); box-shadow: 0 8px 30px rgba(41,63,73,.06); backdrop-filter: blur(18px); }
.brand { gap: 11px; color: var(--ink); font-size: 20px; font-weight: 750; letter-spacing: -.025em; }
.brand-mark { width: 43px; height: 43px; object-fit: contain; border-radius: 10px; filter: drop-shadow(0 5px 10px rgba(22,82,37,.14)); }
.brand-name span { color: var(--green); }
.desktop-nav a { color: #6e7779; font-weight: 650; }
.desktop-nav a:hover { color: var(--green-deep); }
.button-small { border-color: #b8c7b2; color: var(--ink); background: rgba(255,255,255,.55); }
.button-small:hover { color: white; background: var(--ink); }
.button-primary { color: white; background: var(--green); box-shadow: 0 12px 40px rgba(98,143,46,.18); }
.button-primary:hover { background: #739f35; box-shadow: 0 16px 50px rgba(98,143,46,.25); }
.menu-button span:not(.sr-only) { background: var(--ink); }

.hero { color: var(--ink); background: linear-gradient(135deg, #fff 0%, #f8faf5 55%, #f1f6e9 100%); }
.hero-grid { background-image: linear-gradient(rgba(41,63,73,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(41,63,73,.045) 1px, transparent 1px); }
.hero-glow-one { background: radial-gradient(circle, rgba(133,182,63,.18), transparent 67%); }
.hero-glow-two { background: radial-gradient(circle, rgba(133,182,63,.1), transparent 70%); }
.eyebrow { color: var(--ink); border-color: #d5e3c7; background: rgba(237,245,223,.8); }
.status-dot { background: var(--green); box-shadow: 0 0 0 5px rgba(133,182,63,.13); }
.hero h1 span { color: var(--green); -webkit-text-stroke: 0; }
.hero-lead { color: var(--muted); }
.hero-lead strong { color: var(--ink); }
.hero-meta { color: #6f797b; }
.trust-bar { color: #77817d; border-top-color: var(--line); }
.section-kicker { color: var(--green-deep); }

.app-showcase { width: min(100%, 640px); position: relative; z-index: 3; overflow: hidden; border: 1px solid #d8e1d5; border-radius: 20px; background: white; box-shadow: 0 35px 85px rgba(41,63,73,.18), 0 8px 24px rgba(41,63,73,.08); transform: rotateY(-4deg) rotateX(1deg); transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s; }
.product-stage:hover .app-showcase { transform: rotateY(0) rotateX(0) translateY(-5px); box-shadow: 0 45px 100px rgba(41,63,73,.22); }
.showcase-bar { height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 0 17px; border-bottom: 1px solid #e3e8e0; background: #fbfcfa; }
.showcase-title { display: flex; align-items: center; gap: 9px; color: var(--ink); font-family: var(--display); font-size: 11px; font-weight: 750; letter-spacing: .03em; }
.showcase-title img { width: 28px; height: 28px; border-radius: 7px; }
.showcase-title small { margin-left: 5px; color: #929a96; font-size: 7px; letter-spacing: .12em; }
.showcase-controls { display: flex; gap: 7px; }
.showcase-controls i { width: 8px; height: 8px; border-radius: 50%; background: #d5dbd2; }
.showcase-controls i:first-child { background: #cdddbb; }
.showcase-screen { position: relative; aspect-ratio: 1160 / 760; overflow: hidden; background: #f6f7f5; }
.showcase-screen img { width: 100%; height: 100%; display: block; object-fit: cover; transition: opacity .16s, transform .3s; }
.showcase-screen img.switching { opacity: 0; transform: scale(.992); }
.showcase-tabs { display: flex; gap: 7px; padding: 10px; border-top: 1px solid #e3e8e0; background: white; }
.showcase-tabs button { min-height: 31px; padding: 0 12px; border: 1px solid #dce4d8; border-radius: 18px; background: #f7f9f5; color: #7c8383; font-size: 9px; font-weight: 750; cursor: pointer; transition: color .2s, background .2s, border-color .2s; }
.showcase-tabs button:hover { border-color: #b7cb9c; color: var(--ink); }
.showcase-tabs button.active { border-color: #d5e5c2; background: var(--green-soft); color: var(--green-deep); }
.orbit { border-color: rgba(98,143,46,.19); }
.orbit-one { width: 560px; height: 560px; }
.orbit-two { width: 420px; height: 420px; }
.device-card { top: 64px; border-color: #dce5d8; background: rgba(255,255,255,.94); box-shadow: 0 20px 50px rgba(41,63,73,.16); }
.device-icon { background: var(--green-soft); }
.device-icon svg { stroke: var(--green-deep); }
.device-card strong { color: var(--ink); }
.device-card small { color: #7d8583; }
.device-card > i { background: var(--green); box-shadow: 0 0 10px rgba(133,182,63,.65); }
.secure-chip { bottom: 45px; color: var(--ink); border-color: #d5e4c6; background: rgba(255,255,255,.94); box-shadow: 0 12px 35px rgba(41,63,73,.1); }
.secure-chip svg { stroke: var(--green-deep); }

.feature-card-large, .free-card { background: var(--ink-soft); }
.steps-section { background: #f0f4eb; border-color: #dce5d6; }
.download-section { background: var(--ink-soft); }
.download-section::before, .download-section::after { border-color: rgba(133,182,63,.2); }
.site-footer { background: #203640; }
.site-footer .brand { color: white; }
.toast { color: white; box-shadow: 0 15px 40px rgba(0,0,0,.18); }

@media (max-width: 780px) {
  .site-header { background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); }
  .mobile-nav { background: #f8faf6; }
  .mobile-nav a { color: var(--ink); border-bottom-color: var(--line); }
  .mobile-nav .button { color: white; }
  .js .hero .reveal { opacity: 1; transform: none; transition: none; }
  .product-stage { transform: scale(.84); }
  .app-showcase { width: 640px; }
}

@media (max-width: 480px) {
  .brand-mark { width: 38px; height: 38px; }
  .brand { font-size: 18px; }
  .product-stage { transform: scale(.6); min-height: 440px; margin: 5px -78px -15px; }
  .app-showcase { width: 640px; }
  .device-card { right: 0; }
  .secure-chip { left: 0; }
}
