/* ============================================
   Trusted — COMING SOON
   Stylesheet
   ============================================ */

/* ----- Font Faces ----- */
@font-face {
    font-family: 'FK Roman Text';
    src: url('Assets/FK Roman Text/FKRomanText-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FK Roman Text';
    src: url('Assets/FK Roman Text/FKRomanText-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FK Roman Text';
    src: url('Assets/FK Roman Text/FKRomanText-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FK Roman Text';
    src: url('Assets/FK Roman Text/FKRomanText-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FK Grotesk Neue';
    src: url('Assets/FK Grotesk Neue/FKGroteskNeue-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FK Grotesk Neue';
    src: url('Assets/FK Grotesk Neue/FKGroteskNeue-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FK Grotesk Neue';
    src: url('Assets/FK Grotesk Neue/FKGroteskNeue-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FK Grotesk Neue';
    src: url('Assets/FK Grotesk Neue/FKGroteskNeue-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FK Grotesk Neue';
    src: url('Assets/FK Grotesk Neue/FKGroteskNeue-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}


/* ----- Design Tokens ----- */
:root {
    /* Colors */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-blue: #0000ED;
    --color-blue-light: #0000FF;
    --color-grey-01: #D2D2D2;
    --color-grey-02: #F1F1F1;

    /* Typography */
    --font-roman: 'FK Roman Text', 'Georgia', 'Times New Roman', serif;
    --font-grotesk: 'FK Grotesk Neue', 'Helvetica Neue', 'Arial', sans-serif;

    /* Spacing */
    --gutter: 24px;
    --margin: clamp(24px, 4vw, 80px);

    /* Grid */
    --columns: 12;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration: 0.4s;
}


/* ----- Reset ----- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-grotesk);
    background-color: var(--color-black);
    color: var(--color-white);
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
}

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


/* ----- Background Canvas ----- */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


/* ----- Grid Container ----- */
.grid-container {
    width: 100%;
    max-width: 100%;
    padding-left: var(--margin);
    padding-right: var(--margin);
}


/* ----- Page Layout ----- */
.page {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}


/* ============================================
   HEADER
   ============================================ */
.header {
    flex-shrink: 0;
    padding-top: clamp(24px, 3vh, 40px);
    padding-bottom: clamp(16px, 2vh, 24px);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
}

.logo {
    height: clamp(16px, 1.75vw, 25px);
    width: auto;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 0.2s forwards;
}

.logo--light { display: none; }
.logo--dark  { display: block; }

/* ----- Header Controls ----- */
.header__controls {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 0.4s forwards;
}

.manifesto-trigger-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5); /* Default gray */
    cursor: pointer;
    padding: 8px 12px;
    font-family: var(--font-grotesk);
    font-size: 14px;
    font-weight: 300;
    transition: color var(--duration) var(--ease-out);
}

.manifesto-trigger-btn:hover {
    color: var(--color-white); /* Hover white */
}

.manifesto-trigger-icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manifesto-trigger-icon svg {
    position: absolute;
    width: 18px;
    height: 18px;
    transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.icon-eye-open {
    opacity: 0;
    transform: scale(0.8);
}

.icon-eye-closed {
    opacity: 1;
    transform: scale(1);
}

.manifesto-trigger-btn:hover .icon-eye-closed {
    opacity: 0;
    transform: scale(0.8);
}

.manifesto-trigger-btn:hover .icon-eye-open {
    opacity: 1;
    transform: scale(1);
}

.ctrl-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--duration) var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctrl-btn:hover {
    color: rgba(255, 255, 255, 0.9);
}

.ctrl-btn svg {
    width: 16px;
    height: 16px;
}

/* ----- Theme Toggle Switch ----- */
.theme-toggle {
    padding: 0;
}

.theme-toggle__track {
    display: block;
    width: 34px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    position: relative;
    transition: background var(--duration) var(--ease-out), border-color var(--duration) var(--ease-out);
}

.theme-toggle__thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: transform var(--duration) var(--ease-out), background var(--duration) var(--ease-out);
}

.theme-toggle.active .theme-toggle__track {
    background: var(--color-blue);
    border-color: var(--color-blue);
}

.theme-toggle.active .theme-toggle__thumb {
    transform: translateX(16px);
    background: #fff;
}


/* ============================================
   MANIFESTO MODAL
   ============================================ */
.manifesto-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--margin);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-out);
}

.manifesto-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.manifesto-modal {
    position: relative;
    max-width: 620px;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(40px) saturate(1.4);
    -webkit-backdrop-filter: blur(40px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    padding: clamp(32px, 5vw, 56px);
    transform: translateY(20px);
    transition: transform 0.5s var(--ease-out);
}

.manifesto-overlay.is-open .manifesto-modal {
    transform: translateY(0);
}

.manifesto-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.4);
    padding: 4px;
    transition: color var(--duration) var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
}

.manifesto-close:hover {
    color: rgba(255, 255, 255, 0.9);
}

.manifesto-close svg {
    width: 18px;
    height: 18px;
}

.manifesto-label {
    display: block;
    font-family: var(--font-grotesk);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-blue);
    margin-bottom: 16px;
}

.manifesto-title {
    font-family: var(--font-roman);
    font-weight: 100;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--color-white);
    margin-bottom: 28px;
}

.manifesto-body p {
    font-family: var(--font-grotesk);
    font-weight: 300;
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
}

.manifesto-body p:last-child {
    margin-bottom: 0;
}

.manifesto-closing {
    color: rgba(255, 255, 255, 0.85) !important;
    margin-top: 8px;
}

/* ----- Scrollable content ----- */
.manifesto-modal {
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.manifesto-content {
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.manifesto-content::-webkit-scrollbar { width: 4px; }
.manifesto-content::-webkit-scrollbar-track { background: transparent; }
.manifesto-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* ----- Intro ----- */
.manifesto-intro {
    font-size: clamp(13px, 1vw, 15px) !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-bottom: 20px !important;
}

/* ----- Section header ----- */
.manifesto-section {
    font-family: var(--font-grotesk);
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-blue);
    margin-bottom: 14px;
    margin-top: 4px;
}

/* ----- Divider ----- */
.manifesto-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 28px 0;
}

/* ----- Blockquote ----- */
.manifesto-quote {
    border-left: 2px solid var(--color-blue);
    padding: 12px 16px;
    margin: 20px 0;
    background: rgba(0, 0, 237, 0.05);
    font-family: var(--font-grotesk);
    font-weight: 300;
    font-size: clamp(12px, 0.9vw, 14px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.manifesto-quote strong { color: rgba(255, 255, 255, 0.9); font-weight: 500; }

.manifesto-quote cite {
    display: block;
    margin-top: 8px;
    font-size: 10px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.35);
    font-style: normal;
}

/* ----- Products grid ----- */
.manifesto-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 16px;
}

.manifesto-product {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #000;
}

.manifesto-product__name {
    font-family: var(--font-grotesk);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.manifesto-product__desc {
    font-family: var(--font-grotesk);
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

/* ----- Contrast before/after ----- */
.manifesto-contrast {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.manifesto-contrast__col { padding: 16px 20px; }

.manifesto-contrast__col ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.manifesto-contrast__col ul li {
    font-family: var(--font-grotesk);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.7;
    padding: 2px 0;
    color: rgba(255, 255, 255, 0.55);
}

.manifesto-contrast__col--from li {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.3) !important;
}

.manifesto-contrast__col--to li {
    color: rgba(255, 255, 255, 0.75) !important;
}

.manifesto-contrast__label {
    font-family: var(--font-grotesk);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.manifesto-contrast__divider { background: rgba(255, 255, 255, 0.06); }

/* ----- Pillars ----- */
.manifesto-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 16px;
}

.manifesto-pillar {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #000;
}

.manifesto-pillar__number {
    font-family: var(--font-roman);
    font-size: 22px;
    font-weight: 100;
    color: rgba(0, 0, 237, 0.6);
    line-height: 1;
}

.manifesto-pillar__title {
    font-family: var(--font-grotesk);
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.manifesto-pillar__desc {
    font-family: var(--font-grotesk);
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

/* ----- List ----- */
.manifesto-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.manifesto-list li {
    font-family: var(--font-grotesk);
    font-size: clamp(12px, 0.9vw, 14px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    padding-left: 16px;
    position: relative;
}

.manifesto-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--color-blue);
    font-size: 16px;
    top: 1px;
}

/* ----- Closing signature ----- */
.manifesto-sign {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.manifesto-sign span {
    font-family: var(--font-grotesk);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.manifesto-sign strong {
    font-family: var(--font-grotesk);
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.manifesto-sign__symbol {
    width: 40px;
    height: auto;
    margin-top: 16px;
    opacity: 0.7;
    transition: opacity var(--duration) var(--ease-out);
    display: block;
    object-fit: contain;
}

.manifesto-sign__symbol:hover {
    opacity: 1;
}

/* Dark mode: show white symbol, hide blue */
.manifesto-sign__symbol--light { display: none; }
.manifesto-sign__symbol--dark  { display: block; }

/* Light mode: show blue symbol, hide white */
body.light-mode .manifesto-sign__symbol--dark  { display: none; }
body.light-mode .manifesto-sign__symbol--light { display: block; }


/* ============================================
   TEXT SELECTION
   ============================================ */
::selection {
    background: var(--color-blue);
    color: #fff;
}

::-moz-selection {
    background: var(--color-blue);
    color: #fff;
}

body.light-mode ::selection {
    background: var(--color-blue);
    color: #fff;
}


/* ============================================
   LIGHT MODE
   ============================================ */
body.light-mode {
    background-color: #F5F5F3;
}

body.light-mode #bg-canvas {
    opacity: 0.65;
}

body.light-mode .ctrl-btn { color: #0a0a0a; }

body.light-mode .manifesto-trigger-btn {
    color: rgba(10, 10, 10, 0.4);
}
body.light-mode .manifesto-trigger-btn:hover {
    color: #0a0a0a;
}

body.light-mode .logo--dark  { display: none; }
body.light-mode .logo--light { display: block; }

body.light-mode .page {
    color: #0a0a0a;
}

body.light-mode .footer__signature-img {
    filter: invert(1);
    opacity: 0.4;
}

body.light-mode .hero__title {
    color: #0a0a0a;
}

body.light-mode .hero__subtitle {
    color: rgba(0, 0, 0, 0.6);
}

body.light-mode .badge {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.5);
}

body.light-mode .btn--outline {
    color: #0a0a0a;
    border-color: rgba(0, 0, 0, 0.25);
}

body.light-mode .btn--outline:hover {
    color: #fff;
    border-color: var(--color-blue);
}

body.light-mode .footer__label {
    color: rgba(0, 0, 0, 0.35);
}

body.light-mode .footer__info {
    color: rgba(0, 0, 0, 0.6);
}

body.light-mode .ctrl-btn {
    color: rgba(0, 0, 0, 0.4);
}

body.light-mode .ctrl-btn:hover {
    color: rgba(0, 0, 0, 0.85);
}

body.light-mode .theme-toggle__track {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.15);
}

body.light-mode .theme-toggle__thumb {
    background: rgba(0, 0, 0, 0.4);
}

body.light-mode .clock__tick {
    stroke: rgba(0, 0, 0, 0.2);
}

body.light-mode .clock__hand--hour {
    stroke: rgba(0, 0, 0, 0.8);
}

body.light-mode .clock__hand--minute {
    stroke: rgba(0, 0, 0, 0.6);
}

body.light-mode .clock__center {
    fill: #0a0a0a;
}

body.light-mode .manifesto-modal {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(40px) saturate(1.8);
    -webkit-backdrop-filter: blur(40px) saturate(1.8);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.12);
}

body.light-mode .manifesto-label {
    color: var(--color-blue);
}

body.light-mode .manifesto-title {
    color: #0a0a0a;
}

body.light-mode .manifesto-body p {
    color: rgba(0, 0, 0, 0.65);
}

body.light-mode .manifesto-section {
    color: var(--color-blue);
}

body.light-mode .manifesto-closing {
    color: rgba(0, 0, 0, 0.8) !important;
}

body.light-mode .manifesto-close {
    color: rgba(0, 0, 0, 0.35);
}

body.light-mode .manifesto-close:hover {
    color: rgba(0, 0, 0, 0.85);
}

body.light-mode .manifesto-overlay {
    background: rgba(200, 200, 200, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

body.light-mode .manifesto-divider { background: rgba(0,0,0,0.06); }
body.light-mode .manifesto-intro { color: rgba(0,0,0,0.45) !important; }
body.light-mode .manifesto-quote { background: rgba(0,0,237,0.04); color: rgba(0,0,0,0.55); }
body.light-mode .manifesto-quote strong { color: #0a0a0a; }
body.light-mode .manifesto-quote cite { color: rgba(0,0,0,0.3); }

body.light-mode .manifesto-products,
body.light-mode .manifesto-contrast,
body.light-mode .manifesto-pillars { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.08); }

body.light-mode .manifesto-product { background: rgba(255,255,255,0.6); }
body.light-mode .manifesto-product__name { color: rgba(0,0,0,0.85); }
body.light-mode .manifesto-product__desc { color: rgba(0,0,0,0.5); }

body.light-mode .manifesto-contrast__label { color: rgba(0,0,0,0.4); }
body.light-mode .manifesto-contrast__divider { background: rgba(0,0,0,0.08); }
body.light-mode .manifesto-contrast__col ul li { color: rgba(0,0,0,0.6); }
body.light-mode .manifesto-contrast__col--from li { color: rgba(0,0,0,0.35) !important; }
body.light-mode .manifesto-contrast__col--to li { color: rgba(0,0,0,0.8) !important; }

body.light-mode .manifesto-pillar { background: rgba(255,255,255,0.6); }
body.light-mode .manifesto-pillar__number { color: rgba(0,0,237,0.5); }
body.light-mode .manifesto-pillar__title { color: rgba(0,0,0,0.85); }
body.light-mode .manifesto-pillar__desc { color: rgba(0,0,0,0.5); }

body.light-mode .manifesto-list li { color: rgba(0,0,0,0.65); }

body.light-mode .manifesto-sign { border-color: rgba(0,0,0,0.08); }
body.light-mode .manifesto-sign span { color: rgba(0,0,0,0.5); }
body.light-mode .manifesto-sign strong { color: rgba(0,0,0,0.7); }

body.light-mode .manifesto-quote { background: rgba(0,0,237,0.05); color: rgba(0,0,0,0.6); }
body.light-mode .manifesto-quote strong { color: rgba(0,0,0,0.9); }
body.light-mode .manifesto-quote cite { color: rgba(0,0,0,0.35); }

body.light-mode .manifesto-divider { background: rgba(0,0,0,0.07); }
body.light-mode .manifesto-intro { color: rgba(0,0,0,0.5) !important; }

body.light-mode .manifesto-content::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); }


/* ============================================
   HERO
   ============================================ */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 var(--margin);
    min-height: 0;
}

.hero__content {
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 1.2s var(--ease-out) 0.5s forwards;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border: none;
    border-radius: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.04) 50%,
        rgba(0, 0, 237, 0.06) 100%
    );
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 4px 20px rgba(0, 0, 0, 0.2);
    font-family: var(--font-grotesk);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: clamp(20px, 3vh, 32px);
    transition: all var(--duration) var(--ease-out);
}

.badge:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.16) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(0, 0, 237, 0.1) 100%
    );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 6px 28px rgba(0, 0, 237, 0.18);
    color: rgba(255, 255, 255, 0.95);
}

/* ----- Animated dots ----- */
.badge__dots {
    display: inline-flex;
    margin-left: 1px;
}

.badge__dots span {
    opacity: 0;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.badge__dots span:nth-child(1) { animation-delay: 0s; }
.badge__dots span:nth-child(2) { animation-delay: 0.3s; }
.badge__dots span:nth-child(3) { animation-delay: 0.6s; }

@keyframes dotPulse {
    0%, 100% { opacity: 0; }
    40%       { opacity: 1; }
}

/* Light mode badge */
body.light-mode .badge {
    border: none;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 4px 20px rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.55);
}

body.light-mode .badge:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.45) 100%
    );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 6px 28px rgba(0, 0, 237, 0.1);
    color: rgba(0, 0, 0, 0.8);
}


.hero__title {
    font-family: var(--font-roman);
    font-weight: 100;
    font-size: clamp(29px, 5.4vw, 80px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--color-white);
    margin-bottom: clamp(16px, 2.5vh, 32px);
}

.hero__subtitle {
    font-family: var(--font-grotesk);
    font-weight: 300;
    font-size: clamp(14px, 1.3vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: clamp(24px, 3.5vh, 48px);
}


/* ----- CTA Button ----- */
.btn {
    display: inline-block;
    font-family: var(--font-grotesk);
    font-weight: 400;
    font-size: clamp(12px, 1vw, 15px);
    letter-spacing: 0.06em;
    text-transform: none;
    padding: 14px 36px;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--duration) var(--ease-out);
    z-index: -1;
}

.btn--outline:hover {
    border-color: var(--color-blue);
    color: var(--color-white);
}

.btn--outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
    flex-shrink: 0;
    padding-top: clamp(16px, 2vh, 24px);
    padding-bottom: clamp(20px, 3vh, 36px);
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 1s forwards;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gutter);
    align-items: end;
}

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

.footer__label {
    font-family: var(--font-grotesk);
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.footer__info {
    font-family: var(--font-grotesk);
    font-weight: 300;
    font-size: clamp(11px, 0.85vw, 13px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

.footer__block--signature {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.footer__signature-img {
    height: clamp(14px, 1.2vw, 22px);
    width: auto;
    opacity: 0.5;
    display: block;
}


/* ============================================
   ANALOG CLOCK
   ============================================ */
.clock {
    position: fixed;
    bottom: clamp(80px, 10vh, 120px);
    right: var(--margin);
    width: clamp(48px, 5vw, 72px);
    height: clamp(48px, 5vw, 72px);
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 1.4s forwards;
}

.clock__face {
    width: 100%;
    height: 100%;
}

.clock__tick {
    stroke: rgba(255, 255, 255, 0.25);
    stroke-linecap: round;
}

.clock__tick--major {
    stroke-width: 1.5;
}

.clock__tick--minor {
    stroke-width: 0.8;
}

.clock__hand {
    stroke-linecap: round;
}

.clock__hand--hour {
    stroke-width: 2.2;
    stroke: rgba(255, 255, 255, 0.9);
}

.clock__hand--minute {
    stroke-width: 1.4;
    stroke: rgba(255, 255, 255, 0.7);
}

.clock__hand--second {
    stroke-width: 0.7;
    stroke: #0000ED;
}

.clock__center {
    fill: var(--color-white);
}


/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 24px;
    }

    .footer__block--signature {
        justify-content: flex-start;
    }

    .clock {
        bottom: clamp(100px, 14vh, 140px);
        width: 44px;
        height: 44px;
    }
}


/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 640px) {
    :root {
        --margin: 20px;
        --gutter: 16px;
    }

    .hero__title {
        font-size: clamp(28px, 8vw, 44px);
        letter-spacing: -0.02em;
    }

    .hero__subtitle {
        font-size: 14px;
    }

    .desktop-only {
        display: none;
    }

    .btn {
        font-size: 11px;
        padding: 12px 28px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px 20px;
    }

    .footer__label {
        font-size: 9px;
    }

    .footer__info {
        font-size: 11px;
    }

    .footer__signature-img {
        height: 12px;
    }

    .clock {
        top: auto;
        bottom: clamp(140px, 15vh, 180px);
        right: var(--margin);
        width: 36px;
        height: 36px;
    }
}

/* Very small screens */
@media (max-height: 600px) {
    .hero__title {
        font-size: clamp(24px, 5vw, 36px);
    }
    
    .hero__subtitle {
        margin-bottom: 16px;
    }

    .header {
        padding-top: 16px;
        padding-bottom: 8px;
    }

    .footer {
        padding-top: 8px;
        padding-bottom: 12px;
    }
}

/* ============================================
   CONTACT FORM STYLES
   ============================================ */
.contact-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 var(--margin);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.contact-main::-webkit-scrollbar { width: 4px; }
.contact-main::-webkit-scrollbar-track { background: transparent; }
.contact-main::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

body.light-mode .contact-main::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
}

.form-container {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.form-progress {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    position: relative;
}

body.light-mode .form-progress {
    background: rgba(0, 0, 0, 0.08);
}

.form-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--color-blue);
    transition: width var(--duration) var(--ease-out);
}

.form-step {
    display: none;
    animation: fadeIn 0.5s var(--ease-out) forwards;
}

.form-step.active {
    display: block;
}

.step-label {
    font-family: var(--font-grotesk);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-blue);
    margin-bottom: 12px;
    display: block;
}

.question-group {
    margin-bottom: 48px;
}

.question-title {
    font-family: var(--font-roman);
    font-weight: 300;
    font-size: clamp(20px, 2.5vw, 26px);
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 24px;
}

body.light-mode .question-title {
    color: #0a0a0a;
}

.question-desc {
    font-family: var(--font-grotesk);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    line-height: 1.5;
}

body.light-mode .question-desc {
    color: rgba(0, 0, 0, 0.5);
}

.input-text, .input-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--color-white);
    font-family: var(--font-grotesk);
    font-size: clamp(18px, 1.5vw, 20px);
    font-weight: 400;
    padding: 12px 0 16px;
    transition: border-color var(--duration) var(--ease-out);
}

.input-textarea {
    resize: vertical;
    min-height: 80px;
    margin-top: 8px;
}

body.light-mode .input-text, body.light-mode .input-textarea {
    border-color: rgba(0, 0, 0, 0.15);
    color: #0a0a0a;
}

.input-text:focus, .input-textarea:focus {
    outline: none;
    border-color: var(--color-blue);
}

.input-text::placeholder, .input-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

body.light-mode .input-text::placeholder, body.light-mode .input-textarea::placeholder {
    color: rgba(0, 0, 0, 0.25);
}

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

@media (min-width: 600px) {
    .options-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.option-card {
    position: relative;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
}

body.light-mode .option-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

.option-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

body.light-mode .option-card:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.option-label {
    font-family: var(--font-grotesk);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--duration) var(--ease-out);
}

body.light-mode .option-label {
    color: rgba(0, 0, 0, 0.7);
}

.option-card input[type="radio"]:checked + .option-label {
    color: var(--color-white);
    font-weight: 500;
}

body.light-mode .option-card input[type="radio"]:checked + .option-label {
    color: var(--color-blue);
    font-weight: 500;
}

.option-card:has(input[type="radio"]:checked) {
    background: rgba(0, 0, 237, 0.1);
    border-color: var(--color-blue);
}

.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 16px;
    cursor: pointer;
}

.checkbox-wrap input {
    margin-top: 4px;
    accent-color: var(--color-blue);
}

.checkbox-label {
    font-family: var(--font-grotesk);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

body.light-mode .checkbox-label {
    color: rgba(0, 0, 0, 0.5);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-mode .form-actions {
    border-color: rgba(0, 0, 0, 0.1);
}

.form-btn {
    font-family: var(--font-grotesk);
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 12px 24px;
    border: 1px solid;
    transition: all var(--duration) var(--ease-out);
}

.form-btn--primary {
    background: var(--color-blue);
    border-color: var(--color-blue);
    color: white !important;
}

.form-btn--primary:hover {
    background: var(--color-blue-light);
    border-color: var(--color-blue-light);
}

.form-btn--secondary {
    border-color: rgba(255, 255, 255, 0.2);
}

body.light-mode .form-btn--secondary {
    color: #0a0a0a;
    border-color: rgba(0, 0, 0, 0.2);
}

.form-btn--secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

body.light-mode .form-btn--secondary:hover {
    border-color: rgba(0, 0, 0, 0.5);
}

.form-btn:disabled {
    opacity: 0.3;
    pointer-events: none;
}

.feedback-msg {
    color: #ff4d4d;
    font-size: 12px;
    margin-top: 8px;
    display: none;
}
.feedback-msg.show {
    display: block;
}

/* Success screen */
.success-screen {
    text-align: center;
    padding: 60px 0;
}
.success-title {
    font-family: var(--font-roman);
    font-weight: 100;
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 24px;
    color: var(--color-white);
}
body.light-mode .success-title { color: #0a0a0a; }

.success-graphic {
    max-width: 120px;
    margin: 0 auto 32px auto;
}
    
.success-graphic--light { display: none; }
.success-graphic--dark { display: block; }
    
body.light-mode .success-graphic--dark { display: none; }
body.light-mode .success-graphic--light { display: block; }

.success-text {
    font-family: var(--font-grotesk);
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
body.light-mode .success-text { color: rgba(0, 0, 0, 0.6); }
