/* ============================================================
   TRIMZY — SHARED STYLES v3 · Premium 2026
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --navy: #0B0B18;
  --navy2: #151528;
  --navy3: #1E1E38;
  --gold: #E8A44A;
  --gold-light: #F5C97A;
  --gold-glow: rgba(232,164,74,.25);
  --purple: #8B5CF6;
  --green: #34D399;
  --blue: #38BDF8;
  --red: #F87171;
  --bg: #F6F5F2;
  --white: #FFFFFF;
  --gray: #7B7B8E;
  --border: #E6E4E0;
  --card-shadow: 0 4px 24px rgba(0,0,0,.06);
  --card-shadow-hover: 0 16px 48px rgba(0,0,0,.1);
  --glass-bg: rgba(11,11,24,.82);
  --glass-border: rgba(255,255,255,.08);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 5%;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--transition);
}

nav.scrolled {
  background: rgba(11,11,24,.95);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  height: 72px;
}

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  flex: 1; /* Pushes links to center */
}
.nav-logo span { color: var(--gold); }

/* The SlideTabs Pill in the center */
.nav-links { 
  display: flex; 
  align-items: center; 
  gap: 4px;
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px;
  border-radius: 100px;
  margin: 0 auto;
}

.nav-links a {
  position: relative;
  z-index: 2;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 8px 18px;
  border-radius: 100px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-links a.active, 
.nav-links a:hover { 
  color: #000 !important; /* Dark text on white pill */
}

.nav-highlighter {
  position: absolute;
  z-index: 1;
  background: #fff; /* The sliding white pill */
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
  opacity: 0;
}

.nav-cta { 
  display: flex; 
  align-items: center; 
  justify-content: flex-end;
  gap: 12px; 
  flex: 1; /* Ensures it stays on the right */
}

.btn-outline {
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.04);
  transition: all var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232,164,74,.06);
}
.btn-gold {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  border: none;
  font-family: 'Sora', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 4px 16px var(--gold-glow);
  transition: all var(--transition);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--gold-glow);
  filter: brightness(1.05);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(11,11,24,.98);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  z-index: 190;
  flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
  padding: 40px 5%;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Sora', sans-serif;
  font-size: 28px; font-weight: 700;
  color: rgba(255,255,255,.6);
  transition: color var(--transition), transform var(--transition);
}
.mobile-menu a:hover { color: #fff; transform: translateX(4px); }
.mobile-menu a.active { color: var(--gold); }
.mobile-menu-btns {
  display: flex; flex-direction: column;
  gap: 12px; width: 100%;
  margin-top: 20px; max-width: 320px;
}
.mobile-menu-btns button {
  width: 100%; padding: 16px;
  border-radius: var(--radius-md);
  font-family: 'Sora', sans-serif;
  font-size: 15px; font-weight: 700;
}

/* ── SECTION COMMONS ── */
section { padding: 72px 5%; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.section-title .accent {
  color: var(--gold);
  position: relative;
}
.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.75;
}

/* ── TICKER ── */
.ticker {
  background: #fff;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.ticker::before,
.ticker::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2; pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(-90deg, #fff, transparent);
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  font-family: 'Sora', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--navy);
  padding: 0 32px;
  display: flex; align-items: center; gap: 12px;
}
.ticker-item::after { content: '✦'; font-size: 10px; opacity: .5; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 64px 5% 32px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,164,74,.06) 0%, transparent 70%);
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  position: relative; z-index: 1;
}
.footer-brand-logo {
  font-family: 'Sora', sans-serif;
  font-size: 26px; font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand-logo span { color: var(--gold); }
.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,.35);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 28px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
  cursor: pointer;
}
.social-btn svg { width: 100%; height: 100%; fill: currentColor; }
.social-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}
.footer-col-title {
  font-family: 'Sora', sans-serif;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  transition: color var(--transition), transform var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  transform: translateX(3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative; z-index: 1;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.25);
}
.footer-copy span { color: var(--gold); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,.25);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ── CITY BADGES ── */
.cities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.city-badge {
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  transition: all var(--transition);
}
.city-badge:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
}
.city-badge.active {
  background: rgba(232,164,74,.1);
  border-color: rgba(232,164,74,.3);
  color: var(--gold);
  box-shadow: 0 0 24px rgba(232,164,74,.15);
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--gold), #F0B860, var(--gold-light));
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  padding: 72px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 18px;
  color: rgba(14,14,26,.55);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-cta-dark {
  padding: 16px 36px;
  border-radius: var(--radius-md);
  border: none;
  font-family: 'Sora', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--gold);
  background: var(--navy);
  transition: all var(--transition);
}
.btn-cta-dark:hover {
  background: var(--navy2);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(14,14,26,.35);
}
.btn-cta-outline {
  padding: 16px 36px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(14,14,26,.2);
  font-family: 'Sora', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--navy);
  background: transparent;
  transition: all var(--transition);
}
.btn-cta-outline:hover {
  background: rgba(14,14,26,.08);
  border-color: rgba(14,14,26,.4);
}

/* ── ANIMATIONS ── */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(36px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes spin { to{transform:rotate(360deg)} }
@keyframes gradientShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes shimmer { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
@keyframes glow { 0%,100%{box-shadow:0 0 24px var(--gold-glow)} 50%{box-shadow:0 0 48px var(--gold-glow)} }

.fade-up   { animation: fadeUp .8s cubic-bezier(.22,1,.36,1) forwards; }
.fade-up-d1{ animation: fadeUp .8s .12s cubic-bezier(.22,1,.36,1) both; }
.fade-up-d2{ animation: fadeUp .8s .24s cubic-bezier(.22,1,.36,1) both; }
.fade-up-d3{ animation: fadeUp .8s .36s cubic-bezier(.22,1,.36,1) both; }
.fade-up-d4{ animation: fadeUp .8s .48s cubic-bezier(.22,1,.36,1) both; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PHONE MOCKUP ── */
.phone-mockup {
  background: var(--navy);
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 40px 100px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.08),
    inset 0 1px 0 rgba(255,255,255,.06);
  width: 260px;
  margin: 0 auto;
  animation: float 5s ease-in-out infinite;
}
.phone-notch {
  width: 70px; height: 22px;
  background: var(--navy);
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: var(--bg);
  border-radius: 28px;
  overflow: hidden;
  height: 480px;
  display: flex;
  flex-direction: column;
}
.phone-header {
  background: linear-gradient(135deg, var(--navy2), var(--navy3));
  padding: 16px 14px 14px;
}
.phone-header-title {
  font-family: 'Sora', sans-serif;
  font-size: 17px; font-weight: 700; color: #fff;
}
.phone-header-title span { color: var(--gold); }
.phone-header-sub { font-size: 10px; color: rgba(255,255,255,.4); margin-top: 2px; }
.phone-body { flex: 1; padding: 12px; overflow: hidden; }
.phone-toggle {
  background: var(--navy2);
  border-radius: var(--radius-sm);
  padding: 3px;
  display: flex;
  margin-bottom: 10px;
}
.phone-toggle-btn {
  flex: 1; padding: 7px;
  border-radius: 7px;
  font-size: 10px; font-weight: 600;
  text-align: center;
  transition: all var(--transition);
}
.phone-toggle-btn.active { background: #fff; color: var(--navy); }
.phone-toggle-btn:not(.active) { color: rgba(255,255,255,.5); }
.phone-card {
  background: #fff;
  border-radius: 12px; padding: 10px;
  display: flex; gap: 8px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.phone-card:hover { border-color: rgba(232,164,74,.3); }
.phone-avatar {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 12px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.phone-card-name {
  font-family: 'Sora', sans-serif;
  font-size: 11px; font-weight: 600;
  color: var(--navy);
}
.phone-card-loc { font-size: 9px; color: var(--gray); margin-top: 2px; }
.phone-card-rating { font-size: 10px; font-weight: 600; color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  section { padding: 60px 5%; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   AUTH-AWARE NAV ADDITIONS
   ══════════════════════════════════════════════ */

/* User avatar in nav */
.nav-user { position: relative; }
.nav-user-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #FFFFFF;
  color: var(--navy);
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid rgba(255,255,255,0.15);
  user-select: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.nav-user-avatar:hover {
  transform: scale(1.05);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Dropdown menu */
.nav-user { position: relative; }
.nav-user-menu {
  display: none;
  position: absolute; top: 100%; right: 0;
  padding-top: 14px; /* Bridge gap for hover stability */
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.16);
  min-width: 240px; z-index: 300;
  overflow: hidden;
  animation: fadeDown .25s cubic-bezier(.22,1,.36,1);
}

.nav-user:hover .nav-user-menu { display: block; }
@keyframes fadeDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }

.num-header { padding: 14px 20px; background: var(--bg); }
.num-name { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); }
.num-detail { font-size: 12px; color: var(--gray); margin-top: 3px; }
.num-divider { border: none; border-top: 1px solid var(--border); }
.num-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 20px;
  font-size: 14px; font-weight: 500; color: var(--navy);
  background: none; border: none; width: 100%;
  text-align: left; cursor: pointer;
  transition: all .2s; text-decoration: none;
}
.num-item:hover { background: var(--bg); }
.num-logout { color: var(--red); }
.num-logout:hover { background: rgba(248,113,113,.05); }

/* ── AUTH MODAL ── */
.auth-modal-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(14, 14, 26, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.auth-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.auth-modal-card {
  width: 90%;
  max-width: 440px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.auth-modal-backdrop.active .auth-modal-card {
  transform: translateY(0) scale(1);
}

.am-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}

.am-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.am-header {
  padding: 32px 32px 24px;
  background: linear-gradient(135deg, #7c3aed 0%, #9061f9 50%, #6366f1 100%);
  text-align: center;
  color: #fff;
  position: relative;
}

.am-logo {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.am-logo span {
  color: #E8A44A;
}

.am-header p {
  font-size: 13px;
  opacity: 0.8;
  line-height: 1.4;
  max-width: 220px;
  margin: 0 auto;
  font-weight: 500;
}

.am-body {
  padding: 24px 32px 28px;
  text-align: center;
}

.am-title {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 2px;
  letter-spacing: -0.5px;
}

.am-subtitle {
  font-size: 12px;
  color: #71717a;
  margin-bottom: 18px;
  line-height: 1.6;
  white-space: nowrap; /* Forces one line as requested */
  letter-spacing: -0.2px;
}

.am-form-group {
  margin-bottom: 16px;
}

.am-input-wrap {
  display: flex;
  border-radius: 14px;
  border: 1.5px solid #e5e7eb;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.am-input-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(232, 164, 74, 0.1);
}

.am-prefix {
  padding: 14px 16px;
  background: #f9fafb;
  border-right: 1.5px solid #e5e7eb;
  font-weight: 700;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 8px;
}

.am-input {
  flex: 1;
  border: none;
  padding: 14px 16px;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: #111827;
  outline: none;
}

.am-btn-primary {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  background: #09090b; /* Sleek black like reference */
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.am-btn-primary:hover {
  background: #18181b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.am-divider {
  display: flex;
  align-items: center;
  margin: 18px 0;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.am-divider::before, .am-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.am-divider span {
  padding: 0 16px;
}

.am-btn-google {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
}

.am-btn-google:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.am-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.6;
}

.am-footer a {
  color: #374151;
  font-weight: 700;
  text-decoration: underline;
}

/* New Logic UI Elements */
.am-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    display: block;
}

.am-error {
    color: #E25555;
    font-size: 12px;
    margin-top: 6px;
    display: none;
    font-weight: 500;
}

.am-link-btn {
    background: none;
    border: none;
    color: var(--navy);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    transition: opacity 0.2s;
}

.am-link-btn:hover {
    opacity: 0.7;
}

.am-btn-outline {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    background: transparent;
    border: 1.5px solid #e5e7eb;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.am-btn-outline:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.am-body select.am-input {
    appearance: auto;
    cursor: pointer;
}

.am-footer a {
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
}

.am-footer {
  margin-top: 16px;
  font-size: 11px;
  color: #71717a;
  line-height: 1.5;
}

/* OTP State */
.am-otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.am-otp-input {
  width: 48px;
  height: 56px;
  border-radius: 12px;
  border: 1.5px solid #e5e7eb;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  outline: none;
  transition: all 0.2s;
}

.am-otp-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(232, 164, 74, 0.1);
}

.hidden { display: none; }
