/* ============================================
   LOKIA — Shared Stylesheet
   Applies to: index.html, imprint.html, privacy.html
   Fonts: Raleway (headings) + Lato (body)
   Last updated: March 2026
   ============================================ */

/* ── FONTS ── */
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/Raleway-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/Raleway-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

/* ── TOKENS ── */
:root {
  --magenta: #F70D63;
  --cyan: #00C8E8;
  --dark: #080810;
  --dark2: #0E0E1A;
  --dark3: #141422;
  --surface: #1A1A2E;
  --surface2: #20203A;
  --text: #F0EEF8;
  --text2: #9896B0;
  --text3: #6A6880;
  --border: rgba(255,255,255,0.07);
  --glow-m: rgba(232,21,106,0.15);
  --glow-c: rgba(0,200,232,0.12);
  --font-display: 'Raleway', sans-serif;
  --font-body: 'Lato', sans-serif;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: rgba(59,24,86,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo span { color: var(--magenta); }
.nav-logo-img { height: 32px; width: auto; display: block; max-width: 120px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 400;
  color: var(--text2); text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 13px; font-weight: 500;
  padding: 9px 22px;
  border: 0.5px solid var(--magenta);
  border-radius: 4px;
  color: var(--magenta);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.nav-cta:hover { background: var(--magenta); color: #fff; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text2); transition: all 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(8,8,16,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border);
  z-index: 99;
  padding: 24px 5vw 32px;
  flex-direction: column; gap: 4px;
}
.mobile-menu a {
  display: block; padding: 12px 0;
  font-size: 16px; color: var(--text2);
  text-decoration: none;
  border-bottom: 0.5px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .mob-cta {
  margin-top: 16px;
  display: block; text-align: center;
  padding: 14px;
  background: var(--magenta);
  color: #fff; border-radius: 6px;
  font-weight: 500; font-size: 15px;
  text-decoration: none;
  border-bottom: none;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 5vw 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(232,21,106,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(0,200,232,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(83,74,183,0.1) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cyan); font-weight: 500;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: var(--cyan);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--text);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--magenta) 0%, #a020a0 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text2);
  max-width: 560px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--magenta);
  color: #fff; text-decoration: none;
  font-size: 14px; font-weight: 500;
  border-radius: 4px;
  transition: opacity 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border: 0.5px solid var(--border);
  color: var(--text2); text-decoration: none;
  font-size: 14px; font-weight: 400;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
.hero-strip {
  position: relative; z-index: 1;
  margin-top: 80px; padding-top: 40px;
  border-top: 0.5px solid var(--border);
  display: flex; gap: 20px; flex-wrap: wrap;
}
.market-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--dark2);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  flex: 1; min-width: 200px;
  transition: border-color 0.3s;
}
.market-card:hover { border-color: rgba(255,255,255,0.12); }
.market-circle {
  border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: -0.02em;
}
.mc-small {
  width: 72px; height: 72px;
  background: rgba(232,21,106,0.12);
  border: 1.5px solid rgba(232,21,106,0.3);
  font-size: 13px; color: var(--magenta);
}
.mc-medium {
  width: 96px; height: 96px;
  background: rgba(83,74,183,0.12);
  border: 1.5px solid rgba(83,74,183,0.35);
  font-size: 14px; color: #9b8ff0;
}
.mc-large {
  width: 120px; height: 120px;
  background: rgba(0,200,232,0.08);
  border: 1.5px solid rgba(0,200,232,0.25);
  font-size: 15px; color: var(--cyan);
}
.market-info { display: flex; flex-direction: column; gap: 4px; }
.market-label {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--text); letter-spacing: -0.01em;
}
.market-sub { font-size: 15px; color: var(--text3); font-weight: 300; }

/* ── SHARED SECTION STYLES ── */
section { padding: 100px 5vw; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--magenta); font-weight: 500;
  margin-bottom: 20px;
}
.section-label::before {
  content: ''; display: block;
  width: 20px; height: 1px; background: var(--magenta);
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}
.section-lead {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text2);
  max-width: 600px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ── WHAT WE DO ── */
.whatwedo { background: var(--dark); }
.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.wwd-card {
  background: #592C8C;
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 36px 32px;
  transition: border-color 0.3s;
}
.wwd-card:hover { border-color: rgba(255,255,255,0.25); }
.wwd-icon {
  font-size: 22px;
  color: var(--cyan);
  margin-bottom: 20px;
  display: block;
}
.wwd-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 12px;
}
.wwd-card p { font-size: 16px; color: var(--text2); line-height: 1.7; font-weight: 300; }

/* ── PROBLEM ── */
.problem { background: var(--dark2); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 56px;
}
.problem-card { background: var(--dark2); padding: 36px 32px; transition: background 0.3s; }
.problem-card:hover { background: var(--dark3); }
.problem-number {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 800;
  color: var(--magenta);
  line-height: 1; margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}
.problem-card p { font-size: 14px; color: var(--text2); line-height: 1.65; font-weight: 300; }

/* ── HOW IT WORKS ── */
.how { background: var(--dark); }
.how-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0; margin-top: 56px;
}
.how-step {
  padding: 32px 24px;
  border-left: 0.5px solid var(--border);
  position: relative;
}
.how-step:first-child { border-left: none; }
.step-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 16px; opacity: 0.7;
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}
.how-step p { font-size: 13px; color: var(--text2); line-height: 1.6; font-weight: 300; }
.how-footer {
  margin-top: 40px; padding: 24px 32px;
  background: var(--dark3);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; gap: 16px;
}
.how-footer-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }
.how-footer p { font-size: 14px; color: var(--text2); font-weight: 300; }
.how-footer strong { color: var(--cyan); font-weight: 500; }

/* ── PLATFORM ── */
.platform { background: var(--dark2); }
.platform-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0 40px; margin-top: 0; }
.feature-row {
  display: flex; gap: 20px; align-items: flex-start;
  padding-bottom: 24px; border-bottom: 0.5px solid var(--border);
}
.feature-row:last-child { border-bottom: none; padding-bottom: 0; }
.feature-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--surface); border: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 15px;
}
.feature-text h4 {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}
.feature-text p { font-size: 13px; color: var(--text2); line-height: 1.6; font-weight: 300; }




/* ── PARTNERSHIP ── */
.partnership { background: var(--dark2); }
.partner-card {
  margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr;
  background: #1E1D3F; border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 12px; overflow: hidden;
}
.partner-left { padding: 48px; border-right: 0.5px solid var(--border); }
.partner-logo-box { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.partner-logo-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--surface2); border: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 800; color: var(--cyan);
}
.partner-logo-name { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; text-decoration: none; transition: color 0.2s; }
.partner-logo-name:hover { color: var(--cyan); }
.partner-left p { font-size: 15px; color: var(--text2); line-height: 1.7; font-weight: 300; margin-bottom: 20px; }
.partner-right { padding: 48px; }
.partner-right h4 {
  font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text3); margin-bottom: 24px;
}
.partner-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.partner-fact-card {
  background: rgba(0,0,0,0.2);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.pfc-icon { font-size: 16px; color: var(--cyan); }
.partner-fact-card p { font-size: 13px; color: var(--text2); line-height: 1.6; font-weight: 300; }

/* ── TEAM ── */
.team { background: var(--dark); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.team-card {
  background: var(--dark2); border: 0.5px solid var(--border);
  border-radius: 12px; padding: 32px; transition: border-color 0.3s;
}
.team-card:hover { border-color: rgba(255,255,255,0.12); }
.team-avatar {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--surface);
  max-width: 120px;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-card h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 4px;
}
.team-role { font-size: 12px; color: var(--magenta); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.team-card p { font-size: 14px; color: var(--text2); line-height: 1.65; font-weight: 300; }
.team-logos { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; padding-top: 20px; border-top: 0.5px solid var(--border); }
.team-logo-pill { font-size: 11px; padding: 3px 10px; border: 0.5px solid var(--border); border-radius: 3px; color: var(--text3); letter-spacing: 0.04em; }

/* ── CONTACT ── */
.contact { background: var(--dark2); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-left { padding-top: 8px; }
.contact-left p { font-size: 15px; color: var(--text2); line-height: 1.7; font-weight: 300; margin-bottom: 32px; }

.contact-form { background: #592C8C; border: 0.5px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 40px; }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); margin-bottom: 8px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; background: rgba(0,0,0,0.2); border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 6px; color: var(--text); font-family: var(--font-body);
  font-size: 14px; padding: 12px 16px; transition: border-color 0.2s;
  outline: none; appearance: none; -webkit-appearance: none;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { border-color: rgba(255,255,255,0.4); }
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-row textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-row select option { background: #592C8C; color: var(--text); }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 14px; background: var(--magenta); color: #fff;
  border: none; border-radius: 6px; font-family: var(--font-body);
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: opacity 0.2s; letter-spacing: 0.02em; margin-top: 8px;
}
.form-submit:hover { opacity: 0.88; }
.form-note { font-size: 12px; color: var(--text3); margin-top: 12px; text-align: center; line-height: 1.6; }

/* ── FOOTER ── */
footer {
  padding: 40px 5vw; border-top: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { text-decoration: none; display: inline-flex; align-items: center; }
.footer-logo span { color: var(--magenta); }
.footer-logo-img { height: 22px; width: auto; display: block; }
.footer-tagline { font-size: 13px; color: var(--text3); margin-top: 4px; letter-spacing: 0.08em; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text2); }
.footer-copy { font-size: 12px; color: var(--text3); }

/* ── IMPRINT / STATIC PAGES ── */
.static-nav { position: static; backdrop-filter: none; background: rgba(8,8,16,0.95); }
.nav-back { font-size: 13px; color: var(--text3); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.nav-back:hover { color: var(--text2); }
.static-page { max-width: 760px; margin: 0 auto; padding: 80px 5vw 100px; }
.page-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--magenta); font-weight: 500; margin-bottom: 20px; }
.page-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--magenta); }
.static-page h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 48px; color: var(--text); }
.lang-tabs { display: flex; margin-bottom: 48px; border: 0.5px solid var(--border); border-radius: 6px; overflow: hidden; width: fit-content; }
.lang-tab { padding: 8px 24px; font-size: 13px; font-weight: 500; cursor: pointer; transition: background 0.2s, color 0.2s; color: var(--text3); background: transparent; border: none; font-family: var(--font-body); letter-spacing: 0.04em; }
.lang-tab.active { background: var(--dark3); color: var(--text); }
.static-block { display: none; }
.static-block.active { display: block; }
.imp-section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 0.5px solid var(--border); }
.imp-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.imp-section h2 { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); margin-bottom: 16px; }
.imp-section p { font-size: 15px; color: var(--text2); line-height: 1.75; font-weight: 300; margin-bottom: 8px; }
.imp-section p:last-child { margin-bottom: 0; }
.imp-section a { color: var(--cyan); text-decoration: none; }
.imp-section a:hover { text-decoration: underline; }
.imp-section strong { color: var(--text); font-weight: 500; }
.footer-back { font-size: 13px; color: var(--text3); text-decoration: none; transition: color 0.2s; }
.footer-back:hover { color: var(--text2); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.7s ease both; }
.hero-eyebrow { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.3s; }
.hero-actions { animation-delay: 0.4s; }
.hero-strip { animation-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .partner-card { grid-template-columns: 1fr; }
  .partner-left { border-right: none; border-bottom: 0.5px solid var(--border); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  section { padding: 72px 5vw; }
  .wwd-grid { grid-template-columns: 1fr; }
  .hero { padding: 100px 5vw 64px; }
  .hero-strip { gap: 12px; margin-top: 48px; padding-top: 32px; }
  .market-card { min-width: 100%; }
  .team-grid { grid-template-columns: 1fr; }
  .how-flow { grid-template-columns: 1fr; }
  .how-step { border-left: none; border-top: 0.5px solid var(--border); padding: 28px 0; }
  .how-step:first-child { border-top: none; }
  .form-two { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .partner-left, .partner-right { padding: 32px 24px; }
  footer { flex-direction: column; align-items: flex-start; gap: 24px; }
  .projects-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .static-page { padding: 48px 5vw 72px; }
}

/* ── LOCK GATE ── */
.locked-wrapper { width: 100%; }
.lock-gate {
  background: var(--dark2);
  padding: 100px 5vw;
  display: flex; align-items: center; justify-content: center;
}
.lock-gate-inner {
  max-width: 520px; width: 100%;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.lock-icon {
  font-size: 32px; color: var(--magenta);
  width: 72px; height: 72px;
  border: 0.5px solid rgba(247,13,99,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(247,13,99,0.06);
  margin-bottom: 8px;
}
.lock-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--text); margin: 0;
}
.lock-sub {
  font-size: 15px; color: var(--text2);
  line-height: 1.7; font-weight: 300;
  max-width: 420px;
}
.lock-form { width: 100%; margin-top: 8px; }
.lock-input-wrap {
  display: flex; gap: 0;
  border: 0.5px solid var(--border);
  border-radius: 6px; overflow: hidden;
  background: var(--dark3);
}
.lock-input {
  flex: 1; padding: 14px 18px;
  background: transparent;
  border: none; outline: none;
  color: var(--text); font-family: var(--font-body);
  font-size: 15px; letter-spacing: 0.05em;
}
.lock-input::placeholder { color: var(--text3); letter-spacing: 0; }
.lock-input:focus { background: rgba(255,255,255,0.03); }
.lock-btn {
  padding: 14px 24px;
  background: var(--magenta); color: #fff;
  border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  transition: opacity 0.2s; white-space: nowrap;
  letter-spacing: 0.02em;
}
.lock-btn:hover { opacity: 0.88; }
.lock-error {
  margin-top: 12px; font-size: 13px;
  color: var(--magenta); text-align: center;
}
.lock-note {
  font-size: 13px; color: var(--text3);
  margin-top: 4px;
}
.lock-note a { color: var(--cyan); text-decoration: none; }
.lock-note a:hover { text-decoration: underline; }
