:root {
    --navy: #15293c;
    --navy-deep: #0d1b29;
    --teal: #14937f;
    --teal-bright: #29cfbd;
    --ink: #122131;
    --muted: #5d6c7b;
    --bg: #ffffff;
    --bg-alt: #f4f6f8;
    --paper: #f6f4ef;
    --paper-line: #e7e3d8;
    --line: #e3e8ee;
    --ok: #1f7a4d;
    --ok-bg: #e7f3ec;
    --soon: #a3650f;
    --soon-bg: #f8efde;
    --late: #b3402f;
    --late-bg: #f8e8e5;
    --font-display: "Sora", system-ui, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --r-sm: 10px;
    --r: 14px;
    --r-lg: 22px;
    --sh-sm: 0 1px 2px rgba(13, 27, 41, 0.05), 0 6px 16px rgba(13, 27, 41, 0.06);
    --sh: 0 14px 38px rgba(13, 27, 41, 0.10);
    --sh-lg: 0 30px 80px rgba(13, 27, 41, 0.16);
    --shell-max: 1160px;
    --shell-pad: 22px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; width: 100%; }
img { max-width: 100%; height: auto; display: block; }
.shell { max-width: var(--shell-max); margin: 0 auto; padding: 0 var(--shell-pad); }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff; padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 12px; top: 12px; }

.btn { display: inline-block; font-weight: 600; font-size: 15.5px; text-decoration: none; border: 0; cursor: pointer; border-radius: 12px; padding: 14px 26px; transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease); font-family: var(--font-body); }
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--navy); color: #ffffff; box-shadow: var(--sh-sm); }
.btn-solid:hover { background: var(--navy-deep); box-shadow: var(--sh); }
.btn-ghost { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--navy); }
.btn-light { background: #ffffff; color: var(--navy); }
.btn-wide { display: block; text-align: center; }

.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark img { display: block; border-radius: 9px; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink); letter-spacing: -0.01em; }
.primary-nav { display: flex; gap: 24px; }
.primary-nav a { text-decoration: none; color: var(--muted); font-weight: 600; font-size: 14.5px; transition: color 0.2s ease; }
.primary-nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: inline-flex; gap: 6px; font-size: 13.5px; color: var(--muted); }
.lang-switch a { color: var(--muted); text-decoration: none; font-weight: 600; }
.lang-switch a.is-active { color: var(--ink); }
.header-cta { padding: 11px 20px; font-size: 14.5px; }
.menu-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; cursor: pointer; border-radius: 10px; }
.menu-bar, .menu-bar::before, .menu-bar::after { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; margin: 0 auto; transition: transform 0.3s var(--ease); content: ""; }
.menu-bar::before { position: absolute; top: -7px; }
.menu-bar::after { position: absolute; top: 7px; }
.mobile-nav { display: none; }

.hero { background: linear-gradient(180deg, #ffffff 0%, var(--bg-alt) 100%); padding: 74px 0 86px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero-badge { display: inline-block; background: var(--ok-bg); color: var(--ok); font-weight: 600; font-size: 13px; padding: 7px 14px; border-radius: 999px; margin: 0 0 20px; }
.hero-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 4.8vw, 54px); line-height: 1.08; letter-spacing: -0.025em; margin: 0 0 18px; }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 540px; margin: 0 0 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin: 16px 0 0; font-size: 13.5px; color: var(--muted); }

.appwin { background: var(--paper); border-radius: var(--r-lg); box-shadow: var(--sh-lg); overflow: hidden; border: 1px solid var(--paper-line); }
.aw-logo { width: 30px; height: 30px; border-radius: 9px; background: var(--teal-bright); }
.aw-item { width: 26px; height: 26px; border-radius: 8px; background: rgba(255, 255, 255, 0.16); }
.aw-item.is-on { background: rgba(41, 207, 189, 0.85); }
.aw-line { display: block; height: 8px; border-radius: 4px; background: #e8e4da; }
.w35 { width: 35%; } .w40 { width: 40%; } .w45 { width: 45%; } .w50 { width: 50%; } .w55 { width: 55%; } .w60 { width: 60%; } .w70 { width: 70%; } .w80 { width: 80%; }
.aw-chip.ok, .pill.ok { background: var(--ok-bg); color: var(--ok); }
.aw-chip.soon, .pill.soon { background: var(--soon-bg); color: var(--soon); }
.pill.late { background: var(--late-bg); color: var(--late); }

.proof { padding: 30px 0; border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.proof-item strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.proof-item span { color: var(--muted); font-size: 14px; }

.sec-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 3.8vw, 42px); letter-spacing: -0.02em; margin: 0 0 12px; }
.sec-sub { color: var(--muted); font-size: 17px; max-width: 640px; margin: 0 0 46px; }

.features { padding: 92px 0 40px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; padding: 38px 0; }
.split-copy h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.8vw, 28px); letter-spacing: -0.015em; margin: 0 0 12px; }
.split-copy p { color: var(--muted); margin: 0 0 18px; }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 30px; font-size: 15.5px; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 19px; height: 19px; border-radius: 50%; background: var(--ok-bg); }
.ticks li::after { content: ""; position: absolute; left: 5px; top: 8px; width: 9px; height: 5px; border: 2px solid var(--ok); border-top: 0; border-right: 0; transform: rotate(-45deg); }
.split-visual { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; display: grid; gap: 14px; min-height: 240px; align-content: center; }
.svf-head { display: flex; gap: 12px; align-items: center; }
.svf-head b { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #ffffff; font-size: 13px; font-weight: 700; font-style: normal; display: grid; place-items: center; flex: 0 0 auto; }
.svf-head > div { flex: 1; display: grid; gap: 3px; }
.sv-name { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.sv-sub { font-size: 12px; color: var(--muted); }
.sv-step { font-size: 12px; font-weight: 600; color: var(--muted); margin: -2px 0 2px; }
.sv-txt { flex: 1; font-size: 13px; line-height: 1.4; color: var(--ink); }
.svf-steps { display: flex; gap: 8px; }
.svf-steps span { flex: 1; height: 9px; border-radius: 5px; background: #dde3ea; }
.svf-steps .done { background: var(--teal); }
.svf-steps .now { background: var(--teal-bright); }
.svd-row { display: flex; align-items: center; gap: 14px; background: #ffffff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; }
.svd-row i { flex: 1; }
.pill { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; white-space: nowrap; font-style: normal; }
.svp-doc { display: flex; align-items: center; gap: 12px; background: #ffffff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 13px 15px; }
.svp-doc b { width: 30px; height: 36px; border-radius: 5px; background: #dde3ea; flex: 0 0 auto; }
.svp-doc i { flex: 1; }
.svp-bar { height: 10px; border-radius: 6px; background: #dde3ea; overflow: hidden; }
.svp-bar span { display: block; width: 64%; height: 100%; background: var(--teal); }
.svm-msg { display: flex; gap: 12px; align-items: center; background: #ffffff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 13px 15px; }
.svm-msg b { width: 36px; height: 36px; border-radius: 50%; background: var(--navy); flex: 0 0 auto; }
.svm-msg > div { flex: 1; display: grid; gap: 7px; }
.svm-msg.dim { opacity: 0.6; }
.svm-auto { justify-self: start; background: var(--ok-bg); color: var(--ok); font-size: 12.5px; font-weight: 600; padding: 6px 13px; border-radius: 999px; }

.demo { padding: 92px 0; background: var(--navy-deep); }
.demo .sec-title, .demo .sec-sub { color: #ffffff; }
.demo .sec-sub { color: #9fb2c4; }
.demowin { background: var(--paper); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.demowin-top { display: flex; align-items: center; gap: 7px; padding: 13px 18px; background: #ffffff; border-bottom: 1px solid var(--paper-line); }
.demowin-top span { width: 11px; height: 11px; border-radius: 50%; background: #d9d4c8; }
.demowin-top i { margin-left: auto; font-style: normal; font-size: 13px; color: var(--muted); }
.demoapp-body { display: grid; grid-template-columns: 232px 1fr; min-height: 460px; }
.demoapp-nav { background: #ffffff; border-right: 1px solid var(--paper-line); padding: 14px 10px; display: flex; flex-direction: column; gap: 3px; }
.dtab { display: flex; align-items: center; gap: 11px; text-align: left; background: transparent; border: 0; color: #45505e; font-family: var(--font-body); font-weight: 600; font-size: 13.5px; padding: 10px 12px; border-radius: 9px; cursor: pointer; transition: background 0.2s ease, color 0.2s ease; }
.dtab .dic { display: inline-flex; flex: 0 0 auto; }
.dtab .dic svg { width: 19px; height: 19px; }
.dtab:hover { color: var(--ink); background: #f1f3f5; }
.dtab.is-on { background: #eef0f3; color: var(--ink); font-weight: 700; }
.demoapp-main { padding: 24px 26px; background: #f6f7f9; min-width: 0; }
.dpane { display: block; }
.dapp-head { margin-bottom: 18px; }
.dapp-h1 { font-family: Georgia, 'Times New Roman', serif; font-weight: 700; font-size: 22px; letter-spacing: -0.01em; margin: 0 0 4px; color: var(--ink); }
.dapp-sub { color: var(--muted); font-size: 14px; margin: 0; }
.dapp-empty { color: var(--muted); font-size: 14px; background: #ffffff; border: 1px dashed var(--paper-line); border-radius: var(--r-sm); padding: 16px; text-align: center; }
.dapp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 14px; }
.dapp-stat { background: #ffffff; border: 1px solid var(--paper-line); border-radius: var(--r-sm); padding: 15px 16px; }
.dapp-stat-n { font-family: Georgia, 'Times New Roman', serif; font-weight: 700; font-size: 26px; margin: 0; color: var(--ink); }
.dapp-stat-l { color: var(--muted); font-size: 13px; margin: 2px 0 0; }
.dapp-mini { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 20px; }
.dapp-minicard { background: #ffffff; border: 1px solid var(--paper-line); border-radius: var(--r-sm); padding: 12px 13px; }
.dapp-minicard-top { display: flex; align-items: center; gap: 9px; }
.dapp-minicard-top .dic { display: inline-flex; color: var(--teal); }
.dapp-minicard-top .dic svg { width: 18px; height: 18px; }
.dapp-minicard-t { font-size: 12.5px; color: var(--muted); flex: 1; }
.dapp-minicard-n { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--ink); }
.dapp-toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 14px; }
.dapp-search { flex: 1; min-width: 180px; font-family: var(--font-body); font-size: 14.5px; padding: 10px 13px; border: 1px solid var(--paper-line); border-radius: 10px; background: #ffffff; color: var(--ink); }
.dapp-search:focus { outline: 2px solid var(--teal-bright); outline-offset: 1px; border-color: var(--teal); }
.dapp-tabs, .dapp-tasktabs { display: flex; flex-wrap: wrap; gap: 7px; }
.dapp-tab, .dapp-tasktab { display: inline-flex; align-items: center; gap: 7px; background: #ffffff; border: 1px solid var(--paper-line); color: var(--muted); font-family: var(--font-body); font-weight: 600; font-size: 13px; padding: 8px 13px; border-radius: 999px; cursor: pointer; transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease; }
.dapp-tab:hover, .dapp-tasktab:hover { border-color: var(--teal); color: var(--ink); }
.dapp-tab.is-on, .dapp-tasktab.is-on { background: var(--navy-deep); border-color: var(--navy-deep); color: #ffffff; }
.dapp-badge { background: var(--paper); color: var(--ink); border-radius: 999px; font-size: 11.5px; font-weight: 700; padding: 1px 8px; min-width: 20px; text-align: center; }
.dapp-tasktab.is-on .dapp-badge { background: var(--teal-bright); color: var(--navy-deep); }
.dapp-tablewrap { overflow-x: auto; border: 1px solid var(--paper-line); border-radius: var(--r-sm); background: #ffffff; }
.dapp-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 13.5px; }
.dapp-table th { text-align: left; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--muted); font-weight: 700; padding: 11px 13px; border-bottom: 1px solid var(--paper-line); white-space: nowrap; }
.dapp-table td { padding: 12px 13px; border-bottom: 1px solid var(--paper-line); vertical-align: middle; color: var(--ink); white-space: nowrap; }
.dapp-table td strong { display: block; }
.dapp-table tr:last-child td { border-bottom: 0; }
.dapp-mono { font-variant-numeric: tabular-nums; color: var(--muted); white-space: nowrap; }
.dapp-status { display: inline-block; margin: 5px 0 0; font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: 999px; white-space: nowrap; line-height: 1.5; }
.dapp-status.progress { background: var(--soon-bg); color: var(--soon); }
.dapp-status.accepted { background: var(--ok-bg); color: var(--ok); }
.dapp-status.declined { background: var(--late-bg); color: var(--late); }
.dapp-status.pending { background: #eef1f5; color: var(--muted); }
.dapp-pill { display: inline-block; background: #eef1f5; color: var(--ink); font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 999px; white-space: nowrap; }
.dapp-chip { display: inline-block; font-size: 12px; font-weight: 600; padding: 3px 9px; border-radius: 7px; white-space: nowrap; }
.dapp-chip.is-ok { background: var(--ok-bg); color: var(--ok); }
.dapp-chip.is-soon { background: var(--soon-bg); color: var(--soon); }
.dapp-chip.is-late { background: var(--late-bg); color: var(--late); }
.dapp-dash { color: #b7bfc8; }
.dform { display: flex; flex-wrap: wrap; gap: 16px; align-items: end; margin: 0 0 20px; }
.dform label { display: grid; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.dform select, .dform input { font-family: var(--font-body); font-size: 15px; padding: 11px 13px; border: 1px solid var(--paper-line); border-radius: 10px; background: #ffffff; color: var(--ink); min-width: 200px; }
.dform select:focus, .dform input:focus { outline: 2px solid var(--teal-bright); outline-offset: 1px; border-color: var(--teal); }
.dtl-client { display: flex; align-items: center; gap: 13px; background: #ffffff; border: 1px solid var(--paper-line); border-radius: var(--r-sm); padding: 13px 15px; margin-bottom: 18px; }
.dtl-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: #ffffff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.dtl-client strong { display: block; font-size: 15px; color: var(--ink); }
.dtl-role { font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; color: var(--teal); }
.dtl-out { display: grid; gap: 11px; }
.dtl-frise { background: #ffffff; border: 1px solid var(--paper-line); border-radius: var(--r-sm); padding: 18px 16px; }
.dtl-marker { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.dtl-marker-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(20, 147, 127, 0.15); }
.dtl-marker-tag { font-size: 12px; font-weight: 700; color: var(--teal); }
.dtl-bar { height: 8px; border-radius: 6px; background: linear-gradient(90deg, var(--teal) 0%, var(--paper-line) 100%); position: relative; }
.dtl-event { position: absolute; right: 0; top: -26px; font-size: 11.5px; font-weight: 600; color: var(--muted); }
.dtl-eventshead { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--muted); margin: 6px 0 0; }
.dtl-eventrow { display: flex; align-items: center; gap: 14px; background: #ffffff; border: 1px solid var(--paper-line); border-radius: var(--r-sm); padding: 12px 14px; }
.dtl-eventrow.is-expiry { border-color: #cdb38f; background: var(--soon-bg); }
.dtl-eventdate { flex: 0 0 auto; text-align: center; min-width: 54px; }
.dtl-eventdate strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); }
.dtl-eventdate span { font-size: 12px; color: var(--muted); }
.dtl-eventbody strong { display: block; font-size: 14px; color: var(--ink); }
.dtl-eventbody span { font-size: 12.5px; color: var(--muted); }
.dtl-gantt { background: #ffffff; border: 1px solid var(--paper-line); border-radius: var(--r-sm); padding: 16px; }
.dtl-gtoolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.dtl-gviews { display: inline-flex; background: var(--paper); border: 1px solid var(--paper-line); border-radius: 8px; padding: 3px; gap: 2px; }
.dtl-gview { border: 0; background: transparent; font: inherit; font-size: 12.5px; font-weight: 600; color: var(--muted); padding: 6px 13px; border-radius: 6px; cursor: pointer; }
.dtl-gview.is-on { background: var(--navy); color: #ffffff; }
.dtl-glegend { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--muted); }
.dtl-gdot { width: 10px; height: 10px; border-radius: 50%; background: #d64545; }
.dtl-gaxis { display: flex; padding-left: 150px; border-bottom: 1px solid var(--paper-line); }
.dtl-gcol { flex: 1; min-width: 0; font-size: 11px; font-weight: 600; color: var(--muted); padding: 0 0 7px 8px; border-left: 1px solid var(--paper-line); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dtl-grow { display: flex; align-items: stretch; min-height: 70px; }
.dtl-growhead { flex: 0 0 150px; display: flex; align-items: center; gap: 10px; padding: 12px 12px 12px 0; }
.dtl-growhead strong { display: block; font-size: 13.5px; color: var(--ink); }
.dtl-avatar-sm { width: 34px; height: 34px; font-size: 12px; flex: 0 0 auto; }
.dtl-gtrack { position: relative; flex: 1; min-width: 0; border-left: 1px solid var(--paper-line); }
.dtl-ggrid { position: absolute; top: 0; bottom: 0; width: 1px; background: var(--paper-line); }
.dtl-gtoday { position: absolute; top: 0; bottom: 0; width: 2px; background: #d64545; transform: translateX(-1px); }
.dtl-gtodaytag { position: absolute; top: -3px; left: 50%; transform: translateX(-50%); background: #d64545; color: #ffffff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 999px; white-space: nowrap; }
.dtl-gchip { position: absolute; top: 50%; transform: translateY(-50%); background: var(--soon-bg); color: #8a6d3b; border: 1px solid #cdb38f; font-size: 11.5px; font-weight: 600; padding: 5px 10px; border-radius: 7px; white-space: nowrap; max-width: 70%; overflow: hidden; text-overflow: ellipsis; }
.dapp-tasklist { display: grid; gap: 9px; margin-top: 16px; }
.dapp-taskrow { display: flex; align-items: center; gap: 13px; background: #ffffff; border: 1px solid var(--paper-line); border-radius: var(--r-sm); padding: 12px 14px; }
.dapp-taskrow.is-done { background: var(--ok-bg); border-color: #cfe6da; }
.dapp-check { width: 18px; height: 18px; accent-color: var(--teal); flex: 0 0 auto; cursor: pointer; }
.dapp-taskmid { flex: 1; min-width: 0; }
.dapp-taskline { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.dapp-tasktitle { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.dapp-taskrow.is-done .dapp-tasktitle { text-decoration: line-through; color: var(--muted); }
.dapp-pr { font-size: 11px; font-weight: 700; padding: 2px 9px; border-radius: 999px; }
.dapp-pr.high { background: var(--late-bg); color: var(--late); }
.dapp-pr.normal { background: var(--soon-bg); color: var(--soon); }
.dapp-pr.low { background: #eef1f5; color: var(--muted); }
.dapp-taskmeta { display: flex; gap: 12px; font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.dapp-state { font-weight: 600; }
.dapp-due { flex: 0 0 auto; text-align: right; font-size: 13px; color: var(--ink); }
.dapp-due.is-late { color: var(--late); font-weight: 700; }
.dapp-due-time { display: block; font-size: 11.5px; color: var(--muted); }
.dapp-due.is-late .dapp-due-time { color: var(--late); }
.dapp-kanban { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dapp-kcol { background: #ffffff; border: 1px solid var(--paper-line); border-radius: var(--r-sm); padding: 12px; min-height: 180px; }
.dapp-kcol-head { display: flex; align-items: center; gap: 8px; margin-bottom: 11px; }
.dapp-kdot { width: 9px; height: 9px; border-radius: 50%; }
.dapp-kdot.is-todo { background: var(--muted); }
.dapp-kdot.is-doing { background: var(--soon); }
.dapp-kdot.is-cdone { background: var(--ok); }
.dapp-kcol-t { font-size: 13px; font-weight: 700; color: var(--ink); flex: 1; }
.dapp-kcount { background: var(--paper); color: var(--muted); border-radius: 999px; font-size: 11.5px; font-weight: 700; padding: 1px 8px; }
.dapp-kempty { font-size: 12.5px; color: #b7bfc8; text-align: center; padding: 14px 0; margin: 0; }
.dapp-kcard { background: var(--paper); border: 1px solid var(--paper-line); border-radius: 9px; padding: 11px 12px; margin-bottom: 9px; }
.dapp-kcard-t { font-size: 13.5px; font-weight: 600; color: var(--ink); margin: 0 0 9px; line-height: 1.35; }
.dapp-kactions { display: flex; gap: 7px; }
.dapp-kbtn { background: #ffffff; border: 1px solid var(--paper-line); color: var(--muted); font-family: var(--font-body); font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 7px; cursor: pointer; transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease; }
.dapp-kbtn:hover { border-color: var(--teal); color: var(--ink); }
.dapp-kbtn.is-fwd { background: var(--navy); border-color: var(--navy); color: #ffffff; }
.dapp-kbtn.is-fwd:hover { background: var(--navy-deep); }
.dapp-refstats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; margin-bottom: 20px; }
.dapp-refstat { background: #ffffff; border: 1px solid var(--paper-line); border-radius: var(--r-sm); padding: 14px 15px; }
.dapp-reftitle { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--muted); margin: 0 0 11px; }
.dapp-refgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 11px; margin-bottom: 24px; }
.dapp-refcard { background: #ffffff; border: 1px solid var(--paper-line); border-radius: var(--r-sm); padding: 14px; display: flex; flex-direction: column; gap: 12px; }
.dapp-refcard-top { display: flex; gap: 11px; }
.dapp-refcard-top .dic { display: inline-flex; color: var(--teal); flex: 0 0 auto; }
.dapp-refcard-top .dic svg { width: 22px; height: 22px; }
.dapp-refcard-top strong { display: block; font-size: 14px; color: var(--ink); line-height: 1.3; }
.dapp-refhost { font-size: 12px; color: var(--muted); }
.dapp-refcard-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.dapp-refclicks { font-size: 12.5px; color: var(--muted); }
.dapp-refopen { background: var(--navy); border: 0; color: #ffffff; font-family: var(--font-body); font-size: 12.5px; font-weight: 700; padding: 6px 14px; border-radius: 8px; cursor: pointer; transition: background 0.18s ease; }
.dapp-refopen:hover { background: var(--navy-deep); }
.dapp-refadd { border-top: 1px solid var(--paper-line); padding-top: 18px; }
.dapp-referr { color: var(--late); font-size: 13px; margin: 4px 0 0; }
@media (max-width: 720px) {
    .demoapp-body { grid-template-columns: 1fr; }
    .demoapp-nav { flex-direction: row; overflow-x: auto; padding: 10px; gap: 4px; }
    .dtab { flex-direction: column; gap: 5px; font-size: 11px; white-space: nowrap; padding: 8px 10px; }
    .demoapp-main { padding: 18px 14px; }
    .dapp-stats, .dapp-mini, .dapp-refstats { grid-template-columns: repeat(2, 1fr); }
    .dapp-kanban { grid-template-columns: 1fr; }
    .dapp-refgrid { grid-template-columns: 1fr; }
    .dapp-tablewrap { -webkit-overflow-scrolling: touch; }
    .dform select, .dform input { min-width: 0; width: 100%; }
    .dform label { width: 100%; }
    .dtl-gantt { overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 14px 12px; }
    .dtl-gaxis, .dtl-grow { min-width: 520px; }
    .dtl-gaxis { padding-left: 110px; }
    .dtl-growhead { flex: 0 0 110px; padding: 10px 8px 10px 0; }
    .dtl-growhead strong { font-size: 12px; }
    .dtl-avatar-sm { width: 28px; height: 28px; font-size: 11px; }
    .dtl-gtoolbar { gap: 8px; }
    .dtl-event { position: static; display: block; margin-top: 4px; }
    .dtl-eventrow { gap: 10px; padding: 10px 12px; }
    .dtl-eventdate { min-width: 46px; }
}
@media (max-width: 420px) {
    .dapp-stats, .dapp-mini, .dapp-refstats { grid-template-columns: 1fr; }
}
.demo-note { margin: 18px 0 0; text-align: center; color: #8fa3b6; font-size: 13.5px; }

.security { padding: 92px 0; background: var(--bg-alt); }
.sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sec-card { background: #ffffff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px 22px; box-shadow: var(--sh-sm); }
.sec-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 17.5px; margin: 14px 0 8px; }
.sec-card p { margin: 0; color: var(--muted); font-size: 14.5px; }
.sec-ic { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 14px; background: var(--navy); color: var(--teal-bright); box-shadow: inset 0 0 0 1px rgba(41, 207, 189, 0.22); }
.sec-ic svg { width: 26px; height: 26px; display: block; }

.pricing { padding: 92px 0; }
.pricing-inner { display: grid; justify-content: center; }
.price-card { background: var(--navy); color: #ffffff; border-radius: var(--r-lg); padding: 40px 42px; max-width: 480px; box-shadow: var(--sh-lg); }
.price-kicker { margin: 0; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-bright); font-weight: 600; }
.price-num { margin: 8px 0 6px; font-family: var(--font-display); font-weight: 800; font-size: clamp(42px, 6vw, 58px); line-height: 1; }
.price-sub { margin: 0 0 22px; color: #aebdcc; font-size: 15px; }
.price-card .ticks li { color: #e6edf4; }
.price-card .ticks li::before { background: rgba(41, 207, 189, 0.18); }
.price-card .ticks li::after { border-color: var(--teal-bright); }
.price-card .btn { margin-top: 26px; }

.section-services { padding: 92px 0; background: var(--bg-alt); }
.section-services .kicker { margin: 0 0 10px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); font-weight: 700; }
.section-services .section-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 3.8vw, 42px); letter-spacing: -0.02em; margin: 0 0 12px; }
.section-services .section-intro { color: var(--muted); font-size: 17px; max-width: 680px; margin: 0 0 40px; }
.services-grid { display: grid; gap: 26px; margin: 0 0 56px; align-items: start; }
.steps-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.step-item { display: flex; gap: 16px; background: #ffffff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px 22px; box-shadow: var(--sh-sm); }
.step-num { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 12px; background: var(--navy); color: #ffffff; font-weight: 700; display: grid; place-items: center; font-size: 16px; font-family: var(--font-display); }
.step-title { margin: 2px 0 6px; font-size: 17px; font-family: var(--font-display); font-weight: 700; }
.step-text { margin: 0; color: var(--muted); font-size: 15px; }
.services-price { background: #ffffff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--sh); position: sticky; top: 96px; }
.price-label { margin: 0; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); font-weight: 700; }
.price-amount { margin: 6px 0 12px; font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 6vw, 54px); line-height: 1; color: var(--ink); }
.price-note { margin: 0 0 20px; font-size: 14.5px; color: var(--muted); }
.btn-block { display: block; width: 100%; text-align: center; }
.price-contact { margin: 14px 0 0; font-size: 13.5px; color: var(--muted); }
.portfolio-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 3.2vw, 30px); letter-spacing: -0.015em; margin: 0 0 10px; }
.portfolio-grid { display: grid; gap: 22px; margin-top: 30px; }
.portfolio-card { display: flex; flex-direction: column; border-radius: var(--r-lg); overflow: hidden; background: #ffffff; border: 1px solid var(--line); box-shadow: var(--sh-sm); text-decoration: none; color: inherit; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.portfolio-shot { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-alt); }
.portfolio-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.portfolio-card:hover .portfolio-shot img { transform: scale(1.05); }
.portfolio-preview { position: relative; display: block; aspect-ratio: 16 / 10; padding: 18px; overflow: hidden; }
.pp-bar { display: block; width: 44%; height: 8px; border-radius: 4px; opacity: 0.55; }
.pp-title { position: absolute; left: 18px; bottom: 44px; font-family: var(--font-display); font-weight: 700; font-size: clamp(19px, 2.4vw, 24px); }
.pp-lines { position: absolute; left: 18px; bottom: 18px; right: 18px; display: grid; gap: 6px; }
.pp-lines span { display: block; height: 6px; border-radius: 3px; opacity: 0.45; }
.pp-lines span:last-child { width: 62%; }
.portfolio-meta { display: grid; gap: 3px; padding: 16px 18px 18px; }
.portfolio-name { font-weight: 700; font-size: 16.5px; font-family: var(--font-display); }
.portfolio-tag { font-size: 13.5px; color: var(--muted); }
.portfolio-style { font-size: 13.5px; color: var(--teal); font-weight: 600; }
.portfolio-view { margin-top: 8px; font-size: 14px; font-weight: 700; color: var(--navy); }
.portfolio-card:hover .portfolio-view { color: var(--teal); }
.portfolio-card-aurore .portfolio-preview { background: linear-gradient(135deg, #101d2c 0%, #25405e 70%); color: #e9e2cf; }
.portfolio-card-aurore .pp-bar, .portfolio-card-aurore .pp-lines span { background: #c9a55a; }
.portfolio-card-boreal .portfolio-preview { background: linear-gradient(160deg, #f3f7f5 0%, #dcebe4 100%); color: #143b2e; }
.portfolio-card-boreal .pp-bar, .portfolio-card-boreal .pp-lines span { background: #1f8a63; }
.portfolio-card-atelier .portfolio-preview { background: linear-gradient(150deg, #f7efe4 0%, #ecd9c3 100%); color: #5a2e16; }
.portfolio-card-atelier .pp-bar, .portfolio-card-atelier .pp-lines span { background: #b4593a; }

.faq { padding: 92px 0; }
.faq-list { display: grid; gap: 12px; max-width: 820px; }
.faq-item { background: #ffffff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-sm); }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; font-size: 16px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-display); font-size: 22px; color: var(--teal); flex: 0 0 auto; transition: transform 0.3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

.contactband { padding: 92px 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); color: #ffffff; }
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
.contact-lead h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3.4vw, 36px); letter-spacing: -0.015em; margin: 0 0 14px; line-height: 1.12; }
.contact-lead p { color: #c7d2dd; font-size: 16px; margin: 0 0 26px; max-width: 440px; }
.contact-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.contact-points li { display: flex; flex-direction: column; gap: 3px; border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 14px; }
.contact-points-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-bright); }
.contact-points a, .contact-points span { color: #eaf0f5; text-decoration: none; font-size: 15px; }
.contact-points a:hover { text-decoration: underline; }
.contact-form-card { background: #ffffff; border-radius: var(--r-lg); padding: clamp(22px, 3vw, 34px); box-shadow: var(--sh-lg); color: var(--ink); }
.cform { display: grid; gap: 16px; }
.cform-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
.cfield { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.cfield label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.req { color: var(--late); }
.cfield input, .cfield textarea { width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink); background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 12px 14px; transition: border-color 0.15s ease, box-shadow 0.15s ease; }
.cfield textarea { resize: vertical; min-height: 122px; }
.cfield input:focus, .cfield textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(20, 147, 127, 0.16); }
.cfield input::placeholder, .cfield textarea::placeholder { color: #9aa7b3; }
.cfield-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-captcha { display: flex; align-items: center; gap: 12px; width: 100%; max-width: 302px; background: #f9f9f9; border: 1px solid #d3d3d3; border-radius: 3px; padding: 11px 13px; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }
.form-captcha-check { width: 24px; height: 24px; border: 2px solid #c1c1c1; border-radius: 3px; background: #fff; flex: 0 0 auto; }
.form-captcha-label { font-size: 14px; color: #3c4043; flex: 1; }
.form-captcha-brand { display: flex; flex-direction: column; align-items: center; gap: 1px; font-size: 10px; font-weight: 600; color: #70757a; line-height: 1.15; text-align: center; flex: 0 0 auto; }
.form-captcha-brand small { font-size: 8px; font-weight: 400; color: #9aa0a6; }
.cform-actions { margin-top: 4px; }
.cform-actions .btn-solid { background: var(--teal); }
.cform-actions .btn-solid:hover { background: #0f776a; }
.cform-status { margin: 0; font-size: 14px; font-weight: 600; }
.cform-status.is-error { color: var(--late); }
.cform-note { margin: 2px 0 0; font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.cform-note a { color: var(--teal); }
.cform-success { margin: 0; background: var(--ok-bg); color: var(--ok); border-radius: var(--r); padding: 20px 22px; font-weight: 600; font-size: 15px; }
.iti { display: block; width: 100%; }
.cform .iti input { width: 100%; }
.iti__dropdown-content { font-family: var(--font-body); }
@media (min-width: 760px) { .cform-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .contact-layout { grid-template-columns: 0.82fr 1.18fr; gap: 56px; } }
.contact-inner { text-align: center; display: grid; gap: 14px; justify-items: center; }
.contact-inner h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.02em; margin: 0; }
.contact-inner p { margin: 0; color: #aebdcc; max-width: 560px; }
.contact-inner .btn { margin-top: 8px; }

.newsletter { padding: 64px 0; border-top: 1px solid var(--line); }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.newsletter h2 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 0 0 6px; }
.newsletter p { margin: 0; color: var(--muted); font-size: 15px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input { flex: 1; font-family: var(--font-body); font-size: 15px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; }
.newsletter-form input:focus { outline: 2px solid var(--teal-bright); border-color: var(--teal); }
.newsletter-msg { margin-top: 10px; font-size: 14px; }
.newsletter-msg.is-ok { color: var(--ok); }
.newsletter-msg.is-err { color: var(--late); }
.hp-field { position: absolute; left: -9999px; opacity: 0; }

.site-footer { background: var(--navy-deep); color: #9fb2c4; padding: 54px 0 30px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.site-footer h3 { color: #ffffff; font-family: var(--font-display); font-size: 15px; margin: 0 0 12px; }
.site-footer a { color: #9fb2c4; text-decoration: none; }
.site-footer a:hover { color: #ffffff; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 22px; font-size: 13px; color: #6e8093; }

.hero { position: relative; }
.hero-orb { position: absolute; right: -180px; top: -160px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(41, 207, 189, 0.18) 0%, rgba(41, 207, 189, 0) 62%); pointer-events: none; animation: orb-drift 14s ease-in-out infinite alternate; }
@keyframes orb-drift { from { transform: translate(0, 0) scale(1); } to { transform: translate(-50px, 36px) scale(1.08); } }
.appwin-float { animation: app-float 7s ease-in-out infinite alternate; }
@keyframes app-float { from { transform: translateY(0); } to { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .appwin-float, .hero-orb { animation: none; } }

.aw-chip.late { background: var(--late-bg); color: var(--late); }
.pill.mute { background: #e9edf2; color: var(--muted); }

.sv-cloud { gap: 12px; }
.svc-arrow { width: 22px; height: 22px; justify-self: center; border-right: 3px solid var(--teal); border-bottom: 3px solid var(--teal); transform: rotate(45deg); margin: -2px 0; }
.svc-dest { display: flex; align-items: center; gap: 10px; background: #ffffff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 13px 15px; }
.svc-logo { width: 26px; height: 26px; border-radius: 7px; flex: 0 0 auto; }
.svc-sp { background: conic-gradient(from 200deg, #036c70, #1a9ba1 55%, #038387); }
.svc-name { font-weight: 700; font-size: 13.5px; }
.svc-file { margin-left: auto; font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 55%; }
.sv-chat { gap: 12px; }
.svm-bub { display: flex; align-items: flex-end; gap: 9px; max-width: 88%; }
.svm-bub span { background: #ffffff; border: 1px solid var(--line); border-radius: 14px 14px 14px 4px; padding: 10px 14px; font-size: 13px; color: var(--ink); }
.svm-bub b { width: 28px; height: 28px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 10px; display: grid; place-items: center; flex: 0 0 auto; }
.svm-bub.right { margin-left: auto; flex-direction: row; }
.svm-bub.right span { background: var(--navy); color: #ffffff; border-color: var(--navy); border-radius: 14px 14px 4px 14px; }
.svm-bub.right b { background: var(--teal); }
.sv-mail { gap: 11px; }
.svmail-row { display: flex; align-items: center; gap: 13px; background: #ffffff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 13px 15px; }
.svmail-row b { width: 38px; height: 38px; border-radius: 10px; background: var(--navy); flex: 0 0 auto; position: relative; }
.svmail-row b::after { content: ""; position: absolute; inset: 12px 9px; border: 2px solid var(--teal-bright); border-radius: 2px; }
.svmail-row > div { flex: 1; display: grid; gap: 3px; min-width: 0; }
.svmail-row .sv-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.tl { display: grid; gap: 0; margin-bottom: 18px; }

.dradios { display: flex; gap: 12px; margin: -6px 0 18px; }
.dradio { display: inline-flex; align-items: center; gap: 8px; background: #ffffff; border: 1px solid var(--paper-line); border-radius: 999px; padding: 9px 16px; font-size: 14px; font-weight: 600; cursor: pointer; }
.dradio input { accent-color: var(--teal); }
.dpath { direction: ltr; }

.price-num.is-quote { font-size: clamp(34px, 4.6vw, 44px); }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-group] [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
[data-reveal-group] [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
[data-reveal-group] [data-reveal]:nth-child(4) { transition-delay: 0.24s; }
.btn-solid { position: relative; overflow: hidden; }
.btn-solid::after { content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent); transform: skewX(-18deg); transition: left 0.6s var(--ease); }
.btn-solid:hover::after { left: 120%; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } .btn-solid::after { display: none; } }

.studio-hero { background: var(--navy); color: #ffffff; padding: 104px 0 84px; }
.studio-hero .kicker { margin: 0 0 14px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-bright); font-weight: 700; }
.studio-hero-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 4.6vw, 50px); letter-spacing: -0.02em; line-height: 1.08; margin: 0 0 18px; max-width: 760px; }
.studio-hero-text { color: #b9c7d6; font-size: 18px; line-height: 1.6; max-width: 660px; margin: 0 0 30px; }
.studio-hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.studio-hero .btn-ghost { color: #ffffff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.32); }
.studio-hero .btn-ghost:hover { box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.7); }
.legal-page { padding: 56px 0 80px; background: var(--paper); }
.legal-shell { max-width: 820px; }
.legal-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.02em; line-height: 1.1; margin: 8px 0 6px; color: var(--ink); }
.legal-updated { font-size: 13.5px; color: var(--muted); margin: 0 0 26px; }
.legal-body { color: var(--ink); }
.legal-body p { font-size: 15.5px; line-height: 1.7; margin: 0 0 16px; color: #38424f; }
.legal-body h2 { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; color: var(--ink); margin: 32px 0 12px; }
.legal-list { margin: 0 0 16px; padding-left: 22px; }
.legal-list li { font-size: 15.5px; line-height: 1.65; color: #38424f; margin-bottom: 7px; }
.legal-body a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.apw-tilt { will-change: transform; transform-style: preserve-3d; }
.apw { font-family: var(--font-body); background: #f6f7f9; }
.apw-top { display: flex; align-items: center; gap: 9px; padding: 9px 13px; background: #ffffff; border-bottom: 1px solid var(--paper-line); }
.apw-mark { width: 21px; height: 21px; flex: 0 0 auto; }
.apw-mark svg { display: block; width: 100%; height: 100%; }
.apw-brand { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--ink); }
.apw-search { flex: 1; max-width: 190px; margin-left: 8px; display: flex; align-items: center; gap: 7px; background: #f3f4f6; border: 1px solid var(--line); border-radius: 999px; font-size: 10.5px; color: var(--muted); padding: 5px 11px; white-space: nowrap; overflow: hidden; }
.apw-search svg { width: 12px; height: 12px; flex: 0 0 auto; }
.apw-lang { margin-left: auto; display: inline-flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; font-size: 9.5px; font-weight: 700; }
.apw-lang b { background: var(--navy-deep); color: #ffffff; padding: 4px 8px; }
.apw-lang i { font-style: normal; color: var(--muted); padding: 4px 8px; background: #ffffff; }
.apw-user { width: 24px; height: 24px; border-radius: 50%; background: var(--navy); color: #ffffff; font-size: 9.5px; font-weight: 700; display: grid; place-items: center; flex: 0 0 auto; }
.apw-username { font-size: 11px; font-weight: 600; color: var(--ink); }
.apw-body { display: grid; grid-template-columns: 138px 1fr; }
.apw-side { background: #ffffff; border-right: 1px solid var(--paper-line); padding: 10px 7px; display: flex; flex-direction: column; gap: 2px; }
.apw-item { display: flex; align-items: center; gap: 8px; color: #45505e; font-size: 10.5px; font-weight: 600; padding: 6px 8px; border-radius: 8px; white-space: nowrap; }
.apw-item.is-on { background: #eef0f3; color: var(--ink); font-weight: 700; }
.apw-ic { width: 13px; height: 13px; flex: 0 0 auto; display: inline-flex; opacity: 0.85; }
.apw-ic svg { width: 100%; height: 100%; }
.apw-cat { font-style: normal; font-size: 8.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #9aa3ae; padding: 8px 8px 2px; }
.apw-main { padding: 14px 15px; display: grid; gap: 11px; align-content: start; min-width: 0; }
.apw-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.apw-h1 { display: block; font-family: Georgia, 'Times New Roman', serif; font-weight: 700; font-size: 21px; letter-spacing: -0.01em; color: var(--ink); line-height: 1.1; }
.apw-h2 { font-size: 9.5px; color: var(--muted); }
.apw-new { background: var(--navy-deep); color: #ffffff; font-size: 9.5px; font-weight: 700; padding: 6px 11px; border-radius: 999px; white-space: nowrap; }
.apw-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.apw-stat { background: #ffffff; border: 1px solid var(--paper-line); border-radius: 9px; padding: 9px 11px 11px; }
.apw-stat i { display: block; font-style: normal; font-family: Georgia, 'Times New Roman', serif; font-weight: 700; font-size: 19px; color: var(--ink); }
.apw-stat u { display: block; text-decoration: none; font-size: 8px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); margin-top: 3px; padding-bottom: 5px; border-bottom: 2px solid #e7e9ec; }
.apw-widgets { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.apw-widget { background: #ffffff; border: 1px solid var(--paper-line); border-radius: 9px; padding: 9px 11px; min-width: 0; }
.apw-wt { display: flex; align-items: center; gap: 6px; margin: 0 0 8px; font-size: 10px; font-weight: 700; color: var(--ink); }
.apw-wt svg { width: 12px; height: 12px; color: var(--teal); flex: 0 0 auto; }
.apw-wt em { font-style: normal; margin-left: auto; background: #eef0f3; color: var(--muted); font-size: 8.5px; font-weight: 700; padding: 1px 7px; border-radius: 999px; }
.apw-wempty { display: flex; align-items: center; gap: 7px; font-size: 9px; color: var(--muted); line-height: 1.35; }
.apw-check { width: 17px; height: 17px; border-radius: 50%; background: var(--ok-bg); color: var(--ok); display: grid; place-items: center; flex: 0 0 auto; }
.apw-check svg { width: 11px; height: 11px; }
.apw-task { display: flex; align-items: flex-start; gap: 8px; }
.apw-latechip { font-style: normal; background: var(--late-bg); color: var(--late); font-size: 8px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; padding: 3px 7px; border-radius: 7px; white-space: nowrap; }
.apw-task b { display: block; font-size: 9.5px; color: var(--ink); }
.apw-task span { font-size: 8.5px; color: var(--muted); }
.apw-tablecard { background: #ffffff; border: 1px solid var(--paper-line); border-radius: 9px; padding: 9px 11px; min-width: 0; }
.apw-tabs { display: flex; gap: 12px; border-bottom: 1px solid var(--paper-line); padding-bottom: 7px; margin-bottom: 7px; font-size: 9.5px; font-weight: 600; color: var(--muted); }
.apw-tabs span { display: inline-flex; align-items: center; gap: 5px; }
.apw-tabs .is-on { color: var(--ink); font-weight: 700; }
.apw-tabs em { font-style: normal; background: #eef0f3; font-size: 8px; font-weight: 700; padding: 1px 6px; border-radius: 999px; }
.apw-tabs .is-on em { background: var(--navy-deep); color: #ffffff; }
.apw-thead, .apw-trow { display: grid; grid-template-columns: 1.15fr 1.1fr 1.1fr 0.9fr 0.9fr; gap: 8px; align-items: center; }
.apw-thead span { font-size: 7.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #9aa3ae; padding-bottom: 6px; }
.apw-trow { border-top: 1px solid #f0f1f4; padding-top: 7px; }
.apw-trow > * { font-size: 9px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.apw-no { color: var(--muted); }
.apw-trow b { font-weight: 700; }
.apw-typepill { font-style: normal; background: #def4f7; color: #11707e; font-size: 8px; font-weight: 700; padding: 2px 8px; border-radius: 999px; }
.apw-datechip { font-style: normal; background: var(--soon-bg); color: #8a6d3b; border: 1px solid #ecd9ae; font-size: 8px; font-weight: 700; padding: 2px 7px; border-radius: 999px; }
@media (max-width: 760px) {
    .apw-side { display: none; }
    .apw-body { grid-template-columns: 1fr; }
    .apw-colx { display: none; }
    .apw-thead, .apw-trow { grid-template-columns: 1.15fr 1.1fr 1.1fr 0.9fr; }
}
.spot { position: relative; }
.spot::after { content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0; transition: opacity 0.35s var(--ease); background: radial-gradient(230px circle at var(--mx, 50%) var(--my, 50%), rgba(20, 147, 127, 0.13), transparent 65%); pointer-events: none; }
.spot:hover::after { opacity: 1; }
.demowin.is-movable .demowin-top { cursor: grab; }
.demowin.is-drag { transition: none; user-select: none; }
.demowin.is-drag .demowin-top { cursor: grabbing; }
.demowin.is-moved { position: relative; z-index: 30; }
.studio-hero { position: relative; overflow: hidden; }
.studio-hero .shell { position: relative; z-index: 2; }
.studio-hero::before { content: ""; position: absolute; width: 540px; height: 540px; top: -190px; right: -130px; border-radius: 50%; background: radial-gradient(circle, rgba(41, 207, 189, 0.3), transparent 62%); filter: blur(42px); animation: aurora-a 13s ease-in-out infinite alternate; pointer-events: none; }
.studio-hero::after { content: ""; position: absolute; width: 480px; height: 480px; bottom: -210px; left: -140px; border-radius: 50%; background: radial-gradient(circle, rgba(58, 124, 196, 0.26), transparent 62%); filter: blur(46px); animation: aurora-b 17s ease-in-out infinite alternate; pointer-events: none; }
@keyframes aurora-a { to { transform: translate(-90px, 70px) scale(1.16); } }
@keyframes aurora-b { to { transform: translate(80px, -60px) scale(0.9); } }
.sh-glow { position: absolute; left: 0; top: 0; width: 340px; height: 340px; margin: -170px 0 0 -170px; border-radius: 50%; background: radial-gradient(circle, rgba(41, 207, 189, 0.16), transparent 64%); pointer-events: none; z-index: 1; transition: transform 0.12s linear; }
.wr { display: inline-block; opacity: 0; transform: translateY(20px); filter: blur(7px); animation: word-in 0.7s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes word-in { to { opacity: 1; transform: none; filter: none; } }
.step-item { transition: transform 0.35s var(--ease); }
.step-item:hover { transform: translateX(7px); }
.step-item:hover .step-num { box-shadow: 0 0 0 5px rgba(41, 207, 189, 0.16); }
.step-num { transition: box-shadow 0.35s var(--ease); }
.services-price { position: relative; overflow: hidden; }
.services-price::before { content: ""; position: absolute; top: 0; left: -85%; width: 55%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent); transform: skewX(-18deg); transition: left 0.9s var(--ease); pointer-events: none; }
.services-price:hover::before { left: 140%; }
.portfolio-view::after { content: "\2192"; display: inline-block; margin-left: 7px; transition: margin-left 0.3s var(--ease); }
.portfolio-card:hover .portfolio-view::after { margin-left: 13px; }
@media (max-width: 768px) {
    .studio-hero::before, .studio-hero::after { filter: blur(26px); width: 360px; height: 360px; }
}
@media (prefers-reduced-motion: reduce) {
    .studio-hero::before, .studio-hero::after { animation: none; }
    .wr { animation: none; opacity: 1; transform: none; filter: none; }
    .sh-glow { display: none; }
    .spot::after { display: none; }
    .portfolio-shot img, .step-item, .portfolio-card { transition: none; }
}
.demoapp { -webkit-user-select: none; user-select: none; }
.demoapp input, .demoapp select, .demoapp textarea { -webkit-user-select: text; user-select: text; }
.demo-more { margin: 20px 0 0; text-align: center; color: var(--ink); font-weight: 600; font-size: 15px; }
.sec-card { transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease); }
.sec-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: rgba(20, 147, 127, 0.4); }
.sec-ic { transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.sec-card:hover .sec-ic { transform: scale(1.1) rotate(-5deg); box-shadow: inset 0 0 0 1px rgba(41, 207, 189, 0.22), 0 0 0 7px rgba(41, 207, 189, 0.13); }
.faq-cols { max-width: none; grid-template-columns: 1fr; gap: 12px 24px; align-items: start; }
.faq-col { display: grid; gap: 12px; min-width: 0; }
@media (min-width: 900px) { .faq-cols { grid-template-columns: 1fr 1fr; } }
.price-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; margin: 8px 0 6px; }
.price-row .price-num { margin: 0; }
.price-install { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(41, 207, 189, 0.45); border-radius: var(--r-sm); padding: 9px 14px; text-align: left; }
.price-install b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--teal-bright); line-height: 1.1; }
.price-install span { display: block; font-size: 11.5px; color: #cfdae6; margin-top: 2px; }
@media (prefers-reduced-motion: reduce) { .sec-card, .sec-ic { transition: none; } }
.dapp-stat, .dapp-minicard, .dapp-taskrow, .dapp-kcard, .dapp-refcard, .dtl-eventrow { transition: background 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), transform 0.18s var(--ease); }
.dapp-stat:hover, .dapp-minicard:hover, .dapp-refcard:hover { border-color: #c8d0d9; box-shadow: 0 6px 18px -10px rgba(21, 41, 60, 0.28); transform: translateY(-2px); }
.dapp-taskrow:hover { border-color: var(--teal); box-shadow: 0 5px 16px -9px rgba(20, 147, 127, 0.4); }
.dapp-kcard { cursor: default; }
.dapp-kcard:hover { border-color: var(--teal); box-shadow: 0 6px 16px -8px rgba(20, 147, 127, 0.35); transform: translateY(-2px); }
.dtl-eventrow:hover { border-color: #c8d0d9; background: #fafbfc; }
.dtl-eventrow.is-expiry:hover { border-color: #c19a63; }
.dapp-table tbody tr { transition: background 0.16s var(--ease); }
.dapp-table tbody tr:hover td { background: #f3f6f8; }
.dapp-refstat { transition: background 0.18s var(--ease); }
.dapp-refcard:hover .dapp-refstat { background: var(--bg-alt); }
@media (prefers-reduced-motion: reduce) {
    .dapp-stat, .dapp-minicard, .dapp-taskrow, .dapp-kcard, .dapp-refcard, .dtl-eventrow, .dapp-table tbody tr { transition: none; }
    .dapp-stat:hover, .dapp-minicard:hover, .dapp-refcard:hover, .dapp-kcard:hover { transform: none; }
}
.cli-hero { display: flex; align-items: center; gap: 14px; background: #ffffff; border: 1px solid var(--paper-line); border-radius: var(--r-sm); padding: 16px 18px; margin-bottom: 14px; }
.cli-idblock { flex: 1; min-width: 0; }
.cli-namerow { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.cli-name { font-family: Georgia, 'Times New Roman', serif; font-weight: 700; font-size: 21px; letter-spacing: -0.01em; color: var(--ink); }
.cli-no { font-size: 12px; font-weight: 700; color: var(--teal); }
.cli-tags { display: block; margin-top: 3px; font-size: 12.5px; color: var(--muted); }
.cli-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #ffffff; font-weight: 700; font-size: 15px; display: grid; place-items: center; flex: 0 0 auto; }
.cli-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 14px; align-items: start; }
.cli-col, .cli-aside { display: grid; gap: 14px; min-width: 0; }
.cli-panel { background: #ffffff; border: 1px solid var(--paper-line); border-radius: var(--r-sm); padding: 15px 16px; }
.cli-panelhead { margin-bottom: 12px; }
.cli-panelhead b { display: block; font-family: Georgia, 'Times New Roman', serif; font-weight: 700; font-size: 15.5px; color: var(--ink); }
.cli-panelsub { display: block; margin-top: 3px; font-size: 12px; color: var(--muted); line-height: 1.4; }
.cli-docs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.cli-doc { border: 1px solid var(--paper-line); border-radius: 10px; padding: 12px 13px; display: grid; gap: 4px; background: #ffffff; }
.cli-doc.is-ok { border-color: #cfe6da; background: #f4faf6; }
.cli-doc.is-soon { border-color: #ecd9ae; background: var(--soon-bg); }
.cli-doc.is-late { border-color: #ecc1c1; background: var(--late-bg); }
.cli-doclabel { font-size: 9.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.cli-docdate { font-size: 15px; font-weight: 700; color: var(--ink); }
.cli-docstate { font-size: 11.5px; font-weight: 600; }
.cli-doc.is-ok .cli-docstate { color: var(--ok); }
.cli-doc.is-soon .cli-docstate { color: var(--soon); }
.cli-doc.is-late .cli-docstate { color: var(--late); }
.cli-steps { display: grid; gap: 11px; }
.cli-step { border: 1px solid var(--paper-line); border-radius: 10px; padding: 12px 13px; display: grid; gap: 10px; background: #ffffff; transition: border-color 0.18s var(--ease); }
.cli-steptop { display: flex; align-items: center; gap: 10px; }
.cli-stepnum { width: 22px; height: 22px; border-radius: 50%; background: #eef0f3; color: var(--ink); font-size: 11px; font-weight: 700; display: grid; place-items: center; flex: 0 0 auto; }
.cli-steptitle { flex: 1; font-size: 14px; font-weight: 700; color: var(--ink); }
.cli-stepvis { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--ok); background: var(--ok-bg); padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.cli-seg { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.cli-segbtn { border: 1px solid var(--paper-line); background: #ffffff; color: var(--muted); font-family: var(--font-body); font-size: 11.5px; font-weight: 600; padding: 7px 4px; border-radius: 8px; cursor: pointer; transition: background 0.16s var(--ease), color 0.16s var(--ease), border-color 0.16s var(--ease); }
.cli-segbtn:hover { border-color: #c8d0d9; }
.cli-segbtn.is-doing.is-on { background: var(--teal); border-color: var(--teal); color: #ffffff; }
.cli-segbtn.is-todo.is-on { background: var(--navy-deep); border-color: var(--navy-deep); color: #ffffff; }
.cli-segbtn.is-blocked.is-on { background: var(--late); border-color: var(--late); color: #ffffff; }
.cli-segbtn.is-done.is-on { background: var(--ok); border-color: var(--ok); color: #ffffff; }
.cli-desclabel { display: block; font-size: 10.5px; font-weight: 600; color: var(--muted); }
.cli-desc { width: 100%; margin-top: 5px; font-family: var(--font-body); font-size: 12.5px; color: var(--ink); border: 1px solid var(--paper-line); border-radius: 8px; padding: 8px 10px; resize: vertical; background: #fbfcfd; line-height: 1.45; }
.cli-desc:focus { outline: 2px solid var(--teal-bright); outline-offset: 1px; border-color: var(--teal); }
.cli-info { display: grid; gap: 1px; }
.cli-inforow { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid #f0f1f4; }
.cli-inforow:last-child { border-bottom: 0; }
.cli-infok { font-size: 12px; color: var(--muted); }
.cli-infov { font-size: 12.5px; font-weight: 600; color: var(--ink); text-align: right; word-break: break-word; }
.cli-mono { font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }
.cli-portal { display: grid; gap: 8px; }
.cli-prow { display: flex; align-items: center; gap: 8px; background: var(--bg-alt); border: 1px solid var(--paper-line); border-radius: 9px; padding: 8px 10px; }
.cli-pname { flex: 1; font-size: 12.5px; font-weight: 600; color: var(--ink); min-width: 0; }
.cli-toggle { border: 1px solid var(--paper-line); background: #ffffff; color: var(--muted); font-family: var(--font-body); font-size: 11px; font-weight: 600; padding: 5px 10px; border-radius: 999px; cursor: pointer; white-space: nowrap; transition: background 0.16s var(--ease), color 0.16s var(--ease), border-color 0.16s var(--ease); }
.cli-toggle.is-on { background: var(--ok-bg); border-color: #cfe6da; color: var(--ok); }
.cli-send { border: 1px solid var(--navy-deep); background: var(--navy-deep); color: #ffffff; font-family: var(--font-body); font-size: 11px; font-weight: 600; padding: 5px 11px; border-radius: 999px; cursor: pointer; white-space: nowrap; transition: opacity 0.16s var(--ease); }
.cli-send:hover { opacity: 0.88; }
.cli-send.is-sent { background: var(--ok); border-color: var(--ok); }
@media (max-width: 720px) {
    .cli-grid { grid-template-columns: 1fr; }
    .cli-docs { grid-template-columns: 1fr; }
    .cli-seg { grid-template-columns: repeat(2, 1fr); }
}
.menu-bar, .menu-bar::before, .menu-bar::after { transition: transform 0.3s var(--ease), top 0.3s var(--ease), background 0.2s var(--ease); }
.menu-toggle.is-open .menu-bar { background: transparent; }
.menu-toggle.is-open .menu-bar::before { top: 0; transform: rotate(45deg); }
.menu-toggle.is-open .menu-bar::after { top: 0; transform: rotate(-45deg); }
.menu-toggle[aria-expanded="true"] { background: var(--bg-alt); }
.split-visual { -webkit-user-select: none; user-select: none; }
.svd-row, .svp-doc, .svc-dest { transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.svd-row:hover, .svp-doc:hover, .svc-dest:hover { transform: translateY(-3px); border-color: rgba(20, 147, 127, 0.45); box-shadow: 0 10px 24px -14px rgba(20, 147, 127, 0.5); }
.svc-arrow { transition: transform 0.25s var(--ease); }
.sv-cloud:hover .svc-arrow { transform: rotate(45deg) translate(2px, 2px); }
.svc-logo { transition: transform 0.25s var(--ease); }
.svc-dest:hover .svc-logo { transform: scale(1.12) rotate(-4deg); }
.svm-bub span { transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.svm-bub:hover span { transform: translateY(-2px); box-shadow: 0 8px 20px -12px rgba(21, 41, 60, 0.4); }
.svf-head b { transition: transform 0.25s var(--ease); }
.sv-file:hover .svf-head b { transform: scale(1.08); }
@media (prefers-reduced-motion: reduce) {
    .svd-row, .svp-doc, .svc-dest, .svc-arrow, .svc-logo, .svm-bub span, .svf-head b { transition: none; }
    .svd-row:hover, .svp-doc:hover, .svc-dest:hover, .svm-bub:hover span { transform: none; }
}
