@font-face {
    font-family: "StampSpec Condensed";
    src: url("Fonts/BarlowCondensed-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "StampSpec Condensed";
    src: url("Fonts/BarlowCondensed-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 600 950;
    font-display: swap;
}

@font-face {
    font-family: "StampSpec Sans";
    src: url("Fonts/Barlow-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "StampSpec Sans";
    src: url("Fonts/Barlow-SemiBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "StampSpec Display";
    src: url("Fonts/BarlowSemiCondensed-ExtraBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

:root {
    --ink: #102033;
    --ink-soft: #4f6173;
    --navy: #071827;
    --navy-2: #0b2538;
    --blue: #0d6f8c;
    --cyan: #19b8c7;
    --cyan-light: #d9f6f7;
    --orange: #ff6b35;
    --orange-dark: #de4f1d;
    --paper: #ffffff;
    --surface: #f4f7f8;
    --line: #dce4e8;
    --success: #167c57;
    --danger: #b42318;
    --shadow: 0 24px 70px rgba(8, 28, 43, .12);
    --radius: 22px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "StampSpec Sans", "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: "StampSpec Display", "StampSpec Sans", "Segoe UI", Arial, sans-serif;
}

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

a {
    color: inherit;
}

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

.sr-only,
.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--paper);
    background: var(--orange);
    transform: translateY(-150%);
}

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    color: #fff;
    background: rgba(7, 24, 39, .96);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
}

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

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

.brand-mark {
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #fff;
    background: var(--orange);
    border-radius: 7px 12px 7px 12px;
    font-size: 21px;
    font-weight: 950;
    transform: rotate(-2deg);
}

.brand > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand strong {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
}

.brand-wordmark {
    display: inline-flex;
    align-items: baseline;
    font-family: "StampSpec Display", "StampSpec Sans", "Segoe UI", Arial, sans-serif;
    letter-spacing: 0;
}

.brand-wordmark .brand-spec {
    color: var(--coral, var(--orange));
}

.brand small {
    margin-top: 4px;
    color: #8fdce2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.primary-nav > a:not(.button) {
    color: #c5d2db;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

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

.nav-toggle {
    display: none;
    width: 46px;
    height: 42px;
    padding: 10px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 4px 0;
    background: currentColor;
}

.button {
    display: inline-flex;
    min-height: 50px;
    padding: 12px 22px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(25, 184, 199, .42);
    outline-offset: 3px;
}

.button-small {
    min-height: 40px;
    padding: 9px 16px;
    font-size: 14px;
}

.button-primary {
    color: #fff;
    background: var(--orange);
    box-shadow: 0 12px 28px rgba(255, 107, 53, .23);
}

.button-primary:hover {
    background: var(--orange-dark);
    box-shadow: 0 16px 34px rgba(255, 107, 53, .3);
}

.button-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .38);
}

.button-outline:hover {
    background: rgba(255, 255, 255, .08);
}

.button-ghost {
    color: #e4edf2;
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .04);
}

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

.button-light {
    color: var(--navy);
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}

.button-block {
    width: 100%;
}

.button[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: .58;
    pointer-events: none;
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 80% 25%, rgba(25, 184, 199, .16), transparent 30%),
        linear-gradient(125deg, #071827 0%, #0a2235 57%, #0b2c3f 100%);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    opacity: .11;
    background-image:
        linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to right, transparent, #000 65%, transparent);
}

.hero-grid {
    position: relative;
    display: grid;
    min-height: 680px;
    padding-top: 72px;
    padding-bottom: 78px;
    align-items: center;
    grid-template-columns: .92fr 1.08fr;
    gap: 62px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 16px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.eyebrow {
    color: #8fe8ed;
}

.eyebrow span {
    display: inline-block;
    width: 26px;
    height: 2px;
    margin: 0 9px 3px 0;
    background: var(--orange);
}

.hero h1 {
    max-width: 650px;
    margin: 0;
    font-size: clamp(44px, 5vw, 70px);
    font-weight: 750;
    letter-spacing: -.025em;
    line-height: 1.03;
}

.hero h1 em {
    display: block;
    color: #8ce1e7;
    font-style: normal;
}

.hero-lead {
    max-width: 620px;
    margin: 26px 0 30px;
    color: #c6d6df;
    font-size: 18px;
    line-height: 1.7;
}

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

.product-stage {
    position: relative;
    min-width: 0;
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.stage-glow {
    position: absolute;
    inset: 10% -5%;
    background: rgba(25, 184, 199, .23);
    filter: blur(70px);
}

.app-window {
    position: relative;
    overflow: hidden;
    color: var(--ink);
    background: #eef3f5;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 14px;
    box-shadow: 0 44px 100px rgba(0, 0, 0, .42);
}

.app-titlebar,
.app-toolbar {
    display: flex;
    align-items: center;
}

.app-titlebar {
    height: 38px;
    padding: 0 13px;
    justify-content: space-between;
    color: #dce9ee;
    background: #132d3d;
    font-size: 11px;
}

.app-brand span {
    display: inline-grid;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    place-items: center;
    color: #fff;
    background: var(--orange);
    border-radius: 4px;
    font-weight: 800;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-controls i {
    display: block;
    width: 8px;
    height: 8px;
    background: #78909d;
    border-radius: 50%;
}

.app-toolbar {
    height: 42px;
    padding: 0 14px;
    gap: 9px;
    background: #fff;
    border-bottom: 1px solid #d8e0e4;
}

.app-toolbar span {
    width: 18px;
    height: 18px;
    background: #dbe6e9;
    border-radius: 4px;
}

.app-toolbar b {
    margin-left: auto;
    padding: 5px 9px;
    color: #fff;
    background: var(--blue);
    border-radius: 4px;
    font-size: 8px;
}

.app-body {
    display: grid;
    min-height: 365px;
    grid-template-columns: 1fr 180px;
}

.drawing {
    position: relative;
    overflow: hidden;
    margin: 13px;
    background:
        linear-gradient(#eef1f2 1px, transparent 1px),
        linear-gradient(90deg, #eef1f2 1px, transparent 1px),
        #fff;
    background-size: 16px 16px;
    border: 1px solid #d7dfe2;
}

.drawing-title {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #8697a1;
    font-size: 7px;
    letter-spacing: .15em;
}

.part-outline {
    position: absolute;
    top: 29%;
    left: 19%;
    width: 64%;
    height: 43%;
    border: 3px solid #667c87;
    border-radius: 60px 10px 10px 60px;
}

.part-outline::after {
    position: absolute;
    content: "";
    inset: 15% 11%;
    border: 2px solid #83949d;
    border-radius: 40px 4px 4px 40px;
}

.hole {
    position: absolute;
    z-index: 1;
    width: 26px;
    height: 26px;
    border: 3px double #6a7d87;
    border-radius: 50%;
}

.hole-one {
    top: 21%;
    right: 17%;
}

.hole-two {
    right: 17%;
    bottom: 21%;
}

.dimension {
    position: absolute;
    z-index: 2;
    padding: 2px 4px;
    color: #344b59;
    background: #fff;
    font-size: 8px;
    font-weight: 700;
}

.dimension-one {
    top: -28px;
    right: 9%;
}

.dimension-two {
    bottom: -27px;
    left: 36%;
}

.stamp {
    position: absolute;
    z-index: 3;
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    color: #fff;
    background: var(--orange);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .22);
    font-size: 9px;
    font-weight: 800;
}

.stamp-one { top: 24%; right: 18%; }
.stamp-two { bottom: 18%; left: 38%; }
.stamp-three { top: 49%; left: 12%; }

.feature-panel {
    background: #f8fafb;
    border-left: 1px solid #d7dfe2;
}

.panel-heading {
    display: flex;
    padding: 15px 12px;
    justify-content: space-between;
    border-bottom: 1px solid #dce3e6;
    font-size: 10px;
    font-weight: 800;
}

.panel-heading strong {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 50%;
    font-size: 8px;
}

.feature-row {
    display: flex;
    padding: 12px 10px;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid #e3e9ec;
    font-size: 9px;
}

.feature-row.active {
    background: #e7f5f6;
    box-shadow: inset 3px 0 var(--cyan);
}

.feature-row b {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    color: var(--blue);
    border: 2px solid var(--blue);
    border-radius: 50%;
}

.feature-row span {
    font-weight: 700;
}

.feature-row small {
    display: block;
    margin-top: 2px;
    color: #82919a;
    font-size: 7px;
    font-weight: 400;
}

.media-placeholder {
    margin: 0;
    padding: 7px 12px;
    color: #607681;
    background: #e5ecef;
    font-size: 9px;
    text-align: center;
}

.floating-card {
    position: absolute;
    right: -28px;
    bottom: 48px;
    display: flex;
    min-width: 236px;
    padding: 13px 16px;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .3);
    transform: translateZ(20px);
}

.status-dot {
    width: 11px;
    height: 11px;
    background: #25b980;
    border: 3px solid #ccf4e6;
    border-radius: 50%;
    box-sizing: content-box;
}

.floating-card span:last-child {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 11px;
}

.floating-card small {
    color: #748693;
    font-size: 8px;
}

.section {
    padding: 104px 0;
}

.problem-section {
    padding-bottom: 56px;
}

.split-heading {
    display: grid;
    align-items: end;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
}

.section h2,
.demo-strip h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -.02em;
    line-height: 1.12;
}

.split-heading > p,
.section-heading > p:last-child,
.feature-copy > p,
.pricing-copy > p,
.order-intro > p {
    color: var(--ink-soft);
    font-size: 17px;
}

.benefits-section,
.workflow-section,
.faq-section {
    background: var(--surface);
}

.section-heading {
    max-width: 700px;
    margin-bottom: 54px;
}

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

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

.benefit-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    padding: 34px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 36px rgba(8, 28, 43, .05);
}

.benefit-card.featured {
    color: #fff;
    background: var(--navy-2);
    border-color: var(--navy-2);
    transform: translateY(-14px);
}

.card-number {
    position: absolute;
    top: 18px;
    right: 24px;
    color: #e6ecef;
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}

.featured .card-number {
    color: rgba(255, 255, 255, .08);
}

.icon-box {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 48px;
    place-items: center;
    color: var(--blue);
    background: var(--cyan-light);
    border-radius: 14px;
    font-size: 25px;
    font-weight: 800;
}

.featured .icon-box {
    color: #fff;
    background: var(--orange);
}

.benefit-card h3 {
    margin: 0 0 12px;
    font-size: 23px;
    line-height: 1.2;
}

.benefit-card p {
    margin: 0 0 22px;
    color: var(--ink-soft);
}

.featured p {
    color: #bdd0da;
}

.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 7px 0 7px 25px;
    font-size: 14px;
    font-weight: 600;
}

.check-list li::before {
    position: absolute;
    top: 7px;
    left: 0;
    content: "✓";
    color: var(--cyan);
    font-weight: 900;
}

.feature-layout {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr .82fr;
    gap: 90px;
}

.feature-copy > p {
    margin: 24px 0 35px;
}

.feature-points {
    display: grid;
    gap: 22px;
}

.feature-points article {
    display: flex;
    gap: 17px;
}

.feature-points article > span {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--blue);
    background: var(--cyan-light);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 800;
}

.feature-points h3,
.feature-points p {
    margin: 0;
}

.feature-points h3 {
    font-size: 17px;
}

.feature-points p {
    color: var(--ink-soft);
    font-size: 14px;
}

.data-card {
    overflow: hidden;
    color: #fff;
    background: var(--navy);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.data-card-head {
    display: flex;
    padding: 20px 24px;
    align-items: center;
    justify-content: space-between;
    background: #0d2a3d;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.data-card-head span {
    font-weight: 800;
}

.data-card-head b {
    padding: 5px 9px;
    color: #9cecf0;
    background: rgba(25, 184, 199, .13);
    border-radius: 20px;
    font-size: 10px;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.data-main {
    padding: 30px 28px;
    background: linear-gradient(135deg, #0b2435, #0d3647);
}

.data-main > small,
.data-main > strong {
    display: block;
}

.data-main small {
    color: #87a1ae;
    font-size: 11px;
}

.data-main > strong {
    margin: 5px 0 25px;
    font-size: 40px;
    line-height: 1;
}

.tolerance-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.tolerance-row span {
    padding: 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
}

.tolerance-row b {
    display: block;
    margin-top: 3px;
    color: #96e5e9;
    font-size: 13px;
}

.data-list {
    margin: 0;
    padding: 14px 28px 24px;
}

.data-list div {
    display: flex;
    padding: 11px 0;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 13px;
}

.data-list dt {
    color: #8fa5b1;
}

.data-list dd {
    margin: 0;
    font-weight: 700;
}

.status-pill {
    padding: 4px 8px;
    color: #8ee2c3;
    background: rgba(36, 179, 126, .14);
    border-radius: 20px;
    font-size: 10px;
}

.media-placeholder.dark {
    color: #77909e;
    background: #06131f;
}

.project-section {
    padding: 70px 0;
}

.project-card {
    display: grid;
    padding: 56px;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(25, 184, 199, .2), transparent 30%),
        var(--navy);
    border-radius: var(--radius);
    grid-template-columns: 1fr .85fr;
    gap: 60px;
}

.project-card h2 {
    color: #fff;
}

.project-card p:not(.section-kicker) {
    color: #b8cad4;
}

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

.integration-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.integration-flow span,
.integration-flow strong {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 10px;
    font-size: 13px;
    text-align: center;
}

.integration-flow strong {
    color: #fff;
    background: var(--orange);
    border-color: var(--orange);
}

.integration-flow i {
    color: #79cbd2;
    font-style: normal;
}

.pricing-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 440px;
    gap: 100px;
}

.pricing-copy > p {
    margin: 24px 0 30px;
}

.check-list-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 20px;
}

.check-list-large li {
    font-size: 15px;
}

.price-card {
    padding: 36px;
    background: #fff;
    border: 1px solid var(--line);
    border-top: 5px solid var(--orange);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.price-label {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.price strong,
.price span {
    display: block;
}

.price strong {
    font-size: 42px;
    letter-spacing: -.015em;
    line-height: 1;
}

.price span,
.tax-note {
    color: var(--ink-soft);
}

.price span {
    margin-top: 8px;
    font-weight: 700;
}

.tax-note {
    margin: 6px 0 24px;
    font-size: 12px;
}

.price-card .button + .button {
    margin-top: 10px;
}

.fulfillment-note {
    display: flex;
    margin-top: 24px;
    padding-top: 22px;
    gap: 12px;
    border-top: 1px solid var(--line);
}

.fulfillment-note > span {
    display: grid;
    width: 29px;
    height: 29px;
    flex: 0 0 auto;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 50%;
}

.fulfillment-note p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 12px;
}

.faq-layout {
    display: grid;
    grid-template-columns: .72fr 1fr;
    gap: 90px;
}

.faq-item {
    border-bottom: 1px solid #cfd9de;
}

.faq-item h3 {
    margin: 0;
}

.faq-item button {
    display: flex;
    width: 100%;
    padding: 22px 0;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 17px;
    font-weight: 750;
    text-align: left;
}

.faq-item button i {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--blue);
    border: 1px solid #b9c8cf;
    border-radius: 50%;
    font-size: 18px;
    font-style: normal;
    transition: transform .2s ease;
}

.faq-item button[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease;
}

.faq-answer > p {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    color: var(--ink-soft);
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.open .faq-answer > p {
    padding: 0 46px 22px 0;
}

.demo-strip {
    padding: 62px 0;
    color: #fff;
    background: linear-gradient(110deg, #0d6f8c, #0a8c9b);
}

.demo-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.demo-strip h2 {
    max-width: 700px;
    color: #fff;
}

.demo-strip p:not(.section-kicker) {
    margin: 10px 0 0;
    color: #d3f1f3;
}

.demo-status {
    display: block;
    max-width: 330px;
    margin-top: 8px;
    color: #fff;
    font-size: 12px;
    text-align: center;
}

.order-section {
    background: #fff;
}

.order-layout {
    display: grid;
    align-items: start;
    grid-template-columns: .65fr 1fr;
    gap: 76px;
}

.order-intro {
    position: sticky;
    top: 110px;
}

.order-intro > p {
    margin: 22px 0;
}

.order-summary-card {
    display: flex;
    margin: 30px 0 18px;
    padding: 22px;
    flex-direction: column;
    background: var(--surface);
    border-left: 4px solid var(--orange);
    border-radius: 8px;
}

.order-summary-card span {
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 750;
}

.order-summary-card strong {
    margin: 5px 0;
    font-size: 24px;
}

.order-summary-card small,
.privacy-hint {
    color: var(--ink-soft);
    font-size: 12px !important;
}

.order-summary-card .order-license-note {
    margin: 16px 0 0;
    padding-top: 14px;
    color: var(--ink-soft);
    border-top: 1px solid rgba(5, 19, 30, .12);
    font-size: 13px;
    line-height: 1.55;
}

.order-summary-card .order-license-note b {
    color: var(--ink);
}

.order-form-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-header {
    display: flex;
    padding: 24px 30px;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background: var(--navy);
}

.form-header span {
    font-size: 18px;
    font-weight: 800;
}

.form-header small {
    color: #a9bfcb;
}

.order-form-card fieldset {
    margin: 0;
    padding: 27px 30px 15px;
    border: 0;
}

.order-form-card fieldset + fieldset {
    border-top: 1px solid var(--line);
}

.order-form-card legend {
    padding: 0;
    font-size: 15px;
    font-weight: 850;
}

.form-grid {
    display: grid;
    margin-top: 18px;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.order-details-grid {
    grid-template-columns: minmax(90px, 120px) minmax(0, 1fr);
}

.field {
    min-width: 0;
}

.field-wide {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 750;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 11px 12px;
    color: var(--ink);
    background: #fbfcfc;
    border: 1px solid #bdcbd2;
    border-radius: 7px;
}

.field textarea {
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    background: #fff;
    border-color: var(--blue);
}

.field-error {
    display: block;
    margin-top: 5px;
    color: var(--danger);
    font-size: 11px;
    font-weight: 650;
}

.validation-summary {
    margin: 24px 30px 0;
    padding: 14px 18px;
    color: #8a1c15;
    background: #fef0ee;
    border: 1px solid #f6c7c2;
    border-radius: 8px;
    font-size: 13px;
}

.validation-summary ul {
    margin: 5px 0 0;
    padding-left: 20px;
}

.order-message {
    margin: 24px 30px 0;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 13px;
}

.order-message.error {
    color: #8a1c15;
    background: #fef0ee;
    border: 1px solid #f6c7c2;
}

.client-validation-message[hidden] {
    display: none;
}

.field.has-client-error input,
.field.has-client-error select,
.field.has-client-error textarea {
    border-color: var(--danger);
    background: #fff7f6;
    box-shadow: 0 0 0 3px rgba(180, 35, 24, .08);
}

.checkbox-field.has-client-error {
    margin-inline: -10px;
    padding-inline: 10px;
    background: #fff7f6;
    border-left: 3px solid var(--danger);
}

.live-total {
    display: grid;
    margin: 12px 30px 24px;
    padding: 20px;
    grid-template-columns: 1fr auto;
    align-items: center;
    background: #eef8f8;
    border: 1px solid #c7e8e9;
    border-radius: 10px;
}

.live-total span {
    font-size: 13px;
    font-weight: 800;
}

.live-total strong {
    color: var(--blue);
    font-size: 24px;
}

.live-total small {
    grid-column: 1 / -1;
    color: var(--ink-soft);
    font-size: 11px;
}

.consent-list {
    margin: 0 30px 24px;
}

.checkbox-field {
    display: grid;
    padding: 10px 0;
    grid-template-columns: auto 1fr;
    column-gap: 10px;
}

.checkbox-field input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.checkbox-field label {
    color: var(--ink-soft);
    font-size: 12px;
}

.checkbox-field a {
    color: var(--blue);
    font-weight: 750;
}

.checkbox-field .field-error {
    grid-column: 2;
}

.submit-order {
    width: calc(100% - 60px);
    margin: 0 30px;
}

.binding-note {
    margin: 10px 30px 28px;
    color: var(--ink-soft);
    font-size: 10px;
    text-align: center;
}

.order-success {
    padding: 70px 42px;
    text-align: center;
}

.success-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    place-items: center;
    color: #fff;
    background: var(--success);
    border-radius: 50%;
    font-size: 30px;
}

.order-success h3 {
    margin: 0;
    font-size: 28px;
}

.order-success > strong {
    display: block;
    margin: 8px 0 20px;
    color: var(--blue);
    font-size: 22px;
}

.order-success p {
    color: var(--ink-soft);
}

.site-footer {
    padding: 70px 0 25px;
    color: #b1c2cc;
    background: #06131f;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .65fr .65fr 1fr;
    gap: 60px;
}

.footer-brand {
    color: #fff;
}

.footer-grid p {
    max-width: 320px;
    font-size: 13px;
}

.footer-grid h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-grid > div > a:not(.brand) {
    display: block;
    margin: 7px 0;
    color: #b1c2cc;
    font-size: 13px;
    text-decoration: none;
}

.footer-grid a:hover {
    color: #fff !important;
}

.text-link {
    color: #83dde3 !important;
    font-weight: 750;
}

.footer-bottom {
    display: flex;
    margin-top: 55px;
    padding-top: 22px;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #718996;
    font-size: 11px;
}

@media (max-width: 1050px) {
    .primary-nav {
        gap: 18px;
    }

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

    .app-body {
        grid-template-columns: 1fr 145px;
    }

    .feature-layout,
    .pricing-grid {
        gap: 55px;
    }

    .order-layout {
        grid-template-columns: .55fr 1fr;
        gap: 44px;
    }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .primary-nav {
        position: absolute;
        top: 76px;
        right: 20px;
        left: 20px;
        display: none;
        padding: 20px;
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        background: var(--navy-2);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 12px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
    }

    .primary-nav.open {
        display: flex;
    }

    .primary-nav > a:not(.button) {
        padding: 8px;
    }

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

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

    .product-stage {
        width: min(100%, 700px);
        margin-inline: auto;
        transform: none;
    }

    .split-heading,
    .feature-layout,
    .pricing-grid,
    .faq-layout,
    .order-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .benefit-card {
        min-height: auto;
    }

    .benefit-card.featured {
        transform: none;
    }

    .project-card {
        grid-template-columns: 1fr;
    }

    .price-card {
        width: min(100%, 520px);
    }

    .faq-layout .section-heading {
        margin-bottom: 0;
    }

    .order-intro {
        position: static;
    }

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

    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 76px 0;
    }

    .hero-grid {
        min-height: auto;
        padding-top: 52px;
        padding-bottom: 55px;
    }

    .hero h1 {
        font-size: 42px;
    }

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

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

    .app-body {
        min-height: 280px;
        grid-template-columns: 1fr 105px;
    }

    .app-toolbar,
    .feature-panel {
        font-size: 8px;
    }

    .floating-card {
        right: 10px;
        bottom: -28px;
    }

    .split-heading {
        gap: 25px;
    }

    .benefit-card {
        padding: 28px;
    }

    .feature-layout {
        gap: 40px;
    }

    .project-card {
        padding: 35px 25px;
    }

    .integration-flow {
        align-items: stretch;
        flex-direction: column;
    }

    .integration-flow i {
        text-align: center;
        transform: rotate(90deg);
    }

    .check-list-large {
        grid-template-columns: 1fr;
    }

    .price-card {
        padding: 28px 22px;
    }

    .demo-strip-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .form-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .order-form-card fieldset {
        padding-inline: 20px;
    }

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

    .field-wide {
        grid-column: auto;
    }

    .validation-summary,
    .order-message,
    .live-total,
    .consent-list {
        margin-right: 20px;
        margin-left: 20px;
    }

    .submit-order {
        width: calc(100% - 40px);
        margin-inline: 20px;
    }

    .binding-note {
        margin-inline: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-grid > div:first-child,
    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

/* Compact, expandable tool cards */
.tools-section .tool-card {
    display: block;
    min-height: 0;
    padding: 0;
}

.tool-card-summary {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 258px;
    padding: 26px 26px 22px;
    flex-direction: column;
    cursor: pointer;
    list-style: none;
}

.tool-card-summary::-webkit-details-marker {
    display: none;
}

.tool-card-summary:focus-visible {
    outline: 3px solid var(--electric);
    outline-offset: -5px;
}

.tools-section .tool-card[open] {
    border-color: rgba(77, 217, 229, .52);
}

.tools-section .tool-card[open] .tool-card-summary {
    min-height: 230px;
}

.tool-title {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: auto;
    font-size: 20px;
    font-weight: 850;
    letter-spacing: -.01em;
    line-height: 1.25;
}

.tool-summary {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 6px;
    color: #526574;
    font-size: 13px;
    line-height: 1.5;
}

.tool-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    margin-top: 16px;
    padding-top: 13px;
    align-items: center;
    justify-content: space-between;
    color: var(--blue);
    border-top: 1px solid rgba(5, 19, 30, .13);
    font-family: Consolas, "Courier New", monospace;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tool-toggle i {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    transition: transform .2s ease;
}

.tool-toggle i::before,
.tool-toggle i::after {
    position: absolute;
    top: 7px;
    left: 2px;
    width: 12px;
    height: 2px;
    content: "";
    background: currentColor;
}

.tool-toggle i::after {
    transform: rotate(90deg);
}

.tool-card[open] .tool-toggle i {
    transform: rotate(45deg);
}

.tool-detail {
    position: relative;
    z-index: 2;
    padding: 20px 26px 26px;
    color: #526574;
    border-top: 1px solid rgba(5, 19, 30, .13);
}

.tools-section .tool-detail p {
    max-width: none;
    color: inherit;
    font-size: 13px;
    line-height: 1.65;
}

.tools-section .tool-card-dark .tool-summary,
.tools-section .tool-card-dark .tool-detail {
    color: #a9bec8;
}

.tools-section .tool-card-dark .tool-toggle,
.tools-section .tool-card-export .tool-toggle {
    color: var(--electric);
    border-top-color: rgba(255, 255, 255, .18);
}

.tools-section .tool-card-dark .tool-detail,
.tools-section .tool-card-export .tool-detail {
    border-top-color: rgba(255, 255, 255, .18);
}

.tools-section .tool-card-accent .tool-summary,
.tools-section .tool-card-accent .tool-detail {
    color: rgba(5, 19, 30, .76);
}

.tools-section .tool-card-accent .tool-toggle {
    color: var(--night);
    border-top-color: rgba(5, 19, 30, .2);
}

.tools-section .tool-card-export .tool-summary,
.tools-section .tool-card-export .tool-detail {
    color: #c2edf1;
}

.tools-section .tool-card-summary .tool-code {
    margin-bottom: 14px;
}

.tools-section .tool-card-summary .tool-visual.text-scan {
    height: 92px;
    margin: 0 0 16px;
    padding: 12px;
}

.tools-section .tool-card-summary .text-scan i {
    height: 2px;
    margin: 10px 0;
}

.tools-section .tool-card-summary .text-scan b {
    top: 29px;
    padding: 7px 10px;
    font-size: 13px;
}

.tools-section .tool-card-summary .tolerance-dial {
    width: 106px;
    height: 106px;
    margin: 0 auto 16px;
    box-shadow:
        inset 0 0 0 11px #e2e8e7,
        inset 0 0 0 12px #c3cdd1;
}

.tools-section .tool-card-summary .tolerance-dial span {
    font-size: 8px;
}

.tools-section .tool-card-summary .tolerance-dial strong {
    font-size: 18px;
}

.tools-section .tool-card-summary .vda-stamp {
    width: 82px;
    height: 90px;
    margin: -4px auto 10px;
}

.tools-section .tool-card-summary .revision-lines {
    min-height: 82px;
    margin: 0 0 16px;
}

.tools-section .tool-card-summary .revision-lines i {
    height: 10px;
}

.tools-section .tool-card-summary .crop-frame {
    height: 88px;
    margin: 0 0 16px;
}

.tools-section .tool-card-summary .export-arrow {
    right: 22px;
    bottom: 72px;
    font-size: 70px;
}

@media (max-width: 720px) {
    .tool-card-summary {
        min-height: 218px;
        padding: 24px 24px 20px;
    }

    .tools-section .tool-card[open] .tool-card-summary {
        min-height: 210px;
    }

    .tool-detail {
        padding: 18px 24px 24px;
    }
}

/* Coming soon */
.coming-soon-page {
    display: grid;
    min-height: 100vh;
    grid-template-rows: auto 1fr auto;
    color: #fff;
    background: #020b11;
}

.coming-soon-header {
    position: relative;
    z-index: 5;
    border-bottom: 1px solid rgba(255, 255, 255, .11);
    background: rgba(2, 11, 17, .88);
}

.coming-soon-header-inner {
    display: flex;
    min-height: 104px;
    align-items: center;
    justify-content: space-between;
}

.coming-soon-state {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8ea4af;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.coming-soon-state i {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(255, 96, 55, .12);
}

.coming-soon-main {
    position: relative;
    display: grid;
    overflow: hidden;
    min-height: 680px;
    align-items: center;
    isolation: isolate;
}

.coming-soon-grid {
    position: absolute;
    z-index: -3;
    inset: 0;
    opacity: .45;
    background:
        linear-gradient(rgba(77, 217, 229, .1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77, 217, 229, .1) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at 55% 45%, #000, transparent 78%);
}

.coming-soon-orbit {
    position: absolute;
    z-index: -2;
    border: 1px solid rgba(77, 217, 229, .25);
    border-radius: 50%;
}

.coming-soon-orbit::before {
    position: absolute;
    width: 11px;
    height: 11px;
    background: var(--coral);
    border-radius: 50%;
    box-shadow: 0 0 28px var(--coral);
    content: "";
}

.coming-soon-orbit-one {
    top: -28vw;
    right: -17vw;
    width: 65vw;
    height: 65vw;
}

.coming-soon-orbit-one::before {
    bottom: 18%;
    left: 7%;
}

.coming-soon-orbit-two {
    right: 7vw;
    bottom: -34vw;
    width: 53vw;
    height: 53vw;
    border-color: rgba(255, 96, 55, .18);
}

.coming-soon-orbit-two::before {
    top: 20%;
    right: 8%;
    background: var(--electric);
    box-shadow: 0 0 28px var(--electric);
}

.coming-soon-layout {
    display: grid;
    padding-block: clamp(68px, 8vw, 118px);
    align-items: center;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, .68fr);
    gap: clamp(72px, 8vw, 135px);
}

.coming-soon-kicker {
    display: flex;
    margin: 0 0 28px;
    align-items: center;
    gap: 12px;
    color: #8097a4;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.coming-soon-kicker span {
    width: 32px;
    height: 3px;
    background: var(--electric);
}

.coming-soon-copy h1 {
    margin: 0;
    max-width: 930px;
    font-size: clamp(60px, 7vw, 112px);
    font-weight: 950;
    letter-spacing: -.025em;
    line-height: .96;
}

.coming-soon-copy h1 em {
    color: var(--coral);
    font-style: normal;
}

.coming-soon-lead {
    max-width: 650px;
    margin: 36px 0 0;
    color: #adc0ca;
    font-size: clamp(17px, 2vw, 23px);
    line-height: 1.55;
}

.coming-soon-contact {
    display: grid;
    width: min(100%, 520px);
    margin-top: 45px;
    padding: 19px 22px;
    align-items: center;
    grid-template-columns: 1fr auto;
    color: var(--night);
    background: var(--electric);
    border-radius: 2px 16px 2px 16px;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}

.coming-soon-contact:hover {
    background: #75e7ef;
    transform: translateY(-3px);
}

.coming-soon-contact span {
    color: #315662;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.coming-soon-contact strong {
    grid-column: 1;
    margin-top: 3px;
    font-size: 18px;
}

.coming-soon-contact b {
    grid-row: 1 / span 2;
    grid-column: 2;
    font-size: 28px;
}

.coming-soon-panel {
    position: relative;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(5, 19, 30, .75);
    box-shadow: 0 34px 100px rgba(0, 0, 0, .35);
    backdrop-filter: blur(12px);
}

.coming-soon-panel::after {
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 42px;
    height: 42px;
    border-right: 4px solid var(--coral);
    border-bottom: 4px solid var(--coral);
    content: "";
}

.coming-soon-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #738c98;
    font-family: Consolas, monospace;
    font-size: 10px;
    letter-spacing: .16em;
}

.coming-soon-panel-head b {
    color: var(--coral);
}

.coming-soon-progress {
    height: 4px;
    margin: 18px 0 26px;
    overflow: hidden;
    background: rgba(255, 255, 255, .1);
}

.coming-soon-progress i {
    display: block;
    width: 68%;
    height: 100%;
    background: linear-gradient(90deg, var(--electric), var(--coral));
}

.coming-soon-panel ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.coming-soon-panel li {
    display: grid;
    padding: 17px 0;
    align-items: center;
    grid-template-columns: 42px 1fr auto;
    gap: 13px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.coming-soon-panel li > span {
    color: #617984;
    font-family: Consolas, monospace;
    font-size: 10px;
}

.coming-soon-panel li strong,
.coming-soon-panel li small {
    display: block;
}

.coming-soon-panel li strong {
    font-size: 13px;
}

.coming-soon-panel li small {
    margin-top: 3px;
    color: #78909b;
    font-size: 11px;
}

.coming-soon-panel li > b {
    color: var(--coral);
    font-size: 10px;
}

.coming-soon-panel li > b.is-ready {
    color: var(--electric);
}

.coming-soon-mark {
    display: flex;
    margin-top: 28px;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #536c78;
    font-family: Consolas, monospace;
    font-size: 9px;
    letter-spacing: .18em;
}

.coming-soon-mark strong {
    position: relative;
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    color: var(--night);
    background: var(--coral);
    border-radius: 50% 50% 50% 12%;
    font-family: inherit;
    font-size: 42px;
    letter-spacing: normal;
}

.coming-soon-footer {
    border-top: 1px solid rgba(255, 255, 255, .1);
    background: #020b11;
}

.coming-soon-footer .container {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    color: #607984;
    font-size: 11px;
}

.coming-soon-footer nav {
    display: flex;
    gap: 24px;
}

.coming-soon-footer a {
    color: #91a7b1;
    text-decoration: none;
}

.coming-soon-footer a:hover {
    color: #fff;
}

@media (max-width: 900px) {
    .coming-soon-layout {
        grid-template-columns: 1fr;
    }

    .coming-soon-panel {
        max-width: 620px;
    }
}

@media (max-width: 560px) {
    .coming-soon-header-inner {
        min-height: 84px;
    }

    .coming-soon-header .brand small {
        display: none;
    }

    .coming-soon-state {
        font-size: 0;
    }

    .coming-soon-main {
        min-height: 0;
    }

    .coming-soon-layout {
        padding-block: 62px 72px;
        gap: 55px;
    }

    .coming-soon-copy h1 {
        font-size: clamp(52px, 16vw, 72px);
        line-height: .96;
    }

    .coming-soon-lead {
        margin-top: 30px;
    }

    .coming-soon-contact {
        margin-top: 34px;
    }

    .coming-soon-panel {
        padding: 26px 22px;
    }

    .coming-soon-footer .container {
        padding-block: 20px;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

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

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

/* ==========================================================================
   StampSpec Editorial Blueprint
   Die folgenden Regeln bilden die bewusst eigenständige visuelle Ebene.
   ========================================================================== */

:root {
    --ice: #d9e5e7;
    --electric: #4dd9e5;
    --coral: #ff6037;
    --night: #05131e;
    --night-soft: #0a2232;
    --bone: #f2f0e9;
    --signal-line: rgba(77, 217, 229, .24);
}

body {
    background: var(--bone);
}

.scroll-progress {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    pointer-events: none;
}

.scroll-progress i {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--coral), var(--electric));
    transform: scaleX(0);
    transform-origin: left center;
}

.site-header {
    background: rgba(5, 19, 30, .88);
    border-bottom-color: rgba(77, 217, 229, .14);
}

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

.brand-mark {
    color: var(--night);
    background: var(--coral);
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50% 50% 50% 10%;
    box-shadow: 0 0 0 4px rgba(255, 96, 55, .09);
}

.brand strong {
    font-size: 17px;
    letter-spacing: 0;
}

.brand small {
    color: #839ca9;
    font-size: 8px;
    letter-spacing: .19em;
}

.primary-nav > a:not(.button) {
    color: #9db0ba;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.site-header .button-primary {
    min-height: 38px;
    color: var(--night);
    background: var(--coral);
    box-shadow: none;
}

.hero {
    min-height: 850px;
    background: var(--night);
    isolation: isolate;
}

.hero-art {
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 19, 30, 1) 4%, rgba(5, 19, 30, .98) 27%, rgba(5, 19, 30, .32) 78%, rgba(5, 19, 30, .18)),
        linear-gradient(0deg, rgba(5, 19, 30, .78), transparent 45%),
        url("../Assets/stampspec-blueprint.png") center right / cover no-repeat;
    filter: saturate(.88) contrast(1.05);
}

.hero-grid-bg {
    z-index: -1;
    opacity: .16;
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
}

.hero-rail {
    position: absolute;
    z-index: 2;
    top: 150px;
    bottom: 120px;
    left: max(18px, calc((100vw - var(--container)) / 2 - 58px));
    display: flex;
    width: 18px;
    align-items: center;
    flex-direction: column;
    gap: 13px;
    color: #6d8794;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.hero-rail i {
    width: 1px;
    flex: 1;
    background: linear-gradient(transparent, var(--electric), transparent);
}

.hero-grid {
    min-height: 730px;
    padding-top: 58px;
    grid-template-columns: .88fr 1.12fr;
    gap: 36px;
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.eyebrow {
    color: var(--electric);
    font-size: 10px;
    letter-spacing: .23em;
}

.eyebrow span {
    width: 38px;
    background: var(--coral);
}

.hero h1 {
    font-size: clamp(60px, 6.2vw, 94px);
    font-weight: 790;
    letter-spacing: -.025em;
    line-height: .98;
}

.hero h1 span,
.hero h1 em {
    display: block;
}

.hero h1 em {
    margin-top: 12px;
    color: var(--electric);
}

.hero-lead {
    max-width: 520px;
    margin-top: 31px;
    color: #b7c8d0;
    font-size: 18px;
}

.hero-flow {
    display: block;
    color: #edf6f8;
    font-weight: 700;
    line-height: 1.55;
}

.hero-flow-arrow {
    display: inline-block;
    margin: 0 .2em;
    color: var(--electric);
    font-weight: 900;
}

.hero-lead-summary {
    display: block;
    margin-top: 8px;
}

.hero-actions .button {
    min-height: 56px;
    border-radius: 2px 14px 2px 14px;
}

.hero-actions .button-primary {
    gap: 20px;
}

.hero-actions .button-primary span {
    font-size: 19px;
}

.hero .button-primary {
    color: var(--night);
    background: var(--coral);
}

.product-stage {
    margin-right: -8%;
    transform: perspective(1100px) rotateY(-7deg) rotateZ(1.4deg);
}

.stage-index {
    position: absolute;
    z-index: 5;
    top: -34px;
    right: 10px;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .22em;
}

.app-window {
    border-color: rgba(77, 217, 229, .52);
    border-radius: 2px 22px 2px 22px;
    box-shadow:
        18px 24px 0 rgba(77, 217, 229, .07),
        0 60px 130px rgba(0, 0, 0, .56);
}

.floating-card {
    border-radius: 2px 16px 2px 16px;
}

.stamp-orbit {
    position: absolute;
    z-index: 6;
    display: grid;
    place-items: center;
    color: var(--coral);
    border: 2px solid currentColor;
    border-radius: 50%;
    box-shadow: inset 0 0 0 5px rgba(255, 96, 55, .12);
    font-size: 12px;
    font-weight: 900;
}

.stamp-orbit-one {
    top: -23px;
    left: 8%;
    width: 56px;
    height: 56px;
    transform: rotate(-11deg);
}

.stamp-orbit-two {
    right: 8%;
    bottom: -32px;
    width: 72px;
    height: 72px;
    transform: rotate(9deg);
}

.manifesto-section {
    padding: 118px 0;
    color: var(--night);
    background:
        linear-gradient(rgba(5, 19, 30, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(5, 19, 30, .045) 1px, transparent 1px),
        var(--bone);
    background-size: 72px 72px;
}

.manifesto-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, .82fr) minmax(440px, 1.18fr);
    gap: 76px;
}

.manifesto-label {
    margin: 0 0 18px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.manifesto-intro h2 {
    max-width: 560px;
    margin: 0;
    font-size: clamp(42px, 5vw, 66px);
    letter-spacing: -.02em;
    line-height: 1.05;
}

.manifesto-intro h2 span {
    color: var(--coral);
}

.manifesto-record {
    position: relative;
    overflow: hidden;
    padding: 38px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(5, 19, 30, .15);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(5, 19, 30, .1);
}

.manifesto-record::before {
    position: absolute;
    top: 0;
    left: 38px;
    width: 58px;
    height: 4px;
    content: "";
    background: var(--coral);
    border-radius: 0 0 4px 4px;
}

.manifesto-record-head {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #627886;
    font-family: Consolas, "Courier New", monospace;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
}

.manifesto-record-head b {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #176b54;
    font-size: inherit;
    text-transform: uppercase;
}

.manifesto-record-head i {
    width: 7px;
    height: 7px;
    background: #24b37e;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(36, 179, 126, .12);
}

.manifesto-record-copy {
    max-width: 650px;
    margin: 0 0 32px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.55;
}

.manifesto-fields {
    display: grid;
    margin: 0;
    overflow: hidden;
    background: #d8e0e3;
    border: 1px solid #d8e0e3;
    border-radius: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
}

.manifesto-fields > div {
    min-width: 0;
    padding: 17px 18px;
    background: #f8faf9;
}

.manifesto-fields dt {
    margin-bottom: 5px;
    color: #718691;
    font-family: Consolas, "Courier New", monospace;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.manifesto-fields dd {
    margin: 0;
    color: var(--night);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.tools-section {
    padding: 112px 0 128px;
    color: #fff;
    background:
        radial-gradient(circle at 8% 12%, rgba(77, 217, 229, .09), transparent 22%),
        var(--night);
}

.tools-heading {
    display: grid;
    margin-bottom: 42px;
    padding-bottom: 34px;
    align-items: end;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 64px;
}

.tools-heading .section-kicker {
    margin-bottom: 12px;
    color: var(--electric);
}

.tools-heading h2 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 5.2vw, 68px);
    line-height: 1;
}

.tools-heading h2 span {
    color: #8299a5;
}

.tools-intro {
    max-width: 430px;
    margin: 0 0 4px;
    color: #a9bdc7;
    font-size: 15px;
    line-height: 1.75;
}

.tool-bento {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    counter-reset: tools;
}

.tool-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 360px;
    overflow: hidden;
    padding: 28px 28px 30px;
    flex-direction: column;
    color: var(--ink);
    background: #f2f0e9;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .12);
    counter-increment: tools;
    transition: border-color .2s ease, transform .2s ease;
}

.tool-card:hover {
    border-color: rgba(77, 217, 229, .48);
    transform: translateY(-3px);
}

.tool-card::before {
    position: absolute;
    top: 25px;
    right: 27px;
    z-index: 2;
    color: rgba(5, 19, 30, .42);
    content: "0" counter(tools);
    font-family: Consolas, "Courier New", monospace;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.tool-card::after {
    position: absolute;
    top: 0;
    left: 28px;
    width: 42px;
    height: 3px;
    content: "";
    background: var(--coral);
    border-radius: 0 0 3px 3px;
}

.tool-card h3 {
    position: relative;
    z-index: 2;
    margin: auto 0 7px;
    font-size: 21px;
    letter-spacing: -.01em;
    line-height: 1.25;
}

.tool-card p {
    position: relative;
    z-index: 2;
    max-width: 390px;
    margin: 0;
    color: #526574;
    font-size: 14px;
    line-height: 1.6;
}

.tool-code {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--blue);
    font-family: Consolas, "Courier New", monospace;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .13em;
}

.tool-card-large {
    grid-column: auto;
    grid-row: auto;
}

.tool-card-tall {
    grid-column: auto;
    grid-row: auto;
}

.tool-card-dark {
    color: #fff;
    background: #0b2a3e;
}

.tool-card-dark p {
    color: #9fb4bf;
}

.tool-card-dark::before {
    color: rgba(255, 255, 255, .38);
}

.tool-card-dark .tool-code {
    color: var(--electric);
}

.tool-card-accent {
    color: var(--night);
    background: var(--coral);
}

.tool-card-accent p,
.tool-card-accent .tool-code {
    color: rgba(5, 19, 30, .72);
}

.tool-card-accent::after {
    background: var(--night);
}

.tool-card-wide {
    display: flex;
    background: var(--ice);
    grid-column: auto;
}

.tool-card-export {
    color: #fff;
    background: var(--blue);
    grid-column: auto;
}

.tool-card-export p,
.tool-card-export .tool-code {
    color: #c2edf1;
}

.tool-card-export::before {
    color: rgba(255, 255, 255, .4);
}

.tool-card-export::after {
    background: var(--electric);
}

.tool-visual.text-scan {
    position: relative;
    height: 145px;
    margin: 4px 0 26px;
    padding: 22px;
    background:
        linear-gradient(rgba(77, 217, 229, .11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77, 217, 229, .11) 1px, transparent 1px);
    background-size: 22px 22px;
    border: 1px solid rgba(77, 217, 229, .2);
}

.text-scan i {
    display: block;
    width: 70%;
    height: 3px;
    margin: 16px 0;
    background: #627d8c;
}

.text-scan i:nth-child(2) {
    width: 48%;
}

.text-scan b {
    position: absolute;
    top: 52px;
    right: 8%;
    padding: 11px 15px;
    color: var(--night);
    background: var(--ice);
    border-radius: 2px;
    font-family: Consolas, monospace;
}

.tolerance-dial {
    display: grid;
    width: 170px;
    height: 170px;
    margin: 0 auto 26px;
    place-items: center;
    border: 1px solid #c3cdd1;
    border-radius: 50%;
    box-shadow:
        inset 0 0 0 17px #e2e8e7,
        inset 0 0 0 18px #c3cdd1;
}

.tolerance-dial span {
    font-family: Consolas, monospace;
    font-size: 11px;
}

.tolerance-dial strong {
    font-size: 24px;
}

.vda-stamp {
    display: block;
    width: 112px;
    height: 124px;
    margin: -8px auto 16px;
    color: var(--night);
    transform: rotate(-7deg);
}

.vda-stamp svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.vda-stamp path,
.vda-stamp circle {
    fill: rgba(255, 255, 255, .08);
    stroke: currentColor;
    stroke-width: 3;
    vector-effect: non-scaling-stroke;
}

.vda-stamp circle {
    fill: none;
    stroke-width: 1.5;
}

.vda-stamp text {
    fill: currentColor;
    font-family: Arial, sans-serif;
    font-size: 32px;
    font-weight: 900;
    text-anchor: middle;
}

.revision-lines {
    display: grid;
    min-height: 140px;
    margin: 0 0 26px;
    align-content: center;
    gap: 7px;
}

.revision-lines i {
    display: block;
    height: 16px;
    background: linear-gradient(90deg, #ccd6d8 50%, var(--electric) 50%);
    border-radius: 1px;
}

.revision-lines i:nth-child(2) {
    background: linear-gradient(90deg, #ccd6d8 28%, var(--coral) 28% 52%, #ccd6d8 52%);
}

.crop-frame {
    position: relative;
    width: 100%;
    height: 145px;
    margin: 0 0 26px;
    background:
        linear-gradient(rgba(5, 19, 30, .11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(5, 19, 30, .11) 1px, transparent 1px);
    background-size: 18px 18px;
    border: 2px dashed var(--night);
}

.crop-frame::before,
.crop-frame::after {
    position: absolute;
    width: 22px;
    height: 22px;
    content: "";
}

.crop-frame::before {
    top: -4px;
    left: -4px;
    border-top: 5px solid var(--coral);
    border-left: 5px solid var(--coral);
}

.crop-frame::after {
    right: -4px;
    bottom: -4px;
    border-right: 5px solid var(--coral);
    border-bottom: 5px solid var(--coral);
}

.crop-frame span {
    position: absolute;
    right: 8px;
    bottom: 5px;
    font-family: Consolas, monospace;
    font-size: 9px;
}

.export-arrow {
    position: absolute;
    right: 24px;
    bottom: 18px;
    color: rgba(255, 255, 255, .21);
    font-size: 92px;
    font-weight: 200;
    line-height: 1;
}

.workflow-section {
    padding: 118px 0 128px;
    background: var(--bone);
}

.video-section-heading {
    display: grid;
    margin-bottom: 42px;
    padding-bottom: 34px;
    align-items: end;
    border-bottom: 1px solid rgba(5, 19, 30, .14);
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
    gap: 64px;
}

.video-section-heading .section-kicker {
    margin-bottom: 12px;
}

.video-section-heading h2 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(44px, 5.2vw, 68px);
    line-height: 1;
}

.video-section-heading h2 span {
    color: var(--coral);
}

.video-section-heading > p:last-child {
    max-width: 430px;
    margin: 0 0 4px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.75;
}

.product-video-frame {
    position: relative;
    overflow: hidden;
    background: #02090e;
    border: 1px solid rgba(5, 19, 30, .22);
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(5, 19, 30, .18);
    aspect-ratio: 16 / 9;
}

.product-video {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    object-fit: contain;
}

.video-dummy-label {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    padding: 7px 10px;
    color: #fff;
    background: rgba(5, 19, 30, .78);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
    font-family: Consolas, "Courier New", monospace;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    pointer-events: none;
    text-transform: uppercase;
}

.pricing-section {
    position: relative;
    overflow: hidden;
    background: var(--ice);
}

.pricing-section::before {
    position: absolute;
    top: -140px;
    right: -120px;
    width: 460px;
    height: 460px;
    content: "";
    border: 1px solid rgba(5, 19, 30, .16);
    border-radius: 50%;
    box-shadow:
        0 0 0 55px rgba(5, 19, 30, .04),
        0 0 0 110px rgba(5, 19, 30, .03);
}

.pricing-copy .section-kicker {
    color: var(--night);
}

.pricing-copy h2 {
    font-size: clamp(48px, 6vw, 78px);
}

.price-card {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--night);
    border: 0;
    border-top: 0;
    border-radius: 2px 28px 2px 28px;
    box-shadow: 22px 22px 0 rgba(5, 19, 30, .13);
}

.price-card-mark {
    position: absolute;
    top: -45px;
    right: -20px;
    color: rgba(255, 255, 255, .05);
    font-size: 210px;
    font-weight: 900;
    line-height: 1;
}

.price-label {
    color: var(--electric);
}

.price-card .price span,
.price-card .tax-note,
.price-card .fulfillment-note p {
    color: #91a8b4;
}

.price-card .button-primary {
    color: var(--night);
    background: var(--coral);
    box-shadow: none;
}

.price-card .button-secondary {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, .22);
}

.faq-section {
    padding: 130px 0;
    background: #fff;
}

.faq-item button i {
    color: var(--night);
    background: var(--ice);
    border: 0;
}

.demo-strip {
    position: relative;
    min-height: 690px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--night);
    isolation: isolate;
}

.demo-strip-art {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 19, 30, .99) 4%, rgba(5, 19, 30, .88) 48%, rgba(5, 19, 30, .18)),
        url("../Assets/stampspec-blueprint.png") center right / cover no-repeat;
    transform: scaleX(-1);
    opacity: .82;
}

.demo-strip-inner {
    align-items: end;
}

.demo-copy h2 {
    font-size: clamp(55px, 7vw, 96px);
    letter-spacing: -.025em;
    line-height: .96;
}

.demo-copy h2 em {
    color: var(--electric);
    font-style: normal;
}

.demo-actions {
    width: min(100%, 380px);
}

.demo-actions > .button {
    width: 100%;
    min-height: 62px;
    gap: 25px;
    border-radius: 2px 16px 2px 16px;
}

.demo-actions > .button-light {
    color: var(--night);
    background: var(--coral);
}

.demo-status {
    color: #8fa7b3;
    text-align: left;
}

.share-block {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.share-block p {
    margin: 0 0 13px !important;
    color: #b8cbd4 !important;
    font-size: 12px;
}

.share-actions {
    display: flex;
    gap: 8px;
}

.share-button {
    min-height: 43px;
    padding: 8px 14px;
    color: var(--night);
    background: var(--coral);
    border: 0;
    border-radius: 2px 10px 2px 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
}

.share-button-muted {
    color: #d4e0e5;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
}

.share-status {
    display: block;
    min-height: 20px;
    margin-top: 8px;
    color: var(--electric);
    font-size: 11px;
}

.order-section {
    background:
        linear-gradient(90deg, transparent 49.9%, rgba(5, 19, 30, .055) 50%, transparent 50.1%),
        var(--bone);
}

.order-form-card {
    border-radius: 2px 24px 2px 24px;
}

.form-header {
    background: var(--night);
}

.floating-demo {
    position: fixed;
    z-index: 90;
    right: 22px;
    bottom: 22px;
    display: flex;
    width: 104px;
    height: 104px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--night);
    background: var(--coral);
    border: 1px solid rgba(5, 19, 30, .25);
    border-radius: 50% 50% 50% 12%;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .23);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .2s ease, border-radius .2s ease;
}

.floating-demo:hover {
    border-radius: 12% 50% 50% 50%;
    transform: rotate(-5deg) scale(1.04);
}

.floating-demo b {
    margin-top: 4px;
    font-size: 22px;
}

.floating-demo[aria-disabled="true"] {
    opacity: .45;
    pointer-events: none;
}

.site-footer {
    background: #020b11;
}

@media (max-width: 1080px) {
    .hero-rail {
        display: none;
    }

    .hero-grid {
        grid-template-columns: .9fr 1.1fr;
    }

    .product-stage {
        margin-right: 0;
    }

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

    .tool-card-large,
    .tool-card-tall {
        grid-column: auto;
    }

    .video-section-heading {
        grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
    }

    .video-section-heading > p:last-child {
        grid-column: auto;
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
    }

    .hero-art {
        background:
            linear-gradient(180deg, rgba(5, 19, 30, .98) 0%, rgba(5, 19, 30, .85) 55%, rgba(5, 19, 30, .38)),
            url("../Assets/stampspec-blueprint.png") center / cover no-repeat;
    }

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

    .product-stage {
        width: min(100%, 680px);
        transform: none;
    }

    .manifesto-grid,
    .tools-heading {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .manifesto-intro h2 {
        max-width: 680px;
        font-size: clamp(40px, 7vw, 58px);
    }

    .manifesto-record {
        padding: 32px;
    }

    .tool-bento {
        grid-auto-rows: auto;
        grid-template-columns: 1fr 1fr;
    }

    .tool-card,
    .tool-card-large,
    .tool-card-tall,
    .tool-card-wide,
    .tool-card-export {
        min-height: 300px;
        grid-column: span 1;
        grid-row: auto;
    }

    .tool-card-wide {
        grid-column: span 1;
    }

    .video-section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-section-heading > p:last-child {
        grid-column: auto;
    }

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

@media (max-width: 720px) {
    .tool-bento {
        grid-template-columns: 1fr;
    }

    .tool-card,
    .tool-card-large,
    .tool-card-tall,
    .tool-card-wide,
    .tool-card-export {
        min-height: 330px;
        grid-column: 1;
    }

}

@media (max-width: 620px) {
    .site-header .primary-nav .button-primary {
        color: var(--night);
    }

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

    .hero h1 {
        font-size: clamp(49px, 15vw, 67px);
    }

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

    .manifesto-section,
    .tools-section,
    .workflow-section,
    .faq-section {
        padding: 90px 0;
    }

    .manifesto-grid {
        gap: 38px;
    }

    .manifesto-intro h2 {
        font-size: 44px;
    }

    .manifesto-record {
        padding: 25px;
    }

    .manifesto-record::before {
        left: 25px;
    }

    .manifesto-record-copy {
        font-size: 18px;
    }

    .manifesto-fields {
        grid-template-columns: 1fr;
    }

    .tools-heading h2,
    .video-section-heading h2 {
        font-size: 48px;
    }

    .tool-bento {
        grid-template-columns: 1fr;
    }

    .tool-card,
    .tool-card-large,
    .tool-card-tall,
    .tool-card-wide,
    .tool-card-export {
        min-height: 270px;
        grid-column: 1;
    }

    .tool-card-wide {
        display: block;
    }

    .crop-frame {
        height: 100px;
        margin-bottom: 30px;
    }

    .tolerance-dial {
        width: 205px;
        height: 205px;
    }

    .video-section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-section-heading > p:last-child {
        grid-column: 1;
    }

    .product-video-frame {
        border-radius: 16px;
    }

    .demo-strip {
        min-height: 720px;
    }

    .demo-copy h2 {
        font-size: 52px;
    }

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

    .floating-demo {
        right: 13px;
        bottom: 13px;
        width: 76px;
        height: 76px;
        font-size: 11px;
    }

    .floating-demo b {
        font-size: 17px;
    }
}

/* ==========================================================================
   Impressum
   ========================================================================== */

.legal-page {
    min-height: 100vh;
    color: var(--night);
    background:
        linear-gradient(rgba(5, 19, 30, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(5, 19, 30, .035) 1px, transparent 1px),
        var(--bone);
    background-size: 34px 34px;
}

.legal-page .site-header {
    position: relative;
}

.legal-back {
    gap: 8px;
}

.legal-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--night);
    isolation: isolate;
}

.legal-hero::after {
    position: absolute;
    z-index: -1;
    top: -170px;
    right: -90px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(77, 217, 229, .35);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(77, 217, 229, .035),
        0 0 0 140px rgba(255, 96, 55, .025);
    content: "";
}

.legal-grid {
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: .34;
    background:
        linear-gradient(rgba(77, 217, 229, .13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77, 217, 229, .13) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.legal-hero-inner {
    display: grid;
    min-height: 430px;
    padding-block: 80px;
    align-items: center;
    grid-template-columns: 1fr 230px;
    gap: 80px;
}

.legal-kicker {
    margin: 0 0 22px;
    color: #8096a3;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.legal-kicker span {
    color: var(--electric);
}

.legal-hero h1 {
    margin: 0;
    font-size: clamp(68px, 10vw, 134px);
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: .94;
}

.legal-hero h1 span {
    color: var(--coral);
}

.legal-hero-inner > div:first-child > p:last-child {
    max-width: 680px;
    margin: 36px 0 0;
    color: #a9bbc5;
    font-size: 18px;
}

.legal-index {
    display: grid;
    width: 210px;
    height: 210px;
    place-items: center;
    align-content: center;
    border: 1px solid rgba(77, 217, 229, .45);
    border-radius: 50% 50% 50% 9%;
    background: rgba(5, 19, 30, .72);
    transform: rotate(4deg);
}

.legal-index span,
.legal-index small {
    color: #8299a5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
}

.legal-index strong {
    margin: -6px 0;
    color: var(--coral);
    font-family: Georgia, serif;
    font-size: 84px;
    line-height: 1;
}

.legal-content {
    padding: 90px 0 120px;
}

.legal-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: clamp(45px, 8vw, 115px);
}

.legal-nav {
    position: sticky;
    top: 28px;
    padding-top: 8px;
}

.legal-nav p {
    margin: 0 0 17px;
    color: #72838d;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.legal-nav a {
    display: grid;
    padding: 11px 0;
    align-items: center;
    grid-template-columns: 34px 1fr;
    border-top: 1px solid rgba(5, 19, 30, .12);
    color: #4b606d;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.legal-nav a:last-child {
    border-bottom: 1px solid rgba(5, 19, 30, .12);
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
    color: var(--night);
}

.legal-nav a span {
    color: var(--coral);
    font-family: Consolas, monospace;
    font-size: 10px;
}

.legal-document {
    display: grid;
    gap: 18px;
}

.legal-card {
    position: relative;
    display: grid;
    min-width: 0;
    padding: clamp(28px, 5vw, 54px);
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 28px;
    border: 1px solid rgba(5, 19, 30, .13);
    background: rgba(255, 255, 255, .74);
    box-shadow: 0 15px 45px rgba(5, 19, 30, .045);
    scroll-margin-top: 24px;
}

.legal-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 34px;
    height: 34px;
    border-right: 4px solid var(--coral);
    border-bottom: 4px solid var(--coral);
    content: "";
}

.legal-card-provider {
    color: #fff;
    border-color: var(--night);
    background: var(--night);
}

.legal-number {
    padding-top: 5px;
    color: var(--coral);
    font-family: Consolas, monospace;
    font-size: 14px;
    font-weight: 800;
}

.legal-label {
    margin: 0 0 8px;
    color: #748690;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.legal-card-provider .legal-label {
    color: #7e98a5;
}

.legal-card h2 {
    margin: 0 0 22px;
    font-size: clamp(29px, 4vw, 46px);
    letter-spacing: -.015em;
    line-height: 1.08;
}

.legal-card a {
    color: #164d5c;
    font-weight: 750;
    text-underline-offset: 3px;
}

.legal-card-provider a {
    color: #fff;
}

.legal-code-inline {
    padding: 2px 6px;
    color: var(--night);
    background: rgba(77, 217, 229, .2);
    border: 1px solid rgba(5, 19, 30, .13);
    font-family: Consolas, monospace;
    font-size: .9em;
}

.legal-meta {
    margin-top: 28px;
    color: #71838d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.legal-card p {
    max-width: 760px;
    margin: 0;
    color: #4a5c67;
}

.legal-card p + p {
    margin-top: 18px;
}

.legal-card-provider address {
    margin-top: 5px;
    color: #c4d2d9;
    font-size: 17px;
    font-style: normal;
    line-height: 1.7;
}

.legal-card-provider address strong {
    color: #fff;
    font-size: 23px;
}

.legal-contact {
    display: grid;
    margin-top: 32px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.legal-contact > a,
.legal-contact > span {
    padding: 18px 18px 0 0;
    color: #d8e3e8;
    font-size: 13px;
    text-decoration: none;
}

.legal-contact > a:hover {
    color: var(--electric);
}

.legal-contact > * > span {
    display: block;
    margin-bottom: 3px;
    color: #6f8996;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.legal-code {
    display: inline-block;
    padding: 8px 13px;
    color: var(--night) !important;
    background: rgba(77, 217, 229, .3);
    font-family: Consolas, monospace;
    font-size: 18px;
    font-weight: 850;
    letter-spacing: .08em;
}

.legal-home-link {
    display: inline-flex;
    width: fit-content;
    margin-top: 25px;
    align-items: center;
    gap: 15px;
    color: var(--night);
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.legal-home-link > span:first-child {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--night);
    background: var(--coral);
    border-radius: 50% 50% 50% 12%;
    transition: transform .2s ease;
}

.legal-home-link:hover > span:first-child {
    transform: translateX(-4px) rotate(-5deg);
}

.legal-home-link small {
    display: block;
    margin-bottom: 5px;
    color: #70818a;
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.legal-footer {
    padding-top: 0;
}

.legal-footer .footer-bottom {
    margin-top: 0;
}

.legal-footer-link {
    color: #a8c1cd;
    text-decoration: none;
}

.legal-footer-link:hover {
    color: #fff;
}

@media (max-width: 850px) {
    .legal-hero-inner {
        min-height: 390px;
        grid-template-columns: 1fr;
    }

    .legal-index {
        display: none;
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-nav {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .legal-nav p {
        grid-column: 1 / -1;
    }

    .legal-nav a:nth-of-type(2) {
        border-top: 1px solid rgba(5, 19, 30, .12);
    }

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

@media (max-width: 560px) {
    .legal-page .header-inner {
        min-height: 64px;
    }

    .legal-back {
        min-width: 44px;
        padding-inline: 13px;
        font-size: 0;
    }

    .legal-back span {
        font-size: 18px;
    }

    .legal-hero-inner {
        min-height: 330px;
        padding-block: 62px;
    }

    .legal-hero h1 {
        font-size: clamp(57px, 18vw, 82px);
    }

    .legal-hero-inner > div:first-child > p:last-child {
        margin-top: 27px;
        font-size: 15px;
    }

    .legal-content {
        padding: 55px 0 80px;
    }

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

    .legal-nav a:nth-of-type(2) {
        border-top: 0;
    }

    .legal-card {
        padding: 29px 24px 34px;
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .legal-card h2 {
        margin-bottom: 17px;
    }

    .legal-card p {
        font-size: 14px;
    }

    .legal-contact {
        margin-top: 23px;
    }

    .legal-home-link {
        font-size: 22px;
    }

    .legal-footer .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

/* ==========================================================================
   Bestellbestätigung
   ========================================================================== */

.confirmation-page {
    min-height: 100vh;
    color: #fff;
    background: var(--night);
}

.confirmation-page form {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.confirmation-secure {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #92a8b3;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.confirmation-secure i {
    width: 8px;
    height: 8px;
    background: var(--electric);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(77, 217, 229, .1);
}

.confirmation-main {
    position: relative;
    display: grid;
    overflow: hidden;
    min-height: 760px;
    padding: 72px 0 95px;
    flex: 1;
    place-items: center;
    isolation: isolate;
}

.confirmation-grid {
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: .6;
    background:
        linear-gradient(rgba(77, 217, 229, .085) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77, 217, 229, .085) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, transparent, #000 18% 82%, transparent);
}

.confirmation-orbit {
    position: absolute;
    z-index: -1;
    top: 9%;
    left: 50%;
    width: min(82vw, 880px);
    height: min(82vw, 880px);
    border: 1px solid rgba(77, 217, 229, .18);
    border-radius: 50%;
    box-shadow:
        0 0 0 90px rgba(77, 217, 229, .018),
        0 0 0 180px rgba(255, 96, 55, .012);
    transform: translateX(-50%);
}

.confirmation-shell {
    display: flex;
    justify-content: center;
}

.confirmation-card {
    position: relative;
    width: min(100%, 920px);
    padding: clamp(36px, 7vw, 82px);
    color: var(--night);
    border: 1px solid rgba(255, 255, 255, .82);
    background: var(--bone);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .36);
}

.confirmation-card::before,
.confirmation-card::after {
    position: absolute;
    width: 46px;
    height: 46px;
    content: "";
}

.confirmation-card::before {
    top: 14px;
    left: 14px;
    border-top: 5px solid var(--coral);
    border-left: 5px solid var(--coral);
}

.confirmation-card::after {
    right: 14px;
    bottom: 14px;
    border-right: 5px solid var(--coral);
    border-bottom: 5px solid var(--coral);
}

.confirmation-status {
    position: absolute;
    top: clamp(32px, 6vw, 70px);
    right: clamp(32px, 6vw, 70px);
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    color: var(--night);
    background: var(--electric);
    border-radius: 50% 50% 50% 12%;
    box-shadow: 0 0 0 9px rgba(77, 217, 229, .14);
    font-size: 40px;
    font-weight: 900;
    transform: rotate(4deg);
}

.confirmation-kicker {
    margin: 0 0 18px;
    color: #687b85;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.confirmation-card h1 {
    max-width: 650px;
    margin: 0;
    font-size: clamp(51px, 8vw, 92px);
    font-weight: 950;
    letter-spacing: -.025em;
    line-height: .95;
}

.confirmation-card h1 em {
    color: var(--coral);
    font-style: normal;
}

.confirmation-lead {
    max-width: 650px;
    margin: 32px 0 0;
    color: #4f626c;
    font-size: 17px;
}

.confirmation-number {
    display: grid;
    margin-top: 42px;
    padding: 24px 28px;
    grid-template-columns: 1fr auto;
    align-items: center;
    border: 1px solid rgba(5, 19, 30, .18);
    background:
        linear-gradient(90deg, rgba(77, 217, 229, .13), transparent 72%),
        #fff;
}

.confirmation-number span,
.confirmation-number small {
    color: #70818b;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.confirmation-number strong {
    grid-row: 1 / span 2;
    grid-column: 2;
    color: var(--night);
    font-family: Consolas, monospace;
    font-size: clamp(16px, 3vw, 23px);
    letter-spacing: .035em;
}

.confirmation-mail {
    display: grid;
    margin-top: 16px;
    padding: 20px 24px;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 14px;
    color: #315761;
    background: rgba(77, 217, 229, .16);
    border-left: 4px solid var(--electric);
}

.confirmation-mail > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--night);
    border: 1px solid rgba(5, 19, 30, .22);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 900;
}

.confirmation-mail p {
    margin: 0;
    font-size: 13px;
}

.confirmation-mail strong {
    display: block;
    margin-bottom: 2px;
    color: var(--night);
    font-size: 13px;
}

.confirmation-mail-warning {
    color: #6b493b;
    background: rgba(255, 96, 55, .12);
    border-left-color: var(--coral);
}

.confirmation-next {
    margin-top: 42px;
}

.confirmation-next > p {
    margin: 0 0 14px;
    color: #687b85;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.confirmation-next ol {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(5, 19, 30, .16);
    border-bottom: 1px solid rgba(5, 19, 30, .16);
    list-style: none;
}

.confirmation-next li {
    display: grid;
    padding: 22px 24px 24px 0;
    grid-template-columns: 30px 1fr;
    border-right: 1px solid rgba(5, 19, 30, .13);
}

.confirmation-next li + li {
    padding-left: 22px;
}

.confirmation-next li:last-child {
    border-right: 0;
}

.confirmation-next li span {
    grid-row: 1 / span 2;
    color: var(--coral);
    font-family: Consolas, monospace;
    font-size: 10px;
}

.confirmation-next li strong {
    font-size: 14px;
}

.confirmation-next li small {
    margin-top: 4px;
    color: #667a85;
    font-size: 11px;
    line-height: 1.45;
}

.confirmation-button {
    margin-top: 38px;
    color: var(--night);
    background: var(--coral);
    box-shadow: none;
}

.confirmation-card-empty {
    max-width: 780px;
}

.confirmation-footer {
    padding-top: 0;
}

.confirmation-footer .footer-bottom {
    margin-top: 0;
}

.confirmation-footer a {
    color: #a8c1cd;
    text-decoration: none;
}

.confirmation-footer a:hover {
    color: #fff;
}

@media (max-width: 720px) {
    .confirmation-main {
        padding: 34px 0 55px;
    }

    .confirmation-status {
        position: static;
        width: 58px;
        height: 58px;
        margin-bottom: 30px;
        font-size: 28px;
    }

    .confirmation-number {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .confirmation-number strong {
        grid-row: auto;
        grid-column: auto;
        overflow-wrap: anywhere;
    }

    .confirmation-next ol {
        grid-template-columns: 1fr;
    }

    .confirmation-next li,
    .confirmation-next li + li {
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(5, 19, 30, .12);
    }

    .confirmation-next li:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 520px) {
    .confirmation-secure {
        font-size: 0;
    }

    .confirmation-card {
        padding: 35px 24px 42px;
    }

    .confirmation-card h1 {
        font-size: clamp(46px, 15vw, 67px);
    }

    .confirmation-lead {
        font-size: 15px;
    }

    .confirmation-mail {
        padding: 18px;
        grid-template-columns: 1fr;
    }

    .confirmation-mail > span {
        width: 32px;
        height: 32px;
    }

    .confirmation-footer .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

/* Separate order page */
.order-page {
    min-height: 100vh;
    background: var(--bone);
}

.order-page-header {
    position: relative;
}

.order-page-header .header-inner {
    min-height: 96px;
}

.order-page-header .order-back-link {
    color: #d9e6eb;
    border-color: rgba(255, 255, 255, .25);
}

.order-page-section {
    position: relative;
    min-height: calc(100vh - 190px);
    overflow: hidden;
    padding-top: clamp(62px, 8vw, 118px);
}

.order-page-grid {
    position: absolute;
    inset: 0;
    opacity: .34;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(5, 19, 30, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(5, 19, 30, .07) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

.order-page-section .order-layout {
    position: relative;
    align-items: start;
}

.order-page-intro {
    position: sticky;
    top: 38px;
}

.order-page-intro h1 {
    max-width: 650px;
    margin: 18px 0 28px;
    color: var(--night);
    font-size: clamp(60px, 6.2vw, 94px);
    font-weight: 790;
    letter-spacing: -.025em;
    line-height: .98;
}

.order-page-intro h1 em {
    display: block;
    margin-top: 12px;
    color: var(--coral);
    font-style: normal;
}

.order-page-intro > p:not(.section-kicker):not(.privacy-hint) {
    max-width: 590px;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.6;
}

.order-page-facts {
    display: grid;
    margin: 30px 0;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(5, 19, 30, .18);
    border-bottom: 1px solid rgba(5, 19, 30, .18);
}

.order-page-facts div {
    display: grid;
    min-height: 94px;
    padding: 17px 15px 17px 0;
    align-content: center;
    gap: 7px;
    border-right: 1px solid rgba(5, 19, 30, .14);
}

.order-page-facts div + div {
    padding-left: 15px;
}

.order-page-facts div:last-child {
    border-right: 0;
}

.order-page-facts b {
    color: var(--coral);
    font-family: Consolas, monospace;
    font-size: 10px;
}

.order-page-facts span {
    color: var(--night);
    font-size: 12px;
    font-weight: 850;
    line-height: 1.25;
}

.order-page .order-form-card {
    box-shadow: 0 34px 90px rgba(5, 19, 30, .18);
}

.quantity-server-controls {
    max-width: 120px;
}

.order-page-footer {
    padding-top: 0;
}

.order-page-footer .footer-bottom {
    margin-top: 0;
}

.order-footer-links {
    display: flex;
    gap: 22px;
}

.order-footer-links a {
    color: #a8c1cd;
    text-decoration: none;
}

.order-footer-links a:hover {
    color: #fff;
}

@media (max-width: 900px) {
    .order-page-intro {
        position: static;
    }

    .order-page-intro h1 {
        font-size: clamp(49px, 15vw, 67px);
    }
}

@media (max-width: 620px) {
    .order-page-header .header-inner {
        min-height: 78px;
    }

    .order-page-header .brand small {
        display: none;
    }

    .order-back-link {
        padding: 10px 12px;
        font-size: 10px;
    }

    .order-page-section {
        padding-top: 46px;
    }

    .order-page-facts {
        grid-template-columns: 1fr;
    }

    .order-page-facts div,
    .order-page-facts div + div {
        min-height: auto;
        padding: 14px 0;
        grid-template-columns: 34px 1fr;
        align-items: center;
        border-right: 0;
        border-bottom: 1px solid rgba(5, 19, 30, .12);
    }

    .order-page-facts div:last-child {
        border-bottom: 0;
    }

    .quantity-server-controls {
        grid-template-columns: 1fr;
    }

    .order-page-footer .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}
