@font-face {font-family: 'Sora';font-style: normal;font-weight: 400;font-display: swap;src: url('/fonts/sora-latin-ext.woff2') format('woff2');unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}
@font-face {font-family: 'Sora';font-style: normal;font-weight: 400;font-display: swap;src: url('/fonts/sora-latin.woff2') format('woff2');unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face {font-family: 'Sora';font-style: normal;font-weight: 600;font-display: swap;src: url('/fonts/sora-latin-ext.woff2') format('woff2');unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}
@font-face {font-family: 'Sora';font-style: normal;font-weight: 600;font-display: swap;src: url('/fonts/sora-latin.woff2') format('woff2');unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
@font-face {font-family: 'Sora';font-style: normal;font-weight: 700;font-display: swap;src: url('/fonts/sora-latin-ext.woff2') format('woff2');unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}
@font-face {font-family: 'Sora';font-style: normal;font-weight: 700;font-display: swap;src: url('/fonts/sora-latin.woff2') format('woff2');unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}

    :root {
      color-scheme: dark;
      --bg: #0a0b0f;
      --bg-alt: #11131a;
      --card: #171a22;
      --text: #f5f5f5;
      --muted: #c9ccd6;
      --accent: #54e3c2;
      --accent-2: #7aa7ff;
      --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    }
    * {box-sizing: border-box}
    body {
      margin: 0;
      font-family: "Sora", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
      background: radial-gradient(120% 120% at 20% -10%, #1c2636 0%, #0a0b0f 55%, #07080b 100%);
      color: var(--text);
      line-height: 1.7;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        radial-gradient(35% 35% at 80% 10%, rgba(122, 167, 255, 0.18), transparent 60%),
        radial-gradient(40% 40% at 15% 80%, rgba(84, 227, 194, 0.12), transparent 60%);
      pointer-events: none;
      z-index: -1;
    }
    a {color: inherit}
    .skip-link {
      position: absolute;
      left: -999px;
      top: 10px;
      padding: 10px 16px;
      background: var(--accent);
      color: #06110c;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 700;
    }
    .skip-link:focus {left: 16px}
    header {
      position: sticky;
      top: 0;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 40px;
      background: rgba(7, 8, 12, 0.7);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    header img.logo {height: 58px;width: auto;border-radius: 12px;box-shadow: var(--shadow)}
    header .brand {margin: 0;font-size: 22px;font-weight: 700;letter-spacing: 0.5px;color: #d4d9e6}
    nav.lang {display: flex;align-items: center;gap: 10px}
    nav.lang a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 36px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      text-decoration: none;
      font-weight: 700;
      color: var(--text);
      transition: transform 0.2s ease, border-color 0.2s ease;
    }
    nav.lang a:hover {transform: translateY(-1px);border-color: rgba(255, 255, 255, 0.35)}

    main {padding: 40px 0 80px}
    .container {max-width: 1100px;margin: 0 auto;padding: 0 24px}

    .hero-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 50px;
      align-items: center;
      padding: 40px 0 30px;
      animation: fadeUp 0.8s ease-out both;
    }
    .eyebrow {
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 12px;
      color: var(--accent);
      font-weight: 700;
      margin: 0 0 12px;
    }
    .hero h1 {font-size: 56px;margin: 0 0 12px}
    .hero .role {font-size: 22px;color: var(--accent-2);margin: 0 0 18px;font-weight: 600}
    .hero .lead {font-size: 20px;color: var(--muted);margin: 0 0 24px}
    .cta-row {display: flex;gap: 14px;flex-wrap: wrap}
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 22px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 700;
      border: 1px solid transparent;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .btn.primary {background: var(--accent);color: #05110b;box-shadow: 0 12px 30px rgba(84, 227, 194, 0.28)}
    .btn.ghost {border-color: rgba(255, 255, 255, 0.2);color: var(--text)}
    .btn:hover {transform: translateY(-2px)}

    .hero-media {display: grid;gap: 18px;justify-items: center}
    .photo-frame {
      width: 260px;
      height: 260px;
      border-radius: 28px;
      padding: 6px;
      background: linear-gradient(135deg, rgba(84, 227, 194, 0.7), rgba(122, 167, 255, 0.6));
      box-shadow: var(--shadow);
    }
    .photo-frame img {width: 100%;height: 100%;object-fit: cover;border-radius: 24px}
    .badge {
      padding: 10px 18px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      font-size: 14px;
      color: var(--muted);
    }
    .now-card {
      margin-top: 28px;
      padding: 18px 20px;
      background: var(--card);
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--muted);
    }
    .now-card strong {color: var(--text)}

    .section {padding: 50px 0 10px}
    .section-title {font-size: 28px;margin: 0 0 18px}
    .section-sub {color: var(--muted);max-width: 760px}

    .cards {display: grid;grid-template-columns: repeat(3, minmax(0, 1fr));gap: 18px;margin-top: 26px}
    .card {
      padding: 22px;
      background: var(--card);
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      min-height: 180px;
      animation: fadeUp 0.9s ease-out both;
    }
    .card h4 {margin: 0 0 10px;font-size: 18px}
    .card p {margin: 0;color: var(--muted)}

    .list {
      display: grid;
      gap: 12px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }
    .list li {padding-left: 18px;position: relative;color: var(--muted)}
    .list li::before {content: "*";position: absolute;left: 0;color: var(--accent)}


    footer {
      text-align: center;
      padding: 50px 20px 70px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      color: #aab0bf;
      margin-top: 70px;
    }

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

    @media (max-width: 980px) {
      header {padding: 14px 20px}
      header img.logo {height: 52px}
      .hero-grid {grid-template-columns: 1fr;gap: 28px;text-align: center}
      .cta-row {justify-content: center}
      .hero h1 {font-size: 44px}
      .photo-frame {width: 220px;height: 220px}
      .cards {grid-template-columns: 1fr}
    }
    @media (max-width: 640px) {
      header .brand {display: none}
      .hero .lead {font-size: 18px}
      .section-title {font-size: 24px}
    }
