@font-face {
    font-family: "Geologica";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("/assets/fonts/geologica-greek.woff2") format("woff2");
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
    font-family: "Geologica";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("/assets/fonts/geologica-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --font-primary: "Geologica", "Helvetica Neue", Arial, sans-serif;
    --navy: #152f5c;
    --navy-dark: #0b2347;
    --navy-deep: #071a35;
    --orange: #f67a21;
    --orange-dark: #da5e0b;
    --white: #ffffff;
    --light-bg: #f4f7fb;
    --text: #16213a;
    --muted: #667085;
    --border: #d9e1eb;
    --shadow: 0 24px 70px rgba(11, 35, 71, 0.16);
    --container: 1220px;
    --radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--white);
    color: var(--text);
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

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

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

a {
    color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #ff9c57;
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}

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

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

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

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

.eyebrow {
    margin: 0 0 12px;
    color: var(--orange-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow--light {
    color: #ff9a54;
}

.accent-line {
    display: block;
    width: 68px;
    height: 5px;
    margin: 0 0 28px;
    background: var(--orange);
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 23px;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.035em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 200ms ease, color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

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

.button--primary {
    background: var(--navy-dark);
    box-shadow: 0 12px 30px rgba(11, 35, 71, 0.18);
    color: var(--white);
}

.button--primary:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.button--orange {
    width: 100%;
    background: var(--orange);
    color: var(--white);
}

.button--orange:hover {
    background: #ff8a36;
    box-shadow: 0 10px 26px rgba(246, 122, 33, 0.24);
    transform: translateY(-1px);
}

.button--small {
    min-height: 44px;
    background: var(--orange);
    color: var(--white);
}

.button:disabled {
    cursor: wait;
    opacity: 0.68;
}

.hero {
    position: relative;
    min-height: 790px;
    overflow: hidden;
    background: var(--white);
    isolation: isolate;
}

.hero::before {
    position: absolute;
    z-index: -2;
    top: 132px;
    right: 0;
    bottom: 0;
    left: 43%;
    background:
        linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.74) 19%, rgba(255, 255, 255, 0.08) 68%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.14) 55%, rgba(11, 35, 71, 0.18) 100%),
        url("/assets/img/hero-bg-clean.webp") center / cover no-repeat;
    content: "";
}

.hero::after {
    position: absolute;
    right: -4%;
    bottom: -1px;
    left: -4%;
    height: 24px;
    transform: rotate(-1deg);
    transform-origin: 50% 50%;
    background: var(--orange);
    content: "";
}

.hero__container {
    min-height: 790px;
}

.brand-header {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 168px;
    align-items: center;
    justify-content: center;
    padding: 22px 0 16px;
}

.brand-header__logo {
    width: min(390px, 68vw);
    height: auto;
}

.hero__grid {
    display: grid;
    min-height: 590px;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    gap: 32px;
    align-items: center;
    padding: 10px 20px 72px;
}

.hero__copy {
    position: relative;
    z-index: 3;
    max-width: 530px;
}

.hero__copy h1 {
    margin: 0 0 22px;
    color: var(--navy-dark);
    font-family: var(--font-primary);
    font-size: clamp(50px, 4.4vw, 64px);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.hero__intro {
    max-width: 500px;
    margin: 0 0 30px;
    color: #36445c;
    font-size: 17px;
    line-height: 1.72;
}

.hero__visual {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 535px;
    align-items: center;
    justify-content: center;
    padding: 10px 54px 14px 0;
}

.paper-stack {
    position: relative;
    width: min(390px, 78%);
    aspect-ratio: 822 / 1191;
    transform: rotate(3.1deg);
    border: 9px solid #f7f5ef;
    background: #fff;
    box-shadow: 0 32px 55px rgba(4, 19, 39, 0.3), 0 7px 12px rgba(4, 19, 39, 0.18);
    transition: transform 250ms ease;
}

.paper-stack::before,
.paper-stack::after,
.paper-stack__sheet {
    position: absolute;
    z-index: -1;
    inset: 3px -11px -8px 4px;
    transform: rotate(-1.2deg);
    border: 1px solid #d8d5ce;
    background: #f2f0eb;
    content: "";
}

.paper-stack::after {
    inset: 7px -17px -13px 8px;
    transform: rotate(-2.2deg);
    background: #e7e5e0;
}

.paper-stack__sheet {
    inset: 10px -22px -18px 12px;
    transform: rotate(-3deg);
}

.paper-stack:hover {
    transform: rotate(1.6deg) translateY(-5px);
}

.cover-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(21, 47, 92, 0.16);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 800ms linear infinite;
}

.spinner--light {
    border-color: rgba(255, 255, 255, 0.2);
    border-top-color: var(--orange);
}

.edition-badge {
    position: absolute;
    z-index: 5;
    right: 2px;
    bottom: 35px;
    display: flex;
    width: 150px;
    height: 150px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 5px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 18px 40px rgba(178, 72, 0, 0.32);
    color: var(--white);
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.edition-badge span,
.edition-badge small {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.18;
}

.edition-badge strong {
    margin: 3px 0;
    font-size: 49px;
    line-height: 0.94;
}

.edition-section {
    scroll-margin-top: 12px;
    padding: 96px 0 76px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.95), rgba(244, 247, 251, 0.72) 35%, transparent 68%),
        var(--light-bg);
}

.section-heading {
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    color: var(--navy-dark);
    font-family: var(--font-primary);
    font-size: clamp(31px, 3.3vw, 46px);
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.pdf-reader {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: #171b22;
    box-shadow: 0 30px 75px rgba(11, 35, 71, 0.22);
    color: #fff;
}

.pdf-reader:fullscreen {
    width: 100vw;
    max-width: none;
    height: 100vh;
    border: 0;
    border-radius: 0;
    background: #101318;
}

.pdf-reader:fullscreen .pdf-stage {
    height: calc(100vh - 132px);
    max-height: none;
}

.pdf-reader__topbar {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 9px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #1c222b;
    color: #d8dde6;
    font-size: 12px;
}

.pdf-reader__identity {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.pdf-reader__mark {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 4px;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.pdf-reader__status {
    color: #aeb7c5;
}

.pdf-stage {
    position: relative;
    display: grid;
    height: clamp(620px, 72vh, 820px);
    min-height: 620px;
    grid-template-columns: 64px minmax(0, 1fr) 64px;
    align-items: stretch;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(54, 64, 77, 0.6), transparent 68%),
        #12161b;
}

.pdf-canvas-wrap {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 0;
    overflow: auto;
    overscroll-behavior: contain;
    scrollbar-color: #5d6671 #222831;
}

.pdf-spread {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    margin: auto 0;
    perspective: 1800px;
    transform-style: preserve-3d;
    will-change: opacity, transform;
}

.pdf-spread::after {
    position: absolute;
    z-index: 4;
    top: 0;
    right: -3%;
    bottom: 0;
    left: -3%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 38%, rgba(255, 255, 255, 0.2) 49%, rgba(3, 12, 23, 0.22) 51%, transparent 63%);
    content: "";
    opacity: 0;
}

.pdf-page {
    position: relative;
    flex: 0 0 auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
}

.pdf-page--blank {
    background: transparent;
    box-shadow: none;
}

.page-turn__static--blank {
    background: #12161b;
    box-shadow: none;
}

.is-spread-mode .pdf-page--primary::after,
.is-spread-mode .pdf-page--secondary::before {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    width: 18px;
    pointer-events: none;
    content: "";
}

.is-spread-mode .pdf-page--primary::after {
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(3, 12, 23, 0.2));
}

.is-spread-mode .pdf-page--secondary::before {
    left: 0;
    background: linear-gradient(90deg, rgba(3, 12, 23, 0.18), transparent);
}

#pdf-canvas,
#pdf-canvas-secondary {
    flex: 0 0 auto;
    max-width: none;
    background: #fff;
}

.page-turn-layer {
    position: absolute;
    z-index: 12;
    inset: 0;
    pointer-events: none;
    perspective: 2200px;
}

.page-turn__static,
.page-turn__sheet {
    position: absolute;
    top: 0;
    width: calc((100% - 3px) / 2);
    height: 100%;
}

.page-turn__static {
    overflow: hidden;
    background: #fff;
}

.page-turn-layer--next .page-turn__static,
.page-turn-layer--previous .page-turn__sheet {
    left: 0;
}

.page-turn-layer--next .page-turn__sheet,
.page-turn-layer--previous .page-turn__static {
    right: 0;
}

.page-turn__sheet {
    z-index: 2;
    transform-style: preserve-3d;
    will-change: transform;
}

.page-turn-layer--next .page-turn__sheet {
    transform-origin: left center;
}

.page-turn-layer--previous .page-turn__sheet {
    transform-origin: right center;
}

.page-turn__face {
    position: absolute;
    overflow: hidden;
    inset: 0;
    backface-visibility: hidden;
    background: #fff;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
}

.page-turn__face::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
}

.page-turn-layer--next .page-turn__face--front::after {
    background: linear-gradient(90deg, transparent 55%, rgba(3, 12, 23, 0.3));
}

.page-turn-layer--previous .page-turn__face--front::after {
    background: linear-gradient(90deg, rgba(3, 12, 23, 0.28), transparent 45%);
}

.page-turn__face--back {
    transform: rotateY(180deg);
}

.page-turn-layer--next .page-turn__face--back::after {
    background: linear-gradient(90deg, rgba(3, 12, 23, 0.25), transparent 55%);
}

.page-turn-layer--previous .page-turn__face--back::after {
    background: linear-gradient(90deg, transparent 45%, rgba(3, 12, 23, 0.25));
}

.page-turn__static canvas,
.page-turn__face canvas {
    width: 100%;
    height: 100%;
}

.page-turn-layer--next.is-running .page-turn__sheet {
    animation: turn-sheet-next 700ms cubic-bezier(0.45, 0.05, 0.18, 1) forwards;
}

.page-turn-layer--previous.is-running .page-turn__sheet {
    animation: turn-sheet-previous 700ms cubic-bezier(0.45, 0.05, 0.18, 1) forwards;
}

.pdf-spread.is-crossfading-out-next,
.pdf-spread.is-crossfading-out-previous {
    opacity: 0.18;
    transform: scale(0.992);
    transition: opacity 120ms ease, transform 120ms ease;
}

.pdf-spread.is-crossfading-in-next,
.pdf-spread.is-crossfading-in-previous {
    animation: page-settle 220ms ease-out both;
}

.page-arrow {
    position: relative;
    z-index: 4;
    display: grid;
    min-width: 64px;
    min-height: 64px;
    place-items: center;
    align-self: stretch;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease;
}

.page-arrow svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.page-arrow:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.06);
    color: var(--orange);
}

.page-arrow:disabled {
    cursor: not-allowed;
    opacity: 0.22;
}

.pdf-loader,
.pdf-error {
    position: absolute;
    z-index: 8;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    background: rgba(18, 22, 27, 0.96);
    color: #fff;
    text-align: center;
}

.pdf-loader strong {
    margin-top: 5px;
    font-family: var(--font-primary);
    font-size: 19px;
}

.pdf-loader span:last-child,
.pdf-error span {
    color: #aeb7c5;
    font-size: 13px;
}

.pdf-error strong {
    font-size: 18px;
}

.pdf-error .button {
    margin-top: 8px;
}

.pdf-toolbar {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    background: #1d232b;
}

.pdf-toolbar__group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tool-button {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: #e8ebf0;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease;
}

.tool-button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.tool-button:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.09);
    color: var(--orange);
}

.tool-button.is-active {
    background: rgba(246, 122, 33, 0.18);
    color: #ff9a54;
}

.tool-button:disabled {
    cursor: not-allowed;
    opacity: 0.35;
}

.tool-button--text {
    width: auto;
    min-width: 64px;
    padding: 0 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.page-jump {
    display: flex;
    height: 44px;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.22);
    color: #dfe4eb;
    font-size: 13px;
}

.page-jump input {
    width: 45px;
    height: 32px;
    padding: 0 5px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 3px;
    background: #2d343e;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.page-jump input::-webkit-outer-spin-button,
.page-jump input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.zoom-value {
    min-width: 48px;
    color: #b9c0ca;
    font-size: 11px;
    font-variant-numeric: tabular-nums;
    text-align: center;
}

.keyboard-hint {
    margin: 0;
    padding: 0 18px 10px;
    background: #1d232b;
    color: #8f99a8;
    font-size: 11px;
    text-align: right;
}

.noscript-note {
    max-width: 1080px;
    margin: 14px auto 0;
    padding: 14px 18px;
    border-left: 4px solid var(--orange);
    background: #fff;
}

.noscript-note a {
    color: var(--navy);
    font-weight: 700;
}

.about-section {
    padding: 88px 0 80px;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature {
    position: relative;
    padding: 14px 32px 8px;
    text-align: center;
}

.feature:not(:last-child)::after {
    position: absolute;
    top: 28px;
    right: 0;
    width: 1px;
    height: calc(100% - 48px);
    background: var(--border);
    content: "";
}

.feature__icon {
    display: grid;
    width: 68px;
    height: 68px;
    margin: 0 auto 17px;
    place-items: center;
}

.feature__icon svg,
.deth-strip__icon svg {
    width: 58px;
    height: 58px;
    fill: none;
    stroke: var(--navy);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.feature__icon .orange-stroke,
.deth-strip__icon .orange-stroke {
    stroke: var(--orange);
}

.feature h3 {
    margin: 0 0 11px;
    color: var(--navy-dark);
    font-size: 14px;
    font-weight: 850;
    line-height: 1.35;
    text-transform: uppercase;
}

.feature p {
    margin: 0;
    color: #4f5d70;
    font-size: 14px;
    line-height: 1.65;
}

.newsletter-section {
    padding: 28px 0 0;
    background: var(--light-bg);
}

.newsletter-card {
    position: relative;
    display: grid;
    overflow: hidden;
    grid-template-columns: minmax(0, 0.82fr) minmax(470px, 1.18fr);
    gap: 68px;
    padding: 58px 66px;
    border-radius: 10px;
    background:
        radial-gradient(circle at 12% 125%, rgba(255, 255, 255, 0.09), transparent 34%),
        linear-gradient(105deg, var(--navy-dark), var(--navy));
    box-shadow: 0 22px 48px rgba(11, 35, 71, 0.14);
    color: #fff;
}

.newsletter-card::before {
    position: absolute;
    bottom: -190px;
    left: -165px;
    width: 560px;
    height: 370px;
    transform: rotate(-11deg);
    background: linear-gradient(135deg, transparent 10%, rgba(255, 255, 255, 0.035) 10%, rgba(255, 255, 255, 0.035) 66%, transparent 66%);
    content: "";
}

.newsletter-card__copy,
.newsletter-form {
    position: relative;
    z-index: 1;
}

.newsletter-card__copy h2 {
    margin: 0 0 18px;
    font-family: var(--font-primary);
    font-size: clamp(34px, 4vw, 50px);
    letter-spacing: -0.025em;
    line-height: 1.02;
    text-transform: uppercase;
}

.newsletter-card__copy p:last-child {
    max-width: 385px;
    margin: 0;
    color: #d9e3f0;
    font-size: 15px;
    line-height: 1.75;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.form-field label {
    color: #dce5f1;
    font-size: 12px;
    font-weight: 700;
}

.form-field input {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 5px;
    background: #fff;
    box-shadow: inset 0 1px 2px rgba(11, 35, 71, 0.08);
    color: var(--text);
}

.form-field input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(246, 122, 33, 0.22);
    outline: none;
}

.privacy-check {
    display: flex;
    min-height: 32px;
    align-items: flex-start;
    gap: 10px;
    color: #e2e9f3;
    cursor: pointer;
    font-size: 12px;
}

.privacy-check input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin: 2px 0 0;
    accent-color: var(--orange);
}

.privacy-check a {
    color: #ff9a54;
    font-weight: 800;
}

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

.form-feedback {
    min-height: 22px;
    margin: -3px 0 0;
    font-size: 13px;
    font-weight: 700;
}

.form-feedback.is-success {
    color: #9bf0bd;
}

.form-feedback.is-error {
    color: #ffd1ca;
}

.deth-strip {
    display: flex;
    min-height: 124px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 26px 0 0;
    padding: 24px 32px;
    border-radius: 8px 8px 0 0;
    background: #fff;
    box-shadow: 0 7px 28px rgba(11, 35, 71, 0.08);
}

.deth-strip__icon {
    display: grid;
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    place-items: center;
}

.deth-strip h2 {
    margin: 0 0 4px;
    color: var(--navy-dark);
    font-family: var(--font-primary);
    font-size: clamp(22px, 2.5vw, 31px);
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
}

.deth-strip p {
    margin: 0;
    color: #344158;
    font-size: 15px;
}

.deth-strip p span {
    margin: 0 8px;
    color: #aeb8c6;
}

.deth-strip p strong {
    color: var(--orange-dark);
}

.site-footer {
    padding: 43px 0 20px;
    background:
        radial-gradient(circle at 20% 0, rgba(38, 76, 132, 0.3), transparent 38%),
        var(--navy-deep);
    color: #fff;
}

.site-footer__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.site-footer__logo {
    width: 245px;
    height: auto;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-links__icon {
    display: block;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-links a:hover {
    transform: translateY(-2px);
    border-color: var(--orange);
    background: var(--orange);
}

.site-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding-top: 19px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    color: #b9c6d8;
    font-size: 12px;
    text-align: center;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__bottom nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.site-footer__bottom a {
    text-decoration: none;
}

.site-footer__bottom a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer__company {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin: 0;
    color: rgba(185, 198, 216, 0.68);
    font-size: 11px;
    font-weight: 450;
    line-height: 1.5;
    letter-spacing: 0.055em;
    text-align: center;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.site-footer__credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 16px 0 0;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.04em;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.site-footer__credit a {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

.site-footer__credit a:hover {
    opacity: 0.82;
    transform: translateY(-1px);
}

.site-footer__credit a:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
}

.site-footer__vitamin {
    display: block;
    width: 132px;
    height: auto;
}

.reveal {
    opacity: 1;
    transform: none;
    transition:
        opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-reveal-pending {
    opacity: 0;
    transform: translateY(22px);
    will-change: opacity, transform;
}

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

.reveal.is-visible {
    will-change: auto;
}

.reveal--delay-1 {
    --reveal-delay: 90ms;
}

.reveal--delay-2 {
    --reveal-delay: 180ms;
}

.reveal--delay-3 {
    --reveal-delay: 270ms;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes turn-sheet-next {
    0% {
        transform: rotateY(0deg);
        box-shadow: -3px 0 8px rgba(0, 0, 0, 0.08);
    }
    48% {
        transform: rotateY(-88deg) translateZ(7px);
        box-shadow: -24px 0 38px rgba(0, 0, 0, 0.38);
    }
    100% {
        transform: rotateY(-180deg);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes turn-sheet-previous {
    0% {
        transform: rotateY(0deg);
        box-shadow: 3px 0 8px rgba(0, 0, 0, 0.08);
    }
    48% {
        transform: rotateY(88deg) translateZ(7px);
        box-shadow: 24px 0 38px rgba(0, 0, 0, 0.38);
    }
    100% {
        transform: rotateY(180deg);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes page-settle {
    from {
        opacity: 0.2;
        transform: scale(0.992);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1100px) {
    .hero__grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(370px, 1.08fr);
        gap: 24px;
        padding-inline: 0;
    }

    .hero__visual {
        padding-right: 42px;
    }

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

    .feature:nth-child(2)::after {
        display: none;
    }

    .feature:nth-child(-n + 2)::before {
        position: absolute;
        right: 30px;
        bottom: -21px;
        left: 30px;
        height: 1px;
        background: var(--border);
        content: "";
    }

    .newsletter-card {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 42px;
        padding-inline: 48px;
    }
}

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

    .hero::before {
        top: 122px;
        left: 22%;
        opacity: 0.44;
    }

    .hero__container {
        min-height: auto;
    }

    .brand-header {
        min-height: 146px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 38px 0 90px;
        text-align: center;
    }

    .hero__copy {
        max-width: 630px;
        margin-inline: auto;
    }

    .hero__copy h1 {
        font-size: clamp(48px, 9vw, 68px);
    }

    .hero__intro {
        margin-inline: auto;
    }

    .hero__copy .accent-line {
        margin-inline: auto;
    }

    .hero__visual {
        min-height: 520px;
        padding: 0;
    }

    .paper-stack {
        width: min(350px, 70vw);
    }

    .edition-badge {
        right: calc(50% - 245px);
    }

    .pdf-stage {
        height: clamp(580px, 72vh, 720px);
        min-height: 580px;
        grid-template-columns: 54px minmax(0, 1fr) 54px;
    }

    .page-arrow {
        min-width: 54px;
    }

    .pdf-toolbar {
        align-items: stretch;
        flex-direction: column;
        gap: 5px;
    }

    .pdf-toolbar__group {
        justify-content: center;
    }

    .keyboard-hint {
        display: none;
    }

    .newsletter-card {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .newsletter-card__copy {
        text-align: center;
    }

    .newsletter-card__copy .accent-line,
    .newsletter-card__copy p:last-child {
        margin-inline: auto;
    }

    .site-footer__main {
        gap: 18px;
    }

    .social-links {
        justify-content: center;
    }
}

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

    .hero::before {
        top: 112px;
        left: 0;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.65)),
            url("/assets/img/hero-bg-clean.webp") center / cover no-repeat;
        opacity: 0.34;
    }

    .brand-header {
        min-height: 120px;
        padding-top: 20px;
    }

    .brand-header__logo {
        width: min(310px, 82vw);
    }

    .hero__grid {
        padding: 31px 0 78px;
    }

    .hero__copy h1 {
        margin-bottom: 19px;
        font-size: clamp(41px, 12.5vw, 55px);
    }

    .hero__intro {
        font-size: 15px;
        line-height: 1.68;
    }

    .button--primary {
        width: 100%;
        max-width: 360px;
    }

    .hero__visual {
        min-height: 430px;
    }

    .paper-stack {
        width: min(278px, 76vw);
        border-width: 6px;
    }

    .edition-badge {
        right: max(0px, calc(50% - 185px));
        bottom: 17px;
        width: 112px;
        height: 112px;
        border-width: 3px;
    }

    .edition-badge strong {
        font-size: 38px;
    }

    .edition-badge span,
    .edition-badge small {
        font-size: 9px;
    }

    .edition-section {
        padding: 72px 0 60px;
    }

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

    .pdf-reader {
        margin-inline: -5px;
        border-radius: 7px;
    }

    .pdf-reader__topbar {
        padding-inline: 12px;
    }

    .pdf-reader__identity span:last-child {
        display: none;
    }

    .pdf-stage {
        height: min(68vh, 570px);
        min-height: 470px;
        grid-template-columns: 46px minmax(0, 1fr) 46px;
    }

    .page-arrow {
        min-width: 46px;
    }

    .page-arrow svg {
        width: 29px;
        height: 29px;
    }

    .pdf-canvas-wrap {
        padding-block: 20px;
    }

    .pdf-toolbar {
        padding: 8px;
    }

    .pdf-toolbar__group {
        width: 100%;
        justify-content: space-around;
        gap: 0;
    }

    .page-jump {
        flex: 1 1 auto;
        justify-content: center;
    }

    .tool-button--text {
        min-width: 48px;
        padding-inline: 2px;
        font-size: 9px;
    }

    .zoom-value {
        min-width: 34px;
    }

    .about-section {
        padding: 70px 0 58px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .feature {
        padding: 25px 20px 30px;
    }

    .feature:not(:last-child)::after,
    .feature:nth-child(-n + 2)::before {
        right: 34px;
        bottom: 0;
        left: 34px;
        display: block;
        width: auto;
        height: 1px;
        background: var(--border);
        content: "";
        top: auto;
    }

    .newsletter-card {
        gap: 30px;
        padding: 42px 22px 34px;
    }

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

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

    .deth-strip {
        min-height: 0;
        align-items: center;
        flex-direction: column;
        gap: 8px;
        padding: 27px 19px 30px;
        text-align: center;
    }

    .deth-strip h2 {
        font-size: 22px;
    }

    .deth-strip p {
        font-size: 14px;
    }

    .deth-strip p span {
        display: none;
    }

    .deth-strip p strong {
        display: block;
        margin-top: 3px;
    }

    .site-footer {
        padding-top: 38px;
    }
}

/* Legal pages */
.legal-page {
    background: var(--light-bg);
}

.legal-topbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.legal-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 88px;
}

.legal-topbar__brand img {
    width: min(220px, 58vw);
    height: auto;
}

.legal-topbar__back {
    color: var(--navy);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.legal-topbar__back:hover {
    color: var(--orange-dark);
}

.legal-main {
    padding: 42px 0 72px;
}

.legal-shell {
    max-width: 860px;
}

.legal-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.legal-tabs a {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    color: var(--navy);
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
}

.legal-tabs a.is-active,
.legal-tabs a:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.legal-card {
    padding: 34px 36px 40px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 18px 48px rgba(11, 35, 71, 0.08);
}

.legal-card__eyebrow {
    margin: 0 0 8px;
    color: var(--orange-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-card h1 {
    margin: 0 0 8px;
    color: var(--navy-dark);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.15;
}

.legal-card__meta {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 14px;
}

.legal-card h2 {
    margin: 28px 0 10px;
    color: var(--navy);
    font-size: 1.15rem;
}

.legal-card p,
.legal-card li {
    color: #334155;
}

.legal-card ul {
    margin: 0 0 12px;
    padding-left: 1.2em;
}

.legal-card a {
    color: var(--navy);
    font-weight: 650;
}

.legal-page .site-footer {
    margin-top: 0;
}

/* Admin */
.admin-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 0, rgba(38, 76, 132, 0.28), transparent 36%),
        var(--navy-deep);
    color: var(--white);
}

.admin-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0 64px;
}

.admin-login {
    display: grid;
    min-height: calc(100vh - 106px);
    place-items: center;
}

.admin-login__card,
.admin-dashboard,
.admin-empty {
    width: min(100%, 480px);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(7, 26, 53, 0.72);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.admin-dashboard,
.admin-empty {
    width: 100%;
}

.admin-login__eyebrow {
    margin: 0 0 8px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-login h1,
.admin-dashboard h1 {
    margin: 0 0 8px;
    font-size: clamp(1.6rem, 3vw, 2rem);
}

.admin-login p,
.admin-dashboard p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.admin-login__form {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.admin-login__form label {
    display: grid;
    gap: 6px;
}

.admin-login__form span {
    font-size: 13px;
    font-weight: 650;
}

.admin-login__form input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.admin-login__form button,
.admin-button {
    appearance: none;
    border: 0;
    border-radius: 10px;
    background: var(--orange);
    color: var(--white);
    cursor: pointer;
    font-weight: 750;
    padding: 12px 16px;
}

.admin-button--secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.admin-alert {
    margin: 16px 0 0;
    padding: 12px 14px;
    border-radius: 10px;
}

.admin-alert--error {
    background: rgba(220, 38, 38, 0.18);
    color: #fecaca;
}

.admin-dashboard__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.admin-dashboard__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.admin-table th,
.admin-table td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.admin-table a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 720px) {
    .legal-card {
        padding: 24px 20px 28px;
    }

    .admin-dashboard__header {
        flex-direction: column;
    }

    .admin-login__card,
    .admin-dashboard,
    .admin-empty {
        padding: 22px 18px;
    }
}

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

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