/* ==========================================================================
   CSS VARIABLES & PLUM SAFFRON DESIGN (YEVUTIV.ICU)
   ========================================================================== */
:root {
    --c-plum: #4a044e; /* Fuchsia 950 */
    --c-plum-light: #86198f; /* Fuchsia 700 */
    --c-saffron: #d97706; /* Amber 600 */
    --c-saffron-light: #fef3c7; /* Amber 100 */
    --c-dark: #171717; /* Neutral 900 */
    --c-text: #525252; /* Neutral 600 */
    --c-bg: #fafaf9; /* Stone 50 */
    --c-white: #ffffff;
    --c-line: #e5e5e5;

    --pad-x: clamp(15px, 5vw, 30px);
    --pad-y: clamp(70px, 9vw, 120px);
    
    --shadow-soft: 0 10px 25px rgba(74, 4, 78, 0.05);
    --shadow-hard: 0 20px 40px rgba(74, 4, 78, 0.15);
    --trans: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background-color: var(--c-bg);
    color: var(--c-text);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--c-dark); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; font-family: 'Syne', sans-serif; }
h1 { font-size: clamp(2.5rem, 7vw, 5rem); letter-spacing: -2px; }
h2 { font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -1px; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); color: var(--c-plum); }
p { font-size: clamp(1.05rem, 1.5vw, 1.15rem); margin-bottom: 1.5rem; }

a { text-decoration: none; color: inherit; transition: var(--trans); }
img { max-width: 100%; height: auto; display: block; border-radius: 0; } /* Sharp edges in this design */
ul { list-style: none; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--pad-x); }
.sec-p { padding: var(--pad-y) 0; }
.txt-c { text-align: center; }

/* ==========================================================================
   HEADER (STRICT 10PX MOBILE PADDING)
   ========================================================================== */
.site-hdr { background: var(--c-white); border-bottom: 2px solid var(--c-dark); position: sticky; top: 0; z-index: 1000; }

.mob-head-pad {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 10px; /* СТРОГО 10PX НА МОБИЛЬНОМ */
    max-width: 1200px; margin: 0 auto; position: relative;
}

@media (min-width: 768px) { .mob-head-pad { padding: 20px var(--pad-x); } }

.brand { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--c-dark); text-transform: uppercase; letter-spacing: -1px; }
.brand span { color: var(--c-saffron); }

.burger { display: flex; flex-direction: column; gap: 6px; cursor: pointer; padding: 5px; }
.burger span { width: 32px; height: 3px; background: var(--c-dark); }
#menu-tog { display: none; }

.desk-nav { display: none; }
.desk-nav ul { display: flex; gap: 35px; align-items: center; }
.desk-nav a { font-weight: 700; color: var(--c-text); font-size: 1.05rem; text-transform: uppercase; letter-spacing: 1px; }
.desk-nav a:hover, .desk-nav a.active { color: var(--c-plum); }

.mobile-nav {
    display: none; position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--c-white); padding: 15px 20px 25px; box-shadow: 0 15px 25px rgba(0,0,0,0.1); border-bottom: 4px solid var(--c-plum);
}
.mobile-nav a { display: block; font-weight: 700; color: var(--c-dark); padding: 15px 0; border-bottom: 1px solid var(--c-line); text-transform: uppercase; }
.mobile-nav li:last-child a { border-bottom: none; }
#menu-tog:checked ~ .mobile-nav { display: block; }

@media (min-width: 992px) {
    .burger { display: none; }
    .desk-nav { display: block; }
    .mobile-nav { display: none !important; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 18px 45px; font-weight: 800; font-size: 1.1rem; cursor: pointer; transition: var(--trans); border: 2px solid transparent; text-align: center; font-family: 'Syne', sans-serif; text-transform: uppercase; }
.btn-pl { background: var(--c-plum); color: #fff; }
.btn-pl:hover { background: var(--c-dark); color: var(--c-saffron); }
.btn-sf { background: var(--c-saffron); color: var(--c-dark); }
.btn-sf:hover { background: var(--c-dark); color: #fff; }

/* ==========================================================================
   GENERAL GRIDS
   ========================================================================== */
.g-2 { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 992px) { .g-2 { grid-template-columns: 1fr 1fr; gap: 60px; } }

/* ==========================================================================
   INDEX: DIAGONAL HERO, HEXAGONS & SPEEDOMETER GAUGE
   ========================================================================== */
.diag-hero { position: relative; padding: 100px 20px; overflow: hidden; color: white; }
.diag-hero::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: var(--c-plum); z-index: -2; }
.diag-hero::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 100%; background: var(--c-dark); transform-origin: bottom left; transform: skewX(-25deg); z-index: -1; }
@media (max-width: 768px) { .diag-hero::after { transform: skewY(-20deg); width: 100%; height: 150%; top: -50%; } }

.hero-content { position: relative; z-index: 10; max-width: 800px; margin: 0 auto; text-align: center; }
.hero-content h1 { color: white; }
.hero-content p { color: #d4d4d8; }

/* Hexagon Grid */
.hex-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 40px 0; }
.hex-item { width: 100%; max-width: 320px; aspect-ratio: 1 / 1.15; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); background: var(--c-white); display: flex; flex-direction: column; justify-content: center; padding: 40px; text-align: center; transition: var(--trans); }
.hex-item:hover { background: var(--c-saffron-light); transform: scale(1.05); }
.hex-icon { font-size: 3rem; margin-bottom: 10px; }

/* The Joint Gauge (Pengukur Sendi) */
.gauge-container { background: var(--c-white); padding: 60px 20px; border: 4px solid var(--c-dark); }
.gauge-visual { position: relative; width: 100%; max-width: 500px; margin: 0 auto 40px; overflow: hidden; aspect-ratio: 2/1; }
.gauge-arc { width: 100%; height: 200%; border-radius: 50%; background: conic-gradient(from 270deg, #ef4444 0 60deg, #f59e0b 60deg 120deg, #4a044e 120deg 180deg, transparent 180deg); position: absolute; top: 0; left: 0; }
.gauge-core { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60%; height: 60%; background: var(--c-white); border-radius: 50% 50% 0 0; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 10px; font-family: 'Syne', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--c-dark); }
.gauge-labels { display: flex; justify-content: space-between; max-width: 600px; margin: 0 auto; font-weight: 800; font-size: 0.9rem; text-transform: uppercase; }

/* ==========================================================================
   PROGRAM: STICKY IMAGE LEFT, FLOWING TEXT RIGHT + BRUTALIST FAQ
   ========================================================================== */
.prog-split { display: flex; flex-direction: column; gap: 40px; align-items: flex-start; }
.prog-img { width: 100%; }
.prog-flow { width: 100%; display: flex; flex-direction: column; gap: 60px; }
@media (min-width: 992px) {
    .prog-split { flex-direction: row; }
    .prog-img { width: 45%; position: sticky; top: 120px; height: calc(100vh - 140px); }
    .prog-img img { height: 100%; object-fit: cover; }
    .prog-flow { width: 55%; padding-left: 40px; padding-bottom: 20vh; }
}

.flow-step { position: relative; }
.f-num { font-family: 'Syne', sans-serif; font-size: 8rem; font-weight: 900; color: var(--c-saffron-light); line-height: 0.8; position: absolute; top: -20px; left: -20px; z-index: -1; }
.flow-step h3 { font-size: 2rem; color: var(--c-dark); margin-bottom: 15px; position: relative; z-index: 1; }

/* Brutalist FAQ */
.brut-faq { display: flex; flex-direction: column; }
.bf-item { padding: 30px 0; border-bottom: 4px solid var(--c-dark); }
.bf-item:first-child { border-top: 4px solid var(--c-dark); }
.bf-item h4 { font-size: 1.5rem; margin-bottom: 15px; }
.bf-item p { margin: 0; color: var(--c-text); }

/* ==========================================================================
   MISSION: JOURNAL LAYOUT & CROSSHAIR GRID
   ========================================================================== */
.journal-title { border-bottom: 4px solid var(--c-dark); padding-bottom: 20px; margin-bottom: 40px; text-align: center; }
.journal-title h1 { margin: 0; font-size: clamp(3rem, 8vw, 6rem); }

.journal-body { column-count: 1; column-gap: 50px; font-size: 1.15rem; line-height: 1.8; color: var(--c-dark); text-align: justify; }
@media (min-width: 768px) { .journal-body { column-count: 2; } }
.drop-cap::first-letter { font-family: 'Syne', sans-serif; font-size: 5.5rem; float: left; margin-right: 15px; line-height: 0.8; color: var(--c-plum); font-weight: 900; }

/* Crosshair Grid */
.cross-grid { display: grid; grid-template-columns: 1fr; border: 4px solid var(--c-dark); margin-top: 60px; }
@media (min-width: 768px) { .cross-grid { grid-template-columns: 1fr 1fr; } }
.cross-item { padding: 50px 40px; background: var(--c-white); border-bottom: 4px solid var(--c-dark); }
@media (min-width: 768px) { 
    .cross-item { border-bottom: 4px solid var(--c-dark); border-right: 4px solid var(--c-dark); }
    .cross-item:nth-child(2n) { border-right: none; }
    .cross-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ==========================================================================
   FORM (4 FIELDS)
   ========================================================================== */
.frm-wrap { background: var(--c-white); padding: clamp(40px, 6vw, 60px); border: 4px solid var(--c-dark); box-shadow: var(--shadow-hard); max-width: 700px; margin: 0 auto; }
.f-row { margin-bottom: 25px; }
.f-row label { display: block; font-weight: 800; color: var(--c-dark); margin-bottom: 10px; text-transform: uppercase; font-size: 0.9rem; }
.f-row input, .f-row textarea { width: 100%; padding: 18px; border: 2px solid var(--c-line); font-family: inherit; font-size: 1rem; background: var(--c-bg); transition: var(--trans); border-radius: 0; }
.f-row input:focus, .f-row textarea:focus { outline: none; border-color: var(--c-plum); background: var(--c-white); }
.f-row textarea { min-height: 150px; resize: vertical; }

/* ==========================================================================
   FOOTER (STRICT DATES)
   ========================================================================== */
.site-ftr { background: var(--c-dark); color: #d4d4d8; padding: 80px 0 30px; margin-top: 80px; }
.ftr-g { display: grid; grid-template-columns: 1fr; gap: 50px; margin-bottom: 60px; }
@media (min-width: 768px) { .ftr-g { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); } }
.f-logo { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 900; color: #fff; margin-bottom: 15px; display: block; text-transform: uppercase; letter-spacing: -1px; }
.f-logo span { color: var(--c-saffron); }
.f-desc { font-size: 1rem; line-height: 1.7; }
.f-h { font-family: 'Syne', sans-serif; color: #fff; font-size: 1.3rem; font-weight: 800; margin-bottom: 20px; text-transform: uppercase; }
.f-links li { margin-bottom: 12px; }
.f-links a { font-weight: 600; transition: var(--trans); text-transform: uppercase; font-size: 0.9rem; }
.f-links a:hover { color: var(--c-saffron); padding-left: 8px; }
.f-copy { border-top: 1px solid #404040; padding-top: 30px; text-align: center; font-size: 0.95rem; color: #a3a3a3; }

/* ==========================================================================
   COOKIE BANNER (2 BUTTONS, LINK IN TEXT)
   ========================================================================== */
#ck-bnnr { position: fixed; bottom: 20px; left: 20px; right: 20px; background: var(--c-white); padding: 30px; z-index: 9999; display: flex; flex-direction: column; gap: 20px; transform: translateY(150%); transition: 0.5s ease; border: 4px solid var(--c-dark); box-shadow: var(--shadow-hard); max-width: 900px; margin: 0 auto; }
#ck-bnnr.show { transform: translateY(0); }
.ck-txt p { margin: 0; font-size: 1rem; line-height: 1.6; color: var(--c-dark); font-weight: 500; }
.ck-txt a { color: var(--c-plum); font-weight: 800; text-decoration: underline; }
.ck-acts { display: flex; gap: 10px; }
.b-ck { padding: 15px 30px; border: none; font-weight: 800; cursor: pointer; flex: 1; transition: var(--trans); font-size: 1rem; text-align: center; text-transform: uppercase; font-family: 'Syne', sans-serif; }
.b-ck.y { background: var(--c-plum); color: #fff; }
.b-ck.y:hover { background: var(--c-dark); color: var(--c-saffron); }
.b-ck.n { background: var(--c-line); color: var(--c-dark); }
.b-ck.n:hover { background: var(--c-dark); color: #fff; }
@media (min-width: 768px) { #ck-bnnr { flex-direction: row; align-items: center; justify-content: space-between; } .ck-acts { width: auto; flex-shrink: 0; } .b-ck { flex: none; } }