/* ============================================================
   Oxton Hotels — Landing Page Stylesheet
   Premium hotel website — clean, photographic, Apple-inspired
   ============================================================ */

/* ── Base ── */
.landing-body {
  background: #060a14;
  overflow-x: hidden;
  max-width: 100vw;
  touch-action: pan-y;
  color: white;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, #66b3ff 0%, #005AC8 50%, #3399ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Eyebrow label ── */
.lnd-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #66b3ff;
  margin-bottom: 12px;
}

/* ── Section header ── */
.lnd-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.lnd-section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: white;
  margin: 0;
}
.lnd-section-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
}

/* ── Navbar — Clean, transparent glass bar ── */
.lnd-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 24px;
  height: 48px;
  display: flex;
  align-items: center;
  background: rgba(6, 10, 20, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.lnd-nav.scrolled {
  background: rgba(6, 10, 20, 0.88);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}
.lnd-nav-inner {
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
.lnd-nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: white;
  flex-shrink: 0;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 20px;
}
.lnd-nav-brand img {
  width: 28px;
  height: 28px;
}
.lnd-nav-links {
  display: flex;
  gap: 0;
  margin-left: 0;
}
.lnd-nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 14px 14px;
  transition: background 0.15s, color 0.15s;
  border-radius: 0;
}
.lnd-nav-links a:hover { 
  background: rgba(255,255,255,0.08);
  color: white; 
}
.lnd-nav-links a.active { 
  color: white;
  background: rgba(255,255,255,0.05);
}
.lnd-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.lnd-nav-link {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 8px 12px;
  transition: background 0.15s, color 0.15s;
}
.lnd-nav-link:hover { 
  color: white;
  background: rgba(255,255,255,0.08);
}
.lnd-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}
.lnd-nav-cta:hover { background: rgba(255,255,255,0.18); }

/* ── Nav user pill (shown when signed in) ── */
.lnd-nav-user {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  text-decoration: none;
  color: #fff;
}
.lnd-nav-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.lnd-nav-avatar-initials {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #005AC8, #8b5cf6);
  font-size: 12px; font-weight: 700; color: #fff;
}
.lnd-nav-username {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* Mobile user info row */
.lnd-mobile-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* ── Hamburger menu button ── */
.lnd-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 8px;
}
.lnd-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
@media (max-width: 900px) {
  .lnd-hamburger { display: flex; }
  .lnd-nav-signin-btn { display: none; }
  .lnd-nav-user { display: none; }
}

/* ── Mobile slide-out menu ── */
.lnd-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}
.lnd-mobile-overlay.open {
  display: block;
  opacity: 1;
}
.lnd-mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #0c0c14;
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.lnd-mobile-menu.open {
  right: 0;
}
.lnd-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.lnd-mobile-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 28px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}
.lnd-mobile-close:hover { color: white; }
.lnd-mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lnd-mobile-menu-links a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.lnd-mobile-menu-links a:hover {
  background: rgba(255,255,255,0.06);
  color: white;
}
.lnd-mobile-menu-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 16px 0;
}

/* ── Booking bar (hero) ── */
.lnd-booking-bar {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 6px 6px 28px;
  gap: 0;
  max-width: 580px;
  margin: 32px auto 0;
  width: 100%;
}
.lnd-booking-field {
  flex: 1;
  min-width: 0;
  padding: 8px 16px 8px 0;
}
.lnd-booking-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.lnd-booking-field span {
  font-size: 14px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lnd-booking-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  margin-right: 16px;
}
.lnd-booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: white;
  color: #060a14;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.lnd-booking-btn:hover { background: rgba(255,255,255,0.9); transform: scale(1.02); }
@media (max-width: 600px) {
  .lnd-booking-bar {
    flex-direction: column;
    border-radius: 16px;
    padding: 16px 20px;
    gap: 12px;
    align-items: stretch;
  }
  .lnd-booking-sep { display: none; }
  .lnd-booking-btn { justify-content: center; }
}


.lnd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}
.lnd-btn-primary {
  background: linear-gradient(135deg, #005AC8, #3399ff);
  color: white;
  box-shadow: 0 4px 24px rgba(0,90,200,0.35);
}
.lnd-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 32px rgba(0,90,200,0.45); }
.lnd-btn-white { background: white; color: #0a0a14; }
.lnd-btn-white:hover { background: rgba(255,255,255,0.92); transform: translateY(-1px); }
.lnd-btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.lnd-btn-outline:hover { background: rgba(255,255,255,0.08); color: white; border-color: rgba(255,255,255,0.5); }
.lnd-btn-ghost { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.1); }
.lnd-btn-ghost:hover { background: rgba(255,255,255,0.1); color: white; }
.lnd-btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── Hero ── */
.lnd-hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  max-height: 980px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lnd-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.lnd-hero-img.loaded { transform: scale(1); }
.lnd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,6,12,0.15) 0%,
    rgba(6,6,12,0.35) 40%,
    rgba(6,6,12,0.75) 100%
  );
}
.lnd-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}
.lnd-hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: white;
  margin: 0 0 12px;
}
.lnd-hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.lnd-hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: white;
  margin: 16px 0 20px;
}
.lnd-hero-title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
}
.lnd-hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 36px;
  font-weight: 400;
}
.lnd-hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.lnd-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── Hero slideshow ── */
.lnd-hero-slideshow {
  position: absolute;
  inset: 0;
}
.lnd-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.lnd-hero-slide.active {
  opacity: 1;
}

/* ── Modern feature cards ── */
.lnd-feature-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.lnd-feature-modern {
  position: relative;
  padding: 48px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}
.lnd-feature-modern:hover {
  background: rgba(102,179,255,0.04);
}
.lnd-feature-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(102,179,255,0.15);
  margin-bottom: 16px;
  line-height: 1;
}
.lnd-feature-modern h3 {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.lnd-feature-modern p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 0;
}
@media (min-width: 769px) {
  .lnd-feature-grid-modern {
    grid-template-columns: repeat(3, 1fr);
  }
  .lnd-feature-modern {
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.06);
  }
  .lnd-feature-modern:last-child {
    border-right: none;
  }
}

/* ── Team hero with animated ripple ── */
.team-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,90,200,0.4) 0%, rgba(6,6,12,0.95) 70%);
  overflow: hidden;
}
.team-hero #ripple-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.team-hero-content {
  position: relative;
  z-index: 2;
}
.team-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: white;
  margin: 12px 0 0;
}
.team-hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
}

/* ── Loading spinner (spinning Oxton logo) ── */
.oxton-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}
.oxton-loader img {
  width: 64px;
  height: 64px;
  animation: spin 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ── Stats strip ── */
.lnd-stats {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}
.lnd-stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.lnd-stat { text-align: center; flex: 1; min-width: 140px; }
.lnd-stat-value {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  line-height: 1.1;
}
.lnd-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.lnd-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ── Next session banner ── */
.lnd-next-session {
  background: linear-gradient(135deg, rgba(30,58,138,0.3) 0%, rgba(6,6,12,0.95) 100%);
  border-top: 1px solid rgba(102,179,255,0.15);
  border-bottom: 1px solid rgba(102,179,255,0.08);
  padding: 0;
}
.lnd-next-session-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 40px;
  text-align: center;
}

/* ── Feature cards ── */
.lnd-features {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.lnd-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.lnd-feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 32px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.lnd-feature-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.lnd-feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(0,90,200,0.45), rgba(51,153,255,0.5));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #3399ff;
}
.lnd-feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin: 0 0 10px;
}
.lnd-feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

/* ── Announcements ── */
.lnd-ann {
  padding: 0 40px 120px;
  max-width: 1000px;
  margin: 0 auto;
}
.lnd-ann-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.lnd-ann-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 24px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.lnd-ann-card:hover { background: rgba(255,255,255,0.05); transform: translateY(-3px); }
.lnd-ann-pin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(245,158,11,0.15);
  color: #f59e0b;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}
.lnd-ann-cat {
  display: inline-block;
  background: rgba(0,90,200,0.15);
  color: #3399ff;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}
.lnd-ann-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.lnd-ann-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; margin: 0 0 16px; }
.lnd-ann-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 12px;
}

/* ── V2 Teaser ── */
.lnd-v2 {
  position: relative;
  height: 60vh;
  min-height: 420px;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.lnd-v2-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.lnd-v2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,6,12,0.65);
}
.lnd-v2-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

/* ── Careers ── */
.lnd-careers {
  padding: 120px 40px;
  max-width: 900px;
  margin: 0 auto;
}
.lnd-careers-list { display: flex; flex-direction: column; gap: 16px; }
.lnd-career-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 28px;
  transition: background 0.2s, transform 0.2s;
}
.lnd-career-card:hover { background: rgba(255,255,255,0.05); transform: translateX(4px); }
.lnd-career-info { flex: 1; }
.lnd-career-dept {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3399ff;
  margin-bottom: 6px;
  display: block;
}
.lnd-career-info h3 { font-size: 17px; font-weight: 700; color: white; margin: 0 0 6px; }
.lnd-career-info p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }

/* ── Reviews ── */
.lnd-reviews {
  padding: 120px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.lnd-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.lnd-review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
  transition: background 0.2s, transform 0.2s;
}
.lnd-review-card:hover { background: rgba(255,255,255,0.05); transform: translateY(-2px); }
.lnd-review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.lnd-review-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin: 0 0 20px;
  font-style: italic;
}
.lnd-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
}
.lnd-review-avatar-placeholder {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #005AC8, #3399ff);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: white; flex-shrink: 0;
}
.lnd-review-name { font-size: 13px; font-weight: 600; color: white; }
.lnd-review-date { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 1px; }

/* Review form */
.lnd-review-form-wrap {
  max-width: 560px;
  margin: 0 auto;
}
.lnd-review-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 36px;
}
.lnd-review-form h3 {
  font-size: 18px; font-weight: 700; color: white; margin: 0 0 24px; text-align: center;
}
.lnd-review-signin-prompt {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
}
.lnd-review-signin-prompt p {
  font-size: 17px; color: rgba(255,255,255,0.7); margin: 0;
}

/* Star picker */
.star-picker {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.star-btn {
  background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.2);
  padding: 4px; transition: color 0.15s, transform 0.1s;
}
.star-btn:hover, .star-btn.active { color: #f59e0b; transform: scale(1.1); }
#review-text {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  color: white;
  font-family: inherit;
  resize: vertical;
  margin-bottom: 16px;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
#review-text:focus { outline: none; border-color: #3399ff; }
#review-text::placeholder { color: rgba(255,255,255,0.3); }

/* ── Staff CTA ── */
.lnd-staff-cta {
  background: linear-gradient(135deg, rgba(0,90,200,0.2), rgba(51,153,255,0.25));
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 96px 40px;
}
.lnd-staff-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.lnd-staff-cta-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}
.lnd-staff-cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 32px;
}
.lnd-staff-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── CTA section (generic) ── */
.lnd-cta-section {
  padding: 96px 40px;
  text-align: center;
}
.lnd-cta-inner { max-width: 600px; margin: 0 auto; }
.lnd-cta-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.lnd-cta-inner p { font-size: 16px; color: rgba(255,255,255,0.6); }

/* ── About page specific ── */
.abt-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,90,200,0.25) 0%, transparent 70%);
}
.abt-hero-inner h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: white;
  margin: 12px 0 0;
}
.abt-hero-inner p { font-size: 18px; color: rgba(255,255,255,0.6); margin-top: 16px; }
.abt-section { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.abt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 768px) { .abt-grid { grid-template-columns: 1fr; } }
.abt-text h2 { font-size: 28px; font-weight: 800; color: white; margin-bottom: 20px; letter-spacing: -0.02em; }
.abt-text p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 16px; }
.abt-photo {
  width: 100%; border-radius: 20px; object-fit: cover;
  height: 380px; display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.abt-image-wrap { position: relative; }
.abt-values { padding: 80px 40px; background: rgba(255,255,255,0.02); border-top: 1px solid rgba(255,255,255,0.06); }
.abt-values-inner { max-width: 1100px; margin: 0 auto; }
.abt-values h2 { font-size: 28px; font-weight: 800; color: white; text-align: center; margin-bottom: 48px; }
.abt-values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.abt-value-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}
.abt-value-icon { font-size: 24px; color: #3399ff; margin-bottom: 14px; }
.abt-value-card h3 { font-size: 16px; font-weight: 700; color: white; margin: 0 0 8px; }
.abt-value-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; margin: 0; }
.abt-v2 { position: relative; height: 55vh; min-height: 400px; overflow: hidden; }
.abt-v2-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.abt-v2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}
@media (max-width: 768px) { .abt-v2-inner { grid-template-columns: 1fr; } }
.abt-v2-text h2 { font-size: 28px; font-weight: 800; color: white; margin: 12px 0 16px; }
.abt-v2-text p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px; }

/* ── Auth pages ── */
.auth-main {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 24px 48px;
}
.auth-card {
  width: 100%;
  max-width: 400px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 48px 40px;
  backdrop-filter: blur(20px);
  text-align: center;
}
.auth-logo { margin-bottom: 28px; }
.auth-title { font-size: 28px; font-weight: 700; color: white; margin: 0 0 8px; letter-spacing: -0.03em; }
.auth-sub { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 32px; line-height: 1.6; font-weight: 400; }
.auth-form { text-align: left; }
.auth-field { margin-bottom: 18px; }
.auth-field label {
  display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); margin-bottom: 6px;
}
.auth-optional { font-weight: 400; color: rgba(255,255,255,0.35); font-size: 12px; }
.auth-field input, .auth-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: white;
  font-family: inherit;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.auth-field input:focus, .auth-field textarea:focus {
  outline: none; border-color: #3399ff;
}
.auth-field input::placeholder { color: rgba(255,255,255,0.25); }
.auth-field small { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 5px; display: block; }
.auth-notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(0,90,200,0.08);
  border: 1px solid rgba(0,90,200,0.2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(0,90,200,0.9);
  line-height: 1.5;
  margin-bottom: 20px;
}
.auth-alert {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 16px;
  text-align: left;
}
.auth-alert-error { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }
.auth-alert-success { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3); color: #86efac; }
.auth-alert-warning { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.3); color: #fcd34d; }
.auth-divider { position: relative; margin: 20px 0; text-align: center; }
.auth-divider::before { content:''; position:absolute; inset:50% 0 auto; height:1px; background:rgba(255,255,255,0.1); }
.auth-divider span { position:relative; background:#060a14; padding:0 12px; font-size:12px; color:rgba(255,255,255,0.35); }
.auth-roblox-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: background 0.2s;
}
.auth-roblox-btn:hover { background: rgba(255,255,255,0.11); }
.auth-footer-text { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 20px; }
.auth-footer-text a { color: #3399ff; text-decoration: none; }
.auth-footer-text a:hover { text-decoration: underline; }

/* Roblox linking steps */
.link-steps { text-align: left; margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.link-step { display: flex; gap: 14px; align-items: flex-start; }
.link-step-num {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #1e3a5f, #005AC8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: white; flex-shrink: 0;
}
.link-step-content h4 { font-size: 14px; font-weight: 700; color: white; margin: 0 0 3px; }
.link-step-content p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }

/* ── Footer ── */
.lnd-footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 56px 40px;
}
.lnd-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.lnd-footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}
.lnd-footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.lnd-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.lnd-footer-links a:hover { color: rgba(255,255,255,0.8); }
.lnd-footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); margin: 0; text-align: center; }

/* ── Scroll reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .lnd-nav { padding: 0 24px; }
  .lnd-nav-links { display: none; }
  .lnd-features, .lnd-ann, .lnd-careers, .lnd-reviews { padding-left: 24px; padding-right: 24px; }
  .lnd-stats-inner { gap: 12px; padding: 32px 24px; }
  .lnd-stat-divider { display: none; }
}
.desk-only { display: inline; }
@media (max-width: 600px) { .desk-only { display: none; } }

/* ── Mailing List ── */
.lnd-mailing {
  background: linear-gradient(135deg, #1e3a5f 0%, #1a1a2e 100%);
  padding: 80px 24px;
  text-align: center;
}
.lnd-mailing-inner { max-width: 540px; margin: 0 auto; }
.lnd-mailing h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin: 12px 0 12px; }
.lnd-mailing p { color: rgba(255,255,255,0.72); font-size: 1rem; margin-bottom: 28px; }
.lnd-mailing-form { display: flex; gap: 8px; max-width: 440px; margin: 0 auto; }
.lnd-mailing-form input[type=email] {
  flex: 1; padding: 12px 16px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08); color: #fff;
  font-size: 14px; outline: none;
}
.lnd-mailing-form input[type=email]::placeholder { color: rgba(255,255,255,0.4); }
.lnd-mailing-form input[type=email]:focus { border-color: #3399ff; background: rgba(255,255,255,0.12); }
.lnd-mailing-note { font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 14px; }
@media (max-width: 480px) { .lnd-mailing-form { flex-direction: column; } .lnd-mailing-form button { width: 100%; justify-content: center; } }

/* ── Legal Pages (Terms of Service, Privacy Policy) ── */
.legal-content {
  padding: 60px 40px 80px;
  max-width: 820px;
  margin: 0 auto;
}
.legal-inner { display: flex; flex-direction: column; gap: 0; }
.legal-updated {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-section {
  margin-bottom: 40px;
}
.legal-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.legal-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin: 20px 0 10px;
}
.legal-section p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-section a {
  color: #3399ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-section a:hover { color: #66b3ff; }
.legal-section ul {
  margin: 12px 0 16px 24px;
  padding: 0;
}
.legal-section li {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 4px;
}
.legal-section li strong { color: rgba(255,255,255,0.8); }
@media (max-width: 768px) {
  .legal-content { padding: 40px 24px 60px; }
}

/* ── Meet the Executives (Team Page) ── */
.team-section {
  position: relative;
  overflow: hidden;
  padding: 60px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.team-logo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.team-logo-float {
  position: absolute;
  /* Keep the public-page logos subtle so they stay behind the content cards. */
  opacity: 0.035;
  width: var(--logo-size, 120px);
  aspect-ratio: 1 / 1;
  background-image: var(--team-logo-url);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: team-logo-float var(--float-duration, 48s) linear infinite;
  animation-delay: var(--float-delay, 0s);
}
.team-logo-float-1 { top: 8%; left: -12%; --logo-size: 140px; --float-duration: 58s; --float-delay: -6s; }
.team-logo-float-2 { top: 24%; left: 18%; --logo-size: 96px; --float-duration: 64s; --float-delay: -14s; }
.team-logo-float-3 { top: 52%; left: -8%; --logo-size: 132px; --float-duration: 60s; --float-delay: -22s; }
.team-logo-float-4 { top: 68%; left: 34%; --logo-size: 88px; --float-duration: 70s; --float-delay: -10s; }
.team-logo-float-5 { top: 14%; left: 66%; --logo-size: 118px; --float-duration: 62s; --float-delay: -18s; }
.team-logo-float-6 { top: 74%; left: 82%; --logo-size: 104px; --float-duration: 68s; --float-delay: -26s; }
@keyframes team-logo-float {
  0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  25% { transform: translate3d(28px, -18px, 0) rotate(48deg) scale(1.04); }
  50% { transform: translate3d(72px, 12px, 0) rotate(180deg) scale(0.96); }
  75% { transform: translate3d(118px, -14px, 0) rotate(284deg) scale(1.03); }
  100% { transform: translate3d(160px, 0, 0) rotate(360deg) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .team-logo-float {
    animation: none;
    transform: none;
  }
}
.team-inner { position: relative; z-index: 1; width: 100%; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 40px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(51,153,255,0.3);
  box-shadow: 0 12px 40px rgba(51,153,255,0.12);
  color: inherit;
}
.team-card-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
  border: 3px solid rgba(102,179,255,0.2);
}
.team-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-card-name {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin: 4px 0 0;
}
.team-card-rank {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #3399ff;
  background: rgba(0,90,200,0.1);
  border: 1px solid rgba(0,90,200,0.15);
  padding: 5px 14px;
  border-radius: 20px;
}
.team-card-statement {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 4px 0 0;
  font-style: italic;
}
.team-empty {
  text-align: center;
  padding: 60px 20px;
}
.team-empty p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 768px) {
  .team-section { padding: 40px 24px 60px; }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
  .team-card { padding: 28px 20px 24px; }
  .team-card-avatar { width: 88px; height: 88px; }
}

/* ── Photo Gallery ── */
.gallery-section {
  padding: 80px 40px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.gallery-inner h2 {
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.gallery-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  font-size: 13px;
  font-weight: 600;
  color: white;
  text-align: left;
}
@media (max-width: 768px) {
  .gallery-section { padding: 60px 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── Auth extras ── */
.auth-required { color: #f87171; font-size: 12px; }
.auth-checkbox { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; cursor: pointer; }
.auth-checkbox input[type=checkbox] { margin-top: 2px; accent-color: var(--brand-blue); width: 15px; height: 15px; }

/* ── Landing Page Entrance Animations ── */
@keyframes lnd-fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lnd-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lnd-scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lnd-hero-content { animation: lnd-fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }
.lnd-hero-title  { animation: lnd-fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both; }
.lnd-hero-lead   { animation: lnd-fadeIn   0.6s ease 0.5s both; }
.lnd-hero-cta    { animation: lnd-fadeInUp 0.5s ease 0.6s both; }
.lnd-stats       { animation: lnd-fadeInUp 0.6s ease 0.3s both; }
.lnd-section-header { animation: lnd-fadeInUp 0.5s ease 0.15s both; }
.lnd-features .feature-card { animation: lnd-scaleIn 0.4s ease both; }
.lnd-features .feature-card:nth-child(1) { animation-delay: 0.1s; }
.lnd-features .feature-card:nth-child(2) { animation-delay: 0.2s; }
.lnd-features .feature-card:nth-child(3) { animation-delay: 0.3s; }
.lnd-features .feature-card:nth-child(4) { animation-delay: 0.4s; }

/* ── Session Timetable (Landing) ── */
.session-timetable {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
}
.timetable-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.timetable-table thead th {
  padding: 14px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  text-align: left;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.timetable-table tbody td {
  padding: 14px 16px;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-weight: 500;
}
.timetable-table tbody tr:last-child td { border-bottom: none; }
.timetable-table tbody tr { transition: background 0.2s ease; }
.timetable-table tbody tr:hover { background: rgba(51,153,255,0.08); }
.timetable-session-name {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
}
.timetable-session-dot {
  width: 8px;
  height: 8px;
  background: #005AC8;
  border-radius: 50%;
  flex-shrink: 0;
}
.timetable-type-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  background: rgba(0,90,200,0.12);
  color: #66b3ff;
  padding: 3px 10px;
  border-radius: 20px;
}
.timetable-corner {
  min-width: 160px;
}
@media (max-width: 768px) {
  .session-timetable { overflow-x: auto; }
  .timetable-table { min-width: 500px; }
}

/* ── Live Chat Widget — Floating (landing page) — RIGHT side ── */
.chat-widget {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.chat-toggle {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #004ba0, #005AC8);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 20px rgba(0,90,200,0.5);
  transition: transform 0.25s cubic-bezier(.4,0,.2,1), box-shadow 0.25s;
}
.chat-toggle:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(0,90,200,0.65); }
.chat-toggle-label { display: none; }
.chat-panel {
  width: 340px; background: #0f172a;
  border: 1px solid rgba(0,90,200,0.15);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,90,200,0.08);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.25s cubic-bezier(.4,0,.2,1), transform 0.25s cubic-bezier(.4,0,.2,1), visibility 0.25s;
}
}
.chat-panel-visible {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* ── Live Chat Widget — Right sidebar tab (authenticated dashboard) ── */
.has-sidebar .chat-widget {
  bottom: auto;
  right: 0;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: row-reverse;
  align-items: center;
  gap: 0;
}
.has-sidebar .chat-toggle {
  width: auto;
  height: auto;
  border-radius: 10px 0 0 10px;
  flex-direction: column;
  gap: 8px;
  padding: 16px 10px;
  min-width: 44px;
  box-shadow: -4px 0 20px rgba(0,90,200,0.4);
  transform: none;
}
.has-sidebar .chat-toggle:hover {
  transform: none;
  padding: 16px 14px;
  box-shadow: -6px 0 28px rgba(0,90,200,0.6);
}
.has-sidebar .chat-toggle-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  color: rgba(255,255,255,0.8);
}
.has-sidebar .chat-panel {
  position: absolute;
  right: 44px;
  left: auto;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
  border-radius: 12px 0 0 12px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.55);
  max-height: min(540px, 80vh);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.3s;
}
.has-sidebar .chat-panel-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}
.chat-header {
  background: linear-gradient(135deg, #005AC8, #3399ff); padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(0,90,200,0.15);
}
.chat-header-info { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #fff; }
.chat-close { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 20px; cursor: pointer; line-height: 1; padding: 0 4px; transition: color 0.15s; }
.chat-close:hover { color: #fff; }
.chat-body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-discord-note { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.chat-discord-note a { color: #5865F2; }
#chat-messages { max-height: 160px; overflow-y: auto; display: flex; flex-direction: column; gap: 6px; font-size: 13px; }
.chat-msg { background: rgba(255,255,255,0.04); padding: 8px 10px; border-radius: 10px; color: #fff; transition: opacity 0.2s; }
.chat-msg .chat-sender { font-weight: 600; font-size: 11px; color: #3399ff; margin-bottom: 2px; }
.chat-input-row { display: flex; gap: 6px; }
.chat-input-row input {
  flex: 1; padding: 10px 12px; border-radius: 10px;
  border: 1px solid rgba(0,90,200,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff; font-size: 13px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.chat-input-row input:focus { border-color: #005AC8; box-shadow: 0 0 0 3px rgba(0,90,200,0.15); }
.chat-send-btn { padding: 10px 14px !important; font-size: 13px !important; border-radius: 10px !important; min-width: 42px; }
.chat-signin-prompt { text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); display: flex; flex-direction: column; align-items: center; gap: 6px; }
/* icon circles for states */
.chat-icon-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(0,90,200,0.12); color: #3399ff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
/* loading spinner */
.chat-loading { display: flex; align-items: center; justify-content: center; padding: 24px 0; }
.chat-spinner { width: 24px; height: 24px; border: 2px solid rgba(255,255,255,0.1); border-top-color: #005AC8; border-radius: 50%; animation: chat-spin 0.7s linear infinite; }
.chat-spinner-sm { width: 14px; height: 14px; border-width: 2px; display: inline-block; vertical-align: middle; margin-right: 4px; }
@keyframes chat-spin { to { transform: rotate(360deg); } }
@keyframes chat-panel-in { from { opacity: 0; transform: translateY(12px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
/* buttons */
.chat-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px; border-radius: 10px; border: none;
  font-size: 13px; font-weight: 600; cursor: pointer;
  text-decoration: none; text-align: center;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.chat-btn:active { transform: scale(0.97); }
.chat-btn-primary {
  background: linear-gradient(135deg, #004ba0, #005AC8); color: #fff;
  box-shadow: 0 2px 8px rgba(0,90,200,0.35);
}
.chat-btn-primary:hover { background: linear-gradient(135deg, #003a7d, #004ba0); box-shadow: 0 4px 16px rgba(0,90,200,0.5); }
.chat-btn-primary:disabled { opacity: 0.6; cursor: default; }
.chat-btn-discord {
  background: rgba(88,101,242,0.12); color: #5865F2;
  border: 1px solid rgba(88,101,242,0.2);
}
.chat-btn-discord:hover { background: rgba(88,101,242,0.2); }
/* labels */
.chat-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 4px; }
/* new ticket form */
.chat-new-ticket { display: flex; flex-direction: column; gap: 0; }
.chat-form-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.chat-select { width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(0,90,200,0.15); background: rgba(255,255,255,0.05); color: #fff; font-size: 13px; outline: none; appearance: none; transition: border-color 0.2s; }
.chat-select:focus { border-color: #005AC8; }
.chat-select option { background: #0f172a; color: #fff; }
.chat-textarea { width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(0,90,200,0.15); background: rgba(255,255,255,0.05); color: #fff; font-size: 13px; outline: none; resize: vertical; font-family: inherit; box-sizing: border-box; transition: border-color 0.2s; }
.chat-textarea:focus { border-color: #005AC8; }
/* active ticket chat */
.chat-ticket-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.chat-status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.chat-close-ticket-btn { margin-left: 8px; background: none; border: none; color: rgba(255,255,255,0.35); font-size: 11px; cursor: pointer; padding: 2px 6px; border-radius: 4px; transition: color 0.15s, background 0.15s; }
.chat-close-ticket-btn:hover { color: #ef4444; background: rgba(239,68,68,0.1); }
.chat-messages-list { max-height: 200px; overflow-y: auto; display: flex; flex-direction: column; gap: 6px; font-size: 13px; margin-bottom: 8px; }
.chat-msg { background: rgba(255,255,255,0.04); padding: 8px 10px; border-radius: 10px; color: #fff; }
.chat-msg-enter { animation: chat-msg-slide 0.2s ease-out; }
@keyframes chat-msg-slide { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.chat-msg-staff { background: rgba(0,90,200,0.12); border-left: 2px solid #005AC8; }
.chat-msg .chat-sender { font-weight: 600; font-size: 11px; color: #3399ff; margin-bottom: 2px; }
.chat-msg-staff .chat-sender { color: #66b3ff; }
.chat-msg .chat-text { font-size: 13px; color: #fff; word-break: break-word; }
/* closed ticket banner */
.chat-closed-banner {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  padding: 8px 12px; border-radius: 8px;
  background: rgba(148,163,184,0.08); color: rgba(255,255,255,0.5);
  font-size: 12px; border: 1px solid rgba(148,163,184,0.12);
}
/* confirmation animation */
.chat-confirmation { text-align: center; padding: 12px 0; animation: chat-fade-in 0.4s ease-out; }
.chat-confirm-icon { font-size: 36px; margin-bottom: 8px; animation: chat-bounce 0.6s ease-out; }
.chat-confirm-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.chat-confirm-sub { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.chat-confirm-note { font-size: 11px; color: rgba(255,255,255,0.35); }
@keyframes chat-fade-in { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes chat-bounce { 0% { transform: scale(0.3); opacity: 0; } 50% { transform: scale(1.15); } 100% { transform: scale(1); opacity: 1; } }

/* ── Profile dropdown menu ── */
.lnd-nav-user-menu { position: relative; display: inline-flex; align-items: center; }
.lnd-nav-user-btn { background: none; border: none; cursor: pointer; padding: 0; display: inline-flex; align-items: center; gap: 8px; }
.lnd-user-chevron { color: rgba(255,255,255,0.5); transition: transform 0.2s; flex-shrink: 0; }
.lnd-nav-user-btn[aria-expanded="true"] .lnd-user-chevron { transform: rotate(180deg); }
.lnd-user-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 200;
  min-width: 160px; background: #0f1929; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  overflow: hidden; opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px); transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.lnd-user-dropdown.open {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.lnd-user-dropdown-item {
  display: flex; align-items: center; gap: 10px; padding: 11px 16px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8); text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.lnd-user-dropdown-item:hover { background: rgba(255,255,255,0.06); color: #fff; }
.lnd-user-dropdown-signout { color: #f87171; }
.lnd-user-dropdown-signout:hover { background: rgba(239,68,68,0.1); color: #fca5a5; }

/* ====================================================================
   Landing page mobile/tablet enhancements
   ==================================================================== */

/* Review form wrap — ensure centred on all sizes */
.lnd-review-form-wrap {
  display: flex;
  justify-content: center;
  padding: 0 16px;
}
.lnd-review-form {
  width: 100%;
}

@media (max-width: 600px) {
  /* Hero */
  .lnd-hero-headline {
    font-size: clamp(32px, 9vw, 56px) !important;
  }
  .lnd-hero-sub {
    font-size: 15px !important;
  }
  .lnd-booking-bar {
    flex-direction: column !important;
    gap: 10px !important;
    padding: 16px !important;
  }
  .lnd-booking-bar > * {
    width: 100% !important;
  }

  /* Nav */
  .lnd-nav-links { display: none; }
  .lnd-nav-actions .lnd-btn:not(.lnd-btn-primary) { display: none; }

  /* Review form */
  .lnd-review-form {
    padding: 24px 18px !important;
  }
  .lnd-review-form h3 {
    font-size: 16px !important;
  }

  /* Job cards */
  .lnd-job-card {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  /* Stats */
  .lnd-stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* Reviews grid */
  .lnd-reviews-grid {
    grid-template-columns: 1fr !important;
  }

  /* Footer links */
  .lnd-footer-links {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px 16px !important;
  }
}

@media (max-width: 380px) {
  .lnd-stats-grid {
    grid-template-columns: 1fr !important;
  }
  .lnd-hero-headline {
    font-size: 28px !important;
  }
}

/* ── V2 Countdown Units ── */
.v2-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 80px;
}
.v2-cd-unit span {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.v2-cd-unit small {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
