/* INSPiER CRM — marketing site */
[hidden] { display: none !important; }

:root {
    --navy-950: #07112c;
    --navy-900: #0b1739;
    --navy-850: #10204b;
    --navy-800: #14265a;
    --ink: #13203c;
    --ink-soft: #56627a;
    --muted: #7c879c;
    --line: #e3e8f1;
    --line-dark: rgba(255, 255, 255, .13);
    --surface: #ffffff;
    --surface-soft: #f6f8fc;
    --surface-blue: #eef3ff;
    --blue: #416fff;
    --blue-dark: #2c59ed;
    --blue-light: #8ca6ff;
    --mint: #43d4b4;
    --mint-soft: #e4faf5;
    --orange: #ff9b6a;
    --orange-soft: #fff0e9;
    --purple: #8b76f6;
    --purple-soft: #f0edff;
    --shadow-sm: 0 10px 30px rgba(20, 36, 76, .08);
    --shadow-md: 0 24px 70px rgba(9, 24, 61, .14);
    --shadow-lg: 0 45px 100px rgba(3, 12, 36, .3);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 34px;
    --shell: 1200px;
    --header-height: 78px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.modal-open,
body.menu-open {
    overflow: hidden;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

p,
h1,
h2,
h3,
ul,
ol {
    margin-top: 0;
}

ul,
ol {
    padding: 0;
    list-style: none;
}

em {
    color: var(--blue);
    font-style: normal;
}

::selection {
    color: #fff;
    background: var(--blue);
}

:focus-visible {
    outline: 3px solid rgba(74, 119, 255, .5);
    outline-offset: 3px;
}

.icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon-sprite symbol,
svg use {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 11px 17px;
    color: #fff;
    background: var(--blue);
    border-radius: 10px;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.shell {
    width: min(calc(100% - 48px), var(--shell));
    margin-inline: auto;
}

.section {
    padding: 138px 0;
}

.section-heading {
    margin-bottom: 64px;
}

.section-heading.centered {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading h2,
.flow-intro h2,
.faq-intro h2,
.security-copy h2 {
    margin-bottom: 24px;
    letter-spacing: -.055em;
    font-size: clamp(40px, 4.35vw, 62px);
    font-weight: 750;
    line-height: 1.16;
}

.section-heading > p:last-child,
.section-heading > div + p,
.flow-intro > p,
.faq-intro > p,
.security-copy > p {
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.8;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: #aab9e9;
    letter-spacing: .18em;
    font-size: 12px;
    font-weight: 800;
}

.eyebrow > span {
    width: 22px;
    height: 2px;
    background: currentColor;
}

.eyebrow.dark {
    color: var(--blue);
}

.eyebrow.light {
    color: #90a9ff;
}

/* Header */
.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    color: #fff;
    border-bottom: 1px solid transparent;
    transition: height .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
    height: 70px;
    color: var(--ink);
    background: rgba(255, 255, 255, .91);
    border-color: rgba(19, 32, 60, .08);
    box-shadow: 0 10px 35px rgba(8, 22, 52, .07);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-shell {
    display: flex;
    align-items: center;
    width: min(calc(100% - 48px), 1320px);
    height: 100%;
    margin-inline: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 11px;
}

.brand-mark {
    display: grid;
    grid-template-columns: 7px 7px 7px;
    align-items: end;
    gap: 3px;
    width: 27px;
    height: 29px;
    padding: 4px 3px;
}

.brand-mark span {
    display: block;
    height: 100%;
    background: currentColor;
    border-radius: 2px 2px 1px 1px;
}

.brand-mark span:nth-child(2) {
    height: 62%;
    color: var(--blue-light);
}

.brand-mark span:nth-child(3) {
    height: 82%;
    color: var(--mint);
}

.brand-word {
    letter-spacing: -.035em;
    font-size: 21px;
    font-weight: 800;
    line-height: 1;
}

.brand-word > span {
    color: var(--blue-light);
}

.brand-word small {
    margin-left: 7px;
    padding-left: 7px;
    color: rgba(255, 255, 255, .58);
    border-left: 1px solid rgba(255, 255, 255, .3);
    letter-spacing: .08em;
    font-size: 9px;
    font-weight: 700;
    vertical-align: 2px;
}

.site-header.scrolled .brand-word > span {
    color: var(--blue);
}

.site-header.scrolled .brand-word small {
    color: var(--muted);
    border-color: var(--line);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    margin: 0 auto;
}

.main-nav a,
.main-nav button {
    position: relative;
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
    font-weight: 600;
    transition: color .2s ease;
}

.main-nav button {
    padding: 0;
    font-family: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.main-nav .nav-login-mobile,
.main-nav .nav-signup-mobile { display: none; }

.main-nav a::after,
.main-nav button::after {
    position: absolute;
    bottom: -9px;
    left: 50%;
    width: 0;
    height: 2px;
    content: "";
    background: var(--mint);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width .2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.main-nav button:hover {
    color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after,
.main-nav button:hover::after {
    width: 18px;
}

.site-header.scrolled .main-nav a,
.site-header.scrolled .main-nav button {
    color: var(--ink-soft);
}

.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active,
.site-header.scrolled .main-nav button:hover {
    color: var(--ink);
}

.header-account-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.header-login {
    padding: 10px 13px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: 700;
    transition: color .2s ease;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.header-user-name {
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
    font-weight: 700;
}

.site-header.scrolled .header-user-name { color: var(--muted); }

.admin-settings-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 0 12px;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 750;
}

.admin-settings-tab svg { width: 17px; height: 17px; }
.site-header.scrolled .admin-settings-tab { color: var(--navy-900); background: #eef1f7; border-color: #dfe4ed; }
.admin-settings-tab:hover { color: var(--mint); }

.header-login:hover {
    color: #fff;
}

.site-header.scrolled .header-login {
    color: var(--ink-soft);
}

.site-header.scrolled .header-login:hover {
    color: var(--blue);
}

.header-cta {
    flex: 0 0 auto;
    color: #fff;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .2);
}

.site-header.scrolled .header-cta {
    color: #fff;
    background: var(--navy-900);
    border-color: var(--navy-900);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 9px;
    color: currentColor;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
}

.menu-button svg {
    width: 24px;
    height: 24px;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 750;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button svg,
.text-link svg {
    width: 18px;
    height: 18px;
    transition: transform .2s ease;
}

.button:hover svg,
.text-link:hover svg {
    transform: translateX(3px);
}

.button-small {
    min-height: 42px;
    padding: 0 17px;
    border-radius: 10px;
    font-size: 13px;
}

.button-small svg {
    width: 15px;
    height: 15px;
}

.button-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 15px 34px rgba(55, 102, 244, .26);
}

.button-primary:hover {
    background: var(--blue-dark);
    box-shadow: 0 18px 38px rgba(55, 102, 244, .34);
}

.button-secondary {
    color: #fff;
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .2);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .32);
}

.button-light {
    color: var(--navy-900);
    background: #fff;
    box-shadow: 0 17px 45px rgba(5, 13, 39, .22);
}

.button-light:hover {
    color: var(--blue-dark);
    box-shadow: 0 21px 55px rgba(5, 13, 39, .3);
}

.button-plan {
    width: 100%;
    color: var(--ink);
    background: var(--surface-soft);
    border-color: var(--line);
}

.button-plan:hover {
    color: var(--blue-dark);
    background: var(--surface-blue);
    border-color: #c9d5ff;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0;
    color: var(--blue-dark);
    background: transparent;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    min-height: 890px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 82% 20%, rgba(68, 104, 225, .2), transparent 30%),
        linear-gradient(125deg, #07112c 0%, #0b1739 54%, #102352 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .35;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to right, transparent 0, #000 45%, #000 100%);
}

.hero::after {
    position: absolute;
    right: -10%;
    bottom: -300px;
    left: -10%;
    height: 420px;
    content: "";
    background: var(--surface);
    border-radius: 50% 50% 0 0;
    transform: scaleX(1.25);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.hero-glow-one {
    top: 110px;
    left: -190px;
    width: 420px;
    height: 420px;
    background: rgba(44, 80, 198, .14);
}

.hero-glow-two {
    right: 10%;
    bottom: 20px;
    width: 280px;
    height: 280px;
    background: rgba(62, 213, 178, .08);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: center;
    min-height: 820px;
    gap: 56px;
    padding-top: 94px;
    padding-bottom: 62px;
}

.hero-copy {
    position: relative;
    z-index: 4;
    padding-bottom: 28px;
}

.hero h1 {
    margin-bottom: 27px;
    letter-spacing: -.065em;
    font-size: clamp(54px, 5.3vw, 76px);
    font-weight: 770;
    line-height: 1.11;
}

.hero h1 em {
    position: relative;
    color: #8ba6ff;
}

.hero h1 em::after {
    position: absolute;
    right: 2px;
    bottom: -5px;
    left: 2px;
    height: 7px;
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10'%3E%3Cpath d='M2 7 C50 2 148 2 198 6' fill='none' stroke='%235ce1c4' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
    opacity: .75;
}

.hero-lead {
    max-width: 570px;
    margin-bottom: 34px;
    color: rgba(232, 238, 255, .75);
    font-size: 18px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 22px;
    margin-bottom: 0;
    color: rgba(221, 230, 255, .68);
    font-size: 13px;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-points svg {
    width: 15px;
    height: 15px;
    padding: 2px;
    color: var(--mint);
    background: rgba(67, 212, 180, .11);
    border-radius: 50%;
}

.hero-product {
    position: relative;
    width: 720px;
    margin-right: -132px;
    perspective: 1600px;
}

.product-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(130, 160, 255, .1);
    border-radius: 50%;
}

.orbit-one {
    top: -120px;
    right: -40px;
    width: 650px;
    height: 650px;
}

.orbit-two {
    top: -50px;
    right: 35px;
    width: 500px;
    height: 500px;
}

.dashboard-window {
    overflow: hidden;
    color: var(--ink);
    background: #f7f9fd;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 23px;
    box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255, 255, 255, .8);
    transform: rotateY(-4deg) rotateX(1deg);
    transform-origin: center left;
}

.window-topbar {
    display: flex;
    align-items: center;
    height: 45px;
    padding: 0 16px;
    background: #fff;
    border-bottom: 1px solid #e9edf5;
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots span {
    width: 7px;
    height: 7px;
    background: #dce2ed;
    border-radius: 50%;
}

.window-dots span:first-child { background: #ff9f83; }
.window-dots span:nth-child(2) { background: #ffd278; }
.window-dots span:nth-child(3) { background: #74d9bd; }

.demo-label {
    margin-left: auto;
    color: #a1aabc;
    letter-spacing: .14em;
    font-size: 8px;
    font-weight: 800;
}

.window-person {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 16px;
}

.window-person span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    color: #fff;
    background: #839dff;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 800;
}

.window-person i {
    width: 5px;
    height: 5px;
    border-right: 1px solid #9ba6b9;
    border-bottom: 1px solid #9ba6b9;
    transform: rotate(45deg);
}

.window-body {
    display: flex;
    min-height: 438px;
}

.mock-sidebar {
    display: flex;
    align-items: center;
    flex: 0 0 66px;
    flex-direction: column;
    gap: 17px;
    padding: 18px 13px;
    background: var(--navy-900);
}

.mock-logo {
    display: flex;
    align-items: end;
    height: 21px;
    gap: 2px;
    margin-bottom: 13px;
}

.mock-logo span {
    width: 5px;
    height: 19px;
    background: #fff;
    border-radius: 1px;
}

.mock-logo span:nth-child(2) { height: 11px; background: #7795ff; }
.mock-logo span:nth-child(3) { height: 15px; background: var(--mint); }

.side-line {
    width: 26px;
    height: 5px;
    opacity: .4;
    background: #7790c8;
    border-radius: 3px;
}

.side-line.short { width: 19px; }
.side-line.active { width: 31px; height: 28px; opacity: 1; background: rgba(92, 127, 255, .24); border: 1px solid rgba(119, 150, 255, .2); }
.side-spacer { flex: 1; }
.side-circle { width: 24px; height: 24px; opacity: .5; border: 1px solid #7790c8; border-radius: 50%; }

.mock-main {
    flex: 1;
    padding: 25px 25px 24px;
}

.mock-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.mock-heading div {
    display: flex;
    flex-direction: column;
}

.mock-heading small {
    color: #9aa4b8;
    font-size: 8px;
}

.mock-heading strong {
    margin-top: 2px;
    letter-spacing: -.03em;
    font-size: 17px;
}

.mock-heading button {
    padding: 8px 11px;
    color: #fff;
    background: var(--blue);
    border-radius: 7px;
    font-size: 9px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
    background: #fff;
    border: 1px solid #e8ecf4;
    border-radius: 11px;
    box-shadow: 0 5px 18px rgba(27, 45, 81, .04);
}

.metric-icon {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--blue);
    background: var(--surface-blue);
    border-radius: 9px;
}

.metric-icon.mint { color: #1cad8d; background: var(--mint-soft); }
.metric-icon.orange { color: #eb7943; background: var(--orange-soft); }
.metric-icon svg { width: 17px; height: 17px; }
.metric-card > div { display: grid; grid-template-columns: auto auto; align-items: end; column-gap: 2px; }
.metric-card small { grid-column: 1 / -1; color: #909aaf; font-size: 8px; }
.metric-card strong { font-size: 20px; line-height: 1.1; }
.metric-card > div > span { margin-bottom: 1px; color: #929caf; font-size: 8px; }

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.58fr .82fr;
    gap: 12px;
}

.agenda-card,
.progress-card {
    min-width: 0;
    padding: 15px;
    background: #fff;
    border: 1px solid #e8ecf4;
    border-radius: 12px;
}

.mock-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
}

.mock-card-head strong { font-size: 11px; }
.mock-card-head span { color: #98a3b5; font-size: 7px; }

.agenda-row {
    display: grid;
    grid-template-columns: 31px 6px 1fr auto;
    align-items: center;
    gap: 7px;
    padding: 10px 0;
    border-top: 1px solid #eff2f7;
}

.agenda-row time { color: #8d98aa; font-size: 7px; }
.agenda-dot { width: 5px; height: 5px; background: var(--blue); border-radius: 50%; }
.agenda-dot.orange { background: var(--orange); }
.agenda-dot.mint { background: var(--mint); }
.agenda-row > div { display: flex; min-width: 0; flex-direction: column; }
.agenda-row strong { overflow: hidden; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.agenda-row small { overflow: hidden; color: #97a1b4; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.tag { padding: 3px 5px; color: var(--blue); background: var(--surface-blue); border-radius: 4px; font-size: 6px; font-style: normal; }
.tag.orange { color: #df6c36; background: var(--orange-soft); }
.tag.mint { color: #159578; background: var(--mint-soft); }

.donut {
    position: relative;
    display: grid;
    width: 112px;
    height: 112px;
    margin: 15px auto 17px;
    place-items: center;
    background: conic-gradient(var(--blue) 0 37%, var(--mint) 37% 75%, var(--orange) 75% 100%);
    border-radius: 50%;
}

.donut::before {
    position: absolute;
    width: 74px;
    height: 74px;
    content: "";
    background: #fff;
    border-radius: 50%;
}

.donut > span {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.donut strong { font-size: 20px; line-height: 1.1; }
.donut small { color: #909aaf; font-size: 7px; }
.progress-legend { display: flex; justify-content: center; gap: 10px; color: #818da2; font-size: 6px; }
.progress-legend span { display: flex; align-items: center; gap: 3px; }
.progress-legend i { width: 5px; height: 5px; background: var(--blue); border-radius: 50%; }
.progress-legend i.mint { background: var(--mint); }
.progress-legend i.orange { background: var(--orange); }

.floating-note {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 13px;
    box-shadow: 0 20px 50px rgba(2, 10, 32, .28);
    backdrop-filter: blur(12px);
}

.note-renewal {
    top: -32px;
    right: -4px;
    padding: 12px 14px;
    animation: float 5s ease-in-out infinite;
}

.floating-icon {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    color: #df6e3e;
    background: var(--orange-soft);
    border-radius: 10px;
}

.floating-icon svg { width: 17px; height: 17px; }
.floating-note > div:not(.mini-avatars) { display: flex; flex-direction: column; }
.floating-note small { color: #8c97aa; font-size: 8px; }
.floating-note strong { font-size: 10px; }
.note-check { display: grid; width: 18px; height: 18px; margin-left: 9px; place-items: center; color: #fff; background: var(--mint); border-radius: 50%; }
.note-check svg { width: 10px; height: 10px; stroke-width: 2.5; }

.note-document {
    bottom: -30px;
    left: -40px;
    padding: 12px 15px;
    animation: float 6s ease-in-out .8s infinite reverse;
}

.mini-avatars { display: flex; padding-left: 7px; }
.mini-avatars span { display: grid; width: 27px; height: 27px; margin-left: -7px; place-items: center; color: #fff; background: #6d88e9; border: 2px solid #fff; border-radius: 50%; font-size: 8px; font-weight: 800; }
.mini-avatars span:nth-child(2) { background: #e48d65; }
.mini-avatars span:nth-child(3) { background: #38b89a; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Connected work strip */
.work-strip {
    position: relative;
    z-index: 4;
    padding: 24px 0 70px;
    background: #fff;
}

.work-strip-inner {
    display: grid;
    grid-template-columns: 250px 1fr;
    align-items: center;
    gap: 50px;
    padding: 31px 38px;
    background: var(--surface-soft);
    border: 1px solid #edf0f6;
    border-radius: 22px;
}

.work-strip-inner > p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.55;
}

.work-strip-inner > p strong { color: var(--ink); font-size: 18px; }
.work-strip ul { display: grid; grid-template-columns: repeat(6, 1fr); margin: 0; }
.work-strip li { position: relative; display: flex; align-items: center; justify-content: center; gap: 9px; color: #34415c; font-size: 14px; font-weight: 750; }
.work-strip li:not(:last-child)::after { position: absolute; right: 0; width: 1px; height: 25px; content: ""; background: var(--line); }
.work-strip li span { display: grid; width: 25px; height: 25px; place-items: center; color: var(--blue); background: #e9efff; border-radius: 8px; font-size: 8px; }

/* Role section */
.roles-section {
    padding-top: 112px;
    background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}

.role-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    gap: 12px;
    margin: 0 auto 30px;
    padding: 7px;
    background: #edf1f8;
    border-radius: 19px;
}

.role-tabs button {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 22px;
    color: var(--ink-soft);
    text-align: left;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.role-tabs button[aria-selected="true"] {
    color: var(--ink);
    background: #fff;
    border-color: #e2e7f0;
    box-shadow: 0 8px 25px rgba(20, 37, 78, .08);
}

.role-tab-icon {
    display: grid;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    place-items: center;
    color: #7e8ca4;
    background: #e4e9f2;
    border-radius: 12px;
}

.role-tabs button[aria-selected="true"] .role-tab-icon { color: #fff; background: var(--blue); box-shadow: 0 8px 20px rgba(65, 111, 255, .25); }
.role-tab-icon svg { width: 21px; height: 21px; }
.role-tabs button > span:last-child { display: flex; flex-direction: column; }
.role-tabs small { color: #8c97aa; font-size: 10px; }
.role-tabs strong { letter-spacing: -.025em; font-size: 15px; }

.role-panels {
    position: relative;
}

.role-panel {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    min-height: 610px;
    overflow: hidden;
    gap: 34px;
    padding: 64px 0 64px 64px;
    background: #fff;
    border: 1px solid #e7ebf3;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(23, 44, 86, .09);
}

.role-panel[hidden] { display: none; }
.role-panel.panel-enter { animation: panelEnter .45s cubic-bezier(.22,.75,.3,1) both; }

@keyframes panelEnter {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.role-copy {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.panel-kicker {
    margin-bottom: 16px;
    color: var(--blue);
    letter-spacing: .17em;
    font-size: 10px;
    font-weight: 800;
}

.role-copy h3 {
    margin-bottom: 19px;
    letter-spacing: -.045em;
    font-size: 35px;
    line-height: 1.28;
}

.role-copy > p:not(.panel-kicker) {
    margin-bottom: 27px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.8;
}

.check-list {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #35415b;
    font-size: 14px;
    font-weight: 650;
}

.check-list span {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    color: var(--blue);
    background: var(--surface-blue);
    border-radius: 7px;
}

.check-list svg { width: 13px; height: 13px; stroke-width: 2.4; }

.role-preview {
    position: relative;
    align-self: center;
    min-height: 475px;
    padding: 29px 0 29px 29px;
    background: #f3f6fb;
    border: 1px solid #e4e9f2;
    border-right: 0;
    border-radius: 24px 0 0 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.preview-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 23px 22px 0;
}

.preview-toolbar > div { display: flex; align-items: center; gap: 9px; }
.preview-toolbar strong { font-size: 14px; }
.preview-toolbar b { padding: 2px 7px; color: var(--blue); background: #e1e9ff; border-radius: 8px; font-size: 8px; }
.preview-toolbar > span { padding: 7px 11px; color: #fff; background: var(--blue); border-radius: 7px; font-size: 8px; font-weight: 700; }
.preview-title-icon { display: grid; width: 29px; height: 29px; place-items: center; color: var(--blue); background: #dfe7ff; border-radius: 8px; }
.preview-title-icon.orange { color: #df6c36; background: var(--orange-soft); }
.preview-title-icon svg { width: 15px; height: 15px; }
.preview-search { width: calc(100% - 23px); margin-bottom: 12px; padding: 10px 13px; color: #9aa5b8; background: #fff; border: 1px solid #e2e7f0; border-radius: 8px; font-size: 8px; }
.preview-search span { display: inline-block; width: 9px; height: 9px; margin-right: 8px; border: 1px solid #9aa5b8; border-radius: 50%; vertical-align: -1px; }

.customer-table {
    width: calc(100% - 23px);
    overflow: hidden;
    background: #fff;
    border: 1px solid #e4e9f1;
    border-radius: 11px;
}

.table-head,
.table-row {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr .75fr;
    align-items: center;
    column-gap: 8px;
}

.table-head {
    padding: 9px 14px;
    color: #929daf;
    background: #fafbfd;
    border-bottom: 1px solid #edf0f5;
    font-size: 7px;
}

.table-row {
    min-height: 62px;
    padding: 10px 14px;
    color: #4e5b73;
    border-bottom: 1px solid #eff2f6;
    font-size: 8px;
}

.table-row:last-child { border-bottom: 0; }
.table-row > span:first-child { display: flex; align-items: center; gap: 9px; color: var(--ink); }
.table-row b { display: flex; flex-direction: column; font-size: 9px; }
.table-row small { color: #99a3b5; font-size: 6px; font-weight: 500; }
.table-row > span:not(:first-child) { display: flex; flex-direction: column; }
.avatar { display: grid; flex: 0 0 28px; width: 28px; height: 28px; place-items: center; color: #fff; background: #849eff; border-radius: 9px; font-size: 8px; font-style: normal; font-weight: 800; }
.avatar.lavender { color: #6d58cf; background: #e9e4ff; }
.avatar.mint { color: #188f77; background: #dcf7ef; }
.avatar.peach { color: #c7693f; background: #ffeadf; }
.avatar.blue { color: #365fcf; background: #dfe8ff; }
.status { display: inline-flex; align-self: flex-start; padding: 4px 6px; color: var(--blue); background: var(--surface-blue); border-radius: 5px; font-size: 6px; font-style: normal; font-weight: 700; }
.status.purple { color: #7159d6; background: var(--purple-soft); }
.status.green { color: #168d72; background: var(--mint-soft); }

.timeline-card {
    position: absolute;
    right: 24px;
    bottom: 19px;
    width: 258px;
    padding: 17px;
    background: #fff;
    border: 1px solid #e4e9f1;
    border-radius: 13px;
    box-shadow: 0 18px 40px rgba(27, 46, 88, .13);
}

.timeline-card > div { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.timeline-card > div strong { font-size: 9px; }
.timeline-card > div small { color: #949fb2; font-size: 6px; }
.timeline-card ol { margin: 0; }
.timeline-card li { position: relative; display: grid; grid-template-columns: 11px 1fr; gap: 7px; padding-bottom: 9px; }
.timeline-card li:not(:last-child)::before { position: absolute; top: 7px; bottom: -2px; left: 3px; width: 1px; content: ""; background: #dce3ee; }
.timeline-card li > span { z-index: 1; width: 7px; height: 7px; margin-top: 3px; background: var(--blue); border: 2px solid #dae4ff; border-radius: 50%; }
.timeline-card li:nth-child(2) > span { background: #99a6ba; border-color: #e5e9f0; }
.timeline-card p { display: flex; flex-direction: column; margin: 0; }
.timeline-card p b { font-size: 7px; }
.timeline-card p small { color: #9aa4b6; font-size: 6px; }

.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-right: 22px;
}

.pipeline-grid section {
    padding: 11px;
    background: #e9edf5;
    border-radius: 11px;
}

.pipeline-grid header { display: flex; align-items: center; justify-content: space-between; padding: 0 2px 8px; color: #5f6c83; font-size: 8px; font-weight: 700; }
.pipeline-grid header b { display: grid; width: 17px; height: 17px; place-items: center; color: #71809a; background: #dbe1eb; border-radius: 5px; font-size: 6px; }
.pipeline-grid article { margin-top: 7px; padding: 12px; background: #fff; border: 1px solid transparent; border-radius: 9px; box-shadow: 0 5px 13px rgba(23, 40, 78, .045); }
.pipeline-grid article.active-card { border-color: #9bb0ff; box-shadow: 0 8px 18px rgba(65, 111, 255, .13); }
.pipeline-grid article > small { display: block; margin-bottom: 3px; color: #99a3b5; font-size: 6px; }
.pipeline-grid article > strong { display: block; margin-bottom: 10px; font-size: 8px; }
.pipeline-grid article > p { display: flex; align-items: center; gap: 5px; margin: 0 0 9px; color: #69768c; font-size: 7px; }
.pipeline-grid article .avatar { width: 20px; height: 20px; flex-basis: 20px; border-radius: 6px; font-size: 6px; }
.pipeline-grid footer { display: flex; align-items: center; justify-content: space-between; padding-top: 7px; border-top: 1px solid #eff1f5; }
.pipeline-grid footer span { color: #e56f3e; font-size: 6px; font-weight: 800; }
.pipeline-grid footer em { padding: 3px 5px; color: #68758d; background: #f1f4f8; border-radius: 4px; font-size: 5px; font-style: normal; }

.deadline-note {
    position: absolute;
    right: 24px;
    bottom: 17px;
    left: 29px;
    display: flex;
    align-items: center;
    padding: 13px 16px;
    background: #fff;
    border: 1px solid #e4e9f1;
    border-radius: 11px;
    box-shadow: 0 13px 28px rgba(27, 46, 88, .09);
}

.deadline-note > span { display: grid; width: 32px; height: 32px; margin-right: 10px; place-items: center; color: #df6c36; background: var(--orange-soft); border-radius: 9px; }
.deadline-note svg { width: 15px; height: 15px; }
.deadline-note p { display: flex; flex-direction: column; margin: 0; }
.deadline-note strong { font-size: 8px; }
.deadline-note small { color: #929daf; font-size: 6px; }
.deadline-note > b { margin-left: auto; padding: 6px 8px; color: var(--blue); background: var(--surface-blue); border-radius: 6px; font-size: 6px; }

/* Feature bento */
.features-section {
    background: #f6f8fc;
}

.split-heading {
    display: grid;
    grid-template-columns: 1fr .75fr;
    align-items: end;
    gap: 60px;
}

.split-heading h2 { margin-bottom: 0; }
.split-heading > p { margin-bottom: 8px; }

.bento-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
}

.feature-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: 39px;
    background: #fff;
    border: 1px solid #e5eaf2;
    border-radius: 25px;
    box-shadow: 0 14px 45px rgba(27, 44, 81, .055);
}

.feature-number {
    position: absolute;
    top: 25px;
    right: 29px;
    color: #c7cfdd;
    letter-spacing: .1em;
    font-size: 10px;
    font-weight: 800;
}

.feature-icon {
    display: grid;
    width: 43px;
    height: 43px;
    margin-bottom: 22px;
    place-items: center;
    color: var(--blue);
    background: var(--surface-blue);
    border-radius: 12px;
}

.feature-icon.coral { color: #df6d3d; background: var(--orange-soft); }
.feature-icon.purple { color: #6f59d6; background: var(--purple-soft); }
.feature-icon.green { color: #168d72; background: var(--mint-soft); }
.feature-icon.inverse { color: #fff; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .12); }
.feature-icon svg { width: 21px; height: 21px; }
.feature-card h3 { margin-bottom: 11px; letter-spacing: -.035em; font-size: 24px; line-height: 1.3; }
.feature-card p { max-width: 450px; margin-bottom: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
.feature-customer { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 350px; gap: 25px; }
.feature-customer .feature-copy { align-self: center; }

.customer-stack {
    align-self: center;
    padding: 22px;
    background: #f5f7fb;
    border: 1px solid #e8ecf3;
    border-radius: 19px;
    transform: rotate(1.5deg) translateX(12px);
}

.profile-main { display: flex; align-items: center; gap: 10px; margin-bottom: 17px; }
.profile-avatar { display: grid; width: 43px; height: 43px; place-items: center; color: #fff; background: linear-gradient(135deg, #7895ff, #516fe7); border-radius: 13px; font-size: 13px; font-weight: 800; }
.profile-main > div { display: flex; flex-direction: column; }
.profile-main strong { font-size: 11px; }
.profile-main small { color: #929caf; font-size: 7px; }
.profile-main b { margin-left: auto; padding: 5px 8px; color: #178d73; background: var(--mint-soft); border-radius: 6px; font-size: 6px; }
.profile-stats { display: grid; grid-template-columns: repeat(3, 1fr); padding: 14px; background: #fff; border: 1px solid #e7ebf2; border-radius: 11px; }
.profile-stats span { display: flex; align-items: center; flex-direction: column; border-right: 1px solid #e9edf3; }
.profile-stats span:last-child { border-right: 0; }
.profile-stats small { color: #9aa4b6; font-size: 6px; }
.profile-stats strong { font-size: 10px; }
.profile-tags { display: flex; gap: 5px; margin-top: 12px; }
.profile-tags span { padding: 5px 7px; color: #65728a; background: #e9edf4; border-radius: 6px; font-size: 6px; }

.feature-reminder { min-height: 350px; }
.reminder-list { display: grid; gap: 8px; margin-top: 25px; }
.reminder-list > div { display: flex; align-items: center; gap: 9px; padding: 12px; background: #f8f9fc; border: 1px solid #e8ecf3; border-radius: 11px; }
.reminder-list > div > span { display: grid; width: 31px; height: 31px; place-items: center; color: var(--blue); background: var(--surface-blue); border-radius: 8px; }
.reminder-list > div > span.orange { color: #dc6c3b; background: var(--orange-soft); }
.reminder-list svg { width: 15px; height: 15px; }
.reminder-list p { display: flex; flex: 1; flex-direction: column; }
.reminder-list strong { color: var(--ink); font-size: 9px; }
.reminder-list small { color: #919caf; font-size: 7px; }
.toggle { position: relative; width: 24px; height: 13px; background: #dce2ec; border-radius: 10px; }
.toggle::after { position: absolute; top: 2px; left: 2px; width: 9px; height: 9px; content: ""; background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,.15); }
.toggle.on { background: var(--blue); }
.toggle.on::after { left: 13px; }

.feature-docs { display: grid; grid-template-columns: .75fr 1.25fr; min-height: 375px; gap: 24px; }
.dark-card { color: #fff; background: linear-gradient(140deg, #0a1635, #132659); border-color: #172d63; box-shadow: 0 23px 60px rgba(9, 24, 59, .2); }
.dark-card .feature-number { color: rgba(255, 255, 255, .3); }
.dark-card p { color: rgba(226, 234, 255, .68); }
.feature-docs .feature-copy { align-self: center; }
.document-visual { position: relative; min-height: 270px; align-self: end; }
.folder { position: absolute; border-radius: 18px 18px 8px 8px; }
.folder::before { position: absolute; top: -13px; left: 0; width: 40%; height: 23px; content: ""; background: inherit; border-radius: 9px 13px 0 0; }
.folder-back { top: 55px; right: 12px; left: 0; height: 195px; background: #24417d; transform: rotate(-5deg); }
.folder-front { right: -39px; bottom: 0; left: 12px; height: 205px; padding: 34px 25px 22px; background: #f9fbff; box-shadow: 0 18px 45px rgba(0, 6, 24, .25); transform: rotate(2deg); }
.doc-row { display: flex; align-items: center; gap: 10px; padding: 11px; color: var(--ink); background: #fff; border: 1px solid #e6eaf2; border-radius: 9px; box-shadow: 0 4px 12px rgba(20, 36, 73, .04); }
.doc-row + .doc-row { margin-top: 8px; }
.doc-row > span { display: grid; width: 31px; height: 31px; place-items: center; color: #d85c50; background: #ffe9e6; border-radius: 8px; font-size: 6px; font-weight: 800; }
.doc-row > span.img { color: #4771dc; background: #e4ebff; }
.doc-row p { display: flex; flex: 1; flex-direction: column; margin: 0; }
.doc-row strong { font-size: 8px; }
.doc-row small { color: #99a3b5; font-size: 6px; }
.doc-row b { display: grid; width: 17px; height: 17px; place-items: center; color: #fff; background: var(--mint); border-radius: 50%; }
.doc-row b svg { width: 10px; height: 10px; stroke-width: 2.5; }
.upload-progress { height: 4px; margin-top: 15px; overflow: hidden; background: #e9edf3; border-radius: 4px; }
.upload-progress span { display: block; width: 72%; height: 100%; background: linear-gradient(90deg, var(--blue), var(--mint)); border-radius: inherit; }

.feature-team { min-height: 375px; }
.team-thread { position: relative; display: grid; gap: 7px; margin-top: 22px; }
.team-thread > div:not(.thread-line) { position: relative; z-index: 1; display: flex; align-items: center; gap: 9px; padding: 10px 12px; background: #f8f9fc; border: 1px solid #e8ecf3; border-radius: 10px; }
.team-thread .avatar { width: 29px; height: 29px; flex-basis: 29px; }
.team-thread p { display: flex; flex: 1; flex-direction: column; }
.team-thread strong { color: var(--ink); font-size: 8px; }
.team-thread small { color: #939eb1; font-size: 6px; }
.team-thread time { color: #a2abbc; font-size: 6px; }
.thread-line { position: absolute; z-index: 0; top: 20px; bottom: 20px; left: 26px; width: 1px; background: #dfe4ed; }

.feature-report { display: grid; grid-column: 1 / -1; grid-template-columns: .52fr 1.48fr; min-height: 310px; gap: 45px; }
.feature-report .feature-copy { align-self: center; }
.report-chart { align-self: center; padding: 20px 22px 14px; background: #f8faff; border: 1px solid #e4eaf4; border-radius: 18px; }
.chart-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.chart-top span { font-size: 9px; font-weight: 700; }
.chart-top b { padding: 4px 7px; color: #79869d; background: #eaedf4; border-radius: 5px; font-size: 6px; }
.report-chart svg { width: 100%; height: 150px; overflow: visible; }
.chart-grid { fill: none; stroke: #e2e7f0; stroke-width: 1; stroke-dasharray: 3 5; }
.chart-area { fill: url(#chartFill); stroke: none; }
.chart-line { fill: none; stroke: var(--blue); stroke-width: 3; stroke-linecap: round; }
.report-chart circle { fill: #fff; stroke: var(--blue); stroke-width: 3; }
.chart-labels { display: flex; justify-content: space-between; color: #98a2b4; font-size: 6px; }

/* Flow */
.flow-section {
    background: #fff;
}

.flow-shell {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 90px;
}

.flow-intro {
    position: sticky;
    top: 120px;
    align-self: start;
}

.flow-intro h2 { margin-bottom: 22px; }
.flow-intro > p:not(.eyebrow) { margin-bottom: 31px; }

.flow-steps {
    position: relative;
    display: grid;
    gap: 18px;
    margin: 0;
}

.flow-steps::before {
    position: absolute;
    z-index: 0;
    top: 80px;
    bottom: 80px;
    left: 56px;
    width: 1px;
    content: "";
    background: linear-gradient(var(--blue), var(--mint));
    opacity: .25;
}

.flow-steps li {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 40px 64px 1fr;
    align-items: center;
    min-height: 174px;
    gap: 18px;
    padding: 28px 31px;
    background: #fff;
    border: 1px solid #e6eaf2;
    border-radius: 21px;
    box-shadow: 0 13px 40px rgba(20, 37, 75, .055);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.flow-steps li:hover {
    border-color: #ccd7fa;
    box-shadow: 0 20px 50px rgba(20, 37, 75, .09);
    transform: translateX(5px);
}

.step-num { color: #bcc5d4; letter-spacing: .09em; font-size: 10px; font-weight: 800; }
.step-icon { display: grid; width: 60px; height: 60px; place-items: center; color: var(--blue); background: var(--surface-blue); border-radius: 17px; }
.step-icon.orange { color: #dc6d3c; background: var(--orange-soft); }
.step-icon.mint { color: #158d72; background: var(--mint-soft); }
.step-icon svg { width: 26px; height: 26px; }
.flow-steps li > div:last-child small { display: block; margin-bottom: 3px; color: var(--blue); letter-spacing: .13em; font-size: 7px; font-weight: 800; }
.flow-steps h3 { margin-bottom: 7px; letter-spacing: -.03em; font-size: 21px; }
.flow-steps p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }

/* Security */
.security-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 18% 46%, rgba(61, 103, 226, .25), transparent 28%),
        linear-gradient(125deg, #081330, #10214d);
}

.security-section::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .22;
    background-image: radial-gradient(rgba(255,255,255,.18) .7px, transparent .7px);
    background-size: 24px 24px;
    mask-image: linear-gradient(90deg, #000, transparent 63%);
}

.security-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

.security-visual {
    position: relative;
    display: grid;
    min-height: 520px;
    place-items: center;
}

.security-rings,
.security-rings span {
    position: absolute;
    inset: 0;
    margin: auto;
    border: 1px solid rgba(128, 158, 255, .16);
    border-radius: 50%;
}

.security-rings { width: 470px; height: 470px; border-style: dashed; animation: spin 40s linear infinite; }
.security-rings span:first-child { width: 350px; height: 350px; }
.security-rings span:nth-child(2) { width: 250px; height: 250px; border-color: rgba(69, 215, 182, .15); }
.security-rings span:nth-child(3) { width: 125px; height: 125px; background: rgba(65, 111, 255, .06); border-color: rgba(131, 157, 255, .25); }

@keyframes spin { to { transform: rotate(360deg); } }

.shield-core {
    position: relative;
    z-index: 2;
    display: grid;
    width: 122px;
    height: 122px;
    place-items: center;
    background: linear-gradient(145deg, #557cfa, #294fc8);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 35px;
    box-shadow: 0 24px 70px rgba(19, 57, 173, .45), inset 0 1px 0 rgba(255,255,255,.3);
    transform: rotate(45deg);
}

.shield-core svg { position: absolute; top: 23px; left: 23px; width: 38px; height: 38px; color: #fff; transform: rotate(-45deg); }
.shield-core > span { position: absolute; right: 12px; bottom: 22px; color: rgba(255,255,255,.75); letter-spacing: .1em; font-size: 6px; font-weight: 800; line-height: 1.3; transform: rotate(-45deg); }

.security-chip {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    color: #dfe7ff;
    background: rgba(19, 39, 88, .82);
    border: 1px solid rgba(139, 164, 242, .2);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(3, 10, 31, .25);
    backdrop-filter: blur(10px);
}

.security-chip svg { width: 17px; height: 17px; color: var(--mint); }
.security-chip span { font-size: 10px; font-weight: 700; }
.chip-one { top: 83px; right: 46px; }
.chip-two { right: 20px; bottom: 92px; }
.chip-three { bottom: 70px; left: 30px; }

.security-copy h2 { margin-bottom: 25px; }
.security-copy h2 em { color: #8ca6ff; }
.security-copy > p:not(.eyebrow) { margin-bottom: 38px; color: rgba(220, 229, 255, .68); }
.security-list { display: grid; gap: 12px; }
.security-list > div { display: flex; align-items: center; gap: 14px; padding: 15px 16px; background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .085); border-radius: 14px; }
.security-list > div > span { display: grid; flex: 0 0 39px; width: 39px; height: 39px; place-items: center; color: #8ba6ff; background: rgba(112, 142, 240, .11); border-radius: 11px; }
.security-list svg { width: 19px; height: 19px; }
.security-list p { display: flex; flex-direction: column; margin: 0; }
.security-list strong { font-size: 13px; }
.security-list small { color: rgba(214, 225, 255, .58); font-size: 11px; }

/* Pricing */
.pricing-section {
    background: #f7f9fd;
}

.billing-toggle {
    display: flex;
    width: fit-content;
    gap: 5px;
    margin: -28px auto 42px;
    padding: 5px;
    background: #e9edf5;
    border-radius: 12px;
}

.billing-toggle button {
    min-height: 38px;
    padding: 0 15px;
    color: #6d788e;
    background: transparent;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.billing-toggle button.active {
    color: var(--ink);
    background: #fff;
    box-shadow: 0 5px 15px rgba(21, 38, 76, .08);
}

.billing-toggle button span {
    margin-left: 4px;
    color: var(--blue);
    font-size: 9px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 18px;
}

.price-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 36px;
    background: #fff;
    border: 1px solid #e3e8f1;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(24, 41, 78, .055);
}

.price-card.featured {
    color: #fff;
    background: linear-gradient(145deg, #0b1739, #14285d);
    border-color: #1c3979;
    box-shadow: 0 26px 65px rgba(9, 24, 58, .2);
    transform: translateY(-9px);
}

.popular-badge {
    position: absolute;
    top: 19px;
    right: 20px;
    padding: 5px 8px;
    color: #0c5043;
    background: var(--mint);
    border-radius: 6px;
    letter-spacing: .08em;
    font-size: 6px;
    font-weight: 900;
}

.price-head > span { display: block; margin-bottom: 20px; color: var(--blue); letter-spacing: .16em; font-size: 10px; font-weight: 850; }
.featured .price-head > span { color: #8da7ff; }
.price-head h3 { margin-bottom: 10px; letter-spacing: -.035em; font-size: 23px; }
.price-head p { min-height: 52px; margin-bottom: 27px; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }
.featured .price-head p { color: rgba(222, 231, 255, .63); }
.price { display: flex; align-items: baseline; min-height: 60px; margin-bottom: 23px; }
.price > span { margin-right: 8px; color: var(--muted); font-size: 11px; }
.price strong { letter-spacing: -.055em; font-size: 39px; line-height: 1; }
.price b { margin-left: 3px; font-size: 12px; }
.price small { align-self: flex-end; margin: 0 0 4px auto; color: var(--muted); font-size: 8px; }
.featured .price > span,
.featured .price small { color: rgba(224, 232, 255, .54); }
.price-card > .button { margin-bottom: 28px; }
.price-card.featured > .button { width: 100%; }
.price-card > ul { display: grid; gap: 12px; margin: 0; padding-top: 25px; border-top: 1px solid var(--line); }
.price-card.featured > ul { border-color: rgba(255,255,255,.12); }
.price-card li { display: flex; align-items: center; gap: 9px; color: #4c5971; font-size: 13px; }
.price-card.featured li { color: rgba(235, 240, 255, .78); }
.price-card li svg { width: 18px; height: 18px; padding: 3px; color: var(--blue); background: var(--surface-blue); border-radius: 6px; stroke-width: 2.3; }
.price-card.featured li svg { color: var(--mint); background: rgba(67,212,180,.1); }
.pricing-note { margin: 27px auto 0; color: #8994a7; text-align: center; font-size: 11px; }

/* FAQ */
.faq-section {
    background: #fff;
}

.faq-shell {
    display: grid;
    grid-template-columns: .62fr 1.38fr;
    gap: 100px;
}

.faq-intro {
    position: sticky;
    top: 120px;
    align-self: start;
}

.faq-intro h2 { margin-bottom: 20px; }
.faq-intro > p:not(.eyebrow) { margin-bottom: 25px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 34px 1fr 23px; align-items: center; min-height: 88px; gap: 13px; cursor: pointer; list-style: none; letter-spacing: -.02em; font-size: 17px; font-weight: 720; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: var(--blue); font-size: 10px; }
.faq-list summary svg { width: 21px; height: 21px; color: #95a0b3; transition: transform .25s ease; }
.faq-list details[open] summary svg { color: var(--blue); transform: rotate(180deg); }
.faq-list details > div { overflow: hidden; }
.faq-list details p { margin: -2px 35px 28px 47px; color: var(--ink-soft); font-size: 14px; line-height: 1.8; }

/* Closing */
.closing-section {
    position: relative;
    overflow: hidden;
    padding: 125px 0;
    color: #fff;
    background: linear-gradient(125deg, #315bdc 0%, #446ff0 52%, #315bdc 100%);
}

.closing-section::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .17;
    background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

.closing-orb { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.orb-left { top: -240px; left: -120px; width: 530px; height: 530px; }
.orb-right { right: -180px; bottom: -360px; width: 680px; height: 680px; }
.closing-content { position: relative; z-index: 1; text-align: center; }
.closing-mark { display: flex; align-items: end; justify-content: center; height: 45px; gap: 5px; margin-bottom: 22px; }
.closing-mark i { width: 11px; height: 42px; background: #fff; border-radius: 3px; }
.closing-mark i:nth-child(2) { height: 25px; opacity: .7; }
.closing-mark i:nth-child(3) { height: 34px; background: var(--mint); }
.closing-content > p:first-of-type { margin-bottom: 18px; color: rgba(255,255,255,.65); letter-spacing: .18em; font-size: 10px; font-weight: 800; }
.closing-content h2 { margin-bottom: 20px; letter-spacing: -.055em; font-size: clamp(40px, 4.5vw, 62px); line-height: 1.18; }
.closing-content h2 em { color: #cbd6ff; }
.closing-lead { margin-bottom: 30px; color: rgba(255,255,255,.75); font-size: 17px; }

/* Footer */
.site-footer {
    color: #fff;
    background: #07112b;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr .8fr .8fr 1.3fr;
    gap: 60px;
    padding-top: 74px;
    padding-bottom: 66px;
}

.brand-light { color: #fff; }
.footer-brand > p { margin: 24px 0 0; color: rgba(218, 228, 255, .5); font-size: 14px; line-height: 1.8; }
.footer-nav,
.footer-contact { display: flex; align-items: flex-start; flex-direction: column; }
.footer-nav > strong,
.footer-contact > strong { margin-bottom: 22px; color: rgba(255,255,255,.38); letter-spacing: .13em; font-size: 9px; }
.footer-nav a,
.footer-nav button { margin-bottom: 11px; padding: 0; color: rgba(235,240,255,.72); background: transparent; font-size: 13px; cursor: pointer; }
.footer-nav a:hover,
.footer-nav button:hover { color: #fff; }
.footer-contact a { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: 14px; font-weight: 700; }
.footer-contact a svg { width: 17px; height: 17px; color: var(--mint); }
.footer-contact p { margin: 0; color: rgba(218,228,255,.46); font-size: 11px; line-height: 1.7; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; padding-bottom: 26px; color: rgba(221,229,255,.32); border-top: 1px solid rgba(255,255,255,.08); font-size: 10px; }
.footer-bottom p { margin: 0; }

/* Contact modal */
.contact-modal {
    position: fixed;
    z-index: 500;
    inset: 0;
    display: grid;
    overflow-y: auto;
    padding: 34px 20px;
    place-items: center;
}

.contact-modal[hidden] { display: none; }
.modal-backdrop { position: fixed; inset: 0; width: 100%; height: 100%; background: rgba(3, 10, 28, .72); cursor: default; backdrop-filter: blur(8px); }
.modal-card { position: relative; z-index: 1; display: grid; grid-template-columns: .78fr 1.22fr; width: min(920px, 100%); overflow: hidden; background: #fff; border: 1px solid rgba(255,255,255,.4); border-radius: 26px; box-shadow: 0 40px 110px rgba(0, 6, 24, .42); animation: modalIn .32s cubic-bezier(.2,.75,.3,1) both; }

@keyframes modalIn {
    from { opacity: 0; transform: translateY(18px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close { position: absolute; z-index: 3; top: 16px; right: 16px; display: grid; width: 39px; height: 39px; place-items: center; color: #71809a; background: #f0f3f8; border-radius: 11px; cursor: pointer; }
.modal-close:hover { color: var(--ink); background: #e7ebf2; }
.modal-close svg { width: 19px; height: 19px; }
.modal-heading { position: relative; display: flex; justify-content: center; flex-direction: column; overflow: hidden; padding: 54px 44px; color: #fff; background: linear-gradient(145deg, #0a1635, #152b62); }
.modal-heading::after { position: absolute; right: -90px; bottom: -90px; width: 240px; height: 240px; content: ""; border: 1px solid rgba(127,155,245,.2); border-radius: 50%; box-shadow: 0 0 0 45px rgba(93,128,234,.04), 0 0 0 90px rgba(93,128,234,.03); }
.modal-mark { display: flex; align-items: end; height: 36px; gap: 4px; margin-bottom: 23px; }
.modal-mark i { width: 9px; height: 34px; background: #fff; border-radius: 2px; }
.modal-mark i:nth-child(2) { height: 19px; background: var(--blue-light); }
.modal-mark i:nth-child(3) { height: 27px; background: var(--mint); }
.modal-heading > p:first-of-type { margin-bottom: 15px; color: #8fa8f5; letter-spacing: .14em; font-size: 9px; font-weight: 800; }
.modal-heading h2 { margin-bottom: 18px; letter-spacing: -.045em; font-size: 31px; line-height: 1.35; }
.modal-heading > p:last-child { position: relative; z-index: 1; margin: 0; color: rgba(222,231,255,.62); font-size: 12px; line-height: 1.7; }
.contact-form { padding: 54px 45px 40px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.contact-form label { display: block; margin-bottom: 15px; }
.contact-form label > span:first-child { display: block; margin-bottom: 7px; color: #46536b; font-size: 11px; font-weight: 750; }
.contact-form label > span b { color: var(--blue); }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; color: var(--ink); background: #f8f9fc; border: 1px solid #e2e7ef; border-radius: 10px; outline: 0; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-form input,
.contact-form select { height: 44px; padding: 0 12px; }
.contact-form textarea { min-height: 82px; padding: 11px 12px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #a0a9b8; font-size: 11px; }
.contact-form select { color: #69758b; font-size: 12px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { background: #fff; border-color: #8da5f4; box-shadow: 0 0 0 3px rgba(65,111,255,.1); }
.contact-form .invalid { border-color: #e97363; box-shadow: 0 0 0 3px rgba(233,115,99,.1); }
.contact-form .consent { display: flex; align-items: flex-start; margin: 2px 0 6px; cursor: pointer; }
.consent input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.consent > span { display: grid !important; grid-template-columns: 21px 1fr; align-items: center; column-gap: 8px; color: #66738a !important; font-size: 10px !important; font-weight: 600 !important; }
.consent i { display: grid; width: 20px; height: 20px; grid-row: 1 / 3; place-items: center; color: transparent; background: #f1f3f7; border: 1px solid #d9dfe9; border-radius: 6px; }
.consent i svg { width: 12px; height: 12px; stroke-width: 2.5; }
.consent input:checked + span i { color: #fff; background: var(--blue); border-color: var(--blue); }
.consent input:focus-visible + span i { outline: 3px solid rgba(65,111,255,.3); outline-offset: 2px; }
.consent small { grid-column: 2; color: #9aa4b5; font-size: 8px; font-weight: 500; }
.form-status { min-height: 19px; margin: 5px 0 8px; color: #d75849; font-size: 10px; }
.button-submit { width: 100%; }

.toast {
    position: fixed;
    z-index: 700;
    right: 22px;
    bottom: 22px;
    max-width: min(370px, calc(100% - 44px));
    padding: 14px 18px;
    color: #fff;
    background: var(--navy-900);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    font-size: 12px;
    animation: toastIn .25s ease both;
}

.toast[hidden] { display: none; }
@keyframes toastIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Reveal motion */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1);
}

[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1280px) {
    :root { --shell: 1120px; }
    .main-nav { gap: 25px; }
    .hero-grid { grid-template-columns: .88fr 1.12fr; }
    .hero-product { width: 670px; margin-right: -90px; }
    .role-panel { padding-left: 48px; }
}

@media (max-width: 1120px) {
    :root { --shell: 960px; }
    .main-nav { gap: 20px; }
    .main-nav a,
    .main-nav button { font-size: 13px; }
    .hero { min-height: 990px; }
    .hero-grid { grid-template-columns: minmax(0, 1fr); align-content: center; gap: 55px; padding-top: 135px; padding-bottom: 135px; }
    .hero-copy { max-width: 720px; padding-bottom: 0; }
    .hero h1 { font-size: 70px; }
    .hero-product { width: 760px; margin: 0 auto; }
    .work-strip { padding-top: 0; }
    .role-panel { grid-template-columns: .8fr 1.2fr; padding-left: 42px; }
    .role-copy h3 { font-size: 30px; }
    .feature-customer { grid-template-columns: 1fr; }
    .customer-stack { align-self: end; transform: rotate(1deg) translate(12px, 10px); }
    .feature-docs { grid-template-columns: 1fr; }
    .document-visual { min-height: 225px; }
    .flow-shell { gap: 60px; }
    .faq-shell { gap: 65px; }
}

@media (max-width: 960px) {
    :root { --header-height: 70px; }
    .shell,
    .header-shell { width: min(calc(100% - 36px), 820px); }
    .site-header { height: 70px; }
    .menu-button { display: grid; place-items: center; }
    .header-account-actions { display: none; }
    .main-nav { position: fixed; z-index: 110; top: 70px; right: 0; left: 0; display: flex; align-items: stretch; flex-direction: column; gap: 0; padding: 13px 18px 24px; color: var(--ink); background: rgba(255,255,255,.98); border-top: 1px solid var(--line); box-shadow: 0 30px 55px rgba(7,17,44,.15); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .22s ease, transform .22s ease; }
    .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .main-nav a,
    .main-nav button,
    .site-header.scrolled .main-nav a,
    .site-header.scrolled .main-nav button { padding: 14px 10px; color: var(--ink); border-bottom: 1px solid #edf0f5; font-size: 15px; text-align: left; }
    .main-nav a::after,
    .main-nav button::after { display: none; }
    .main-nav .nav-login-mobile,
    .main-nav .nav-signup-mobile { display: block; }
    .hero { min-height: 960px; }
    .hero-grid { padding-top: 120px; padding-bottom: 120px; }
    .hero-product { width: 690px; }
    .work-strip-inner { grid-template-columns: 1fr; gap: 24px; }
    .work-strip-inner > p { text-align: center; }
    .role-panel { grid-template-columns: 1fr; gap: 45px; padding: 48px 0 48px 48px; }
    .role-copy { max-width: 590px; padding-right: 48px; }
    .role-copy h3 { font-size: 34px; }
    .role-preview { width: 100%; }
    .bento-grid { grid-template-columns: 1fr; }
    .feature-customer,
    .feature-docs,
    .feature-report { grid-template-columns: .85fr 1.15fr; grid-column: auto; }
    .feature-reminder,
    .feature-team { min-height: 330px; }
    .flow-shell { grid-template-columns: 1fr; }
    .flow-intro { position: static; max-width: 680px; }
    .security-shell { gap: 40px; }
    .security-visual { min-height: 440px; transform: scale(.88); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; gap: 25px; }
    .price-card.featured { transform: none; }
    .price-head p { min-height: auto; }
    .faq-shell { grid-template-columns: 1fr; }
    .faq-intro { position: static; max-width: 600px; }
    .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
    :root { --radius-lg: 25px; }
    .shell,
    .header-shell { width: min(calc(100% - 32px), 680px); }
    .section { padding: 96px 0; }
    .section-heading { margin-bottom: 43px; }
    .section-heading h2,
    .flow-intro h2,
    .faq-intro h2,
    .security-copy h2 { font-size: 42px; }
    .section-heading > p:last-child,
    .section-heading > div + p,
    .flow-intro > p,
    .faq-intro > p,
    .security-copy > p { font-size: 16px; }
    .desktop-only { display: none; }
    .hero { min-height: auto; }
    .hero::after { bottom: -365px; }
    .hero-grid { min-height: auto; padding-top: 130px; padding-bottom: 125px; }
    .hero h1 { font-size: 58px; }
    .hero-lead { font-size: 17px; }
    .hero-product { width: 620px; margin-left: -5px; transform: scale(.93); transform-origin: left top; }
    .note-document { left: -5px; }
    .work-strip-inner { padding: 28px 22px; }
    .work-strip ul { grid-template-columns: repeat(3, 1fr); gap: 18px 0; }
    .work-strip li:nth-child(3)::after { display: none; }
    .role-tabs { gap: 7px; }
    .role-tabs button { padding: 13px; }
    .role-tabs small { display: none; }
    .role-panel { padding: 38px 0 38px 28px; }
    .role-copy { padding-right: 28px; }
    .role-preview { overflow: hidden; padding-left: 22px; }
    .feature-card { padding: 31px; }
    .feature-customer,
    .feature-docs,
    .feature-report { grid-template-columns: 1fr; }
    .feature-customer { min-height: 520px; }
    .customer-stack { max-width: 420px; }
    .feature-docs { min-height: 585px; }
    .document-visual { max-width: 430px; width: 100%; justify-self: center; }
    .feature-report { min-height: 540px; }
    .split-heading { grid-template-columns: 1fr; gap: 25px; }
    .split-heading > p { margin-bottom: 0; }
    .flow-steps li { grid-template-columns: 35px 55px 1fr; padding: 25px 23px; }
    .step-icon { width: 52px; height: 52px; }
    .security-shell { grid-template-columns: 1fr; }
    .security-visual { order: 2; min-height: 430px; }
    .security-copy { order: 1; }
    .faq-list summary { min-height: 80px; font-size: 15px; }
    .closing-section { padding: 96px 0; }
    .footer-main { grid-template-columns: 1.4fr 1fr 1fr; gap: 35px; }
    .modal-card { grid-template-columns: 1fr; max-width: 620px; }
    .modal-heading { padding: 42px 35px; }
    .modal-heading h2 { font-size: 28px; }
    .contact-form { padding: 39px 35px 34px; }
}

@media (max-width: 560px) {
    .shell,
    .header-shell { width: min(calc(100% - 28px), 500px); }
    .section { padding: 82px 0; }
    .eyebrow { margin-bottom: 18px; font-size: 10px; }
    .section-heading h2,
    .flow-intro h2,
    .faq-intro h2,
    .security-copy h2 { margin-bottom: 18px; font-size: 35px; }
    .brand-word { font-size: 19px; }
    .brand-word small { font-size: 8px; }
    .hero-grid { gap: 40px; padding-top: 112px; padding-bottom: 98px; }
    .hero h1 { margin-bottom: 23px; font-size: clamp(43px, 13vw, 56px); }
    .hero-lead { font-size: 15px; line-height: 1.75; }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-points { gap: 8px 14px; font-size: 11px; }
    .hero-product { width: 690px; margin-bottom: -205px; transform: scale(.57); transform-origin: left top; }
    .note-renewal { right: 0; }
    .note-document { left: 5px; }
    .work-strip { padding-bottom: 45px; }
    .work-strip-inner { gap: 20px; padding: 25px 16px; }
    .work-strip li { gap: 5px; font-size: 11px; }
    .work-strip li span { width: 22px; height: 22px; }
    .roles-section { padding-top: 78px; }
    .role-tabs { padding: 5px; }
    .role-tabs button { justify-content: center; gap: 8px; padding: 10px 7px; text-align: center; }
    .role-tab-icon { width: 36px; height: 36px; flex-basis: 36px; }
    .role-tabs strong { font-size: 13px; }
    .role-panel { min-height: auto; gap: 33px; padding: 32px 0 32px 21px; }
    .role-copy { padding-right: 21px; }
    .role-copy h3 { font-size: 29px; }
    .role-copy > p:not(.panel-kicker) { font-size: 14px; }
    .check-list li { align-items: flex-start; font-size: 12px; }
    .role-preview { min-height: 365px; padding: 20px 0 20px 17px; border-radius: 18px 0 0 18px; }
    .preview-toolbar { padding: 0 15px 15px 0; }
    .preview-search,
    .customer-table { width: calc(100% - 14px); }
    .table-head,
    .table-row { grid-template-columns: 1.35fr .9fr .8fr; }
    .table-head span:nth-child(2),
    .table-row > span:nth-child(2) { display: none; }
    .table-row { min-height: 57px; padding: 8px 10px; }
    .timeline-card { right: 12px; bottom: 10px; width: 230px; }
    .pipeline-grid { grid-template-columns: repeat(2, 1fr); padding-right: 14px; }
    .pipeline-grid section:nth-child(3) { display: none; }
    .deadline-note { right: 14px; bottom: 10px; left: 17px; }
    .feature-card { padding: 28px 24px; }
    .feature-card h3 { font-size: 22px; }
    .feature-customer { min-height: 500px; }
    .customer-stack { padding: 17px; transform: translate(4px, 8px) rotate(1deg); }
    .profile-tags span:last-child { display: none; }
    .feature-docs { min-height: 555px; }
    .folder-front { right: -28px; left: 3px; }
    .feature-report { min-height: 500px; }
    .report-chart { margin-right: -12px; margin-left: -12px; padding: 17px 14px 12px; }
    .flow-steps::before { display: none; }
    .flow-steps li { grid-template-columns: 1fr; gap: 12px; }
    .step-num { position: absolute; top: 24px; right: 24px; }
    .flow-steps li:hover { transform: translateY(-3px); }
    .security-visual { min-height: 345px; transform: scale(.72); }
    .security-rings { width: 430px; height: 430px; }
    .chip-one { right: 20px; }
    .chip-three { left: 10px; }
    .billing-toggle { margin-top: -20px; }
    .billing-toggle button { padding: 0 11px; font-size: 11px; }
    .price-card { padding: 30px 25px; }
    .price strong { font-size: 35px; }
    .faq-list summary { grid-template-columns: 25px 1fr 20px; min-height: 82px; gap: 9px; font-size: 14px; }
    .faq-list details p { margin: -2px 28px 25px 34px; font-size: 13px; }
    .closing-content h2 { font-size: 36px; }
    .closing-lead { font-size: 15px; }
    .footer-main { grid-template-columns: repeat(2, 1fr); padding-top: 55px; padding-bottom: 48px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-contact { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 4px; }
    .contact-modal { padding: 12px; place-items: start center; }
    .modal-card { border-radius: 20px; }
    .modal-heading { padding: 35px 25px; }
    .modal-heading h2 { font-size: 25px; }
    .modal-close { top: 12px; right: 12px; color: #fff; background: rgba(255,255,255,.1); }
    .contact-form { padding: 31px 23px 27px; }
    .form-grid { grid-template-columns: 1fr; gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}

@media print {
    .site-header,
    .hero-product,
    .button,
    .contact-modal,
    .toast { display: none !important; }
    .hero { min-height: auto; padding: 50px 0; color: #000; background: #fff; }
    .hero h1 { color: #000; }
    .hero-lead { color: #444; }
    .section { padding: 45px 0; }
    [data-reveal] { opacity: 1; transform: none; }
}
