:root {
    --navy-950: #031326;
    --navy-900: #041c3b;
    --navy-850: #06264c;
    --navy-800: #08315f;
    --navy-700: #0d477d;
    --blue: #1578ed;
    --blue-soft: #e9f2ff;
    --lime: #83d20b;
    --lime-bright: #9be31b;
    --lime-deep: #55a900;
    --lime-soft: #f1fadd;
    --ink: #10243f;
    --muted: #64748b;
    --muted-light: #9cadc2;
    --line: #e4ebf3;
    --surface: #ffffff;
    --surface-soft: #f5f8fc;
    --danger: #e84b5f;
    --success: #20a860;
    --shadow-sm: 0 12px 32px rgba(12, 35, 65, 0.08);
    --shadow-md: 0 24px 65px rgba(12, 35, 65, 0.13);
    --shadow-lg: 0 36px 90px rgba(0, 14, 37, 0.3);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --shell: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

p,
h1,
h2,
h3 {
    margin-top: 0;
}

.shell {
    width: min(calc(100% - 48px), var(--shell));
    margin-inline: auto;
}

.icon-library {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: 11px 16px;
    border-radius: 10px;
    color: var(--navy-950);
    background: var(--lime-bright);
    font-weight: 800;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid rgba(131, 210, 11, 0.55);
    outline-offset: 3px;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    color: #fff;
    transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(3, 19, 38, 0.94);
    box-shadow: 0 12px 36px rgba(0, 8, 24, 0.2);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    min-width: 190px;
    align-items: center;
    gap: 11px;
}

.brand-mark {
    display: grid;
    width: 53px;
    height: 53px;
    flex: 0 0 53px;
    place-items: center;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 9px 22px rgba(0, 8, 25, 0.22);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.8px;
}

.brand-copy strong span {
    color: var(--lime-bright);
}

.brand-copy small {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 31px;
}

.desktop-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 650;
    transition: color 180ms ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--lime);
    content: "";
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-actions,
.hero-actions,
.download-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 13px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1.2;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.button:hover {
    transform: translateY(-2px);
}

.button-compact {
    min-height: 43px;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 13px;
}

.button-large {
    min-height: 56px;
    padding: 15px 23px;
    border-radius: 15px;
}

.button-lime {
    color: #102704;
    background: linear-gradient(135deg, var(--lime-bright), var(--lime));
    box-shadow: 0 12px 28px rgba(122, 207, 7, 0.27), inset 0 1px rgba(255, 255, 255, 0.42);
}

.button-lime:hover {
    background: linear-gradient(135deg, #a8eb2a, #8ad60f);
    box-shadow: 0 17px 34px rgba(122, 207, 7, 0.34);
}

.button-ghost {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

.button-ghost:hover,
.button-glass:hover {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
}

.button-glass {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.07);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.button-secondary {
    color: var(--navy-900);
    border-color: var(--line);
    background: #fff;
}

.button-navy {
    color: #fff;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
    box-shadow: 0 15px 35px rgba(4, 28, 59, 0.19);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.menu-toggle svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2;
}

.menu-close-icon,
.menu-toggle[aria-expanded="true"] .menu-open-icon {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-close-icon {
    display: block;
}

.mobile-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--navy-950);
}

.mobile-nav[hidden] {
    display: none;
}

.mobile-nav-inner {
    padding-block: 12px 22px;
}

.mobile-nav-inner > a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.mobile-nav-inner > a svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 18px;
}

.hero {
    position: relative;
    min-height: 830px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 80% 18%, rgba(24, 113, 221, 0.23), transparent 28%),
        radial-gradient(circle at 10% 72%, rgba(74, 175, 22, 0.15), transparent 31%),
        linear-gradient(128deg, #031326 0%, #041e40 48%, #062b53 100%);
}

.hero-grid,
.download-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.48) 1px, transparent 1px);
    background-size: 24px 24px;
    -webkit-mask-image: linear-gradient(90deg, #000, transparent 60%);
    mask-image: linear-gradient(90deg, #000, transparent 60%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-orb-one {
    top: 110px;
    right: -180px;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(126, 214, 13, 0.18);
    box-shadow: inset 0 0 100px rgba(126, 214, 13, 0.06);
}

.hero-orb-two {
    bottom: 90px;
    left: -190px;
    width: 410px;
    height: 410px;
    border: 1px solid rgba(20, 120, 237, 0.2);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 770px;
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
    align-items: center;
    gap: 68px;
    padding-top: 105px;
    padding-bottom: 70px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime-bright);
    box-shadow: 0 0 0 6px rgba(137, 218, 17, 0.12);
}

.eyebrow-dark {
    color: var(--navy-700);
}

.hero-copy h1 {
    max-width: 610px;
    margin-bottom: 24px;
    font-size: clamp(50px, 5.35vw, 76px);
    font-weight: 900;
    letter-spacing: -4.2px;
    line-height: 0.98;
}

.hero-copy h1 span,
.section-heading h2 span {
    color: var(--lime-bright);
}

.hero-copy > p {
    max-width: 590px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
    line-height: 1.72;
}

.hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 19px;
    margin-top: 26px;
}

.hero-assurances span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 650;
}

.hero-assurances svg {
    width: 16px;
    height: 16px;
    padding: 2px;
    border-radius: 50%;
    color: var(--navy-950);
    background: var(--lime);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.hero-visual {
    position: relative;
    min-width: 0;
    padding-top: 46px;
}

.logo-float {
    position: absolute;
    z-index: 4;
    top: -15px;
    left: -25px;
    width: 125px;
    height: 125px;
    overflow: hidden;
    border: 6px solid #fff;
    border-radius: 36px;
    background: #fff;
    box-shadow: 0 20px 45px rgba(0, 8, 25, 0.35);
    transform: rotate(-4deg);
}

.logo-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.control-window {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 24px;
    background: #f5f8fd;
    box-shadow: var(--shadow-lg);
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.window-bar {
    display: flex;
    min-height: 55px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    color: #fff;
    background: linear-gradient(100deg, #082d59, #041b37);
}

.window-brand,
.live-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 750;
}

.window-brand svg {
    width: 18px;
    height: 18px;
    color: var(--lime);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.live-chip {
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.06);
}

.live-chip i,
.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 4px rgba(131, 210, 11, 0.13);
}

.window-body {
    display: grid;
    min-height: 390px;
    grid-template-columns: 58px minmax(0, 1fr);
}

.preview-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    padding-top: 29px;
    background: #fff;
    box-shadow: 5px 0 18px rgba(23, 49, 80, 0.04);
}

.preview-sidebar span {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    border-radius: 10px;
    color: #8da0b7;
}

.preview-sidebar span.active {
    color: var(--navy-800);
    background: var(--lime-soft);
}

.preview-sidebar svg,
.preview-icon svg,
.action-tile svg,
.device-shield svg,
.floating-status svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.preview-content {
    min-width: 0;
    padding: 25px 23px 24px;
    color: var(--ink);
}

.preview-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.preview-heading div {
    display: flex;
    flex-direction: column;
}

.preview-heading small {
    margin-bottom: 4px;
    color: #8c9cb0;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 1.2px;
}

.preview-heading strong {
    font-size: 19px;
    line-height: 1.2;
}

.preview-avatar {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid #dce6f2;
    border-radius: 50%;
    color: var(--navy-800);
    background: #fff;
    font-size: 13px;
    font-weight: 850;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-bottom: 13px;
}

.preview-stats article {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    padding: 12px 10px;
    border: 1px solid #e5edf6;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 7px 17px rgba(13, 46, 83, 0.045);
}

.preview-icon {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    place-items: center;
    border-radius: 10px;
    color: #176dd7;
    background: #eaf3ff;
}

.preview-icon.green {
    color: #26a94c;
    background: #e8f9ed;
}

.preview-icon.orange {
    color: #e98b23;
    background: #fff3e3;
}

.preview-stats article > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.preview-stats small {
    overflow: hidden;
    color: #8798ad;
    font-size: 8px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.preview-stats strong {
    overflow: hidden;
    margin-top: 3px;
    color: var(--navy-900);
    font-size: 11px;
    line-height: 1.25;
    text-overflow: ellipsis;
}

.preview-stats .status-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 4px;
    height: 4px;
}

.preview-panels {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(135px, 0.75fr);
    gap: 10px;
}

.command-panel,
.activity-panel {
    min-width: 0;
    padding: 15px;
    border: 1px solid #e5edf6;
    border-radius: 14px;
    background: #fff;
}

.panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 15px;
}

.panel-title span {
    color: var(--navy-900);
    font-size: 11px;
    font-weight: 850;
}

.panel-title small {
    color: #94a4b7;
    font-size: 8px;
}

.device-row {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
    padding: 11px;
    border-radius: 11px;
    background: #f6f9fd;
}

.device-shield {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(145deg, var(--navy-700), var(--navy-900));
}

.device-row > div {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
}

.device-row strong {
    overflow: hidden;
    color: var(--navy-900);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.device-row small {
    overflow: hidden;
    color: #8494a9;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.state-pill {
    padding: 5px 7px;
    border-radius: 20px;
    color: #318900;
    background: #e9f8db;
    font-size: 7px;
    font-weight: 850;
}

.command-track {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.command-track span {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    color: #788ba2;
    font-size: 7px;
    line-height: 1.2;
}

.command-track span i {
    width: 9px;
    height: 9px;
    margin-bottom: 5px;
    border: 2px solid #c9d5e2;
    border-radius: 50%;
    background: #fff;
}

.command-track span.complete i {
    border-color: var(--lime-deep);
    background: var(--lime);
    box-shadow: 0 0 0 3px rgba(131, 210, 11, 0.12);
}

.command-track b {
    height: 2px;
    flex: 1;
    margin: 0 4px 16px;
    background: linear-gradient(90deg, var(--lime), #b9dc8d);
}

.activity-panel {
    display: flex;
    flex-direction: column;
}

.action-tile {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 9px;
    border-radius: 9px;
    color: var(--navy-800);
    background: #f6f9fd;
    font-size: 8px;
    font-weight: 750;
}

.action-tile + .action-tile {
    margin-top: 7px;
}

.action-tile svg {
    width: 15px;
    height: 15px;
    color: var(--blue);
}

.floating-status {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 190px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 16px 38px rgba(0, 15, 38, 0.2);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.floating-status > span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 10px;
    color: var(--navy-900);
    background: var(--lime-soft);
}

.floating-status > div {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.floating-status strong {
    font-size: 10px;
}

.floating-status small {
    margin-top: 3px;
    color: #8190a3;
    font-size: 8px;
}

.floating-status-top {
    top: 87px;
    right: -42px;
}

.floating-status-bottom {
    bottom: -30px;
    left: 24px;
}

.hero-wave {
    position: absolute;
    right: -4%;
    bottom: -85px;
    left: -4%;
    height: 150px;
    border-radius: 50% 50% 0 0 / 62% 62% 0 0;
    background: #fff;
    transform: rotate(-1.8deg);
}

.hero-wave::before {
    position: absolute;
    top: -8px;
    right: 0;
    left: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--lime-deep), var(--lime-bright));
    content: "";
}

.platform-strip {
    position: relative;
    z-index: 4;
    padding: 16px 0 8px;
    background: #fff;
}

.platform-strip-inner {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 12px 25px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.platform-strip p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.platform-strip-inner > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px 26px;
}

.platform-strip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy-800);
    font-size: 13px;
    font-weight: 800;
}

.platform-strip svg {
    width: 18px;
    height: 18px;
    color: var(--lime-deep);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.section {
    position: relative;
    padding: 112px 0;
}

.section-heading {
    max-width: 750px;
    margin-bottom: 55px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.workflow-copy h2,
.security-copy h2,
.download-copy h2,
.faq-heading h2,
.contact-copy h2 {
    margin-bottom: 18px;
    color: var(--navy-900);
    font-size: clamp(37px, 4.3vw, 56px);
    font-weight: 900;
    letter-spacing: -2.6px;
    line-height: 1.08;
}

.section-heading h2 span {
    color: var(--lime-deep);
}

.section-heading p,
.workflow-copy > p,
.faq-heading > p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 17px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.feature-card {
    position: relative;
    min-height: 365px;
    overflow: hidden;
    padding: 31px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 15px 40px rgba(18, 49, 85, 0.07);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.feature-card::after {
    position: absolute;
    right: -40px;
    bottom: -55px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(131, 210, 11, 0.1), transparent 68%);
    content: "";
}

.feature-card:hover {
    border-color: #d2e2c2;
    box-shadow: 0 26px 58px rgba(18, 49, 85, 0.13);
    transform: translateY(-7px);
}

.feature-card-primary {
    border-color: rgba(131, 210, 11, 0.25);
    background: linear-gradient(150deg, #f7fced, #fff 55%);
}

.feature-icon {
    display: grid;
    width: 56px;
    height: 56px;
    margin-bottom: 27px;
    place-items: center;
    border-radius: 17px;
    color: #1d70d4;
    background: var(--blue-soft);
    box-shadow: 0 10px 23px rgba(25, 105, 207, 0.13);
}

.feature-icon.red {
    color: #e64156;
    background: #ffedf0;
    box-shadow: 0 10px 23px rgba(230, 65, 86, 0.12);
}

.feature-icon.green {
    color: #299f45;
    background: #eaf9ed;
    box-shadow: 0 10px 23px rgba(41, 159, 69, 0.12);
}

.feature-icon.purple {
    color: #7e49d9;
    background: #f3ecff;
    box-shadow: 0 10px 23px rgba(126, 73, 217, 0.12);
}

.feature-icon.orange {
    color: #dc7c16;
    background: #fff3e5;
    box-shadow: 0 10px 23px rgba(220, 124, 22, 0.12);
}

.feature-icon.cyan {
    color: #008eaa;
    background: #e4f9fc;
    box-shadow: 0 10px 23px rgba(0, 142, 170, 0.12);
}

.feature-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.feature-number {
    position: absolute;
    top: 35px;
    right: 31px;
    color: #dbe4ee;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
}

.feature-card h3 {
    margin-bottom: 11px;
    color: var(--navy-900);
    font-size: 20px;
    font-weight: 850;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.feature-card p {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 14px;
}

.feature-card ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-card li {
    position: relative;
    padding-left: 20px;
    color: #405670;
    font-size: 12px;
    font-weight: 700;
}

.feature-card li::before {
    position: absolute;
    top: 8px;
    left: 2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 3px var(--lime-soft);
    content: "";
}

.workflow-section {
    background: linear-gradient(160deg, #f2f6fb 0%, #fbfcfe 62%, #f4faeb 100%);
}

.workflow-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
    align-items: start;
    gap: 90px;
}

.workflow-copy {
    position: sticky;
    top: 125px;
}

.workflow-copy > p {
    margin: 0 0 27px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-800);
    font-weight: 850;
}

.text-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--lime-deep);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: transform 180ms ease;
}

.text-link:hover svg {
    transform: translateX(4px);
}

.workflow-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.workflow-list::before {
    position: absolute;
    top: 60px;
    bottom: 60px;
    left: 39px;
    width: 2px;
    background: linear-gradient(var(--lime), rgba(131, 210, 11, 0.08));
    content: "";
}

.workflow-list li {
    position: relative;
    display: grid;
    grid-template-columns: 80px 56px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    padding: 28px;
    border: 1px solid #e2eaf3;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.step-number {
    color: #c8d5e3;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -1px;
}

.step-icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 17px;
    color: var(--navy-800);
    background: var(--lime-soft);
}

.step-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.workflow-list h3 {
    margin-bottom: 7px;
    color: var(--navy-900);
    font-size: 19px;
    font-weight: 850;
}

.workflow-list p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.pricing-section {
    background:
        radial-gradient(circle at 8% 15%, rgba(131, 210, 11, 0.1), transparent 22%),
        radial-gradient(circle at 92% 72%, rgba(21, 120, 237, 0.08), transparent 25%),
        #fff;
}

.pricing-signup {
    position: relative;
    display: grid;
    min-height: 170px;
    grid-template-columns: minmax(0, 1.4fr) auto auto;
    align-items: center;
    gap: 38px;
    margin-bottom: 36px;
    overflow: hidden;
    padding: 31px 34px;
    border: 1px solid rgba(131, 210, 11, 0.26);
    border-radius: var(--radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(131, 210, 11, 0.2), transparent 30%),
        linear-gradient(125deg, var(--navy-950), var(--navy-800));
    box-shadow: 0 25px 60px rgba(4, 28, 59, 0.2);
}

.pricing-signup::after {
    position: absolute;
    top: -90px;
    right: 22%;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.pricing-signup > * {
    position: relative;
    z-index: 1;
}

.pricing-signup-copy {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 20px;
}

.pricing-signup-icon,
.pricing-pack-icon {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
}

.pricing-signup-icon {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: var(--lime-bright);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
}

.pricing-signup-icon svg,
.pricing-pack-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.pricing-signup-copy small,
.pricing-card-heading small {
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.pricing-signup-copy small {
    color: var(--lime-bright);
}

.pricing-signup-copy h3 {
    margin-bottom: 3px;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.pricing-signup-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.pricing-signup-value {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 38px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.pricing-signup-value > strong {
    color: var(--lime-bright);
    font-size: 58px;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 0.9;
}

.pricing-signup-value span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.pricing-signup-value b {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-signup-value small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
    padding-top: 10px;
}

.pricing-card {
    position: relative;
    display: flex;
    min-height: 395px;
    flex-direction: column;
    padding: 28px 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 17px 44px rgba(18, 49, 85, 0.09);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.pricing-card:hover {
    border-color: rgba(131, 210, 11, 0.4);
    box-shadow: 0 26px 58px rgba(18, 49, 85, 0.14);
    transform: translateY(-6px);
}

.pricing-card-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 34px;
}

.pricing-pack-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    color: var(--navy-800);
    background: var(--lime-soft);
}

.pricing-card-heading small {
    color: #8797aa;
}

.pricing-card-heading h3 {
    margin: 0;
    color: var(--navy-900);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.6px;
    line-height: 1.2;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 26px;
    color: var(--navy-900);
}

.pricing-price > span {
    margin: 7px 5px 0 0;
    font-size: 24px;
    font-weight: 850;
    line-height: 1;
}

.pricing-price > strong {
    font-size: clamp(50px, 4vw, 62px);
    font-weight: 950;
    letter-spacing: -3.2px;
    line-height: 0.9;
}

.pricing-price > small {
    align-self: flex-end;
    margin: 0 0 4px 9px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
}

.pricing-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    padding: 17px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.pricing-total span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.pricing-total strong {
    color: var(--navy-900);
    font-size: 19px;
    font-weight: 900;
}

.pricing-card .button {
    width: 100%;
    margin-top: auto;
    padding-inline: 14px;
    font-size: 13px;
}

.pricing-card-featured {
    border-color: rgba(131, 210, 11, 0.5);
    color: #fff;
    background:
        radial-gradient(circle at 85% 12%, rgba(131, 210, 11, 0.2), transparent 25%),
        linear-gradient(145deg, var(--navy-800), var(--navy-950));
    box-shadow: 0 27px 65px rgba(4, 28, 59, 0.24);
    transform: translateY(-10px);
}

.pricing-card-featured:hover {
    border-color: var(--lime);
    box-shadow: 0 34px 72px rgba(4, 28, 59, 0.3);
    transform: translateY(-15px);
}

.pricing-card-featured .pricing-pack-icon {
    color: var(--lime-bright);
    background: rgba(255, 255, 255, 0.09);
}

.pricing-card-featured .pricing-card-heading small,
.pricing-card-featured .pricing-price > small,
.pricing-card-featured .pricing-total span {
    color: rgba(255, 255, 255, 0.58);
}

.pricing-card-featured .pricing-card-heading h3,
.pricing-card-featured .pricing-total strong {
    color: #fff;
}

.pricing-card-featured .pricing-price {
    color: var(--lime-bright);
}

.pricing-card-featured .pricing-total {
    border-color: rgba(255, 255, 255, 0.12);
}

.pricing-best-value {
    position: absolute;
    top: 0;
    right: 26px;
    padding: 7px 13px 8px;
    border-radius: 0 0 11px 11px;
    color: #102704;
    background: linear-gradient(135deg, var(--lime-bright), var(--lime));
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.pricing-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 38px;
    text-align: center;
}

.pricing-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.pricing-footer p strong {
    color: var(--navy-900);
}

.security-section {
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 13% 45%, rgba(39, 118, 211, 0.22), transparent 28%),
        linear-gradient(135deg, #031326, #06284f);
}

.security-section::after {
    position: absolute;
    top: -160px;
    right: -180px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(131, 210, 11, 0.12);
    border-radius: 50%;
    content: "";
}

.security-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(400px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 95px;
}

.security-visual {
    position: relative;
    min-height: 470px;
}

.security-rings,
.security-rings span {
    position: absolute;
    inset: 50% auto auto 50%;
    border: 1px solid rgba(135, 216, 24, 0.16);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.security-rings {
    width: 430px;
    height: 430px;
    background: radial-gradient(circle, rgba(131, 210, 11, 0.08), transparent 63%);
}

.security-rings span:first-child {
    width: 330px;
    height: 330px;
}

.security-rings span:nth-child(2) {
    width: 235px;
    height: 235px;
}

.security-rings span:nth-child(3) {
    width: 145px;
    height: 145px;
    border-color: rgba(131, 210, 11, 0.3);
}

.security-core {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: flex;
    width: 145px;
    height: 145px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 40px;
    background: linear-gradient(145deg, rgba(23, 76, 130, 0.9), rgba(4, 26, 54, 0.95));
    box-shadow: 0 24px 55px rgba(0, 8, 22, 0.35), inset 0 1px rgba(255, 255, 255, 0.14);
    transform: translate(-50%, -50%) rotate(-4deg);
}

.security-core svg {
    width: 43px;
    height: 43px;
    margin-bottom: 8px;
    color: var(--lime-bright);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.security-core strong {
    font-size: 16px;
}

.security-core small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 8px;
}

.security-node {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 13px;
    background: rgba(8, 49, 95, 0.88);
    box-shadow: 0 16px 40px rgba(0, 9, 28, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: 10px;
    font-weight: 750;
}

.security-node svg {
    width: 19px;
    height: 19px;
    color: var(--lime);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.node-one {
    top: 58px;
    left: 50%;
    transform: translateX(-50%);
}

.node-two {
    right: 8px;
    bottom: 108px;
}

.node-three {
    bottom: 100px;
    left: 0;
}

.security-copy h2,
.contact-copy h2,
.download-copy h2 {
    color: #fff;
}

.security-copy > p,
.contact-copy > p,
.download-copy > p {
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
}

.security-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.security-points article {
    display: flex;
    gap: 15px;
}

.security-points article > span,
.contact-benefits article > span {
    display: grid;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 13px;
    color: var(--lime-bright);
    background: rgba(255, 255, 255, 0.07);
}

.security-points svg,
.contact-benefits svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.security-points h3 {
    margin-bottom: 3px;
    font-size: 15px;
}

.security-points p {
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 13px;
}

.download-section {
    padding: 100px 0;
    background: #fff;
}

.download-card {
    position: relative;
    display: grid;
    min-height: 390px;
    overflow: hidden;
    grid-template-columns: 245px minmax(0, 1fr) auto;
    align-items: center;
    gap: 45px;
    padding: 48px 55px;
    border-radius: var(--radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 90% 40%, rgba(48, 130, 226, 0.28), transparent 31%),
        linear-gradient(125deg, var(--navy-950), var(--navy-800));
    box-shadow: 0 35px 80px rgba(5, 35, 70, 0.23);
}

.download-pattern {
    opacity: 0.1;
}

.download-logo {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 8px solid #fff;
    border-radius: 48px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(0, 8, 25, 0.3);
    transform: rotate(-3deg);
}

.download-copy {
    position: relative;
    z-index: 2;
}

.download-copy h2 {
    max-width: 570px;
    font-size: clamp(35px, 4vw, 52px);
}

.download-copy > p {
    max-width: 590px;
}

.android-badge {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.07);
}

.android-badge svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--lime-bright);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.android-badge span {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.android-badge small {
    color: rgba(255, 255, 255, 0.48);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.android-badge strong {
    font-size: 14px;
}

.faq-section {
    background: var(--surface-soft);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(530px, 1.28fr);
    align-items: start;
    gap: 90px;
}

.faq-heading {
    position: sticky;
    top: 125px;
}

.faq-heading > p {
    margin: 0 0 28px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-list details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(16, 45, 79, 0.045);
}

.faq-list summary {
    position: relative;
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 25px;
    color: var(--navy-900);
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    background: var(--lime-soft);
}

.faq-list summary span::before,
.faq-list summary span::after {
    position: absolute;
    top: 13px;
    left: 8px;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: var(--lime-deep);
    content: "";
}

.faq-list summary span::after {
    transform: rotate(90deg);
    transition: transform 180ms ease;
}

.faq-list details[open] {
    border-color: #dbe9cc;
    box-shadow: 0 16px 36px rgba(16, 45, 79, 0.075);
}

.faq-list details[open] summary span::after {
    transform: rotate(0);
}

.faq-list details p {
    margin: -4px 0 0;
    padding: 0 25px 23px;
    color: var(--muted);
    font-size: 14px;
}

.contact-section {
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 14% 30%, rgba(30, 110, 204, 0.2), transparent 26%),
        radial-gradient(circle at 92% 74%, rgba(131, 210, 11, 0.1), transparent 30%),
        var(--navy-950);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
    align-items: center;
    gap: 90px;
}

.contact-copy > p {
    max-width: 520px;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.contact-benefits article {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-benefits article > div {
    display: flex;
    flex-direction: column;
}

.contact-benefits strong {
    font-size: 14px;
}

.contact-benefits small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.contact-card {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 27px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 35px 80px rgba(0, 7, 23, 0.34);
}

.contact-card-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.contact-card-icon {
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    place-items: center;
    border-radius: 16px;
    color: var(--navy-800);
    background: var(--lime-soft);
}

.contact-card-icon svg,
.form-alert svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.contact-card-heading h3 {
    margin-bottom: 2px;
    color: var(--navy-900);
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -0.6px;
}

.contact-card-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 21px;
    padding: 13px 15px;
    border: 1px solid;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 650;
}

.form-alert svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.form-alert-success {
    border-color: #bce7cb;
    color: #16733d;
    background: #edf9f1;
}

.form-alert-error {
    border-color: #f2c4ca;
    color: #a62e3d;
    background: #fff1f3;
}

.contact-form {
    position: relative;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    margin-bottom: 7px;
    color: #253a54;
    font-size: 12px;
    font-weight: 800;
}

.form-field label > span {
    color: var(--danger);
}

.form-field label em {
    margin-left: 4px;
    color: #91a0b2;
    font-size: 10px;
    font-style: normal;
    font-weight: 650;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #dbe4ee;
    border-radius: 12px;
    color: var(--ink);
    background: #f9fbfd;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field input,
.form-field select {
    height: 49px;
    padding: 0 14px;
}

.form-field select {
    padding-right: 40px;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #708198 50%), linear-gradient(135deg, #708198 50%, transparent 50%);
    background-position: calc(100% - 19px) 21px, calc(100% - 14px) 21px;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
}

.form-field textarea {
    min-height: 126px;
    padding: 13px 14px;
    line-height: 1.5;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #9ba9b9;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #8cc83d;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(131, 210, 11, 0.12);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: #e97886;
    background: #fffafb;
}

.field-error {
    display: block;
    margin-top: 6px;
    color: #c63d4e;
    font-size: 11px;
    font-weight: 650;
}

.field-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 5px;
    color: #91a0b2;
    font-size: 10px;
}

.field-meta .field-error {
    margin: 0;
}

.consent-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    color: #63748a;
    cursor: pointer;
    font-size: 11px;
    line-height: 1.45;
}

.consent-field input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.custom-check {
    display: grid;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    place-items: center;
    border: 1px solid #cdd9e5;
    border-radius: 6px;
    background: #f9fbfd;
    transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.custom-check svg {
    width: 13px;
    height: 13px;
    color: var(--navy-950);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    opacity: 0;
}

.consent-field input:checked + .custom-check {
    border-color: var(--lime-deep);
    background: var(--lime);
}

.consent-field input:checked + .custom-check svg {
    opacity: 1;
}

.consent-field input:focus-visible + .custom-check {
    box-shadow: 0 0 0 4px rgba(131, 210, 11, 0.2);
}

.consent-field.has-error .custom-check {
    border-color: var(--danger);
}

.consent-error {
    margin-left: 30px;
}

.button-submit {
    width: 100%;
    min-height: 54px;
    margin-top: 21px;
    border: 0;
}

.site-footer {
    color: #fff;
    background: #020d1b;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 0.65fr 0.65fr;
    gap: 70px;
    padding-top: 62px;
    padding-bottom: 48px;
}

.footer-brand > p {
    max-width: 340px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-links strong {
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    transition: color 160ms ease;
}

.footer-links a:hover {
    color: var(--lime-bright);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 21px;
    padding-bottom: 21px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 11px;
}

.footer-bottom svg {
    width: 15px;
    height: 15px;
    color: var(--lime);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.mobile-action-bar {
    display: none;
}

.reveal.is-pending {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.is-pending.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay.is-pending {
    transition-delay: 100ms;
}

@media (max-width: 1180px) {
    .desktop-nav {
        gap: 20px;
    }

    .desktop-download {
        display: none;
    }

    .hero-layout {
        grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
        gap: 40px;
    }

    .floating-status-top {
        right: -10px;
    }

    .contact-layout {
        gap: 55px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .pricing-card-featured {
        grid-column: auto;
    }

    .download-card {
        grid-template-columns: 205px minmax(0, 1fr);
    }

    .android-badge {
        position: absolute;
        top: 27px;
        right: 27px;
    }
}

@media (max-width: 980px) {
    .desktop-nav,
    .header-actions > .button {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .hero {
        min-height: auto;
    }

    .hero-layout {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 58px;
        padding-top: 145px;
        padding-bottom: 150px;
    }

    .hero-copy {
        max-width: 680px;
        text-align: center;
        margin-inline: auto;
    }

    .hero-copy h1,
    .hero-copy > p {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-assurances {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 650px);
        margin-inline: auto;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workflow-layout,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .workflow-copy,
    .faq-heading {
        position: static;
        max-width: 680px;
    }

    .workflow-copy > p,
    .faq-heading > p {
        margin-left: 0;
    }

    .pricing-signup {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .pricing-signup .button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-card-featured {
        grid-column: auto;
    }

    .security-layout {
        grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
        gap: 45px;
    }

    .security-rings {
        width: 370px;
        height: 370px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-copy {
        max-width: 700px;
    }

    .contact-benefits {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-benefits article {
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    .shell {
        width: min(calc(100% - 32px), var(--shell));
    }

    .header-inner {
        min-height: 72px;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        border-radius: 14px;
    }

    .brand-copy strong {
        font-size: 20px;
    }

    .hero-layout {
        padding-top: 125px;
    }

    .hero-copy h1 {
        font-size: clamp(43px, 12vw, 61px);
        letter-spacing: -3.2px;
    }

    .hero-copy > p {
        font-size: 16px;
    }

    .logo-float {
        left: -2px;
        width: 105px;
        height: 105px;
        border-radius: 30px;
    }

    .control-window {
        transform: none;
    }

    .floating-status-top {
        top: 82px;
        right: -5px;
    }

    .floating-status-bottom {
        bottom: -32px;
        left: 15px;
    }

    .platform-strip-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .platform-strip-inner > div {
        justify-content: flex-start;
    }

    .section {
        padding: 88px 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card,
    .pricing-card-featured {
        min-height: 370px;
        grid-column: auto;
    }

    .pricing-card-featured,
    .pricing-card-featured:hover {
        transform: none;
    }

    .security-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .security-visual {
        width: min(100%, 470px);
        margin-inline: auto;
    }

    .security-copy {
        max-width: 660px;
    }

    .download-card {
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 30px;
        padding: 78px 34px 38px;
    }

    .download-logo {
        border-width: 6px;
        border-radius: 35px;
    }

    .download-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-benefits {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1.35fr 0.65fr 0.65fr;
        gap: 35px;
    }
}

@media (max-width: 590px) {
    html {
        scroll-padding-top: 78px;
    }

    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom));
    }

    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .brand {
        min-width: 0;
    }

    .brand-copy small {
        display: none;
    }

    .mobile-nav-actions {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        gap: 45px;
        padding-top: 115px;
        padding-bottom: 132px;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 1.15px;
    }

    .hero-copy h1 {
        margin-bottom: 20px;
        font-size: clamp(40px, 12.8vw, 54px);
        letter-spacing: -2.8px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-assurances {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: start;
        text-align: left;
    }

    .hero-visual {
        padding-top: 36px;
    }

    .logo-float {
        top: -13px;
        width: 85px;
        height: 85px;
        border-width: 4px;
        border-radius: 24px;
    }

    .window-bar {
        min-height: 48px;
        padding: 0 12px;
    }

    .live-chip {
        padding: 5px 7px;
        font-size: 8px;
    }

    .window-body {
        min-height: 330px;
        grid-template-columns: 43px minmax(0, 1fr);
    }

    .preview-sidebar {
        gap: 8px;
        padding-top: 21px;
    }

    .preview-sidebar span {
        width: 28px;
        height: 28px;
    }

    .preview-sidebar svg {
        width: 15px;
        height: 15px;
    }

    .preview-content {
        padding: 18px 12px;
    }

    .preview-heading {
        margin-bottom: 13px;
    }

    .preview-heading strong {
        font-size: 15px;
    }

    .preview-stats {
        grid-template-columns: 1fr;
    }

    .preview-stats article {
        padding: 8px;
    }

    .preview-icon {
        width: 27px;
        height: 27px;
        flex-basis: 27px;
    }

    .preview-icon svg {
        width: 15px;
        height: 15px;
    }

    .preview-panels {
        grid-template-columns: 1fr;
    }

    .activity-panel,
    .floating-status-top {
        display: none;
    }

    .floating-status-bottom {
        right: 9px;
        bottom: -35px;
        left: auto;
        min-width: 180px;
    }

    .platform-strip {
        padding-top: 0;
    }

    .platform-strip-inner {
        gap: 12px;
        padding: 18px;
    }

    .platform-strip-inner > div {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .workflow-copy h2,
    .security-copy h2,
    .download-copy h2,
    .faq-heading h2,
    .contact-copy h2 {
        font-size: 36px;
        letter-spacing: -1.8px;
    }

    .section-heading p,
    .workflow-copy > p,
    .faq-heading > p {
        font-size: 15px;
    }

    .feature-card {
        padding: 26px;
    }

    .workflow-list::before {
        display: none;
    }

    .workflow-list li {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 15px;
        padding: 22px;
    }

    .pricing-signup {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 22px;
        text-align: center;
    }

    .pricing-signup-copy {
        align-items: center;
        flex-direction: column;
        gap: 14px;
    }

    .pricing-signup-value {
        justify-content: center;
        padding: 19px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.13);
        border-right: 0;
    }

    .pricing-signup .button {
        grid-column: auto;
    }

    .pricing-card {
        min-height: 350px;
        padding: 27px 24px;
    }

    .pricing-card-heading {
        margin-bottom: 29px;
    }

    .pricing-price > strong {
        font-size: 60px;
    }

    .pricing-footer {
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }

    .step-number {
        display: none;
    }

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .security-visual {
        min-height: 375px;
        transform: scale(0.85);
        transform-origin: center;
    }

    .security-rings {
        width: 390px;
        height: 390px;
    }

    .node-two {
        right: -16px;
    }

    .node-three {
        left: -15px;
    }

    .download-section {
        padding: 72px 0;
    }

    .download-card {
        display: block;
        padding: 36px 24px;
        text-align: center;
    }

    .download-logo {
        width: 135px;
        margin: 0 auto 30px;
        border-radius: 32px;
    }

    .download-copy > p {
        font-size: 14px;
    }

    .android-badge {
        position: static;
        width: max-content;
        margin: 23px auto 0;
    }

    .faq-list summary {
        min-height: 68px;
        padding: 17px 18px;
        font-size: 14px;
    }

    .faq-list details p {
        padding: 0 18px 20px;
    }

    .contact-card {
        padding: 25px 19px;
        border-radius: 22px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-field-full {
        grid-column: auto;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 38px 25px;
        padding-top: 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .mobile-action-bar {
        position: fixed;
        z-index: 999;
        right: 10px;
        bottom: calc(9px + env(safe-area-inset-bottom));
        left: 10px;
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 7px;
        padding: 7px;
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 19px;
        background: rgba(3, 19, 38, 0.96);
        box-shadow: 0 16px 40px rgba(0, 10, 28, 0.35);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
    }

    .mobile-action-bar a {
        display: flex;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 13px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 12px;
        font-weight: 800;
    }

    .mobile-action-bar a.mobile-action-primary {
        color: #102704;
        background: linear-gradient(135deg, var(--lime-bright), var(--lime));
    }

    .mobile-action-bar svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 2;
    }
}

@media (max-width: 380px) {
    .brand-copy strong {
        font-size: 18px;
    }

    .hero-assurances {
        grid-template-columns: 1fr;
    }

    .window-brand {
        font-size: 9px;
    }

    .security-visual {
        margin-inline: -20px;
        transform: scale(0.76);
    }

    .mobile-action-bar a {
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal.is-pending {
        opacity: 1;
        transform: none;
    }
}

/* Public legal documents */
.legal-page {
    background: var(--surface-soft);
}

.legal-header {
    color: #fff;
    background: var(--navy-950);
}

.legal-header-inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.legal-header nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 750;
}

.legal-header nav a:hover,
.legal-document a,
.legal-contact > a:not(.button) {
    color: var(--lime-deep);
}

.legal-hero {
    padding: 72px 0 64px;
    color: #fff;
    background: radial-gradient(circle at 82% 12%, rgba(131, 210, 11, 0.2), transparent 27%), linear-gradient(135deg, var(--navy-900), var(--navy-800));
}

.legal-hero .shell {
    max-width: 900px;
}

.legal-kicker {
    margin-bottom: 10px;
    color: var(--lime-bright);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.legal-hero h1 {
    margin-bottom: 12px;
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.legal-hero p:not(.legal-kicker) {
    max-width: 760px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
}

.legal-hero small {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 38px;
    align-items: start;
    padding-top: 54px;
    padding-bottom: 74px;
}

.legal-document,
.legal-contact {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.legal-document {
    padding: clamp(28px, 5vw, 58px);
}

.legal-document h2 {
    margin: 38px 0 12px;
    color: var(--navy-900);
    font-size: 23px;
    line-height: 1.25;
}

.legal-document h2:first-of-type {
    margin-top: 30px;
}

.legal-document p,
.legal-document li {
    color: #52657d;
}

.legal-document ul {
    padding-left: 22px;
}

.legal-document li + li {
    margin-top: 8px;
}

.legal-document a {
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-contact {
    position: sticky;
    top: 24px;
    padding: 26px;
}

.legal-contact strong {
    display: block;
    color: var(--navy-900);
    font-size: 18px;
}

.legal-contact p {
    margin: 7px 0 10px;
    color: var(--muted);
    font-size: 13px;
}

.legal-contact > a:not(.button) {
    display: block;
    margin-bottom: 20px;
    overflow-wrap: anywhere;
    font-size: 13px;
    font-weight: 750;
}

.legal-contact .button {
    width: 100%;
}

.legal-footer a {
    color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 760px) {
    .legal-header-inner {
        min-height: 72px;
    }

    .legal-header nav a:not(:first-child) {
        display: none;
    }

    .legal-hero {
        padding: 50px 0 46px;
    }

    .legal-hero p:not(.legal-kicker) {
        font-size: 16px;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-top: 28px;
        padding-bottom: 48px;
    }

    .legal-contact {
        position: static;
    }
}
