<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --cream: #FDF8F3;
    --warm-white: #FFFCF8;
    --gold: #E8A020;
    --gold-dark: #C8880A;
    --gold-light: #FFF3DC;
    --text-dark: #1A1208;
    --text-mid: #5C4A2A;
    --text-soft: #9C8560;
    --border: #EDE0C8;
    --shadow-sm: 0 2px 12px rgba(90,60,10,0.08);
    --shadow-md: 0 8px 32px rgba(90,60,10,0.13);
    --shadow-btn: 0 4px 20px rgba(232,160,32,0.35);
    --radius: 20px;
    --radius-sm: 12px;
  }

  html, body {
    height: 100%;
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  /* ─── LAYOUT ─── */
  .wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
  }

  /* ─── IMAGE PANEL ─── */
  .image-section {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #FFF3D0 0%, #FDEAB0 50%, #F5CF7A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .image-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 20%, rgba(255,220,100,0.45) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 80%, rgba(232,160,32,0.30) 0%, transparent 55%);
  }

  .image-section::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(232,160,32,0.18);
  }

  .brand-card {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 32px;
  }

  .logo-wrap {
    width: 140px; height: 140px;
    margin: 0 auto 28px;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-md), 0 0 0 6px rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center;
  }

  .logo-wrap img {
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
  }

  .brand-name {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    line-height: 1.1;
  }

  .brand-name span {
    color: var(--gold-dark);
  }

  .brand-tagline {
    margin-top: 10px;
    font-size: 0.92rem;
    color: var(--text-mid);
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 28px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    border: 1px solid rgba(232,160,32,0.3);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-mid);
  }

  .brand-pill .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #2DC653;
    box-shadow: 0 0 0 2px rgba(45,198,83,0.3);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%,100% { box-shadow: 0 0 0 2px rgba(45,198,83,0.3); }
    50% { box-shadow: 0 0 0 5px rgba(45,198,83,0.1); }
  }

  /* ─── LOGIN PANEL ─── */
  .login-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
    background: var(--warm-white);
    position: relative;
  }

  .login-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), #FFDA6A);
  }

  .page-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    margin-bottom: 6px;
    text-align: center;
  }

  .page-subtitle {
    font-size: 0.9rem;
    color: var(--text-soft);
    text-align: center;
    margin-bottom: 44px;
  }

  /* ─── CARDS ─── */
  .track-card {
    width: 100%;
    max-width: 380px;
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 28px 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
  }

  .track-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    opacity: 0;
    transition: opacity 0.25s;
  }

  .track-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }

  .track-card:hover::before { opacity: 1; }

  .card-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-sm);
    background: var(--gold-light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    font-size: 1.4rem;
  }

  .card-label {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
  }

  .card-desc {
    font-size: 0.83rem;
    color: var(--text-soft);
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .track-btn {
    width: 100%;
    padding: 13px 20px;
    border: none;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: var(--shadow-btn);
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .track-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
    box-shadow: 0 6px 28px rgba(232,160,32,0.45);
  }

  .track-btn:active { transform: scale(0.98); }

  .track-btn .arrow {
    transition: transform 0.2s;
  }

  .track-btn:hover .arrow { transform: translateX(4px); }

  /* ─── DIVIDER ─── */
  .divider {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 380px;
    margin-bottom: 20px;
  }

  .divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }

  .divider span {
    font-size: 0.75rem;
    color: var(--text-soft);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ─── FOOTER ─── */
  .footer {
    margin-top: 36px;
    font-size: 0.78rem;
    color: var(--text-soft);
    text-align: center;
  }

  /* ─── DECORATIVE CIRCLES ─── */
  .deco-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }
  .deco-1 { width: 180px; height: 180px; right: -60px; top: -60px; background: radial-gradient(circle, rgba(232,160,32,0.08) 0%, transparent 70%); }
  .deco-2 { width: 120px; height: 120px; left: -40px; bottom: 80px; background: radial-gradient(circle, rgba(232,160,32,0.06) 0%, transparent 70%); }

  /* ─── ANIMATIONS ─── */
  .login-section > * {
    animation: fadeUp 0.5s both;
  }
  .page-title { animation-delay: 0.05s; }
  .page-subtitle { animation-delay: 0.1s; }
  .track-card:nth-child(3) { animation-delay: 0.18s; }
  .divider { animation-delay: 0.26s; }
  .track-card:nth-child(5) { animation-delay: 0.32s; }
  .footer { animation-delay: 0.40s; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── MOBILE ─── */
  @media (max-width: 700px) {
    .wrapper { flex-direction: column; }

    .image-section {
      flex: none;
      padding: 36px 24px 32px;
    }

    .logo-wrap { width: 90px; height: 90px; border-radius: 20px; }
    .brand-name { font-size: 1.45rem; }
    .brand-tagline { font-size: 0.82rem; }
    .brand-pill { font-size: 0.75rem; margin-top: 16px; }

    .login-section {
      padding: 36px 20px 32px;
    }

    .page-title { font-size: 1.45rem; }
    .track-card { padding: 22px 20px 20px; }
  }
</style>