/* ══════════════════════════════════════════════
   UNDANGANKITA.ID — DARK THEME
   Main Stylesheet
══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  /* Colors */
  --bg:         #0F1117;
  --bg2:        #161821;
  --bg3:        #1C1E2A;
  --white:      #F5F5F7;
  --muted:      #6E7081;
  --muted2:     #3D3F4E;
  --accent:     #C9A96E;
  --accent-lt:  #DBBF8C;
  --accent-dk:  #A8863E;

  /* Typography */
  --ff:  'Inter', system-ui, sans-serif;
  --fd:  'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-px:       40px;
  --section-px-mob:   20px;
  --section-py:       80px;
  --section-py-mob:   60px;

  /* Misc */
  --radius:     14px;
  --radius-pill: 100px;
  --transition: all .4s cubic-bezier(.16, 1, .3, 1);
  --border-subtle: 1px solid rgba(255,255,255,.04);
}


/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--ff);
  background: none;
}


/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollLine {
  0%   { top: -100%; }
  50%  { top: 0; }
  100% { top: 100%; }
}

/* Scroll reveal */
.rv {
  opacity: 0;
  transform: translateY(35px);
  transition: all .8s cubic-bezier(.16, 1, .3, 1);
}
.rv.v {
  opacity: 1;
  transform: translateY(0);
}
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }


/* ══════════════════════════════════════════════
   SHARED BUTTONS
══════════════════════════════════════════════ */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--white);
  color: var(--bg);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.btn-main:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,169,110,.2);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  border-radius: var(--radius-pill);
  transition: all .3s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.04);
}


/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s;
}
.nav.scrolled {
  background: rgba(15,17,23,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px var(--section-px);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.nav-logo img {
  height: 28px;
  width: auto;
}
.nav-logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .5px;
  transition: color .3s;
}
.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .5px;
  transition: all .3s;
}
.nav-cta:hover {
  background: var(--white);
  color: var(--bg);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--white);
  display: block;
  transition: all .3s;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  font-size: 20px;
  font-weight: 500;
  color: var(--muted);
  transition: color .3s;
}
.nav-mobile a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .nav-links   { display: none; }
  .nav-toggle  { display: flex; }
  .nav         { padding: 16px var(--section-px-mob); }
  .nav.scrolled { padding: 12px var(--section-px-mob); }
}


/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px var(--section-px) 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 30%, rgba(201,169,110,.06), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,169,110,.03), transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  font-family: var(--fd);
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--accent));
  animation: scrollLine 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero        { padding: 120px var(--section-px-mob) 60px; }
  .hero-scroll { display: none; }
}


/* ══════════════════════════════════════════════
   FEATURED CAROUSEL
══════════════════════════════════════════════ */
.featured {
  padding: 100px var(--section-px) var(--section-py);
  position: relative;
  overflow: hidden;
}

.f-label {
  margin-bottom: 40px;
}
.f-label span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  line-height: 1.6;
}
.f-label::after {
  content: '';
  display: block;
  width: 60px;
  height: 1.5px;
  background: var(--accent);
  margin-top: 12px;
}

.f-viewport {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.f-slide {
  display: none;
  animation: fadeIn .6s ease;
}
.f-slide.active {
  display: block;
}

.f-slide-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.f-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s linear;
}
.f-slide.active .f-slide-img img {
  transform: scale(1.05);
}

/* Placeholder */
.f-slide-img .f-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.f-slide-img .f-ph div {
  font-family: var(--fd);
  font-size: 48px;
  opacity: .4;
}

/* Hover overlay */
.f-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transition: opacity .4s;
  z-index: 3;
}
.f-slide-img:hover .f-slide-overlay {
  opacity: 1;
}
.f-slide-overlay a {
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: all .3s;
  min-width: 180px;
  text-align: center;
}
.f-slide-overlay .fo-preview {
  background: rgba(255,255,255,.95);
  color: var(--bg);
}
.f-slide-overlay .fo-preview:hover {
  background: var(--white);
}
.f-slide-overlay .fo-use {
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white);
}
.f-slide-overlay .fo-use:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
}

/* Dots */
.f-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}
.f-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted2);
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.f-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .featured        { padding: var(--section-py-mob) var(--section-px-mob); }
  .f-viewport      { max-width: 100%; }
  .f-slide-img     { aspect-ratio: 3/4; }
  .f-slide-overlay a { padding: 12px 28px; font-size: 12px; min-width: 160px; }
  .f-dots          { margin-top: 24px; }
  .f-slide-overlay { opacity: 0; }
  .f-slide-img.tapped .f-slide-overlay { opacity: 1; }
}


/* ══════════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════════ */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.sec-head h2 {
  font-family: var(--fd);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  letter-spacing: -1px;
}
.sec-head h2 em {
  color: var(--accent);
  font-style: italic;
}

/* Filter buttons */
.sec-head .filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.sec-head .f-btn {
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.08);
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .5px;
  transition: all .3s;
  text-transform: uppercase;
}
.sec-head .f-btn.active,
.sec-head .f-btn:hover {
  background: var(--white);
  color: var(--bg);
  border-color: var(--white);
}


/* ══════════════════════════════════════════════
   KOLEKSI TEMA
══════════════════════════════════════════════ */
.koleksi {
  padding: var(--section-py) var(--section-px);
  background: var(--bg2);
  border-top: var(--border-subtle);
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.t-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg3);
  border: var(--border-subtle);
  transition: var(--transition);
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
  border-color: rgba(255,255,255,.08);
}

.t-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.t-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.t-card:hover .t-card-img img {
  transform: scale(1.04);
}

/* Placeholder mock */
.t-card-img .t-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-card-img .t-ph .mock {
  width: 100px;
  height: 180px;
  border-radius: 16px;
  border: 3px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  backdrop-filter: blur(4px);
}
.t-card-img .t-ph .mock .nm {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 400;
}
.t-card-img .t-ph .mock .dt {
  font-size: 8px;
  opacity: .3;
  margin-top: 6px;
  letter-spacing: 1px;
}

/* Category tag */
.t-card-img .t-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .5px;
}

/* Hover overlay */
.t-card-img .t-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity .3s;
}
.t-card:hover .t-hover {
  opacity: 1;
}
.t-hover a {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: all .3s;
}
.t-hover .h-preview {
  background: rgba(255,255,255,.95);
  color: var(--bg);
}
.t-hover .h-use {
  background: var(--accent);
  color: var(--bg);
}
.t-hover .h-use:hover {
  background: var(--accent-lt);
}

/* Card info */
.t-card-info {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.t-card-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.t-card-info .t-cat {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.t-card-info .t-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 768px) {
  .koleksi          { padding: var(--section-py-mob) var(--section-px-mob); }
  .t-grid           { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .t-card-img       { height: 180px; }
  .t-card-info h4   { font-size: 12px; }
  .t-card-info .t-price { display: none; }
  .t-card-img .t-hover  { opacity: 0; }
  .t-card-img.tapped .t-hover { opacity: 1; }
  .t-hover a        { padding: 7px 14px; font-size: 10px; }
}


/* ══════════════════════════════════════════════
   FITUR
══════════════════════════════════════════════ */
.fitur-sec {
  padding: var(--section-py) var(--section-px);
  background: var(--bg);
}

.fitur-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  margin-top: 32px;
  background: rgba(255,255,255,.03);
}

.fi {
  padding: 32px 28px;
  background: var(--bg);
  transition: all .3s;
}
.fi:hover {
  background: var(--bg2);
}
.fi .fi-num {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 400;
  color: var(--accent);
  opacity: .4;
  margin-bottom: 16px;
}
.fi h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--white);
}
.fi p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .fitur-sec  { padding: var(--section-py-mob) var(--section-px-mob); }
  .fitur-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ══════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════ */
.pricing-sec {
  padding: var(--section-py) var(--section-px);
  background: var(--bg2);
  border-top: var(--border-subtle);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.pkg {
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--bg3);
  border: var(--border-subtle);
  transition: all .3s;
  position: relative;
}
.pkg:hover {
  border-color: rgba(255,255,255,.08);
}
.pkg.hl {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--bg3), rgba(201,169,110,.04));
}

.pkg .pop {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--bg);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.pkg .pname {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.pkg .pprice {
  font-family: var(--fd);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 4px;
}
.pkg .psub {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
}
.pkg .pf {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.pkg .pf::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 11px;
}

.pkg .pbtn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.1);
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-align: center;
  margin-top: 16px;
  transition: all .3s;
}
.pkg .pbtn:hover {
  background: var(--white);
  color: var(--bg);
  border-color: var(--white);
}
.pkg.hl .pbtn {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.pkg.hl .pbtn:hover {
  background: var(--accent-lt);
}

@media (max-width: 768px) {
  .pricing-sec { padding: var(--section-py-mob) var(--section-px-mob); }
  .pkg-grid    { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════
   CTA
══════════════════════════════════════════════ */
.cta-sec {
  padding: 100px var(--section-px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-sec h2 {
  font-family: var(--fd);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.cta-sec h2 em {
  color: var(--accent);
  font-style: italic;
}
.cta-sec p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.cta-sec .cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-sec { padding: var(--section-py-mob) var(--section-px-mob); }
}


/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  padding: 48px var(--section-px) 32px;
  border-top: var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand .logo-f img {
  height: 24px;
  margin-bottom: 10px;
}
.footer-brand .logo-f-text {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 2.2;
  transition: color .3s;
}
.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 20px var(--section-px);
  text-align: center;
  font-size: 11px;
  color: var(--muted2);
  border-top: var(--border-subtle);
}

@media (max-width: 768px) {
  .footer        { padding: 40px var(--section-px-mob) 24px; }
  .footer-bottom { padding: 16px var(--section-px-mob); }
}


/* ══════════════════════════════════════════════
   AUTH PAGES (Login / Register)
══════════════════════════════════════════════ */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
.auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,169,110,.06), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(201,169,110,.04), transparent 50%);
  pointer-events: none;
}

/* Floating particles */
.auth-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(201,169,110,.06);
  pointer-events: none;
}
.auth-particle:nth-child(1) {
  width: 300px; height: 300px;
  top: -80px; right: -60px;
  animation: authFloat 12s ease-in-out infinite;
}
.auth-particle:nth-child(2) {
  width: 200px; height: 200px;
  bottom: -50px; left: -40px;
  animation: authFloat 16s ease-in-out infinite 2s;
}
.auth-particle:nth-child(3) {
  width: 120px; height: 120px;
  top: 40%; left: 10%;
  background: rgba(201,169,110,.03);
  animation: authFloat 10s ease-in-out infinite 4s;
}

@keyframes authFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-20px) scale(1.05); }
}

/* Card */
.auth-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  padding: 48px 40px;
  animation: fadeUp .8s cubic-bezier(.16,1,.3,1) both;
}

/* Logo / brand */
.auth-brand {
  text-align: center;
  margin-bottom: 36px;
}
.auth-brand a {
  display: inline-block;
}
.auth-brand img {
  height: 28px;
  margin: 0 auto 12px;
}
.auth-brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--white);
  margin-bottom: 6px;
}
.auth-brand-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

/* Headings */
.auth-title {
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  margin-bottom: 6px;
  letter-spacing: -.5px;
}
.auth-title em {
  font-style: italic;
  color: var(--accent);
}
.auth-subtitle {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.6;
}

/* Divider line */
.auth-divider {
  width: 40px;
  height: 1.5px;
  background: var(--accent);
  margin: 0 auto 28px;
  opacity: .5;
}

/* Form */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 400;
  transition: all .3s;
  outline: none;
}
.form-group input::placeholder {
  color: var(--muted2);
  font-weight: 300;
}
.form-group input:focus {
  border-color: var(--accent);
  background: rgba(201,169,110,.03);
  box-shadow: 0 0 0 3px rgba(201,169,110,.08);
}

/* Password wrapper with toggle */
.input-password-wrap {
  position: relative;
}
.input-password-wrap input {
  padding-right: 48px;
}
.toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  transition: color .3s;
  padding: 4px;
  display: flex;
  align-items: center;
}
.toggle-password:hover {
  color: var(--accent);
}
.toggle-password svg {
  width: 18px;
  height: 18px;
}

/* Submit button */
.auth-submit {
  width: 100%;
  padding: 15px;
  background: var(--white);
  color: var(--bg);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 6px;
}
.auth-submit:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,169,110,.2);
}
.auth-submit:active {
  transform: translateY(0);
}

/* Flash messages */
.auth-flash {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  animation: fadeIn .4s ease both;
}
.auth-flash.error {
  background: rgba(220,60,60,.1);
  border: 1px solid rgba(220,60,60,.2);
  color: #E87070;
}
.auth-flash.success {
  background: rgba(80,180,100,.1);
  border: 1px solid rgba(80,180,100,.2);
  color: #6BCB77;
}

/* Footer links */
.auth-footer {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}
.auth-footer a {
  color: var(--accent);
  font-weight: 500;
  transition: color .3s;
}
.auth-footer a:hover {
  color: var(--accent-lt);
}

/* Back to home */
.auth-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  transition: color .3s;
  text-align: center;
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}
.auth-back:hover {
  color: var(--white);
}
.auth-back svg {
  width: 14px;
  height: 14px;
}

/* Checkbox row */
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,.12);
  background: var(--bg3);
  cursor: pointer;
  transition: all .3s;
  position: relative;
}
.form-check input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.form-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 3px; left: 6px;
  width: 5px; height: 9px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-check label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}
.form-check label a {
  color: var(--accent);
  font-weight: 500;
}

@media (max-width: 768px) {
  .auth-card {
    padding: 36px 24px;
    border-radius: 16px;
  }
  .auth-title {
    font-size: 22px;
  }
}