/* =========================================================================
   MOVELIKEG — design system  (faithful to ardasaatci.com)
   ONE screen, no scroll · background photo slideshow · frosted glass card.
   Pure black + white · single geometric sans (Fellix → Plus Jakarta Sans).
   ========================================================================= */

:root {
  --bg:          #000000;
  --text:        #ffffff;
  --muted:       rgba(255,255,255,.72);
  --faint:       rgba(255,255,255,.52);
  --line:        rgba(255,255,255,.12);
  --bg-line:     rgba(255,255,255,.12);
  --bg-soft:     #0a0a0b;

  --card:        rgba(22,22,24,.38);
  --card-border: rgba(255,255,255,.10);
  --pill:        rgba(255,255,255,.16);
  --pill-hover:  rgba(255,255,255,.27);
  --pill-border: rgba(255,255,255,.14);
  --chip:        #000000;
  --accent:      #ffffff;

  --font-display: "Fellix", "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Fellix", "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --gutter: clamp(18px, 4.5vw, 56px);
  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  :root { --card: rgba(10,10,12,.74); --pill: rgba(255,255,255,.20); }
}

/* ------------------------------ reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.55; font-weight: 500; letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  min-height: 100svh;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: #fff; color: #000; }
:focus-visible { outline: 2px solid #fff; outline-offset: 3px; border-radius: 6px; }

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.skip-link { position:absolute; left:12px; top:-60px; z-index:200; background:#fff; color:#000; padding:10px 16px; border-radius:10px; font-weight:600; font-size:.85rem; transition:top .25s var(--ease); }
.skip-link:focus { top:12px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* ----------------------- background photo (static) -------------------- */
.bg-slides { position: fixed; inset: 0; z-index: -2; background: #000; }
.bg-slides .slide {
  position: absolute; inset: 0;
  background-size: cover; background-repeat: no-repeat; background-position: 50% 35%;
  /* slight zoom + push right so the athlete's leg clears the glass card */
  transform: scale(1.3) translateX(10%);
}
.bg-overlay {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(115deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.30) 42%, rgba(0,0,0,.20) 70%, rgba(0,0,0,.40) 100%),
    linear-gradient(0deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,0) 38%);
}

/* ------------------------- floating language -------------------------- */
.lang-float { position: fixed; top: clamp(14px, 2.5vw, 22px); right: var(--gutter); z-index: 80; }
.lang-toggle {
  display: inline-flex; border-radius: 999px; overflow: hidden;
  background: var(--pill); border: 1px solid var(--pill-border);
  backdrop-filter: blur(12px) saturate(130%); -webkit-backdrop-filter: blur(12px) saturate(130%);
  font-size: .68rem; font-weight: 600; letter-spacing: .08em;
}
.lang-toggle button {
  appearance: none; background: transparent; color: rgba(255,255,255,.7); border: 0;
  padding: 7px 13px; cursor: pointer; font: inherit; text-transform: uppercase; transition: color .25s, background .25s;
}
.lang-toggle button[aria-pressed="true"] { background: #fff; color: #000; }

/* ------------------------------ stage --------------------------------- */
.stage {
  position: relative; min-height: 100svh; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-block: clamp(22px, 5vh, 56px);
}
.stage__col { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }

/* glass card */
.glass {
  background: var(--card);
  backdrop-filter: blur(22px) saturate(135%); -webkit-backdrop-filter: blur(22px) saturate(135%);
  border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: clamp(20px, 2.6vw, 32px);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.main-card { width: 100%; max-width: 560px; animation: rise .9s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .main-card { animation: none; } }

/* card content */
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.card-name { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.7rem, 4.4vw, 2.15rem); letter-spacing: -.025em; line-height: 1.04; }
.card-tag { color: var(--muted); font-size: .92rem; font-weight: 500; margin-top: 8px; }
.card-realname { color: var(--faint); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; margin-top: 12px; }
.card-divider { height: 1px; background: var(--line); margin: clamp(16px, 2.2vw, 24px) 0; border: 0; }
.block-label { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: -.01em; }

/* pills */
.pill {
  display: inline-flex; align-items: center; gap: 8px; background: var(--pill); color: #fff;
  font-weight: 600; font-size: .72rem; letter-spacing: .01em; padding: 10px 16px; border-radius: 999px;
  border: 1px solid var(--pill-border); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: background .3s var(--ease), transform .3s var(--ease); white-space: nowrap;
}
.pill:hover { background: var(--pill-hover); transform: translateY(-1px); }
.pill .ic { width: 15px; height: 15px; }

/* brand chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.chip {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: var(--radius-sm);
  padding: 10px 18px; height: 58px; min-width: 116px;
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.chip:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.38); }
.chip img { width: auto; height: auto; object-fit: contain; max-height: 34px; max-width: 138px; }
.chip img.logo-moreplus { max-height: 50px; max-width: 150px; }
.chip img.logo-airalo   { max-height: 46px; max-width: 60px; }

/* social icon pills */
.icon-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.icon-pill {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--pill); border: 1px solid var(--pill-border);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.icon-pill:hover { background: var(--pill-hover); transform: translateY(-2px); }
.icon-pill svg { width: 20px; height: 20px; }

/* compact card footer: socials (left) + brand logos (right) in one row */
.card-foot { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 20px 30px; }
.card-foot .foot-group { display: flex; flex-direction: column; gap: 10px; }
.microlabel { font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.card-foot .icon-row, .card-foot .chips { margin-top: 0; }
.card-foot .icon-pill { width: 42px; height: 42px; }
.card-foot .icon-pill svg { width: 18px; height: 18px; }
.card-foot .chip { height: 46px; min-width: 76px; padding: 8px 14px; }
.card-foot .chip img { max-height: 26px; max-width: 92px; }
.card-foot .chip img.logo-moreplus { max-height: 40px; max-width: 96px; }
.card-foot .chip img.logo-airalo { max-height: 34px; max-width: 44px; }

/* footer mini (same screen, under the card) */
.footer-mini { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; font-size: .76rem; color: var(--faint); padding-left: 4px; }
.footer-mini a { color: var(--muted); }
.footer-mini a:hover { color: #fff; }
.footer-mini .sep { opacity: .5; }
.footer-mini .managed { display: inline-flex; align-items: center; gap: 9px; }
.footer-mini .managed img { height: 28px; width: auto; background: #fff; border-radius: 5px; padding: 5px 8px; }

/* --------------------------- legal pages ------------------------------ */
.legal { padding-top: clamp(96px, 14vh, 150px); padding-bottom: 60px; position: relative; background: var(--bg); min-height: 100svh; }
.legal__wrap { max-width: 760px; }
.legal h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 5vw, 2.8rem); letter-spacing: -.02em; margin-bottom: .6em; }
.legal h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin: 2.2em 0 .6em; }
.legal p, .legal address { color: var(--muted); margin-bottom: 1em; font-style: normal; }
.legal a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.legal .back { display: inline-flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--muted); text-decoration: none; }
.legal .back:hover { color: #fff; }
.legal .updated { font-size: .8rem; color: var(--faint); margin-top: 3em; }
.legal-header { position: fixed; inset: 0 0 auto 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: 18px var(--gutter); background: rgba(0,0,0,.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.legal-header .wordmark { font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: .04em; }
.site-footer { background: var(--bg-soft); border-top: 1px solid var(--line); }
.footer__copy { font-size: .78rem; color: var(--faint); }

/* lang visibility helper */
[data-i18n-only="en"] { display: none; }
html[data-lang="en"] [data-i18n-only="en"] { display: inline; }
html[data-lang="en"] [data-i18n-only="de"] { display: none; }

/* ---------------------------- responsive ------------------------------ */
@media (max-width: 560px) {
  .card-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .main-card { max-width: 100%; }
}
