:root {
    --navy-950: #071e36;
    --navy-900: #0e3056;
    --navy-800: #123a67;
    --navy-700: #145075;
    --blue-600: #2474e8;
    --blue-500: #3e86ed;
    --blue-100: #eaf3ff;
    --green-600: #15966a;
    --green-100: #e4f7f0;
    --teal-300: #81e5da;
    --teal-200: #b4e0ee;
    --orange-400: #ffb13b;
    --text: #17324f;
    --muted: #64768b;
    --line: #d8e3ee;
    --surface: #f3f7fb;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(18, 58, 103, .13);
    color-scheme: light;
    font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--text);
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-width: 320px;
    background: var(--white);
    color: var(--text);
    font-family: inherit;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--white);
    color: var(--navy-900);
    transform: translateY(-150%);
}

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(216, 227, 238, .86);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.brand-icon {
    flex: 0 0 auto;
    filter: drop-shadow(0 5px 10px rgba(36, 116, 232, .16));
}

.brand-copy {
    display: grid;
    gap: 1px;
}

.brand-name {
    color: var(--navy-800);
    font-size: 17px;
    font-weight: 750;
    letter-spacing: -.025em;
}

.brand-subtitle {
    color: #71859a;
    font-size: 10px;
    letter-spacing: .035em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    position: relative;
    color: #536b84;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--blue-600);
    content: "";
    transform: scaleX(0);
    transition: transform .2s ease;
}

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

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.button:focus-visible,
.main-nav a:focus-visible,
.brand:focus-visible {
    outline: 3px solid rgba(36, 116, 232, .32);
    outline-offset: 3px;
}

.button-primary {
    border-color: var(--blue-600);
    background: var(--blue-600);
    box-shadow: 0 12px 28px rgba(36, 116, 232, .22);
    color: var(--white);
}

.button-primary:hover {
    border-color: #1a66d3;
    background: #1a66d3;
    box-shadow: 0 16px 32px rgba(36, 116, 232, .3);
}

.button-secondary {
    border-color: #cad7e5;
    background: rgba(255, 255, 255, .84);
    color: var(--navy-800);
}

.button-secondary:hover {
    border-color: #9eb7d0;
    background: var(--white);
}

.button-compact {
    min-height: 40px;
    padding-inline: 18px;
    border-radius: 9px;
    font-size: 13px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 94px;
    background:
        linear-gradient(180deg, #fafdff 0%, #f3f8fd 78%, #eef5fb 100%);
}

.hero::before {
    position: absolute;
    inset: auto 0 0;
    height: 88px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .35));
    content: "";
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(4px);
    pointer-events: none;
}

.hero-glow-one {
    top: -270px;
    right: -160px;
    width: 690px;
    height: 690px;
    background: radial-gradient(circle, rgba(36, 116, 232, .12), rgba(36, 116, 232, 0) 69%);
}

.hero-glow-two {
    bottom: -340px;
    left: -270px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(21, 150, 106, .09), rgba(21, 150, 106, 0) 68%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(530px, 1.1fr);
    align-items: center;
    gap: 70px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 670px;
    margin: 0 0 24px;
    color: var(--navy-950);
    font-size: clamp(52px, 6vw, 76px);
    font-weight: 780;
    letter-spacing: -.058em;
    line-height: .98;
}

.hero h1 span {
    color: var(--blue-600);
}

.hero-lead {
    max-width: 590px;
    margin: 0;
    color: #566e86;
    font-size: 18px;
    line-height: 1.68;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 33px;
}

.hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 22px;
    margin: 28px 0 0;
    padding: 0;
    color: #526a82;
    font-size: 12px;
    font-weight: 600;
    list-style: none;
}

.hero-notes li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.check {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-600);
    font-size: 11px;
    font-weight: 900;
}

.product-visual {
    position: relative;
    min-width: 0;
    perspective: 1600px;
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(36, 116, 232, .13);
    border-radius: 50%;
    pointer-events: none;
}

.visual-orbit-one {
    inset: -65px -40px -75px 10px;
    transform: rotate(-9deg);
}

.visual-orbit-two {
    inset: -25px 25px -30px -35px;
    border-color: rgba(21, 150, 106, .11);
    transform: rotate(8deg);
}

.app-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(14, 48, 86, .18);
    border-radius: 15px;
    background: var(--surface);
    box-shadow: 0 32px 70px rgba(18, 58, 103, .22), 0 3px 12px rgba(18, 58, 103, .12);
    transform: rotateY(-2deg) rotateX(1deg);
}

.app-titlebar {
    position: relative;
    display: flex;
    height: 58px;
    align-items: center;
    padding: 8px 13px;
    background: linear-gradient(90deg, #0e3056, #134875 62%, #125e80);
    color: var(--white);
}

.app-titlebar::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 12px;
    background:
        radial-gradient(22px 6px at 20px 11px, transparent 54%, rgba(129, 229, 218, .26) 58% 62%, transparent 66%) 0 0 / 42px 12px repeat-x;
    content: "";
}

.app-brand {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-brand img {
    border-radius: 7px;
}

.app-brand span {
    display: grid;
}

.app-brand strong {
    font-size: 12px;
    line-height: 1.15;
}

.app-brand small {
    margin-top: 2px;
    color: #bcdde7;
    font-size: 7px;
}

.app-motif {
    position: absolute;
    top: 10px;
    right: 98px;
    width: 86px;
    height: 35px;
    opacity: .45;
}

.app-motif::before,
.app-motif::after {
    position: absolute;
    content: "";
}

.app-motif::before {
    inset: 2px 5px 2px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%, 50% 0, 50% 10%, 12% 92%, 88% 92%, 50% 10%);
    background: var(--teal-300);
}

.app-motif::after {
    top: 4px;
    left: 41px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--teal-300);
    box-shadow: -37px 27px 0 var(--teal-300), 37px 27px 0 var(--teal-300);
}

.window-controls {
    display: flex;
    margin-left: auto;
    align-self: flex-start;
    gap: 9px;
    padding-top: 3px;
}

.window-controls i {
    width: 7px;
    height: 7px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 1px;
}

.window-controls i:first-child {
    height: 1px;
    margin-top: 6px;
    border: 0;
    background: rgba(255, 255, 255, .6);
}

.window-controls i:last-child {
    position: relative;
    border: 0;
}

.window-controls i:last-child::before,
.window-controls i:last-child::after {
    position: absolute;
    top: 3px;
    left: 0;
    width: 8px;
    height: 1px;
    background: rgba(255, 255, 255, .7);
    content: "";
    transform: rotate(45deg);
}

.window-controls i:last-child::after {
    transform: rotate(-45deg);
}

.app-tabs {
    display: flex;
    height: 39px;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-bottom: 1px solid #d8e3ee;
    background: var(--white);
}

.app-tabs span {
    padding: 7px 12px;
    border-radius: 7px;
    color: #647b91;
    font-size: 8px;
    font-weight: 650;
}

.app-tabs .active {
    background: var(--blue-600);
    color: var(--white);
}

.app-toolbar {
    display: flex;
    height: 54px;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    border-bottom: 1px solid #d8e3ee;
    background: var(--surface);
}

.field,
.app-button {
    display: inline-flex;
    height: 29px;
    align-items: center;
    justify-content: space-between;
    padding: 0 9px;
    border: 1px solid #cad7e5;
    border-radius: 7px;
    background: var(--white);
    color: #385570;
    font-size: 7px;
    font-style: normal;
    white-space: nowrap;
}

.field b {
    margin-left: 9px;
    color: #6d8399;
    font-size: 9px;
}

.field-wide {
    width: 104px;
}

.field-medium {
    width: 91px;
}

.app-button {
    margin-left: auto;
    border-color: var(--blue-600);
    background: var(--blue-600);
    color: var(--white);
    font-weight: 700;
}

.photo-workspace {
    display: grid;
    min-height: 300px;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px;
    background: #edf3f8;
}

.photo-card {
    position: relative;
    min-height: 130px;
    overflow: hidden;
    border: 3px solid var(--white);
    border-radius: 6px;
    box-shadow: 0 2px 7px rgba(18, 58, 103, .11);
}

.photo-card::before,
.photo-card::after {
    position: absolute;
    content: "";
}

.photo-card::before {
    top: 17%;
    right: 13%;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #ffb13b;
}

.photo-card::after {
    right: -12%;
    bottom: -25%;
    left: -10%;
    height: 73%;
    border-radius: 50% 50% 0 0;
    background: #15966a;
    box-shadow: -40px 10px 0 12px rgba(43, 155, 112, .8);
    transform: rotate(-4deg);
}

.photo-one { background: linear-gradient(#8fcfee 0 51%, #4aa879 52%); }
.photo-two { background: linear-gradient(#afd9ed 0 45%, #6db58b 46%); }
.photo-three { background: linear-gradient(#9fd3eb 0 55%, #409d73 56%); }
.photo-four { background: linear-gradient(#81c5e6 0 47%, #5daf80 48%); }
.photo-five { background: linear-gradient(#a6d9ee 0 51%, #3ea073 52%); }
.photo-six { background: linear-gradient(#8dcae7 0 49%, #6ab68c 50%); }

.photo-two::after,
.photo-five::after {
    right: -35%;
    left: 16%;
    transform: rotate(6deg);
}

.photo-three::before,
.photo-six::before {
    right: auto;
    left: 14%;
}

.photo-card small {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 7px 8px 5px;
    background: linear-gradient(transparent, rgba(7, 30, 54, .63));
    color: rgba(255, 255, 255, .88);
    font-size: 6px;
}

.crop-frame {
    position: absolute;
    z-index: 2;
    inset: 14% 10% 18%;
    border: 1px solid rgba(255, 255, 255, .94);
    box-shadow: 0 0 0 100px rgba(7, 30, 54, .14);
}

.crop-portrait {
    inset: 8% 26% 16%;
}

.photo-card.selected {
    border-color: var(--blue-600);
}

.selected-mark {
    position: absolute;
    z-index: 4;
    top: 6px;
    left: 6px;
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: var(--blue-600);
    color: var(--white);
    font-size: 9px;
    font-weight: 900;
}

.app-status {
    display: flex;
    height: 29px;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    border-top: 1px solid #d8e3ee;
    background: var(--white);
    color: #6a7f93;
    font-size: 7px;
}

.app-status span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.app-status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-600);
}

.floating-pill {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px 9px 9px;
    border: 1px solid rgba(202, 215, 229, .95);
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 12px 28px rgba(18, 58, 103, .16);
    color: #4e667e;
    font-size: 10px;
    font-weight: 650;
    backdrop-filter: blur(8px);
}

.floating-pill span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: var(--blue-100);
    color: var(--blue-600);
    font-size: 10px;
    font-weight: 800;
}

.floating-pill-top {
    top: 76px;
    right: -29px;
}

.floating-pill-bottom {
    bottom: 50px;
    left: -35px;
}

.floating-pill-bottom span {
    background: var(--green-100);
    color: var(--green-600);
}

.confidence {
    position: relative;
    z-index: 3;
    border-bottom: 1px solid #e1e9f1;
    background: var(--white);
}

.confidence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.confidence-grid > div {
    position: relative;
    display: grid;
    gap: 5px;
    padding: 28px 34px 28px 0;
}

.confidence-grid > div + div {
    padding-left: 34px;
}

.confidence-grid > div + div::before {
    position: absolute;
    top: 23px;
    bottom: 23px;
    left: 0;
    width: 1px;
    background: #dfe8f1;
    content: "";
}

.confidence-grid strong {
    color: var(--navy-800);
    font-size: 14px;
}

.confidence-grid span {
    color: #75889b;
    font-size: 12px;
}

.section {
    padding: 112px 0;
}

.section-intro {
    background: var(--white);
}

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

.heading-split {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: end;
    gap: 70px;
}

.section-heading h2,
.offline-copy h2,
.details-copy h2,
.final-cta h2 {
    margin: 15px 0 0;
    color: var(--navy-950);
    font-size: clamp(37px, 4.5vw, 55px);
    font-weight: 760;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.section-heading > p,
.heading-split > p {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

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

.feature-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    padding: 28px;
    border: 1px solid #dce6ef;
    border-radius: 18px;
    background: #f8fafc;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
    border-color: #b9cce0;
    box-shadow: 0 18px 42px rgba(18, 58, 103, .1);
    transform: translateY(-4px);
}

.feature-card-large {
    grid-row: span 2;
    min-height: 738px;
}

.feature-wide {
    display: grid;
    min-height: 360px;
    grid-column: span 2;
    grid-template-columns: 1.12fr .88fr;
    align-items: center;
    gap: 24px;
}

.feature-blue {
    border-color: #bcd5ee;
    background: linear-gradient(160deg, #f0f7ff, #e6f1fd);
}

.feature-navy {
    border-color: var(--navy-900);
    background: linear-gradient(135deg, #0e3056, #134975);
    color: var(--white);
}

.feature-index {
    margin-bottom: 45px;
    color: #91a4b7;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.feature-navy .feature-index {
    color: #8fc3d1;
}

.feature-card h3 {
    margin: 19px 0 11px;
    color: var(--navy-800);
    font-size: 23px;
    letter-spacing: -.025em;
    line-height: 1.18;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.feature-navy h3 {
    color: var(--white);
}

.feature-navy p {
    color: #c3d6e3;
}

.feature-icon {
    position: relative;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 1px solid #cbdceb;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(18, 58, 103, .09);
}

.photo-stack-icon i {
    position: absolute;
    width: 24px;
    height: 19px;
    border: 2px solid var(--blue-600);
    border-radius: 3px;
    background: var(--white);
}

.photo-stack-icon i:nth-child(1) { transform: translate(-5px, -5px) rotate(-5deg); opacity: .48; }
.photo-stack-icon i:nth-child(2) { transform: translate(5px, 5px) rotate(5deg); opacity: .7; }
.photo-stack-icon i:nth-child(3) { transform: translate(0); }

.photo-stack-icon i:nth-child(3)::before {
    position: absolute;
    right: 3px;
    bottom: 3px;
    left: 3px;
    height: 7px;
    background: var(--green-600);
    clip-path: polygon(0 100%, 35% 22%, 52% 65%, 70% 15%, 100% 100%);
    content: "";
}

.crop-icon i {
    width: 25px;
    height: 25px;
    border: 2px solid var(--blue-600);
    border-top-color: transparent;
    border-right-color: transparent;
}

.crop-icon i::before,
.crop-icon i::after {
    position: absolute;
    width: 17px;
    height: 2px;
    background: var(--blue-600);
    content: "";
}

.crop-icon i::before { top: 17px; left: 24px; transform: rotate(90deg); }
.crop-icon i::after { right: 17px; bottom: 18px; }

.sparkle-icon i {
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--orange-400);
    clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

.sparkle-icon i:nth-child(1) { transform: translate(-5px, 4px); }
.sparkle-icon i:nth-child(2) { width: 11px; height: 11px; background: var(--blue-600); transform: translate(10px, -10px); }
.sparkle-icon i:nth-child(3) { width: 7px; height: 7px; background: var(--green-600); transform: translate(13px, 11px); }

.history-icon i {
    width: 24px;
    height: 24px;
    border: 2px solid var(--blue-600);
    border-left-color: transparent;
    border-radius: 50%;
}

.history-icon i::before {
    position: absolute;
    top: 18px;
    left: 17px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--blue-600);
    border-left: 2px solid var(--blue-600);
    content: "";
    transform: rotate(14deg);
}

.history-icon i::after {
    position: absolute;
    top: 25px;
    left: 28px;
    width: 8px;
    height: 6px;
    border-bottom: 2px solid var(--blue-600);
    border-left: 2px solid var(--blue-600);
    content: "";
    transform: rotate(-90deg);
}

.mini-grid {
    position: absolute;
    right: 26px;
    bottom: 28px;
    left: 26px;
    display: grid;
    height: 345px;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    padding: 12px;
    border: 1px solid #bfd2e5;
    border-radius: 12px;
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 18px 36px rgba(18, 58, 103, .1);
}

.mini-grid i {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: linear-gradient(#9cd2ec 0 53%, #46a476 54%);
}

.mini-grid i:nth-child(1) { grid-row: span 2; }
.mini-grid i:nth-child(4) { grid-column: span 2; }
.mini-grid i:nth-child(2) { background: linear-gradient(#b3dced 0 46%, #6bb68b 47%); }
.mini-grid i:nth-child(3) { background: linear-gradient(#85c8e6 0 55%, #3a9b6d 56%); }
.mini-grid i:nth-child(4) { background: linear-gradient(#a6d8ed 0 50%, #5dae81 51%); }
.mini-grid i:nth-child(5) { display: none; }

.mini-grid i::before {
    position: absolute;
    right: -15%;
    bottom: -18%;
    left: -12%;
    height: 58%;
    border-radius: 50% 50% 0 0;
    background: #168e64;
    content: "";
    transform: rotate(-5deg);
}

.mini-grid i::after {
    position: absolute;
    top: 16%;
    right: 15%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--orange-400);
    content: "";
}

.printer-card {
    position: relative;
    width: 210px;
    height: 215px;
    margin: 20px auto 0;
}

.printer-paper {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    width: 115px;
    height: 132px;
    padding: 10px;
    border: 6px solid #f8fbfe;
    border-radius: 7px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(3, 22, 41, .22);
    transform: translateX(-50%);
}

.printer-paper span {
    display: block;
    height: 100%;
    border-radius: 3px;
    background:
        radial-gradient(circle at 74% 23%, #ffb13b 0 9px, transparent 10px),
        radial-gradient(ellipse at 40% 100%, #168f65 0 48%, transparent 49%),
        linear-gradient(#73bee1 0 58%, #55aa7d 59%);
}

.printer-body {
    position: absolute;
    z-index: 2;
    right: 8px;
    bottom: 32px;
    left: 8px;
    height: 104px;
    border: 7px solid #ecf5fb;
    border-radius: 22px;
    background: #0a2849;
    box-shadow: 0 16px 28px rgba(2, 22, 40, .3);
}

.printer-body::before {
    position: absolute;
    top: 17px;
    right: 20px;
    left: 20px;
    height: 30px;
    border-radius: 9px;
    background: #eaf4fa;
    content: "";
}

.printer-body i {
    position: absolute;
    top: 27px;
    right: 30px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange-400);
}

.printer-body b {
    position: absolute;
    right: 33px;
    bottom: 10px;
    left: 33px;
    height: 27px;
    border-radius: 7px 7px 0 0;
    background: #f4f9fc;
}

.printer-ready {
    position: absolute;
    z-index: 3;
    right: -4px;
    bottom: 10px;
    padding: 8px 11px;
    border: 1px solid rgba(129, 229, 218, .36);
    border-radius: 999px;
    background: #164b6a;
    color: #cae7eb;
    font-size: 9px;
    font-weight: 650;
}

.printer-ready span {
    margin-right: 5px;
    color: #6de0b4;
}

.offline-section {
    background: #eff5fa;
}

.offline-panel {
    position: relative;
    display: grid;
    min-height: 610px;
    overflow: hidden;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    gap: 70px;
    padding: 76px 82px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 85% 20%, rgba(129, 229, 218, .15), transparent 28%),
        linear-gradient(135deg, #0a294a, #123f68 58%, #125873);
    box-shadow: 0 32px 74px rgba(14, 48, 86, .2);
}

.offline-panel::after {
    position: absolute;
    right: -95px;
    bottom: -145px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(129, 229, 218, .14);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(129, 229, 218, .025), 0 0 0 110px rgba(129, 229, 218, .018);
    content: "";
}

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

.section-kicker-light {
    color: #8de5d9;
}

.offline-copy h2 {
    color: var(--white);
}

.offline-copy > p {
    max-width: 560px;
    margin: 24px 0 30px;
    color: #bfd3df;
    font-size: 16px;
    line-height: 1.75;
}

.offline-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.offline-list li {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 0;
    border-top: 1px solid rgba(188, 222, 230, .17);
    color: #e3eff4;
    font-size: 13px;
}

.offline-list li:last-child {
    border-bottom: 1px solid rgba(188, 222, 230, .17);
}

.offline-list span {
    color: #82cfc8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
}

.offline-visual {
    position: relative;
    z-index: 2;
    width: min(390px, 100%);
    min-height: 440px;
    margin-left: auto;
}

.portrait-frame {
    position: absolute;
    top: 26px;
    right: 18px;
    width: 285px;
    height: 370px;
    overflow: hidden;
    border: 9px solid rgba(255, 255, 255, .96);
    border-radius: 17px;
    background: #77c1e4;
    box-shadow: 0 28px 54px rgba(1, 19, 36, .35);
    transform: rotate(3deg);
}

.portrait-frame::after {
    position: absolute;
    z-index: 7;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .82);
    content: "";
}

.portrait-sky {
    position: absolute;
    inset: 0;
    background: linear-gradient(#72bfe3 0%, #bfe4ef 65%, #f0c98d 100%);
}

.portrait-sun {
    position: absolute;
    z-index: 1;
    top: 42px;
    right: 35px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--orange-400);
    box-shadow: 0 0 0 12px rgba(255, 177, 59, .12);
}

.portrait-hill {
    position: absolute;
    z-index: 2;
    right: -60px;
    bottom: -105px;
    left: -70px;
    height: 260px;
    border-radius: 52% 48% 0 0;
    background: #45a275;
    transform: rotate(-9deg);
}

.portrait-hill-front {
    z-index: 3;
    right: -100px;
    bottom: -145px;
    left: 15px;
    background: #168b62;
    transform: rotate(10deg);
}

.person {
    position: absolute;
    z-index: 4;
    bottom: 57px;
    left: 50%;
    width: 62px;
    height: 150px;
    transform: translateX(-50%);
}

.person i {
    position: absolute;
    top: 0;
    left: 14px;
    width: 36px;
    height: 42px;
    border-radius: 50% 50% 44% 44%;
    background: #c77f58;
    box-shadow: 0 -7px 0 -1px #392d2b;
}

.person b {
    position: absolute;
    top: 37px;
    left: 0;
    width: 64px;
    height: 112px;
    border-radius: 35px 35px 10px 10px;
    background: #f1f5f6;
}

.focus-box {
    position: absolute;
    z-index: 8;
    top: 85px;
    right: 79px;
    bottom: 55px;
    left: 79px;
}

.focus-box span {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--orange-400);
    border-style: solid;
}

.focus-box span:nth-child(1) { top: 0; left: 0; border-width: 3px 0 0 3px; }
.focus-box span:nth-child(2) { top: 0; right: 0; border-width: 3px 3px 0 0; }
.focus-box span:nth-child(3) { right: 0; bottom: 0; border-width: 0 3px 3px 0; }
.focus-box span:nth-child(4) { bottom: 0; left: 0; border-width: 0 0 3px 3px; }

.local-badge,
.privacy-note {
    position: absolute;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(8, 35, 59, .87);
    box-shadow: 0 15px 32px rgba(1, 18, 33, .3);
    color: #d9edf1;
    backdrop-filter: blur(14px);
}

.local-badge {
    top: 2px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 650;
}

.local-badge i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #62d9a8;
    box-shadow: 0 0 0 5px rgba(98, 217, 168, .1);
}

.privacy-note {
    right: -18px;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border-radius: 13px;
}

.privacy-note strong {
    color: #85e4d6;
    font-size: 23px;
}

.privacy-note span {
    color: #c4d9e2;
    font-size: 9px;
    line-height: 1.4;
}

.workflow-section {
    background: var(--white);
}

.heading-centered {
    max-width: 720px;
    margin-right: auto;
    margin-bottom: 66px;
    margin-left: auto;
    text-align: center;
}

.heading-centered > p {
    max-width: 640px;
    margin: 20px auto 0;
}

.workflow-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.workflow-list::before {
    position: absolute;
    top: 57px;
    right: 12.5%;
    left: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b6cce1 8%, #b6cce1 92%, transparent);
    content: "";
}

.workflow-list li {
    position: relative;
    padding: 0 25px;
    text-align: center;
}

.workflow-number {
    position: absolute;
    z-index: 3;
    top: -6px;
    right: calc(50% - 58px);
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--blue-600);
    box-shadow: 0 4px 12px rgba(36, 116, 232, .24);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
}

.workflow-icon {
    position: relative;
    z-index: 2;
    display: grid;
    width: 114px;
    height: 114px;
    margin: 0 auto 28px;
    place-items: center;
    border: 1px solid #d6e2ee;
    border-radius: 26px;
    background: #f5f9fc;
    box-shadow: 0 12px 30px rgba(18, 58, 103, .08);
}

.workflow-list h3 {
    margin: 0 0 9px;
    color: var(--navy-800);
    font-size: 19px;
    letter-spacing: -.02em;
}

.workflow-list p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.folder-icon i {
    width: 48px;
    height: 35px;
    border: 3px solid var(--blue-600);
    border-radius: 5px;
}

.folder-icon i::before {
    position: absolute;
    top: 32px;
    left: 32px;
    width: 21px;
    height: 10px;
    border: 3px solid var(--blue-600);
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
    background: #f5f9fc;
    content: "";
}

.files-icon i {
    position: absolute;
    width: 36px;
    height: 44px;
    border: 3px solid var(--blue-600);
    border-radius: 5px;
    background: #f5f9fc;
}

.files-icon i:first-child { transform: translate(-8px, -5px) rotate(-5deg); opacity: .5; }
.files-icon i:last-child { transform: translate(7px, 5px) rotate(4deg); }

.files-icon i:last-child::before {
    position: absolute;
    right: 4px;
    bottom: 5px;
    left: 4px;
    height: 15px;
    background: var(--green-600);
    clip-path: polygon(0 100%, 35% 20%, 53% 68%, 74% 11%, 100% 100%);
    content: "";
}

.adjust-icon i {
    position: absolute;
    width: 48px;
    height: 3px;
    border-radius: 3px;
    background: var(--blue-600);
}

.adjust-icon i:nth-child(1) { transform: translateY(-16px); }
.adjust-icon i:nth-child(3) { transform: translateY(16px); }

.adjust-icon i::after {
    position: absolute;
    top: -6px;
    width: 15px;
    height: 15px;
    border: 3px solid var(--blue-600);
    border-radius: 50%;
    background: #f5f9fc;
    content: "";
}

.adjust-icon i:nth-child(1)::after { left: 7px; }
.adjust-icon i:nth-child(2)::after { right: 6px; }
.adjust-icon i:nth-child(3)::after { left: 17px; }

.print-icon i {
    width: 50px;
    height: 36px;
    border: 3px solid var(--blue-600);
    border-radius: 8px;
}

.print-icon i::before {
    position: absolute;
    top: 25px;
    left: 42px;
    width: 30px;
    height: 28px;
    border: 3px solid var(--blue-600);
    border-radius: 3px;
    background: #f5f9fc;
    content: "";
}

.print-icon i::after {
    position: absolute;
    top: 46px;
    left: 37px;
    width: 40px;
    height: 25px;
    border: 3px solid var(--blue-600);
    border-radius: 3px;
    background: #f5f9fc;
    content: "";
}

.details-section {
    padding-top: 0;
    background: var(--white);
}

.details-grid {
    display: grid;
    grid-template-columns: .93fr 1.07fr;
    align-items: start;
    gap: 100px;
    padding-top: 92px;
    border-top: 1px solid #dfe8f1;
}

.details-copy h2 {
    font-size: clamp(34px, 4vw, 48px);
}

.details-copy > p {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.72;
}

.details-list {
    display: grid;
}

.details-list > div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid #dfe8f1;
}

.details-list > div:first-child {
    padding-top: 0;
    border-top: 0;
}

.details-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    background: var(--green-100);
    color: var(--green-600);
    font-size: 15px;
    font-weight: 900;
}

.details-list p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.58;
}

.details-list strong {
    display: block;
    margin-bottom: 5px;
    color: var(--navy-800);
    font-size: 16px;
}

.final-cta {
    padding: 0 0 26px;
    background: var(--white);
}

.final-cta-inner {
    position: relative;
    display: flex;
    min-height: 520px;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 75px 32px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 15% 12%, rgba(129, 229, 218, .12), transparent 27%),
        radial-gradient(circle at 88% 85%, rgba(62, 134, 237, .18), transparent 29%),
        linear-gradient(135deg, #0b2b4c, #123e67 60%, #125674);
    text-align: center;
}

.final-cta-inner::before,
.final-cta-inner::after {
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(129, 229, 218, .1);
    border-radius: 50%;
    content: "";
}

.final-cta-inner::before { top: -230px; left: -80px; box-shadow: 0 0 0 58px rgba(129, 229, 218, .02); }
.final-cta-inner::after { right: -90px; bottom: -270px; box-shadow: 0 0 0 65px rgba(129, 229, 218, .018); }

.final-cta img,
.final-cta .section-kicker,
.final-cta h2,
.final-cta p,
.final-cta .button {
    position: relative;
    z-index: 2;
}

.final-cta img {
    margin-bottom: 22px;
    filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .25));
}

.final-cta h2 {
    color: var(--white);
}

.final-cta p {
    max-width: 550px;
    margin: 19px auto 27px;
    color: #c2d6e1;
    font-size: 16px;
    line-height: 1.65;
}

.button-light {
    border-color: var(--white);
    background: var(--white);
    color: var(--navy-800);
    box-shadow: 0 12px 26px rgba(1, 18, 33, .2);
}

.button-light:hover {
    background: #edf6fa;
}

.cta-motif {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 650px;
    height: 300px;
    opacity: .07;
    transform: translate(-50%, -50%);
}

.cta-motif::before {
    position: absolute;
    inset: 0;
    background: var(--teal-300);
    clip-path: polygon(50% 0, 100% 100%, 0 100%, 50% 0, 50% 3%, 4% 97%, 96% 97%, 50% 3%);
    content: "";
}

.site-footer {
    background: var(--white);
}

.footer-inner {
    display: grid;
    min-height: 120px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 36px;
}

.footer-inner > p {
    margin: 0;
    color: #7b8da0;
    font-size: 12px;
}

.copyright {
    color: #8a9bab;
    font-size: 11px;
}

@media (max-width: 1080px) {
    .hero {
        padding-top: 70px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 62px;
    }

    .hero-copy {
        max-width: 780px;
    }

    .product-visual {
        width: min(740px, 96%);
        margin: 0 auto;
    }

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

    .feature-card-large {
        grid-row: span 2;
    }

    .feature-wide {
        grid-column: span 2;
    }

    .feature-card:last-child {
        grid-column: 2;
    }

    .offline-panel {
        gap: 35px;
        padding: 62px 50px;
    }

    .workflow-list li {
        padding-inline: 14px;
    }
}

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

    .container {
        width: min(100% - 32px, 720px);
    }

    .header-inner {
        flex-wrap: wrap;
        gap: 8px 18px;
        padding-top: 8px;
    }

    .main-nav {
        order: 3;
        display: flex;
        width: 100%;
        overflow-x: auto;
        gap: 24px;
        padding: 2px 1px 11px;
        scrollbar-width: none;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .main-nav a {
        flex: 0 0 auto;
        font-size: 13px;
    }

    .section {
        padding: 84px 0;
    }

    .heading-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .confidence-grid {
        grid-template-columns: 1fr;
        padding-block: 11px;
    }

    .confidence-grid > div,
    .confidence-grid > div + div {
        padding: 17px 0;
    }

    .confidence-grid > div + div::before {
        top: 0;
        right: 0;
        bottom: auto;
        width: auto;
        height: 1px;
    }

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

    .feature-card,
    .feature-card-large,
    .feature-wide,
    .feature-card:last-child {
        min-height: 350px;
        grid-column: auto;
        grid-row: auto;
    }

    .feature-card-large {
        min-height: 720px;
    }

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

    .offline-panel {
        grid-template-columns: 1fr;
        gap: 55px;
        padding: 54px 42px 64px;
    }

    .offline-visual {
        width: min(390px, 100%);
        margin: 0 auto;
    }

    .workflow-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 58px 0;
    }

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

    .details-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-inner {
        grid-template-columns: 1fr auto;
    }

    .footer-inner > p {
        display: none;
    }
}

@media (max-width: 580px) {
    .container {
        width: calc(100% - 28px);
    }

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

    .brand-icon {
        width: 38px;
        height: 38px;
    }

    .brand-name {
        font-size: 15px;
    }

    .brand-subtitle {
        font-size: 8px;
    }

    .header-inner > .button {
        display: inline-flex;
        width: auto;
        min-height: 36px;
        padding-inline: 14px;
    }

    .hero {
        padding: 54px 0 68px;
    }

    .hero h1 {
        margin-top: 0;
        font-size: clamp(44px, 13.4vw, 62px);
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero-notes {
        display: grid;
        gap: 12px;
    }

    .product-visual {
        width: 100%;
    }

    .app-window {
        border-radius: 11px;
        transform: none;
    }

    .app-titlebar {
        height: 49px;
    }

    .app-brand img {
        width: 27px;
        height: 27px;
    }

    .app-brand strong {
        font-size: 10px;
    }

    .app-tabs {
        overflow: hidden;
    }

    .app-tabs span {
        flex: 0 0 auto;
        padding-inline: 9px;
        font-size: 6px;
    }

    .app-tabs span:last-child {
        display: none;
    }

    .app-toolbar {
        height: 45px;
        gap: 4px;
        padding: 7px;
    }

    .field,
    .app-button {
        height: 26px;
        padding-inline: 6px;
        font-size: 5.5px;
    }

    .field-medium {
        display: none;
    }

    .field-wide {
        width: 93px;
    }

    .photo-workspace {
        min-height: 240px;
        grid-template-columns: repeat(2, 1fr);
        padding: 8px;
    }

    .photo-card {
        min-height: 108px;
    }

    .photo-card:nth-child(n+5) {
        display: none;
    }

    .floating-pill-top {
        top: 63px;
        right: -8px;
    }

    .floating-pill-bottom {
        bottom: 34px;
        left: -8px;
    }

    .section {
        padding: 72px 0;
    }

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

    .section-heading h2,
    .offline-copy h2,
    .details-copy h2,
    .final-cta h2 {
        font-size: 35px;
    }

    .feature-card,
    .feature-card-large,
    .feature-wide,
    .feature-card:last-child {
        min-height: auto;
        padding: 24px;
    }

    .feature-card-large {
        min-height: 650px;
    }

    .feature-wide {
        display: block;
    }

    .feature-index {
        margin-bottom: 30px;
    }

    .feature-card h3 {
        font-size: 21px;
    }

    .printer-card {
        margin-top: 35px;
        transform: scale(.88);
        transform-origin: center bottom;
    }

    .offline-panel {
        padding: 42px 22px 58px;
        border-radius: 21px;
    }

    .offline-visual {
        min-height: 390px;
    }

    .portrait-frame {
        right: 50%;
        width: 250px;
        height: 330px;
        transform: translateX(50%) rotate(2deg);
    }

    .local-badge {
        left: -3px;
    }

    .privacy-note {
        right: -3px;
    }

    .workflow-list {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .workflow-list li {
        max-width: 320px;
        margin-inline: auto;
    }

    .details-section {
        padding-top: 0;
    }

    .details-grid {
        padding-top: 68px;
    }

    .final-cta {
        padding-inline: 0;
    }

    .final-cta-inner {
        min-height: 500px;
        padding-inline: 22px;
        border-radius: 21px;
    }

    .footer-inner {
        min-height: 135px;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 14px;
        text-align: center;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
