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

:root {
  --primary: #0584C7;
  --primary-dark: #0468a3;
  --accent: #F5A623;
  --text: #1a1a2e;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f8f7ff;
  --border: #e5e7eb;
  --radius: 12px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

/* BURGER BUTTON */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-burger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    gap: 0;
  }

  .nav-links.open { display: flex; }

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child { border-bottom: none; }

  .nav-links a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .gig-types {
    grid-template-columns: 1fr 1fr;
  }

  .features-roles {
    grid-template-columns: 1fr;
  }

  .content {
    padding: 2rem 1.25rem 4rem;
  }

  .page-header {
    padding: 3rem 1.25rem 2rem;
  }
}

@media (max-width: 480px) {
  .gig-types {
    grid-template-columns: 1fr;
  }

  .slide-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-outline { margin-left: 0; }
}

/* HERO */
.hero {
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, #f8f7ff 0%, #ede9fe 100%);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
}

.hero h1 span { color: var(--primary); }

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,59,245,0.25); }

.btn-primary { background: var(--primary); color: #fff; }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); margin-left: 0.75rem; }

/* WHAT IS GIGGRE */
.about-section {
  padding: 5rem 2rem;
  background: var(--bg);
  text-align: center;
}

.about-container {
  max-width: 860px;
  margin: 0 auto;
}

.about-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.about-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-title span { color: var(--primary); }

.about-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-card {
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  text-align: left;
  background: var(--bg-alt);
  border-top: 4px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.about-card--worker { border-top-color: #0584C7; }
.about-card--host   { border-top-color: #FBBF24; }

.about-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .about-cards { grid-template-columns: 1fr; }
}

/* FEATURES SECTION */
.features-section {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}

.features-container {
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 3rem;
}

.features-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.features-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.features-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* GIG TYPES */
.gig-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.gig-type {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-top: 4px solid var(--primary);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gig-type:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.gig-type-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.gig-type h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.gig-type p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ROLE COLUMNS */
.features-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.role-column {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 5px solid transparent;
}

.role-column--worker { border-top-color: var(--primary); }
.role-column--host   { border-top-color: var(--accent); }

.role-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.role-header span { font-size: 1.75rem; }

.role-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}

.feat-group {
  margin-bottom: 1.4rem;
}

.feat-group h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.45rem;
}

.role-column--host .feat-group h4 { color: #d97706; }

.feat-group ul {
  list-style: none;
  padding: 0;
}

.feat-group ul li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.28rem 0 0.28rem 1.25rem;
  position: relative;
  line-height: 1.5;
}

.feat-group ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.role-column--host .feat-group ul li::before { color: #d97706; }

/* SHARED FEATURES BAR */
.shared-features {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  text-align: center;
}

.shared-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.shared-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.shared-pills span {
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}

/* PAGE CONTENT */
.page-header {
  background: linear-gradient(135deg, #f8f7ff 0%, #ede9fe 100%);
  padding: 4rem 2rem 3rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
}

.page-header p {
  color: var(--muted);
  margin-top: 0.5rem;
  font-size: 1rem;
}

.content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.content p { color: #374151; margin-bottom: 1rem; }
.content ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.content ul li { color: #374151; margin-bottom: 0.4rem; }

/* SKELETON LOADER */
.skeleton-group { margin-bottom: 2.25rem; }

.skeleton {
  background: linear-gradient(90deg, var(--bg-alt) 25%, #e4e4f0 50%, var(--bg-alt) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: 4px;
}

.skeleton--heading {
  height: 1.1rem;
  width: 38%;
  margin-bottom: 0.85rem;
}

.skeleton--text {
  height: 0.85rem;
  width: 100%;
  margin-bottom: 0.5rem;
}

.skeleton--short { width: 62%; margin-bottom: 0; }

@keyframes shimmer {
  0%   { background-position:  200% 0; }
  100% { background-position: -200% 0; }
}

.content-empty {
  color: var(--muted);
  font-style: italic;
}

/* DELETE ACCOUNT */
.delete-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.delete-steps > li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  color: var(--text);
}

.delete-steps > li::before {
  content: counter(step);
  min-width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  align-self: flex-start;
}

.delete-steps > li > div {
  flex: 1;
}

.delete-steps > li > div > strong {
  display: block;
  margin-bottom: 0.25rem;
}

.delete-steps > li > div > ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  list-style: disc;
}

.delete-steps > li > div > ul > li {
  margin-bottom: 0.25rem;
}

.warning-box {
  background: #fff3cd;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.2rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: #7c5c00;
}

.info-box {
  background: #eff6ff;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.2rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: #1e40af;
}

.info-box a {
  color: var(--primary);
  font-weight: 600;
}

/* CONTACT FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 640px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-item .icon {
  width: 36px;
  height: 36px;
  background: var(--bg-alt);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

form .field {
  margin-bottom: 1.25rem;
}

form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  background: var(--bg);
  color: var(--text);
}

form input:focus,
form textarea:focus,
form select:focus {
  border-color: var(--primary);
}

form textarea { resize: vertical; min-height: 120px; }

/* DOWNLOAD CTA */
.download-section {
  padding: 6rem 2rem;
  background: linear-gradient(140deg, #0468a3 0%, #06304f 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.download-container {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
}

.download-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}

.download-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.download-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 400px;
  margin: 0 auto 2.75rem;
  line-height: 1.7;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.75rem;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  min-width: 190px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
}

.store-btn:not(.store-btn--soon):hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-3px);
}

.store-btn--soon {
  opacity: 0.5;
  cursor: default;
}

.store-btn-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.25;
}

.store-btn-label {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.75;
}

.store-btn-name {
  font-size: 1.05rem;
  font-weight: 700;
}

.store-soon-badge {
  position: absolute;
  top: -9px;
  right: -9px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
}

@media (max-width: 480px) {
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
  .store-btn { width: 100%; max-width: 240px; justify-content: center; }
}

/* HOW IT WORKS */
.howitworks-section {
  padding: 5rem 2rem;
  background: var(--bg);
}

.howitworks-container {
  max-width: 680px;
  margin: 0 auto;
}

.howitworks-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.howitworks-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.howitworks-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.howitworks-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

/* TAB TOGGLE */
.hiw-tabs {
  display: flex;
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto 3rem;
  gap: 4px;
}

.hiw-tab {
  padding: 0.6rem 1.75rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.hiw-tab[data-tab="worker"].hiw-tab--active {
  background: var(--primary);
  color: #fff;
}

.hiw-tab[data-tab="host"].hiw-tab--active {
  background: #d97706;
  color: #fff;
}

/* PANELS */
.hiw-panel { display: none; }

.hiw-panel--active {
  display: block;
  animation: fadeInPanel 0.25s ease;
}

@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* STEPS */
.hiw-steps {
  max-width: 580px;
  margin: 0 auto;
}

.hiw-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 1.25rem;
  position: relative;
}

.hiw-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.hiw-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.hiw-step-num--worker { background: var(--primary); }
.hiw-step-num--host   { background: #d97706; }

.hiw-step-body {
  padding-bottom: 2.25rem;
  padding-top: 0.55rem;
}

.hiw-step-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.hiw-step-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0.4rem;
}

.hiw-gig-list {
  list-style: none;
  padding: 0;
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hiw-gig-list li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}

.hiw-gig-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #d97706;
}

.hiw-gig-list li strong { color: var(--text); }

/* APP SCREENSHOTS */
.screenshots-section {
  padding: 5rem 2rem 4rem;
  background: linear-gradient(160deg, #0f172a 0%, #1a3554 100%);
  overflow: hidden;
}

.screenshots-container {
  max-width: 1100px;
  margin: 0 auto;
}

.screenshots-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.screenshots-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.screenshots-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.screenshots-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.screenshots-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: flex-end;
}

.screenshot-item {
  flex: 0 0 auto;
  width: clamp(155px, 18vw, 215px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.screenshot-item--raised {
  margin-bottom: 2.5rem;
}

.screenshot-item img {
  width: 100%;
  border-radius: 28px;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.07);
  display: block;
  transition: transform 0.3s ease;
}

.screenshot-item img:hover {
  transform: translateY(-8px) scale(1.02);
}

.screenshot-item p {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  letter-spacing: 0.02em;
}

@media (max-width: 700px) {
  .screenshots-grid {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .screenshots-grid::-webkit-scrollbar { display: none; }
  .screenshot-item { width: 145px; }
  .screenshot-item--raised { margin-bottom: 1.75rem; }
}

/* AUTH GATE */
.auth-card {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 440px;
}

.auth-card > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.btn-google:hover {
  border-color: #4285F4;
  box-shadow: 0 2px 8px rgba(66,133,244,0.15);
}

.auth-user-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.auth-user-bar button {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.auth-user-bar button:hover { text-decoration: underline; }

/* DELETE REQUEST FORM */
.delete-request-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1.5px solid var(--border);
}

.delete-request-section h2 {
  margin-top: 0;
}

.btn-danger {
  background: #dc2626;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
  font-family: inherit;
}

.btn-danger:hover { background: #b91c1c; transform: translateY(-2px); }
.btn-danger:disabled { background: #9ca3af; cursor: not-allowed; transform: none; }

.confirm-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.25rem 0 0.5rem;
}

.confirm-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #dc2626;
  cursor: pointer;
}

.confirm-row label {
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  line-height: 1.5;
  font-weight: 400;
}

/* FOOTER */
footer {
  background: var(--text);
  color: #9ca3af;
  text-align: center;
  padding: 2rem;
  font-size: 0.875rem;
}

footer a { color: #c4b5fd; text-decoration: none; }
footer a:hover { color: #fff; }
footer .footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
