@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --c-night-950: #0c0a1d;
    --c-night-900: #14112b;
    --c-night-800: #1d1940;
    --c-night-700: #2a2456;
    --c-dusk-600: #4b3f8f;
    --c-dusk-500: #6a5acd;
    --c-violet-500: #7c6cf0;
    --c-violet-400: #9c8cf7;
    --c-amber-400: #f6c177;
    --c-amber-300: #fbd9a0;
    --c-rose-400: #e89ab0;
    --c-cream-50: #f7f4ef;
    --c-cream-100: #efe9e0;
    --c-ink-900: #1a1726;
    --c-ink-700: #3b3650;
    --c-ink-500: #5f5973;
    --c-ink-400: #837d97;
    --c-line: rgba(124, 108, 240, 0.16);
    --c-line-soft: rgba(26, 23, 38, 0.08);

    --grad-twilight: linear-gradient(135deg, #2a2456 0%, #4b3f8f 45%, #7c6cf0 100%);
    --grad-amber: linear-gradient(120deg, #f6c177 0%, #e89ab0 100%);
    --grad-veil: radial-gradient(120% 120% at 80% 0%, rgba(124, 108, 240, 0.22), transparent 60%);

    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

    --fs-300: clamp(0.82rem, 0.78rem + 0.2vw, 0.92rem);
    --fs-400: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
    --fs-500: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
    --fs-600: clamp(1.35rem, 1.15rem + 1vw, 1.85rem);
    --fs-700: clamp(1.8rem, 1.4rem + 2vw, 2.9rem);
    --fs-800: clamp(2.4rem, 1.7rem + 3.4vw, 4.4rem);

    --sp-1: clamp(0.4rem, 0.35rem + 0.2vw, 0.55rem);
    --sp-2: clamp(0.7rem, 0.6rem + 0.4vw, 1rem);
    --sp-3: clamp(1.1rem, 0.9rem + 0.8vw, 1.6rem);
    --sp-4: clamp(1.8rem, 1.4rem + 1.6vw, 2.8rem);
    --sp-5: clamp(2.8rem, 2rem + 3vw, 4.8rem);
    --sp-6: clamp(4rem, 2.8rem + 5vw, 7.5rem);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    --shadow-soft: 0 1px 2px rgba(20, 17, 43, 0.06), 0 12px 30px -18px rgba(20, 17, 43, 0.45);
    --shadow-lift: 0 24px 60px -32px rgba(42, 36, 86, 0.55);
    --shadow-glow: 0 0 0 1px rgba(124, 108, 240, 0.18), 0 28px 70px -40px rgba(124, 108, 240, 0.6);

    --glass: rgba(247, 244, 239, 0.7);
    --glass-dark: rgba(20, 17, 43, 0.55);

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --maxw: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-400);
    line-height: 1.7;
    color: var(--c-ink-700);
    background-color: var(--c-cream-50);
    background-image:
        radial-gradient(60% 50% at 100% 0%, rgba(124, 108, 240, 0.12), transparent 70%),
        radial-gradient(50% 40% at 0% 10%, rgba(246, 193, 119, 0.12), transparent 70%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    color: var(--c-ink-900);
    line-height: 1.12;
    font-weight: 600;
    margin: 0 0 var(--sp-2);
    letter-spacing: -0.015em;
}

p {
    margin: 0 0 var(--sp-2);
}

a {
    color: var(--c-dusk-600);
    text-decoration: none;
    transition: color 0.25s var(--ease-out);
}

a:hover {
    color: var(--c-violet-500);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    margin: 0 0 var(--sp-2);
    padding-left: 1.25rem;
}

li {
    margin-bottom: 0.4rem;
}

:focus-visible {
    outline: 3px solid var(--c-violet-400);
    outline-offset: 3px;
    border-radius: 6px;
}

.skip-link {
    position: absolute;
    left: var(--sp-2);
    top: -120px;
    background: var(--c-night-900);
    color: #fff;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-pill);
    z-index: 200;
    transition: top 0.25s var(--ease-out);
}

.skip-link:focus {
    top: var(--sp-2);
    color: #fff;
}

.shell {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: clamp(1.1rem, 0.6rem + 3vw, 2.4rem);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-300);
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-dusk-600);
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--c-dusk-500);
    opacity: 0.6;
}

.section {
    padding-block: var(--sp-6);
    position: relative;
}

.section--tight {
    padding-block: var(--sp-5);
}

.lead {
    font-size: var(--fs-500);
    color: var(--c-ink-700);
    max-width: 60ch;
}

.is-night {
    color: var(--c-cream-100);
    background: var(--c-night-900);
    background-image: var(--grad-veil);
}

.is-night h1,
.is-night h2,
.is-night h3,
.is-night h4 {
    color: #fff;
}

.is-night p {
    color: rgba(239, 233, 224, 0.82);
}

.is-night .eyebrow {
    color: var(--c-amber-300);
}

.is-night .eyebrow::before {
    background: var(--c-amber-300);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--fs-400);
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out), color 0.3s var(--ease-out);
    text-align: center;
}

.btn i {
    font-size: 1.1em;
    transition: transform 0.3s var(--ease-out);
}

.btn--primary {
    background: var(--grad-twilight);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 30px 60px -28px rgba(124, 108, 240, 0.75);
}

.btn--primary:hover i {
    transform: translateX(4px);
}

.btn--ghost {
    background: rgba(124, 108, 240, 0.08);
    color: var(--c-dusk-600);
    border-color: var(--c-line);
}

.btn--ghost:hover {
    background: rgba(124, 108, 240, 0.16);
    color: var(--c-dusk-600);
    transform: translateY(-3px);
}

.btn--light {
    background: var(--c-amber-400);
    color: var(--c-night-900);
}

.btn--light:hover {
    background: var(--c-amber-300);
    color: var(--c-night-900);
    transform: translateY(-3px);
}

.btn--block {
    width: 100%;
    justify-content: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(247, 244, 239, 0.78);
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.site-header.is-stuck {
    box-shadow: var(--shadow-soft);
    border-color: var(--c-line-soft);
    background: rgba(247, 244, 239, 0.92);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    padding-block: 0.9rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--c-ink-900);
    letter-spacing: -0.01em;
}

.brand:hover {
    color: var(--c-ink-900);
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 13px;
    background: var(--grad-twilight);
    color: #fff;
    font-size: 1.25rem;
    box-shadow: var(--shadow-soft);
}

.brand__name {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__name small {
    font-family: var(--font-body);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-ink-400);
    font-weight: 600;
    margin-top: 3px;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.primary-nav__link {
    font-weight: 500;
    font-size: var(--fs-400);
    color: var(--c-ink-700);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-pill);
    position: relative;
    transition: color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.primary-nav__link:hover,
.primary-nav__link[aria-current="page"] {
    color: var(--c-dusk-600);
    background: rgba(124, 108, 240, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    border: 1px solid var(--c-line);
    background: rgba(124, 108, 240, 0.08);
    color: var(--c-dusk-600);
    font-size: 1.4rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.hero {
    position: relative;
    overflow: hidden;
    padding-block: var(--sp-6) var(--sp-6);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--sp-5);
    align-items: center;
}

.hero__title {
    font-size: var(--fs-800);
    margin-bottom: var(--sp-3);
}

.hero__title em {
    font-style: italic;
    background: var(--grad-twilight);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-top: var(--sp-3);
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    margin-top: var(--sp-4);
    padding-top: var(--sp-3);
    border-top: 1px solid var(--c-line-soft);
}

.hero__meta-item {
    display: flex;
    flex-direction: column;
}

.hero__meta-item b {
    font-family: var(--font-display);
    font-size: var(--fs-600);
    color: var(--c-ink-900);
}

.hero__meta-item span {
    font-size: var(--fs-300);
    color: var(--c-ink-400);
}

.hero__visual {
    position: relative;
}

.hero__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    aspect-ratio: 4 / 5;
    background: var(--grad-twilight);
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
}

.hero__chip {
    position: absolute;
    backdrop-filter: blur(12px);
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    padding: 0.8rem 1rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: var(--fs-300);
    font-weight: 600;
    color: var(--c-ink-900);
}

.hero__chip i {
    font-size: 1.4rem;
    color: var(--c-dusk-600);
}

.hero__chip--top {
    top: 8%;
    left: -6%;
}

.hero__chip--bottom {
    bottom: 9%;
    right: -5%;
}

.marquee {
    border-block: 1px solid var(--c-line-soft);
    background: rgba(124, 108, 240, 0.05);
    overflow: hidden;
}

.marquee__track {
    display: flex;
    gap: var(--sp-4);
    padding-block: var(--sp-2);
    white-space: nowrap;
    animation: drift 28s linear infinite;
    will-change: transform;
}

.marquee__track span {
    font-family: var(--font-display);
    font-style: italic;
    font-size: var(--fs-500);
    color: var(--c-ink-500);
    display: inline-flex;
    align-items: center;
    gap: var(--sp-4);
}

.marquee__track span::after {
    content: "\2022";
    color: var(--c-violet-400);
}

@keyframes drift {
    to {
        transform: translateX(-50%);
    }
}

.section-head {
    max-width: 64ch;
    margin-bottom: var(--sp-4);
}

.section-head--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: var(--sp-4);
    align-items: end;
    max-width: none;
}

.section-head h2 {
    font-size: var(--fs-700);
}

.grid {
    display: grid;
    gap: var(--sp-3);
}

.grid--cards {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    border: 1px solid var(--c-line-soft);
    border-radius: var(--radius-lg);
    padding: var(--sp-3);
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--grad-veil);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lift);
}

.card:hover::after {
    opacity: 1;
}

.card__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: rgba(124, 108, 240, 0.1);
    color: var(--c-dusk-600);
    font-size: 1.5rem;
    margin-bottom: var(--sp-2);
}

.card__title {
    font-size: var(--fs-500);
}

.card__num {
    font-family: var(--font-display);
    font-size: var(--fs-300);
    letter-spacing: 0.2em;
    color: var(--c-violet-400);
    font-weight: 600;
}

.feature-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--sp-5);
    align-items: center;
}

.feature-split--flip {
    grid-template-columns: 1.1fr 0.9fr;
}

.media-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    aspect-ratio: 5 / 6;
    background: var(--grad-twilight);
}

.media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
}

.media-frame--wide {
    aspect-ratio: 4 / 3;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: var(--sp-2) 0 0;
    display: grid;
    gap: 0.7rem;
}

.checklist li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    margin: 0;
}

.checklist i {
    color: var(--c-dusk-500);
    font-size: 1.2rem;
    margin-top: 2px;
}

.archetype-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--sp-2);
}

.archetype {
    background: #fff;
    border: 1px solid var(--c-line-soft);
    border-radius: var(--radius-md);
    padding: var(--sp-3);
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.archetype:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
}

.archetype__tag {
    font-size: var(--fs-300);
    font-weight: 600;
    color: var(--c-dusk-600);
}

.archetype--a {
    grid-column: span 3;
}

.archetype--b {
    grid-column: span 3;
}

.archetype--c {
    grid-column: span 2;
}

.archetype--d {
    grid-column: span 4;
    background: var(--grad-twilight);
    color: #fff;
}

.archetype--d h3,
.archetype--d .archetype__tag {
    color: #fff;
}

.archetype--d p {
    color: rgba(255, 255, 255, 0.85);
}

.archetype--e {
    grid-column: span 4;
}

.archetype--f {
    grid-column: span 2;
}

.stat-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-3);
}

.stat {
    text-align: left;
    padding-right: var(--sp-2);
    border-left: 2px solid var(--c-amber-400);
    padding-left: var(--sp-2);
}

.stat__num {
    font-family: var(--font-display);
    font-size: var(--fs-700);
    color: #fff;
    display: block;
    line-height: 1;
}

.stat__label {
    font-size: var(--fs-300);
    color: rgba(239, 233, 224, 0.75);
}

.author {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--sp-3);
    align-items: center;
    background: #fff;
    border: 1px solid var(--c-line-soft);
    border-radius: var(--radius-lg);
    padding: var(--sp-3);
    box-shadow: var(--shadow-soft);
}

.author__avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--grad-twilight);
    flex-shrink: 0;
}

.author__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author__name {
    font-size: var(--fs-500);
    margin-bottom: 0.2rem;
}

.author__role {
    font-size: var(--fs-300);
    color: var(--c-dusk-600);
    font-weight: 600;
    letter-spacing: 0.04em;
}

.timeline {
    display: grid;
    gap: var(--sp-3);
    counter-reset: step;
}

.timeline__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--sp-3);
    align-items: start;
    padding-bottom: var(--sp-3);
    border-bottom: 1px solid var(--c-line-soft);
}

.timeline__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timeline__marker {
    counter-increment: step;
    font-family: var(--font-display);
    font-size: var(--fs-600);
    color: var(--c-violet-400);
    width: 64px;
}

.timeline__marker::before {
    content: counter(step, decimal-leading-zero);
}

.faq {
    display: grid;
    gap: var(--sp-2);
    max-width: 820px;
}

.faq__item {
    background: #fff;
    border: 1px solid var(--c-line-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq__q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: var(--sp-3);
    font-family: var(--font-display);
    font-size: var(--fs-500);
    color: var(--c-ink-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-2);
    cursor: pointer;
}

.faq__q i {
    transition: transform 0.35s var(--ease-out);
    color: var(--c-dusk-500);
    flex-shrink: 0;
}

.faq__item.is-open .faq__q i {
    transform: rotate(45deg);
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease-out);
}

.faq__a-inner {
    padding: 0 var(--sp-3) var(--sp-3);
}

.cta-panel {
    border-radius: var(--radius-lg);
    background: var(--grad-twilight);
    background-image: var(--grad-twilight), var(--grad-veil);
    padding: var(--sp-5);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lift);
}

.cta-panel h2 {
    color: #fff;
    font-size: var(--fs-700);
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 52ch;
}

.cta-panel__row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-top: var(--sp-3);
}

.prose {
    max-width: 760px;
}

.prose h2 {
    font-size: var(--fs-600);
    margin-top: var(--sp-4);
}

.prose h3 {
    font-size: var(--fs-500);
    margin-top: var(--sp-3);
}

.prose ul {
    padding-left: 1.3rem;
}

.note {
    background: rgba(246, 193, 119, 0.16);
    border-left: 3px solid var(--c-amber-400);
    border-radius: var(--radius-sm);
    padding: var(--sp-2) var(--sp-3);
    margin-block: var(--sp-3);
    font-size: var(--fs-400);
    color: var(--c-ink-700);
}

.page-hero {
    padding-block: var(--sp-6) var(--sp-5);
    position: relative;
}

.page-hero__title {
    font-size: var(--fs-800);
    max-width: 16ch;
}

.crumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: var(--fs-300);
    color: var(--c-ink-400);
    margin-bottom: var(--sp-2);
    list-style: none;
    padding: 0;
}

.crumb li {
    margin: 0;
}

.crumb i {
    font-size: 0.9rem;
}

.dynamic-date {
    font-weight: 600;
    color: var(--c-dusk-600);
}

.form {
    background: #fff;
    border: 1px solid var(--c-line-soft);
    border-radius: var(--radius-lg);
    padding: var(--sp-4);
    box-shadow: var(--shadow-soft);
}

.field {
    margin-bottom: var(--sp-3);
}

.field__label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--c-ink-900);
    font-size: var(--fs-400);
}

.field__control {
    width: 100%;
    font-family: var(--font-body);
    font-size: var(--fs-400);
    color: var(--c-ink-900);
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-line);
    background: var(--c-cream-50);
    transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

textarea.field__control {
    resize: vertical;
    min-height: 150px;
}

.field__control:focus {
    border-color: var(--c-violet-400);
    box-shadow: 0 0 0 4px rgba(124, 108, 240, 0.14);
    outline: none;
}

.field.is-invalid .field__control {
    border-color: #d8607a;
    background: rgba(216, 96, 122, 0.05);
}

.field__error {
    display: none;
    margin-top: 0.4rem;
    font-size: var(--fs-300);
    color: #c34564;
    align-items: center;
    gap: 0.4rem;
}

.field.is-invalid .field__error {
    display: flex;
}

.field--check {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}

.field--check input {
    margin-top: 0.35rem;
    width: 18px;
    height: 18px;
    accent-color: var(--c-violet-500);
    flex-shrink: 0;
}

.field--check label {
    font-size: var(--fs-300);
    color: var(--c-ink-500);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--sp-5);
    align-items: start;
}

.info-card {
    background: var(--c-night-900);
    background-image: var(--grad-veil);
    color: var(--c-cream-100);
    border-radius: var(--radius-lg);
    padding: var(--sp-4);
    box-shadow: var(--shadow-lift);
}

.info-card h3 {
    color: #fff;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: var(--sp-3) 0 0;
    display: grid;
    gap: var(--sp-2);
}

.info-list li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin: 0;
}

.info-list i {
    font-size: 1.3rem;
    color: var(--c-amber-300);
    margin-top: 2px;
}

.info-list a {
    color: var(--c-amber-300);
}

.info-list span small {
    display: block;
    font-size: var(--fs-300);
    color: rgba(239, 233, 224, 0.6);
}

.thanks {
    min-height: 60vh;
    display: grid;
    place-items: center;
    text-align: center;
}

.thanks__icon {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    margin: 0 auto var(--sp-3);
    background: var(--grad-amber);
    color: var(--c-night-900);
    font-size: 2.6rem;
    box-shadow: var(--shadow-glow);
}

.site-footer {
    background: var(--c-night-950);
    color: rgba(239, 233, 224, 0.7);
    padding-block: var(--sp-5) var(--sp-3);
}

.site-footer a {
    color: rgba(239, 233, 224, 0.75);
}

.site-footer a:hover {
    color: var(--c-amber-300);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: var(--sp-4);
    padding-bottom: var(--sp-4);
    border-bottom: 1px solid rgba(239, 233, 224, 0.12);
}

.footer-grid h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: var(--fs-300);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: var(--sp-2);
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.footer-brand p {
    color: rgba(239, 233, 224, 0.6);
    max-width: 34ch;
    font-size: var(--fs-300);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--sp-2);
    padding-top: var(--sp-3);
    font-size: var(--fs-300);
    color: rgba(239, 233, 224, 0.55);
}

.cookie {
    position: fixed;
    left: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    z-index: 150;
    max-width: 460px;
    background: var(--glass);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lift);
    padding: var(--sp-3);
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}

.cookie.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie__title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: var(--fs-500);
}

.cookie__title i {
    color: var(--c-dusk-600);
}

.cookie__text {
    font-size: var(--fs-300);
    color: var(--c-ink-700);
}

.cookie__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: var(--sp-2);
}

.cookie__actions .btn {
    padding: 0.6rem 1.1rem;
    font-size: var(--fs-300);
}

.cookie__settings {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease-out);
}

.cookie.is-expanded .cookie__settings {
    max-height: 320px;
}

.cookie__group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-2);
    padding: 0.7rem 0;
    border-top: 1px solid var(--c-line-soft);
}

.cookie__group p {
    margin: 0;
    font-size: var(--fs-300);
}

.cookie__group b {
    color: var(--c-ink-900);
}

.switch {
    position: relative;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}

.switch input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}

.switch__slider {
    position: absolute;
    inset: 0;
    background: var(--c-ink-400);
    border-radius: var(--radius-pill);
    transition: background 0.3s var(--ease-out);
}

.switch__slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s var(--ease-out);
}

.switch input:checked+.switch__slider {
    background: var(--c-violet-500);
}

.switch input:checked+.switch__slider::before {
    transform: translateX(20px);
}

.switch input:disabled+.switch__slider {
    background: var(--c-violet-400);
    opacity: 0.7;
    cursor: not-allowed;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-in {
    opacity: 1;
    transform: none;
}

.reveal[data-delay="1"] {
    transition-delay: 0.08s;
}

.reveal[data-delay="2"] {
    transition-delay: 0.16s;
}

.reveal[data-delay="3"] {
    transition-delay: 0.24s;
}

.reveal[data-delay="4"] {
    transition-delay: 0.32s;
}

.split-feature {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--sp-3);
}

.split-feature__lead {
    grid-column: span 5;
}

.split-feature__panels {
    grid-column: span 7;
    display: grid;
    gap: var(--sp-2);
}

.panel {
    background: #fff;
    border: 1px solid var(--c-line-soft);
    border-radius: var(--radius-md);
    padding: var(--sp-3);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--sp-2);
    align-items: start;
    transition: transform 0.35s var(--ease-out);
}

.panel:hover {
    transform: translateX(6px);
}

.panel i {
    font-size: 1.6rem;
    color: var(--c-dusk-600);
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: var(--sp-2);
}

.pill {
    font-size: var(--fs-300);
    font-weight: 600;
    color: var(--c-dusk-600);
    background: rgba(124, 108, 240, 0.1);
    border-radius: var(--radius-pill);
    padding: 0.4rem 0.9rem;
}

.quote {
    font-family: var(--font-display);
    font-size: var(--fs-600);
    font-style: italic;
    line-height: 1.3;
    color: var(--c-ink-900);
    max-width: 22ch;
}

.quote-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
    align-items: center;
}

.layer-list {
    display: grid;
    gap: var(--sp-2);
}

.layer {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: var(--sp-3);
    padding: var(--sp-3);
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid var(--c-line-soft);
    box-shadow: var(--shadow-soft);
    align-items: center;
}

.layer__time {
    font-family: var(--font-display);
    font-size: var(--fs-500);
    color: var(--c-dusk-600);
}

.disclaimer-strip {
    background: rgba(20, 17, 43, 0.04);
    border-radius: var(--radius-md);
    padding: var(--sp-3);
    font-size: var(--fs-300);
    color: var(--c-ink-500);
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-top: var(--sp-3);
}

.disclaimer-strip i {
    font-size: 1.3rem;
    color: var(--c-dusk-500);
    flex-shrink: 0;
}

@media (max-width: 980px) {

    .hero__grid,
    .feature-split,
    .feature-split--flip,
    .contact-grid,
    .quote-block {
        grid-template-columns: 1fr;
    }

    .feature-split__media {
        order: -1;
    }

    .section-head--split {
        grid-template-columns: 1fr;
    }

    .split-feature__lead,
    .split-feature__panels {
        grid-column: span 12;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-band {
        grid-template-columns: 1fr 1fr;
    }

    .archetype-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .archetype--a,
    .archetype--b,
    .archetype--c,
    .archetype--d,
    .archetype--e,
    .archetype--f {
        grid-column: span 1;
    }

    .archetype--d {
        grid-column: span 2;
    }
}

@media (max-width: 760px) {
    .primary-nav {
        position: fixed;
        height: 100vh;
        inset: 0 0 0 auto;
        width: min(82vw, 340px);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.3rem;
        padding: calc(var(--sp-6)) var(--sp-3) var(--sp-3);
        background: var(--c-cream-50);
        box-shadow: var(--shadow-lift);
        transform: translateX(110%);
        transition: transform 0.4s var(--ease-out);
    }

    .primary-nav.is-open {
        transform: translateX(0);
    }

    .primary-nav__link {
        font-size: var(--fs-500);
        padding: 0.8rem 1rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .header-actions .btn--primary {
        display: none;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stat-band {
        grid-template-columns: 1fr;
    }

    .hero__chip--top {
        left: 2%;
    }

    .hero__chip--bottom {
        right: 2%;
    }
}

@media (max-width: 360px) {
    :root {
        --maxw: 100%;
    }

    .shell {
        padding-inline: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__cta,
    .cta-panel__row,
    .cookie__actions {
        flex-direction: column;
    }

    .cookie__actions .btn {
        width: 100%;
    }

    .archetype-grid {
        grid-template-columns: 1fr;
    }

    .archetype--d {
        grid-column: span 1;
    }

    .hero__chip {
        display: none;
    }

    .author {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author__avatar {
        margin: 0 auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}