:root {
--paper: #f4f0e8;
--paper-bright: #fbf9f4;
--paper-deep: #e6e0d5;
--ink: #18201c;
--ink-soft: #4e5953;
--forest: #0f5b43;
--forest-dark: #093a2b;
--mint: #85c7a8;
--signal: #e95d43;
--line: rgba(24, 32, 28, 0.18);
--line-light: rgba(255, 255, 255, 0.2);
--sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
--mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
--max: 1240px;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
background: var(--paper);
color: var(--ink);
font-family: var(--sans);
-webkit-font-smoothing: antialiased;
}
a {
color: inherit;
text-decoration: none;
}
button,
summary {
font: inherit;
}
button,
a {
-webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
outline: 3px solid rgba(233, 93, 67, 0.45);
outline-offset: 4px;
}
.skip-link {
position: fixed;
z-index: 200;
top: 10px;
left: 10px;
padding: 10px 14px;
background: var(--ink);
color: white;
transform: translateY(-150%);
}
.skip-link:focus {
transform: translateY(0);
}
.site-header {
position: fixed;
z-index: 25;
top: 18px;
right: 18px;
left: 18px;
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
max-width: var(--max);
height: 66px;
margin: 0 auto;
padding: 0 10px 0 18px;
border: 1px solid rgba(24, 32, 28, 0.1);
background: rgba(251, 249, 244, 0.94);
box-shadow: 0 8px 30px rgba(24, 32, 28, 0.06);
backdrop-filter: blur(14px);
transition:
box-shadow 180ms ease,
transform 180ms ease;
}
.site-header.is-scrolled {
box-shadow: 0 14px 36px rgba(24, 32, 28, 0.1);
}
.brand {
display: inline-flex;
align-items: center;
gap: 10px;
width: fit-content;
font-size: 18px;
font-weight: 780;
letter-spacing: -0.04em;
}
.brand img {
display: block;
}
.site-header nav {
display: flex;
align-items: center;
gap: 30px;
font-size: 13px;
font-weight: 660;
}
.site-header nav a {
position: relative;
}
.site-header nav a::after {
position: absolute;
right: 0;
bottom: -6px;
left: 0;
height: 1px;
background: var(--forest);
content: "";
transform: scaleX(0);
transform-origin: right;
transition: transform 160ms ease;
}
.site-header nav a:hover::after {
transform: scaleX(1);
transform-origin: left;
}
.header-cta {
justify-self: end;
padding: 14px 18px;
background: var(--ink);
color: white;
font-size: 13px;
font-weight: 720;
transition:
background 160ms ease,
transform 160ms ease;
}
.header-cta:hover {
background: var(--forest);
transform: translateY(-1px);
}
.hero {
position: relative;
display: grid;
grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
gap: clamp(44px, 6vw, 88px);
align-items: center;
min-height: 100svh;
padding: 130px max(28px, calc((100vw - var(--max)) / 2)) 70px;
overflow: hidden;
background: var(--paper-bright);
}
.hero-copy {
position: relative;
z-index: 2;
}
.eyebrow,
.overline {
margin: 0 0 22px;
color: var(--forest);
font-size: 12px;
font-weight: 700;
letter-spacing: 0.065em;
text-transform: uppercase;
}
.eyebrow span {
padding-bottom: 6px;
border-bottom: 1px solid currentColor;
}
h1,
h2,
h3,
p {
margin-top: 0;
}
h1 {
max-width: 760px;
margin-bottom: 18px;
font-size: clamp(48px, 4.45vw, 70px);
font-weight: 760;
letter-spacing: -0.06em;
line-height: 0.98;
}
.hero-word {
white-space: nowrap;
}
h1 em {
color: var(--forest);
font-style: normal;
font-weight: 470;
}
.hero-promise {
margin-bottom: 18px;
color: var(--forest);
font-size: clamp(18px, 1.7vw, 23px);
font-weight: 720;
letter-spacing: -0.025em;
}
.hero-lead {
max-width: 610px;
margin-bottom: 30px;
color: var(--ink-soft);
font-size: clamp(17px, 1.5vw, 20px);
line-height: 1.58;
}
.hero-actions {
display: flex;
align-items: center;
gap: 28px;
margin-bottom: 18px;
}
.button {
display: inline-flex;
align-items: center;
justify-content: space-between;
gap: 28px;
min-height: 56px;
padding: 0 20px 0 24px;
font-size: 14px;
font-weight: 760;
transition:
background 160ms ease,
color 160ms ease,
transform 160ms ease;
}
.button svg {
width: 21px;
height: 21px;
fill: none;
stroke: currentColor;
stroke-width: 1.8;
}
.button--dark {
min-width: 250px;
background: var(--ink);
color: white;
}
.button--dark:hover {
background: var(--forest);
transform: translateY(-2px);
}
.text-link {
display: inline-flex;
gap: 10px;
align-items: center;
padding: 7px 0;
border-bottom: 1px solid var(--line);
font-size: 13px;
font-weight: 700;
}
.text-link span {
color: var(--signal);
}
.trust-line {
display: flex;
flex-wrap: wrap;
gap: 10px 22px;
margin: 0;
padding: 0;
color: var(--ink-soft);
font-size: 12px;
font-weight: 620;
list-style: none;
}
.trust-line li::before {
margin-right: 7px;
color: var(--forest);
content: "✓";
}
.store-teaser {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
gap: 18px;
align-items: center;
max-width: 610px;
margin: 0 0 28px;
padding: 14px 16px;
border: 1px solid rgba(15, 91, 67, 0.18);
background:
linear-gradient(135deg, rgba(15, 91, 67, 0.08), rgba(133, 199, 168, 0.1)),
rgba(255, 255, 255, 0.52);
box-shadow: 0 18px 45px rgba(24, 32, 28, 0.07);
}
.store-teaser--live {
border-color: rgba(15, 91, 67, 0.26);
background:
linear-gradient(135deg, rgba(15, 91, 67, 0.1), rgba(133, 199, 168, 0.16)),
rgba(255, 255, 255, 0.68);
}
.store-teaser-copy {
display: grid;
gap: 5px;
}
.store-pill {
width: fit-content;
padding: 5px 8px;
background: var(--forest);
color: white;
font-size: 10px;
font-weight: 800;
letter-spacing: 0.075em;
text-transform: uppercase;
}
.store-teaser strong {
font-size: 15px;
letter-spacing: -0.02em;
}
.store-teaser small {
max-width: 430px;
color: var(--ink-soft);
font-size: 12px;
line-height: 1.4;
}
.store-actions {
display: grid;
grid-template-columns: auto auto;
gap: 14px;
align-items: center;
}
.app-store-badge {
display: block;
line-height: 0;
}
.app-store-badge img {
display: block;
width: 150px;
height: auto;
}
.store-qr {
display: grid;
gap: 6px;
justify-items: center;
margin: 0;
padding: 10px;
background: white;
box-shadow: 0 0 0 1px rgba(24, 32, 28, 0.1);
}
.store-qr img {
display: block;
width: 82px;
height: 82px;
}
.store-qr figcaption {
max-width: 86px;
color: var(--ink-soft);
font-size: 9px;
font-weight: 650;
line-height: 1.2;
text-align: center;
}
.store-placeholder {
display: grid;
justify-items: center;
min-width: 132px;
padding: 12px 14px;
border: 1px dashed rgba(15, 91, 67, 0.34);
background: rgba(251, 249, 244, 0.82);
color: var(--forest-dark);
text-align: center;
}
.store-placeholder span {
font-size: 12px;
font-weight: 800;
letter-spacing: 0.03em;
}
.store-placeholder small {
max-width: 96px;
margin-top: 4px;
font-size: 9px;
line-height: 1.25;
}
.capture-stage {
position: relative;
min-height: 640px;
}
.capture-meta {
position: absolute;
z-index: 4;
top: 18px;
right: 18px;
left: 18px;
display: flex;
justify-content: space-between;
padding: 12px 14px;
background: rgba(251, 249, 244, 0.9);
box-shadow: 0 8px 24px rgba(24, 32, 28, 0.12);
backdrop-filter: blur(10px);
font-size: 10px;
font-weight: 720;
letter-spacing: 0.04em;
text-transform: uppercase;
}
.local-state {
display: flex;
align-items: center;
gap: 6px;
color: var(--forest);
}
.local-state i {
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--mint);
box-shadow: 0 0 0 3px rgba(133, 199, 168, 0.2);
}
.handover-photo {
position: absolute;
inset: 0 0 74px;
margin: 0;
overflow: hidden;
background: #d8d2c8;
box-shadow: 0 26px 60px rgba(24, 32, 28, 0.14);
}
.handover-photo::after {
position: absolute;
inset: 0;
background:
linear-gradient(180deg, transparent 50%, rgba(17, 42, 33, 0.24)),
linear-gradient(90deg, transparent 62%, rgba(24, 32, 28, 0.08));
content: "";
pointer-events: none;
}
.handover-photo img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: 48% center;
filter: saturate(0.94) contrast(0.99);
}
.capture-console {
position: absolute;
z-index: 5;
right: -22px;
bottom: 0;
width: min(86%, 450px);
background: var(--ink);
color: white;
box-shadow: 0 22px 52px rgba(24, 32, 28, 0.28);
}
.console-top {
display: grid;
grid-template-columns: auto 1fr auto;
gap: 12px;
align-items: center;
padding: 13px 16px;
border-bottom: 1px solid var(--line-light);
font-family: var(--mono);
font-size: 8px;
text-transform: uppercase;
}
.console-top > span:first-child {
color: rgba(255, 255, 255, 0.48);
}
.console-top strong {
color: var(--mint);
font-size: 10px;
}
.counter {
color: rgba(255, 255, 255, 0.48);
}
.spoken-line {
display: grid;
grid-template-columns: auto 1fr;
gap: 9px;
min-height: 82px;
padding: 18px 18px 10px;
}
.quote-mark {
color: var(--mint);
font-size: 34px;
line-height: 0.9;
}
.spoken-line p {
margin: 0;
font-size: 15px;
font-weight: 590;
line-height: 1.45;
}
.wave {
display: flex;
align-items: center;
gap: 4px;
height: 20px;
padding: 0 18px 11px 42px;
}
.wave i {
width: 2px;
height: 6px;
background: var(--mint);
transition: height 120ms ease;
}
.capture-console.is-playing .wave i {
animation: pulse-wave 520ms ease-in-out infinite alternate;
}
.capture-console.is-playing .wave i:nth-child(2n) {
animation-duration: 380ms;
}
.capture-console.is-playing .wave i:nth-child(3n) {
animation-duration: 700ms;
}
@keyframes pulse-wave {
to {
height: 22px;
}
}
.structured {
padding: 13px 16px;
border-top: 1px solid var(--line-light);
border-bottom: 1px solid var(--line-light);
}
.structured > span {
display: block;
margin-bottom: 6px;
color: rgba(255, 255, 255, 0.42);
font-family: var(--mono);
font-size: 8px;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.structured p {
display: flex;
flex-wrap: wrap;
gap: 5px;
align-items: center;
margin: 0;
font-size: 12px;
}
.structured p > i {
color: rgba(255, 255, 255, 0.32);
font-style: normal;
}
.status-result {
display: flex;
align-items: center;
gap: 6px;
color: #ff9d88;
}
.status-result b {
width: 7px;
height: 7px;
border-radius: 50%;
background: var(--signal);
}
.record-button {
display: flex;
align-items: center;
justify-content: center;
gap: 9px;
width: calc(100% - 28px);
min-height: 44px;
margin: 12px 14px 16px;
border: 0;
background: var(--mint);
color: var(--ink);
cursor: pointer;
font-size: 12px;
font-weight: 760;
}
.record-button:hover {
background: #9bd5b8;
}
.console-tail {
display: none;
}
.record-dot {
width: 9px;
height: 9px;
border-radius: 50%;
background: var(--signal);
}
.capture-console.is-playing .record-dot {
animation: recording-dot 900ms ease infinite;
}
@keyframes recording-dot {
50% {
box-shadow: 0 0 0 6px rgba(233, 93, 67, 0.2);
}
}
.field-strip {
padding: 0 max(28px, calc((100vw - var(--max)) / 2));
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
background: white;
}
.field-strip-track {
display: grid;
grid-template-columns: repeat(4, 1fr);
max-width: var(--max);
margin: 0 auto;
}
.trust-badge {
display: grid;
grid-template-columns: auto 1fr;
gap: 13px;
align-items: center;
min-height: 106px;
padding: 20px 18px;
border-right: 1px solid var(--line);
}
.trust-badge:first-child {
border-left: 1px solid var(--line);
}
.trust-badge > span:last-child {
display: flex;
flex-direction: column;
gap: 4px;
}
.trust-badge strong {
font-size: 13px;
letter-spacing: -0.02em;
}
.trust-badge small {
color: var(--ink-soft);
font-size: 11px;
line-height: 1.35;
}
.trust-icon {
display: grid;
width: 40px;
height: 40px;
border-radius: 50%;
background: #e8f2ed;
place-items: center;
}
.trust-icon svg {
width: 24px;
height: 24px;
fill: none;
stroke: var(--forest);
stroke-linecap: round;
stroke-linejoin: round;
stroke-width: 1.6;
}
.germany-mark {
display: grid;
width: 40px;
height: 28px;
overflow: hidden;
box-shadow: 0 0 0 1px rgba(24, 32, 28, 0.12);
}
.germany-mark i:nth-child(1) {
background: #1d211f;
}
.germany-mark i:nth-child(2) {
background: #c84135;
}
.germany-mark i:nth-child(3) {
background: #e6b84c;
}
.section {
max-width: var(--max);
margin: 0 auto;
padding: 130px 28px;
}
.section-index {
display: flex;
gap: 14px;
align-items: center;
margin-bottom: 30px;
font-size: 10px;
font-weight: 720;
letter-spacing: 0.1em;
}
.section-index span {
display: inline-flex;
gap: 10px;
align-items: center;
color: var(--forest);
font-size: 12px;
}
.section-index span::after {
width: 28px;
height: 1px;
background: currentColor;
content: "";
}
.section-index p {
margin: 0;
}
.manifest {
display: grid;
grid-template-columns: 0.55fr 1.2fr;
gap: 70px 90px;
}
.manifest .section-index {
grid-row: 1 / span 2;
align-self: start;
}
.manifest-copy h2,
.walkthrough-head h2,
.roles-heading h2,
.faq-head h2,
.document-copy h2 {
margin-bottom: 24px;
font-size: clamp(38px, 4.5vw, 68px);
font-weight: 700;
letter-spacing: -0.065em;
line-height: 1;
}
.manifest-copy > p:last-child,
.walkthrough-head > p,
.document-copy > p {
max-width: 720px;
color: var(--ink-soft);
font-size: 17px;
line-height: 1.7;
}
.comparison-ledger {
grid-column: 2;
border-top: 1px solid var(--ink);
}
.ledger-head,
.ledger-row,
.ledger-total {
display: grid;
grid-template-columns: 1fr 1fr;
}
.ledger-head {
color: var(--ink-soft);
font-size: 10px;
font-weight: 720;
letter-spacing: 0.07em;
}
.ledger-head span,
.ledger-row span,
.ledger-row strong,
.ledger-total span,
.ledger-total strong {
padding: 17px 10px;
border-bottom: 1px solid var(--line);
}
.ledger-row span {
color: var(--ink-soft);
font-size: 14px;
}
.ledger-row strong {
font-size: 14px;
}
.ledger-row strong::before {
margin-right: 9px;
color: var(--forest);
content: "✓";
}
.ledger-total {
background: #e7eee9;
color: var(--ink);
font-size: 14px;
font-weight: 720;
}
.ledger-total > * {
border-color: transparent;
}
.proof-section {
display: grid;
grid-template-columns: 0.7fr 1.3fr;
gap: 70px;
max-width: none;
padding-right: max(28px, calc((100vw - var(--max)) / 2));
padding-left: max(28px, calc((100vw - var(--max)) / 2));
background: var(--forest-dark);
color: white;
}
.section-index--light span {
color: var(--mint);
}
.proof-intro h2 {
margin-bottom: 24px;
font-size: clamp(42px, 5vw, 72px);
font-weight: 650;
letter-spacing: -0.065em;
line-height: 0.98;
}
.proof-intro > p {
color: rgba(255, 255, 255, 0.67);
font-size: 16px;
line-height: 1.7;
}
.evidence-board {
display: grid;
grid-template-columns: 1fr 0.85fr;
min-height: 520px;
border: 1px solid rgba(255, 255, 255, 0.22);
}
.evidence-photo {
position: relative;
min-height: 500px;
overflow: hidden;
background: #bdb7ad;
}
.evidence-photo::after {
position: absolute;
inset: 0;
background: linear-gradient(180deg, transparent 58%, rgba(24, 32, 28, 0.28));
content: "";
pointer-events: none;
}
.evidence-photo-image {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: 50% center;
filter: saturate(0.8) contrast(1.02);
}
.photo-id {
position: absolute;
z-index: 3;
bottom: 16px;
left: 16px;
padding: 7px 9px;
background: var(--ink);
color: white;
font-family: var(--mono);
font-size: 8px;
letter-spacing: 0.08em;
}
.evidence-ring {
position: absolute;
z-index: 4;
right: 4%;
bottom: 24%;
width: 132px;
height: 92px;
border: 3px solid var(--signal);
border-radius: 50%;
transform: rotate(-12deg);
}
.evidence-arrow {
position: absolute;
z-index: 4;
right: 1%;
bottom: 43%;
width: 70px;
height: 2px;
background: var(--signal);
transform: rotate(55deg);
transform-origin: right;
}
.evidence-arrow::after {
position: absolute;
top: -4px;
left: -1px;
width: 8px;
height: 8px;
border-bottom: 2px solid var(--signal);
border-left: 2px solid var(--signal);
content: "";
transform: rotate(45deg);
}
.evidence-copy {
display: flex;
flex-direction: column;
padding: 34px 30px;
background: #113d30;
}
.evidence-status {
display: flex;
gap: 8px;
align-items: center;
margin-bottom: 42px;
color: #ff9d88;
font-family: var(--mono);
font-size: 10px;
font-weight: 650;
letter-spacing: 0.08em;
}
.evidence-status i {
width: 7px;
height: 7px;
border-radius: 50%;
background: var(--signal);
}
.evidence-copy h3 {
margin-bottom: 9px;
font-size: 28px;
letter-spacing: -0.04em;
}
.evidence-copy > p {
color: rgba(255, 255, 255, 0.65);
font-size: 14px;
line-height: 1.6;
}
.original-quote {
margin-top: auto;
padding-top: 26px;
border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.original-quote span {
color: var(--mint);
font-family: var(--mono);
font-size: 10px;
font-weight: 650;
letter-spacing: 0.08em;
}
.original-quote blockquote {
margin: 12px 0 28px;
font-size: 15px;
font-style: italic;
line-height: 1.55;
}
.evidence-data {
display: flex;
gap: 16px;
justify-content: space-between;
padding-top: 16px;
border-top: 1px solid rgba(255, 255, 255, 0.18);
color: rgba(255, 255, 255, 0.82);
font-family: var(--mono);
font-size: 12px;
font-weight: 650;
letter-spacing: 0.04em;
text-transform: uppercase;
}
.walkthrough-head {
display: grid;
grid-template-columns: 0.45fr 1.3fr;
gap: 40px;
margin-bottom: 80px;
}
.walkthrough-head .section-index {
grid-row: 1 / span 2;
}
.walkthrough-head h2,
.walkthrough-head > p {
grid-column: 2;
}
.walkthrough-layout {
display: grid;
grid-template-columns: 0.72fr 1.28fr;
gap: 60px;
align-items: stretch;
}
.step-list {
border-top: 1px solid var(--ink);
}
.step-button {
display: grid;
grid-template-columns: 42px 1fr;
gap: 14px;
align-items: center;
width: 100%;
min-height: 84px;
padding: 14px 4px;
border: 0;
border-bottom: 1px solid var(--line);
background: transparent;
color: var(--ink);
text-align: left;
cursor: pointer;
transition:
padding 160ms ease,
color 160ms ease;
}
.step-button > span {
font-family: var(--mono);
font-size: 10px;
}
.step-button div {
display: flex;
flex-direction: column;
gap: 5px;
}
.step-button strong {
font-size: 15px;
}
.step-button small {
color: var(--ink-soft);
font-size: 12px;
}
.step-button.is-active {
padding-left: 14px;
background: var(--forest);
color: white;
}
.step-button.is-active small {
color: rgba(255, 255, 255, 0.62);
}
.product-window {
min-height: 570px;
padding: 12px;
background: var(--paper-deep);
}
.product-bar {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
height: 42px;
padding: 0 10px;
background: var(--ink);
color: white;
font-family: var(--mono);
font-size: 8px;
letter-spacing: 0.08em;
}
.product-bar > div {
display: flex;
gap: 5px;
}
.product-bar i {
width: 6px;
height: 6px;
border: 1px solid rgba(255, 255, 255, 0.5);
border-radius: 50%;
}
.product-bar > span:last-child {
justify-self: end;
color: var(--mint);
}
.product-content {
display: flex;
flex-direction: column;
min-height: 504px;
padding: 34px;
background: #111713;
color: white;
}
.product-progress {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 5px;
margin-bottom: 54px;
}
.product-progress i {
height: 3px;
background: rgba(255, 255, 255, 0.15);
}
.product-progress i.is-done {
background: var(--mint);
}
.product-label {
margin-bottom: 12px;
color: var(--mint);
font-family: var(--mono);
font-size: 9px;
letter-spacing: 0.1em;
}
.product-content h3 {
margin-bottom: 10px;
font-size: 32px;
letter-spacing: -0.045em;
}
.product-content > p:not(.product-label) {
max-width: 520px;
color: rgba(255, 255, 255, 0.58);
font-size: 14px;
line-height: 1.6;
}
.product-visual {
display: flex;
gap: 24px;
align-items: center;
justify-content: center;
min-height: 180px;
margin: 18px 0;
border: 1px solid rgba(255, 255, 255, 0.13);
background: rgba(255, 255, 255, 0.025);
}
.mic-circle {
display: grid;
width: 80px;
height: 80px;
border-radius: 50%;
background: var(--mint);
place-items: center;
}
.mic-circle svg {
width: 32px;
height: 32px;
fill: none;
stroke: var(--ink);
stroke-linecap: round;
stroke-width: 1.6;
}
.mini-wave {
display: flex;
gap: 6px;
align-items: center;
height: 60px;
}
.mini-wave i {
width: 3px;
height: 16px;
background: var(--mint);
}
.mini-wave i:nth-child(2),
.mini-wave i:nth-child(4) {
height: 34px;
}
.mini-wave i:nth-child(3) {
height: 52px;
}
.meter-card {
display: flex;
align-items: baseline;
gap: 10px;
padding: 18px 22px;
border: 1px solid rgba(255, 255, 255, 0.26);
background: #080b09;
box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.04);
}
.meter-card span {
font-family: var(--mono);
font-size: clamp(24px, 4vw, 42px);
letter-spacing: 0.12em;
}
.meter-card small {
color: var(--mint);
font-family: var(--mono);
font-size: 9px;
}
.focus-corners {
position: absolute;
width: min(340px, 70%);
height: 110px;
border: solid var(--signal);
border-width: 2px 0;
pointer-events: none;
}
.focus-corners::before,
.focus-corners::after {
position: absolute;
top: -2px;
bottom: -2px;
width: 22px;
border: solid var(--signal);
content: "";
}
.focus-corners::before {
left: 0;
border-width: 2px 0 2px 2px;
}
.focus-corners::after {
right: 0;
border-width: 2px 2px 2px 0;
}
.key-count {
display: grid;
grid-template-columns: 46px 90px 46px;
gap: 8px;
align-items: center;
}
.key-count button {
height: 46px;
border: 1px solid rgba(255, 255, 255, 0.2);
background: transparent;
color: white;
font-size: 24px;
}
.key-count strong {
text-align: center;
font-family: var(--mono);
font-size: 58px;
font-weight: 500;
}
.key-label {
padding: 8px 10px;
background: rgba(133, 199, 168, 0.14);
color: var(--mint);
font-family: var(--mono);
font-size: 8px;
letter-spacing: 0.08em;
}
.signature-line {
width: min(420px, 86%);
padding: 18px 18px 12px;
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.signature-line svg {
display: block;
width: 100%;
height: 74px;
margin-bottom: 8px;
fill: none;
stroke: var(--mint);
stroke-linecap: round;
stroke-width: 2;
}
.signature-line span {
color: rgba(255, 255, 255, 0.5);
font-family: var(--mono);
font-size: 8px;
}
.document-check {
display: flex;
gap: 18px;
align-items: center;
}
.document-check > span {
display: grid;
width: 66px;
height: 66px;
border-radius: 50%;
background: var(--mint);
color: var(--ink);
font-size: 30px;
place-items: center;
}
.document-check div {
display: flex;
flex-direction: column;
gap: 5px;
}
.document-check strong {
font-size: 17px;
}
.document-check small {
color: rgba(255, 255, 255, 0.5);
font-size: 11px;
}
.pdf-chip {
padding: 9px 11px;
border: 1px solid rgba(255, 255, 255, 0.2);
color: var(--mint);
font-family: var(--mono);
font-size: 8px;
letter-spacing: 0.08em;
}
.product-bottom {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: auto;
font-family: var(--mono);
font-size: 9px;
}
.product-bottom > span::before {
margin-right: 7px;
color: var(--mint);
content: "✓";
}
.product-bottom button {
min-height: 42px;
padding: 0 18px;
border: 0;
background: var(--mint);
color: var(--ink);
font-weight: 750;
}
.offline-section {
display: grid;
grid-template-columns: minmax(320px, 0.85fr) 1.15fr;
gap: 80px;
align-items: center;
padding: 110px max(28px, calc((100vw - var(--max)) / 2));
background: var(--ink);
color: white;
}
.offline-photo {
position: relative;
min-height: 420px;
margin: 0;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.15);
background: #2a302d;
}
.offline-photo::after {
position: absolute;
inset: 0;
background:
linear-gradient(180deg, transparent 45%, rgba(13, 19, 16, 0.72) 100%),
linear-gradient(90deg, rgba(13, 19, 16, 0.04), rgba(13, 19, 16, 0.22));
content: "";
pointer-events: none;
}
.offline-photo img {
display: block;
width: 100%;
height: 420px;
object-fit: cover;
object-position: 48% center;
filter: saturate(0.78) contrast(1.04);
}
.offline-photo figcaption {
position: absolute;
z-index: 1;
right: 18px;
bottom: 18px;
left: 18px;
display: grid;
grid-template-columns: 1fr auto;
gap: 9px 18px;
align-items: center;
padding: 16px 18px;
border: 1px solid rgba(255, 255, 255, 0.18);
background: rgba(18, 27, 23, 0.84);
backdrop-filter: blur(10px);
}
.offline-photo figcaption > span {
grid-column: 1 / -1;
color: var(--mint);
font-family: var(--mono);
font-size: 8px;
letter-spacing: 0.14em;
}
.offline-photo figcaption strong {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
letter-spacing: -0.02em;
}
.offline-photo figcaption strong i {
width: 7px;
height: 7px;
border-radius: 50%;
background: var(--mint);
box-shadow: 0 0 0 4px rgba(133, 199, 168, 0.15);
}
.offline-photo figcaption small {
color: rgba(255, 255, 255, 0.58);
font-family: var(--mono);
font-size: 8px;
letter-spacing: 0.06em;
text-transform: uppercase;
}
.offline-copy .overline {
color: var(--mint);
}
.offline-copy h2 {
margin-bottom: 26px;
font-size: clamp(46px, 5vw, 76px);
letter-spacing: -0.07em;
line-height: 0.95;
}
.offline-copy > p {
max-width: 650px;
color: rgba(255, 255, 255, 0.65);
font-size: 17px;
line-height: 1.7;
}
.offline-copy ul {
display: grid;
gap: 12px;
margin: 34px 0 0;
padding: 0;
list-style: none;
font-size: 13px;
}
.offline-copy li {
display: flex;
gap: 10px;
align-items: center;
padding-bottom: 12px;
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.offline-copy li span {
color: var(--mint);
}
.roles-heading {
display: grid;
grid-template-columns: 0.45fr 1.3fr;
gap: 40px;
margin-bottom: 64px;
}
.roles-heading .section-index {
grid-row: 1;
}
.roles-heading h2 {
grid-column: 2;
}
.role-lines {
border-top: 2px solid var(--ink);
}
.role-lines article {
display: grid;
grid-template-columns: 70px 0.7fr 1.2fr 0.9fr;
gap: 22px;
align-items: center;
min-height: 135px;
border-bottom: 1px solid var(--line);
}
.role-number {
font-family: var(--mono);
font-size: 10px;
}
.role-lines h3 {
margin: 0;
font-size: 25px;
letter-spacing: -0.045em;
}
.role-lines p {
margin: 0;
color: var(--ink-soft);
font-size: 14px;
line-height: 1.55;
}
.role-mark {
justify-self: end;
color: var(--forest);
font-family: var(--mono);
font-size: 8px;
font-weight: 700;
letter-spacing: 0.08em;
text-align: right;
}
.document-section {
display: grid;
grid-template-columns: 0.85fr 1.15fr;
gap: 90px;
align-items: center;
max-width: none;
padding-right: max(28px, calc((100vw - var(--max)) / 2));
padding-left: max(28px, calc((100vw - var(--max)) / 2));
background: #dcd6ca;
}
.text-link--dark {
margin-top: 16px;
}
.paper-stack {
position: relative;
min-width: 0;
max-width: 570px;
margin: 0 auto;
}
.paper {
position: relative;
z-index: 2;
min-height: 700px;
padding: 44px;
background: white;
box-shadow: 0 25px 60px rgba(24, 32, 28, 0.14);
transform: rotate(1.2deg);
}
.paper--back {
position: absolute;
z-index: 1;
inset: 18px -20px -14px 24px;
min-height: auto;
background: #eeeae2;
transform: rotate(-2.2deg);
}
.paper header {
display: grid;
grid-template-columns: auto 1fr;
gap: 10px;
align-items: center;
padding-bottom: 24px;
border-bottom: 3px solid var(--ink);
}
.paper header img {
width: 28px;
height: 28px;
}
.paper header > span {
font-weight: 780;
letter-spacing: -0.04em;
}
.paper header small {
grid-column: 1 / -1;
margin-top: 20px;
font-family: var(--mono);
font-size: 10px;
font-weight: 650;
letter-spacing: 0.08em;
}
.paper-address {
display: flex;
flex-direction: column;
gap: 4px;
padding: 28px 0;
border-bottom: 1px solid #ddd;
}
.paper-address strong {
font-size: 24px;
letter-spacing: -0.04em;
}
.paper-address span {
color: #666;
font-size: 12px;
}
.paper-section {
padding: 26px 0 20px;
border-bottom: 1px solid #ddd;
}
.paper-section > span {
display: block;
margin-bottom: 20px;
color: #4f5954;
font-family: var(--mono);
font-size: 11px;
font-weight: 650;
letter-spacing: 0.07em;
}
.paper-section div {
display: flex;
align-items: center;
justify-content: space-between;
}
.paper-section strong {
font-size: 15px;
}
.paper-section p {
margin: 10px 0 0;
color: #424a46;
font-size: 12px;
line-height: 1.5;
}
.tag {
padding: 5px 7px;
background: #e6eee9;
color: var(--forest);
font-family: var(--mono);
font-size: 7px;
font-style: normal;
text-transform: uppercase;
}
.tag--red {
background: #f9dfda;
color: #a83b28;
}
.paper-photos {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 8px;
padding: 16px 0 0;
}
.paper-photos figure {
position: relative;
height: 110px;
margin: 0;
overflow: hidden;
background: #c9c4bc;
}
.paper-photos img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
filter: saturate(0.72) contrast(1.04);
}
.paper-photos figure:first-child img {
object-position: 50% center;
}
.paper-photos figure:last-child img {
object-position: 56% center;
}
.paper-photos figcaption {
position: absolute;
right: 6px;
bottom: 6px;
left: 6px;
padding: 5px 6px;
background: rgba(18, 27, 23, 0.78);
color: rgba(255, 255, 255, 0.9);
font-family: var(--mono);
font-size: 6px;
letter-spacing: 0.08em;
}
.paper-section--small {
margin-top: 8px;
}
.paper footer {
position: absolute;
right: 44px;
bottom: 30px;
left: 44px;
display: flex;
justify-content: space-between;
padding-top: 12px;
border-top: 1px solid #ddd;
color: #999;
font-family: var(--mono);
font-size: 7px;
}
.pricing-section {
background: #eee9df;
}
.pricing-heading {
display: grid;
grid-template-columns: 0.48fr 1.52fr;
gap: 68px;
align-items: start;
margin-bottom: 58px;
}
.pricing-heading .section-index {
grid-template-columns: 80px 1fr;
}
.pricing-heading > div:last-child {
max-width: 850px;
}
.pricing-heading h2 {
margin: 0 0 22px;
font-size: clamp(46px, 5.2vw, 76px);
letter-spacing: -0.065em;
line-height: 0.98;
}
.pricing-heading > div:last-child > p:last-child {
max-width: 720px;
color: var(--ink-soft);
font-size: 16px;
line-height: 1.7;
}
.price-board {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
border: 1px solid #c9c3b7;
background: #c9c3b7;
gap: 1px;
}
.price-plan {
position: relative;
display: flex;
flex-direction: column;
min-width: 0;
min-height: 600px;
padding: 30px;
background: var(--paper-bright);
}
.price-plan--featured {
z-index: 2;
margin: -13px 0;
padding-top: 43px;
border: 2px solid var(--forest);
background: #f8f5ee;
box-shadow: 0 24px 60px rgba(24, 32, 28, 0.13);
}
.price-plan--pro {
background: var(--ink);
color: white;
}
.price-ribbon {
position: absolute;
top: 0;
right: 0;
left: 0;
height: 28px;
padding-top: 7px;
background: var(--forest);
color: white;
font-family: var(--mono);
font-size: 8px;
letter-spacing: 0.08em;
text-align: center;
text-transform: uppercase;
}
.price-code {
display: block;
margin-bottom: 28px;
color: var(--forest);
font-family: var(--mono);
font-size: 9px;
font-weight: 680;
letter-spacing: 0.08em;
}
.price-plan--pro .price-code {
color: var(--mint);
}
.price-plan h3 {
margin: 0 0 18px;
font-size: 25px;
letter-spacing: -0.04em;
}
.price-amount {
display: flex;
flex-direction: column;
gap: 5px;
margin: 0 0 22px;
}
.price-amount strong {
font-size: clamp(45px, 4vw, 61px);
font-weight: 700;
letter-spacing: -0.065em;
line-height: 0.9;
}
.price-amount span,
.annual-price {
color: var(--ink-soft);
font-size: 11px;
}
.price-plan--pro .price-amount span,
.price-plan--pro .annual-price {
color: rgba(255, 255, 255, 0.56);
}
.annual-price {
margin: -14px 0 19px;
font-family: var(--mono);
font-size: 9px;
text-transform: uppercase;
}
.price-plan-top > p:last-child {
min-height: 72px;
margin: 0;
color: var(--ink-soft);
font-size: 13px;
line-height: 1.55;
}
.price-plan--pro .price-plan-top > p:last-child {
color: rgba(255, 255, 255, 0.62);
}
.package-line {
display: grid;
grid-template-columns: 1fr auto;
gap: 3px 12px;
margin: 6px 0 20px;
padding: 13px 0;
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
font-family: var(--mono);
}
.package-line span {
font-size: 9px;
text-transform: uppercase;
}
.package-line strong {
font-size: 15px;
}
.package-line small {
grid-column: 1 / -1;
color: var(--ink-soft);
font-size: 8px;
}
.price-plan ul {
display: flex;
flex-direction: column;
gap: 12px;
margin: 24px 0 30px;
padding: 0;
list-style: none;
}
.price-plan li {
position: relative;
padding-left: 20px;
color: var(--ink-soft);
font-size: 12px;
line-height: 1.45;
}
.price-plan li::before {
position: absolute;
top: 0;
left: 0;
color: var(--forest);
content: "✓";
font-weight: 800;
}
.price-plan--pro li {
color: rgba(255, 255, 255, 0.7);
}
.price-plan--pro li::before {
color: var(--mint);
}
.price-button {
display: flex;
align-items: center;
justify-content: space-between;
min-height: 54px;
margin-top: auto;
padding: 0 17px;
border: 1px solid var(--ink);
color: var(--ink);
font-size: 12px;
font-weight: 740;
}
.price-button:hover {
background: rgba(24, 32, 28, 0.05);
}
.price-button--dark {
background: var(--ink);
color: white;
}
.price-button--dark:hover {
background: var(--forest-dark);
}
.price-button--light {
border-color: var(--mint);
background: var(--mint);
color: var(--ink);
}
.price-button--light:hover {
background: white;
}
.pricing-notes {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1px;
margin-top: 36px;
background: #c9c3b7;
border: 1px solid #c9c3b7;
}
.pricing-notes p {
margin: 0;
padding: 20px 22px;
background: rgba(255, 255, 255, 0.36);
color: var(--ink-soft);
font-size: 12px;
line-height: 1.55;
}
.pricing-notes strong {
display: block;
margin-bottom: 4px;
color: var(--ink);
}
.pricing-fineprint {
margin: 18px 0 0;
color: #636a66;
font-family: var(--mono);
font-size: 8px;
line-height: 1.6;
}
.faq {
display: grid;
grid-template-columns: 0.72fr 1.28fr;
gap: 80px;
}
.faq-head h2 {
font-size: clamp(40px, 4vw, 62px);
}
.faq-list {
border-top: 2px solid var(--ink);
}
.faq details {
border-bottom: 1px solid var(--line);
}
.faq summary {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
min-height: 82px;
cursor: pointer;
font-size: 15px;
font-weight: 690;
list-style: none;
}
.faq summary::-webkit-details-marker {
display: none;
}
.faq summary span {
display: grid;
width: 30px;
height: 30px;
border: 1px solid var(--line);
place-items: center;
transition: transform 160ms ease;
}
.faq details[open] summary span {
transform: rotate(45deg);
}
.faq details p {
max-width: 680px;
margin: -8px 56px 26px 0;
color: var(--ink-soft);
font-size: 14px;
line-height: 1.65;
}
.closing-cta {
position: relative;
min-height: 680px;
padding: 120px max(28px, calc((100vw - var(--max)) / 2));
overflow: hidden;
background:
linear-gradient(110deg, var(--forest-dark), var(--forest) 72%);
color: white;
}
.closing-copy {
position: relative;
z-index: 2;
max-width: 820px;
}
.closing-copy > img {
filter: brightness(0) invert(1);
margin-bottom: 36px;
}
.closing-copy .overline {
color: var(--mint);
}
.closing-copy h2 {
margin-bottom: 26px;
font-size: clamp(58px, 7vw, 104px);
font-weight: 680;
letter-spacing: -0.075em;
line-height: 0.9;
}
.closing-copy > p:not(.overline) {
margin-bottom: 32px;
color: rgba(255, 255, 255, 0.7);
font-size: 18px;
}
.closing-store-note {
display: grid;
gap: 5px;
max-width: 470px;
margin: -8px 0 26px;
padding: 16px 18px;
border-left: 4px solid var(--mint);
background: rgba(255, 255, 255, 0.08);
color: white;
}
.closing-store-note strong {
font-size: 15px;
}
.closing-store-note span {
color: rgba(255, 255, 255, 0.74);
font-size: 13px;
line-height: 1.45;
}
.button--light {
min-width: 260px;
background: var(--paper-bright);
color: var(--ink);
}
.button--light:hover {
background: white;
transform: translateY(-2px);
}
.site-footer {
display: grid;
grid-template-columns: 1fr 1.4fr 1.2fr;
gap: 30px;
align-items: center;
min-height: 150px;
padding: 30px max(28px, calc((100vw - var(--max)) / 2));
background: var(--ink);
color: white;
}
.site-footer p {
margin: 0;
color: rgba(255, 255, 255, 0.5);
font-size: 12px;
}
.site-footer > div {
display: flex;
gap: 20px;
align-items: center;
justify-content: flex-end;
color: rgba(255, 255, 255, 0.48);
font-family: var(--mono);
font-size: 8px;
text-align: right;
}
.site-footer > div a {
color: white;
white-space: nowrap;
}
.platform-legal {
grid-column: 1 / -1;
margin-top: -22px;
color: rgba(255, 255, 255, 0.34);
font-size: 7px;
} .legal-page {
background:
linear-gradient(rgba(24, 32, 28, 0.045) 1px, transparent 1px),
linear-gradient(90deg, rgba(24, 32, 28, 0.045) 1px, transparent 1px),
var(--paper-bright);
background-size: 64px 64px;
}
.legal-header {
display: flex;
align-items: center;
justify-content: space-between;
max-width: var(--max);
min-height: 86px;
margin: 0 auto;
padding: 0 28px;
border-bottom: 1px solid var(--line);
background: rgba(251, 249, 244, 0.94);
}
.legal-back {
display: inline-flex;
gap: 8px;
align-items: center;
font-size: 13px;
font-weight: 720;
}
.legal-back span {
color: var(--forest);
}
.legal-main {
display: grid;
grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
gap: clamp(48px, 8vw, 120px);
max-width: 1120px;
margin: 0 auto;
padding: 100px 28px 120px;
}
.legal-intro {
position: sticky;
top: 48px;
align-self: start;
min-width: 0;
}
.legal-intro h1 {
margin: 0 0 24px;
font-size: clamp(56px, 5.2vw, 74px);
letter-spacing: -0.075em;
line-height: 0.9;
}
.legal-intro > p:last-child {
max-width: 400px;
margin: 0;
color: var(--ink-soft);
font-size: 17px;
line-height: 1.7;
}
.legal-document {
min-width: 0;
border-top: 3px solid var(--ink);
background: var(--paper-bright);
}
.legal-document section {
padding: 30px 0 34px;
border-bottom: 1px solid var(--line);
}
.legal-document h2 {
margin: 0 0 16px;
font-size: 22px;
letter-spacing: -0.035em;
line-height: 1.2;
}
.legal-document p {
max-width: 760px;
margin: 0 0 14px;
color: var(--ink-soft);
font-size: 15px;
line-height: 1.75;
}
.legal-document p:last-child {
margin-bottom: 0;
}
.legal-document strong {
color: var(--ink);
}
.legal-document a {
color: var(--forest);
font-weight: 720;
overflow-wrap: anywhere;
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 3px;
}
.legal-document--privacy section {
scroll-margin-top: 30px;
}
.legal-footer {
display: flex;
align-items: center;
justify-content: space-between;
min-height: 110px;
padding: 28px max(28px, calc((100vw - var(--max)) / 2));
background: var(--ink);
color: white;
font-family: var(--mono);
font-size: 10px;
}
.legal-footer nav {
display: flex;
gap: 24px;
}
.legal-footer a[aria-current="page"] {
color: var(--mint);
}
.brand--footer img {
filter: brightness(0) invert(1);
}
.reveal {
opacity: 0;
transform: translateY(24px);
transition:
opacity 650ms ease,
transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal[data-delay="1"] {
transition-delay: 120ms;
}
.reveal.is-visible {
opacity: 1;
transform: translateY(0);
}
@media (max-width: 1080px) {
.site-header nav {
gap: 18px;
}
.hero {
grid-template-columns: 1fr;
padding-top: 150px;
}
.hero-copy {
max-width: 820px;
}
.capture-stage {
width: min(100%, 780px);
margin: 20px auto 40px;
}
.proof-section,
.document-section {
grid-template-columns: 1fr;
}
.proof-intro {
max-width: 760px;
}
.evidence-board {
max-width: 900px;
}
.document-copy {
max-width: 760px;
}
}
@media (max-width: 820px) {
.site-header {
grid-template-columns: 1fr auto;
}
.site-header nav {
display: none;
}
.manifest,
.walkthrough-head,
.roles-heading,
.pricing-heading,
.faq {
grid-template-columns: 1fr;
}
.manifest .section-index,
.walkthrough-head .section-index,
.roles-heading .section-index,
.pricing-heading .section-index,
.pricing-heading > div,
.walkthrough-head h2,
.walkthrough-head > p,
.roles-heading h2,
.comparison-ledger {
grid-column: 1;
grid-row: auto;
}
.pricing-heading {
gap: 28px;
}
.price-board {
grid-template-columns: 1fr;
}
.price-plan,
.price-plan--featured {
min-height: auto;
margin: 0;
padding: 28px;
}
.price-plan--featured {
padding-top: 43px;
}
.price-plan-top > p:last-child {
min-height: auto;
}
.walkthrough-layout {
grid-template-columns: 1fr;
}
.step-list {
display: grid;
grid-template-columns: repeat(5, minmax(118px, 1fr));
overflow-x: auto;
scrollbar-width: none;
}
.step-list::-webkit-scrollbar {
display: none;
}
.step-button {
grid-template-columns: 1fr;
align-content: center;
min-height: 110px;
padding: 12px;
border-right: 1px solid var(--line);
}
.step-button.is-active {
padding-left: 12px;
}
.role-lines article {
grid-template-columns: 50px 1fr;
padding: 24px 0;
}
.role-lines p,
.role-mark {
grid-column: 2;
justify-self: start;
text-align: left;
}
.offline-section {
grid-template-columns: 1fr;
}
.offline-photo,
.offline-photo img {
min-height: 330px;
height: 330px;
}
.field-strip-track {
grid-template-columns: repeat(2, 1fr);
}
.trust-badge:nth-child(3) {
border-left: 1px solid var(--line);
}
.trust-badge:nth-child(-n + 2) {
border-bottom: 1px solid var(--line);
}
.site-footer {
grid-template-columns: 1fr;
padding-bottom: 100px;
}
.site-footer > div {
justify-content: flex-start;
text-align: left;
}
.platform-legal {
margin-top: 0;
}
.legal-main {
grid-template-columns: 1fr;
padding-top: 72px;
}
.legal-intro {
position: static;
}
}
@media (max-width: 600px) {
.site-header {
top: 10px;
right: 10px;
left: 10px;
height: 58px;
padding-left: 12px;
}
.site-header .brand {
font-size: 15px;
}
.site-header .brand img {
width: 30px;
height: 30px;
}
.header-cta {
padding: 11px 12px;
font-size: 11px;
}
.header-cta span {
display: none;
}
.hero {
gap: 20px;
min-height: auto;
padding: 96px 18px 58px;
}
h1 {
font-size: clamp(42px, 12.2vw, 54px);
line-height: 0.98;
}
.hero-word {
white-space: normal;
}
.hero-promise {
font-size: 18px;
line-height: 1.35;
}
.hero-lead {
font-size: 16px;
line-height: 1.55;
}
.hero-actions {
align-items: stretch;
flex-direction: column;
gap: 14px;
}
.store-teaser {
grid-template-columns: 1fr;
gap: 12px;
margin-bottom: 16px;
padding: 13px;
}
.store-actions {
grid-template-columns: 1fr auto;
align-items: center;
}
.app-store-badge img {
width: 148px;
}
.store-qr {
display: none;
} .nur-desktop {
display: none;
}
.store-teaser strong {
font-size: 14px;
}
.store-teaser small {
font-size: 11px;
}
.store-placeholder {
align-items: center;
grid-template-columns: auto 1fr;
justify-items: start;
min-width: 0;
width: 100%;
text-align: left;
}
.button--dark {
width: 100%;
}
.text-link {
width: fit-content;
}
.trust-line {
display: none;
}
.capture-stage {
min-height: auto;
}
.capture-meta {
top: 12px;
right: 12px;
left: 12px;
padding: 10px;
font-size: 7px;
}
.handover-photo {
position: relative;
inset: auto;
height: 390px;
}
.handover-photo img {
object-position: 44% center;
}
.capture-console {
position: relative;
right: auto;
bottom: auto;
box-sizing: border-box;
width: calc(100% - 12px);
margin: -62px 0 0 auto;
padding-bottom: 0;
box-shadow: 0 22px 52px rgba(24, 32, 28, 0.28);
}
.console-top {
grid-template-columns: auto 1fr auto;
padding: 13px;
}
.spoken-line {
min-height: 95px;
padding: 20px 14px 12px;
}
.spoken-line p {
font-size: 14px;
}
.structured p {
font-size: 11px;
}
.record-button {
min-height: 50px;
margin-top: 14px;
margin-bottom: 0;
}
.console-tail {
display: block;
height: 52px;
background: var(--ink);
}
.field-strip {
padding: 0 18px;
}
.trust-badge {
gap: 9px;
min-height: 108px;
padding: 15px 10px;
}
.trust-badge strong {
font-size: 11px;
line-height: 1.25;
}
.trust-badge small {
font-size: 9px;
}
.trust-icon {
width: 34px;
height: 34px;
}
.trust-icon svg {
width: 21px;
height: 21px;
}
.germany-mark {
width: 34px;
height: 24px;
}
.section {
padding: 86px 18px;
}
.manifest {
gap: 36px;
}
.manifest-copy h2,
.walkthrough-head h2,
.roles-heading h2,
.pricing-heading h2,
.faq-head h2,
.document-copy h2 {
font-size: 40px;
}
.ledger-head,
.ledger-row,
.ledger-total {
grid-template-columns: 0.9fr 1.1fr;
}
.ledger-head span,
.ledger-row span,
.ledger-row strong,
.ledger-total span,
.ledger-total strong {
padding: 13px 10px;
}
.ledger-row span,
.ledger-row strong,
.ledger-total {
font-size: 11px;
}
.proof-section {
gap: 42px;
padding: 86px 18px;
}
.proof-intro h2 {
font-size: 45px;
}
.evidence-board {
grid-template-columns: 1fr;
}
.evidence-photo {
min-height: 370px;
}
.evidence-copy {
min-height: 390px;
}
.walkthrough-head,
.roles-heading {
gap: 12px;
margin-bottom: 44px;
}
.product-window {
min-height: 520px;
padding: 7px;
}
.product-content {
min-height: 465px;
padding: 24px 18px;
}
.product-progress {
margin-bottom: 36px;
}
.product-content h3 {
font-size: 26px;
}
.product-bottom {
gap: 12px;
}
.product-bottom > span {
max-width: 150px;
}
.offline-section {
gap: 48px;
padding: 80px 18px;
}
.offline-copy h2 {
font-size: 50px;
}
.role-lines article {
grid-template-columns: 34px 1fr;
gap: 8px 14px;
}
.document-section {
gap: 70px;
padding: 86px 18px 110px;
}
.document-copy,
.paper-stack {
width: 100%;
min-width: 0;
}
.pricing-section {
padding-right: 18px;
padding-left: 18px;
}
.price-plan,
.price-plan--featured {
padding-right: 22px;
padding-left: 22px;
}
.pricing-notes {
grid-template-columns: 1fr;
}
.paper {
min-height: 610px;
padding: 28px;
}
.paper footer {
right: 28px;
left: 28px;
}
.paper--back {
inset: 12px -5px -10px 8px;
}
.paper-photos figure {
height: 82px;
}
.faq {
gap: 35px;
}
.faq summary {
min-height: 72px;
font-size: 14px;
}
.closing-cta {
min-height: 620px;
padding: 86px 18px 120px;
}
.closing-copy h2 {
font-size: clamp(44px, 14.5vw, 58px);
}
.closing-store-note {
margin-bottom: 22px;
padding: 14px 15px;
}
.closing-brand {
display: inline-block;
white-space: nowrap;
font-size: clamp(34px, 11.5vw, 46px);
letter-spacing: -0.06em;
}
.site-footer {
padding: 42px 18px 110px;
}
.site-footer > div {
align-items: flex-start;
flex-direction: column;
}
.legal-header {
min-height: 72px;
padding: 0 18px;
}
.legal-header .brand {
font-size: 16px;
}
.legal-back {
font-size: 12px;
}
.legal-main {
gap: 48px;
padding: 64px 18px 84px;
}
.legal-intro h1 {
font-size: clamp(46px, 15.5vw, 56px);
}
.legal-document section {
padding: 26px 0 30px;
}
.legal-document h2 {
font-size: 20px;
}
.legal-document p {
font-size: 14px;
}
.legal-footer {
align-items: flex-start;
flex-direction: column;
gap: 22px;
padding: 32px 18px;
}
}
@media (max-width: 340px) {
.paper {
transform: none;
}
.paper--back {
inset: 8px 0 -8px 4px;
transform: rotate(-0.4deg);
}
}
@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}
*,
*::before,
*::after {
scroll-behavior: auto !important;
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
.reveal {
opacity: 1;
transform: none;
}
} .guides {
padding-top: 40px;
scroll-margin-top: 100px;
}
.guides-heading {
display: grid;
grid-template-columns: 0.45fr 1.3fr;
gap: 16px 40px;
margin-bottom: 56px;
}
.guides-heading .section-index {
grid-row: 1;
}
.guides-heading h2 {
grid-column: 2;
margin-bottom: 0;
font-size: clamp(38px, 4.5vw, 68px);
font-weight: 700;
letter-spacing: -0.065em;
line-height: 0.98;
}
.guides-intro {
grid-column: 2;
max-width: 56ch;
margin: 0;
color: var(--ink-soft);
font-size: 17px;
line-height: 1.55;
}
.guide-list {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0 44px;
border-top: 2px solid var(--ink);
}
.guide-card {
display: block;
min-width: 0;
padding: 34px 0;
color: inherit;
text-decoration: none;
}
.guide-featured {
grid-column: 1 / -1;
display: grid;
grid-template-columns: 1.05fr 1fr;
gap: 64px;
align-items: center;
padding: 34px 0 44px;
border-bottom: 1px solid var(--line);
}
.guide-card figure {
margin: 0 0 26px;
overflow: hidden;
border-radius: 6px;
background: var(--paper-deep);
}
.guide-featured figure {
margin: 0;
}
.guide-card img {
display: block;
width: 100%;
height: auto;
aspect-ratio: 1.75;
object-fit: cover;
transition: transform 0.2s ease;
}
.guide-paper img {
aspect-ratio: 1.35;
object-fit: contain;
padding: 26px;
transform: rotate(-3deg);
}
.guide-card:hover img {
transform: scale(1.03);
}
.guide-card:hover .guide-paper img {
transform: rotate(-3deg) scale(1.025);
}
.guide-kicker {
display: block;
margin-bottom: 14px;
color: var(--forest);
font-family: var(--mono);
font-size: 11px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
}
.guide-copy h3 {
margin: 0 0 14px;
font-size: clamp(24px, 2.6vw, 34px);
letter-spacing: -0.045em;
line-height: 1.1;
}
.guide-featured h3 {
font-size: clamp(30px, 3.4vw, 46px);
}
.guide-copy p {
max-width: 58ch;
margin: 0 0 22px;
color: var(--ink-soft);
font-size: 16px;
line-height: 1.6;
}
.guide-more {
display: inline-flex;
align-items: center;
gap: 10px;
min-height: 44px;
color: var(--forest);
font-size: 14px;
font-weight: 700;
text-decoration: underline;
text-underline-offset: 5px;
}
.guide-card:hover .guide-more {
text-decoration-thickness: 2px;
}
.guide-card:focus-visible {
outline: 3px solid var(--forest);
outline-offset: 8px;
}
@media (max-width: 820px) {
.guides-heading,
.guide-featured {
grid-template-columns: 1fr;
}
.guides-heading h2,
.guides-intro {
grid-column: 1;
}
.guides-heading {
margin-bottom: 36px;
}
.guide-card {
gap: 20px;
padding: 26px 0;
}
.guide-list { gap: 0 28px; }
.guide-featured { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 600px) {
.guide-list, .guide-featured { grid-template-columns: 1fr; }
.guide-card { padding: 26px 0; }
.guide-card figure { margin-bottom: 22px; }
.guide-featured { gap: 0; }
.guide-paper img { aspect-ratio: 1.2; padding: 22px; }
.guide-kicker { font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
.guide-card img { transition: none; }
}