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

  body {
    font-family: 'Sora', sans-serif;
    background: #f0f4ff !important;
    min-height: 100vh;
  }

  .wrapper,
  .main-panel {
    width: 100% !important;
    min-height: 100vh !important;
    background: #f0f4ff !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    float: none !important;
  }

  .main-panel>img {
    display: none !important;
  }

  footer,
  .footer {
    display: none !important;
  }

  .navbar,
  nav.navbar,
  .navbar-default,
  .navbar-fixed-top,
  .sidebar,
  .main-header,
  .main-panel>.navbar,
  .main-panel>nav {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  html,
  body {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .wrapper {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .main-panel {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .content {
    width: 100% !important;
    padding: 0 !important;
    min-height: 100vh !important;
    display: block !important;
    margin-top: 0 !important;
  }

  .container-fluid {
    width: 100% !important;
    padding: 0 !important;
    display: block !important;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image:
      radial-gradient(circle at 12% 18%, rgba(102, 126, 234, 0.09) 0%, transparent 48%),
      radial-gradient(circle at 88% 82%, rgba(118, 75, 162, 0.07) 0%, transparent 48%);
    pointer-events: none;
  }

  /* ══════════════════════════════
     PAGE SHELL
  ══════════════════════════════ */
  .page-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 1;
  }

  /* ══════════════════════════════
     NARRATIVE BANNER
  ══════════════════════════════ */
  .narrative-banner {
    width: 100%;
    background: linear-gradient(135deg, #1e1348 0%, #3b2b8a 40%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }

  .narrative-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
  }

  .narrative-banner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 20%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
  }

  .banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 2;
  }

  /* LEFT — Logo + name */
  .banner-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
  }

  .banner-logo-ring {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 5px;
  }

  .banner-logo-ring img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
  }

  .banner-org {
    display: flex;
    flex-direction: column;
  }

  .banner-org-name {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.2;
  }

  .banner-org-sub {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    margin-top: 2px;
  }

  /* SEPARATOR */
  .banner-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
  }

  /* CENTRE — narrative text */
  .banner-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8px;
    min-width: 0;
  }

  .banner-headline {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    line-height: 1.15;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .banner-headline em {
    font-style: normal;
    color: #fde68a;
  }

  .banner-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 3px;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* RIGHT — badges */
  .banner-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
  }

  .banner-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    padding: 6px 14px 6px 10px;
  }

  .banner-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fde68a;
    animation: bpulse 2.2s ease infinite;
    flex-shrink: 0;
  }

  @keyframes bpulse {

    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }

    50% {
      opacity: 0.4;
      transform: scale(0.7);
    }
  }

  .banner-badge span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
  }

  .banner-naac {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .banner-naac-grade {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: #fde68a;
    line-height: 1;
  }

  .banner-naac-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1px;
  }

  /* Bottom glow line */
  .banner-glow-line {
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(118, 75, 162, 0.6) 20%,
        rgba(102, 126, 234, 0.8) 50%,
        rgba(253, 230, 138, 0.5) 80%,
        transparent 100%);
  }

  /* Responsive banner */
  @media (max-width: 760px) {
    .banner-inner {
      padding: 0 16px;
      height: 70px;
      gap: 12px;
    }

    .banner-headline {
      font-size: 16px;
    }

    .banner-tagline {
      display: none;
    }

    .banner-naac {
      display: none;
    }

    .banner-sep {
      display: none;
    }
  }

  @media (max-width: 520px) {
    .banner-badge {
      display: none;
    }

    .banner-center {
      display: none;
    }

    .banner-logo-ring {
      width: 44px;
      height: 44px;
    }

    .banner-org-name {
      font-size: 11px;
    }
  }

  /* ══════════════════════════════
     CENTER ZONE
  ══════════════════════════════ */
  .center-zone {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
  }

  /* ══════════════════════════════
     LOGIN CARD
  ══════════════════════════════ */
  .page-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    max-width: 860px;
    min-height: 500px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(99, 102, 241, 0.13), 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    animation: cardIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  @keyframes cardIn {
    from {
      opacity: 0;
      transform: translateY(24px) scale(0.98);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .left-panel {
    flex: 1;
    background: linear-gradient(145deg, #667eea 0%, #764ba2 100%);
    padding: 44px 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }

  .left-panel::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
  }

  .left-panel::after {
    content: '';
    position: absolute;
    left: -30px;
    bottom: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
  }

  .uni-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    padding: 5px 14px 5px 8px;
    width: fit-content;
    position: relative;
    z-index: 1;
  }

  .uni-badge .dot {
    width: 7px;
    height: 7px;
    background: #fde68a;
    border-radius: 50%;
    animation: pulse 2s ease infinite;
    flex-shrink: 0;
  }

  @keyframes pulse {

    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }

    50% {
      opacity: 0.4;
      transform: scale(0.75);
    }
  }

  .uni-badge span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
  }

  .left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0 16px;
    position: relative;
    z-index: 1;
  }

  .left-content h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 34px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 14px;
  }

  .left-content h1 em {
    font-style: normal;
    color: #fde68a;
  }

  .divider {
    width: 36px;
    height: 3px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    margin-bottom: 14px;
  }

  .left-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    max-width: 240px;
  }

  .stats-row {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 18px;
    position: relative;
    z-index: 1;
  }

  .stat {
    flex: 1;
    padding-right: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    margin-right: 18px;
  }

  .stat:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }

  .stat .num {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: #fff;
    line-height: 1;
  }

  .stat .num em {
    font-style: normal;
    color: #fde68a;
    font-size: 14px;
  }

  .stat .lbl {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 3px;
  }

  .right-panel {
    width: 390px;
    background: #ffffff;
    padding: 44px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #764ba2;
    margin-bottom: 5px;
  }

  .right-panel h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 25px;
    color: #1e293b;
    margin-bottom: 4px;
  }

  .right-panel>p {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 24px;
  }

  .alert-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 3px solid #dc2626;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 16px;
    font-size: 12px;
    color: #dc2626;
    animation: slideDown 0.3s ease both;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .field-group {
    margin-bottom: 15px;
  }

  .field-group label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 5px;
  }

  .field-wrap {
    position: relative;
  }

  .field-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0bfd8;
    font-size: 13px;
    pointer-events: none;
    transition: color 0.2s;
  }

  .field-group input,
  .field-group input[type="text"],
  .field-group input[type="password"] {
    width: 100%;
    padding: 11px 13px 11px 38px;
    border: 1.5px solid #e2e8f0;
    border-radius: 9px;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    color: #1e293b;
    background: #f8faff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    appearance: none;
    -webkit-appearance: none;
  }

  .field-group input:focus {
    border-color: #764ba2;
    box-shadow: 0 0 0 3px rgba(118, 75, 162, 0.10);
    background: #fff;
  }

  .field-wrap:focus-within .field-icon {
    color: #764ba2;
  }

  .toggle-pw {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #b0bfd8;
    font-size: 13px;
    padding: 0;
    transition: color 0.2s;
    line-height: 1;
  }

  .toggle-pw:hover {
    color: #764ba2;
  }

  .btn-login {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 9px;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s, transform 0.15s;
  }

  .btn-login:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }

  .btn-login:active {
    transform: translateY(0);
  }

  .btn-arrow {
    transition: transform 0.2s;
  }

  .btn-login:hover .btn-arrow {
    transform: translateX(3px);
  }

  .form-footer {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
    font-size: 10px;
    color: #b0bfd8;
  }

  @media (max-width: 760px) {
    .center-zone {
      padding: 24px 12px;
      align-items: flex-start;
    }

    .page-wrapper {
      flex-direction: column;
      min-height: unset;
      border-radius: 14px;
    }

    .left-panel {
      padding: 32px 28px 26px;
      min-height: unset;
    }

    .left-content h1 {
      font-size: 26px;
    }

    .stats-row {
      display: none;
    }

    .right-panel {
      width: 100%;
      padding: 32px 28px;
    }
  }

  @media (max-width: 480px) {
    .left-panel {
      padding: 26px 22px 22px;
    }

    .right-panel {
      padding: 26px 22px;
    }

    .left-content h1 {
      font-size: 22px;
    }

    .right-panel h2 {
      font-size: 22px;
    }
  }
  .banner-naac-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.banner-naac-inline .banner-naac-grade {
  font-size: 16px;
  color: #fde68a;
}

.banner-naac-inline .banner-naac-label {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}
/* latin-ext */
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmmono/v16/aFTU7PB1QTsUX8KYthSQBLyM.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;
}
/* latin */
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmmono/v16/aFTU7PB1QTsUX8KYthqQBA.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;
}
/* latin-ext */
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmmono/v16/aFTR7PB1QTsUX8KYvumzEY2tbZX9.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;
}
/* latin */
@font-face {
  font-family: 'DM Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmmono/v16/aFTR7PB1QTsUX8KYvumzEYOtbQ.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;
}
/* latin-ext */
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmserifdisplay/v17/-nFnOHM81r4j6k0gjAW3mujVU2B2G_5x0ujy.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;
}
/* latin */
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmserifdisplay/v17/-nFnOHM81r4j6k0gjAW3mujVU2B2G_Bx0g.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;
}
/* latin-ext */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sora/v17/xMQbuFFYT72XzQspDre2.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;
}
/* latin */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sora/v17/xMQbuFFYT72XzQUpDg.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;
}
/* latin-ext */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sora/v17/xMQbuFFYT72XzQspDre2.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;
}
/* latin */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sora/v17/xMQbuFFYT72XzQUpDg.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;
}
/* latin-ext */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sora/v17/xMQbuFFYT72XzQspDre2.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;
}
/* latin */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sora/v17/xMQbuFFYT72XzQUpDg.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;
}
/* latin-ext */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sora/v17/xMQbuFFYT72XzQspDre2.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;
}
/* latin */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sora/v17/xMQbuFFYT72XzQUpDg.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;
}
