/* ============================================
   MYABILIO LANDING PAGE STYLES
   Distinctive editorial design with warmth
   ============================================ */

:root {
  /* Brand Colors */
  --indigo: #4F46E5;
  --indigo-dark: #4338CA;
  --indigo-light: #818CF8;
  --green: #10B981;
  --green-dark: #059669;
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --charcoal: #1F2937;
  --charcoal-soft: #374151;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --gray-soft: #E5E7EB;
  --cream: #FAF7F2;
  --paper: #FFFBF5;
  --white: #FFFFFF;
  
  /* Effects */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 60px -10px rgba(15, 23, 42, 0.15);
  --shadow-xl: 0 30px 80px -15px rgba(79, 70, 229, 0.25);
  
  /* Layout */
  --container: 1200px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--paper);
  overflow-x: hidden;
}

/* Subtle noise texture for warmth */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.03;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============= LINKS & BUTTONS ============= */

a {
  color: var(--indigo);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--indigo-dark);
}

.link {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--indigo);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--gray-soft);
}

.btn-ghost:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 16px;
}

/* ============= TOP BAR ============= */

.top-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 251, 245, 0.85);
  border-bottom: 1px solid rgba(31, 41, 55, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.brand-mark {
  display: inline-flex;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(16, 185, 129, 0.1));
  color: var(--indigo);
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.coming-soon-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ============= HERO ============= */

.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--indigo) 0%, transparent 70%);
  top: -100px;
  left: -150px;
  animation: drift1 20s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
  top: 100px;
  right: -100px;
  animation: drift2 25s ease-in-out infinite;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
  bottom: -50px;
  left: 40%;
  animation: drift3 30s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, 30px); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 60px); }
}

@keyframes drift3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(60px, -40px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--gray-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal-soft);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dot-amber {
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber);
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--charcoal);
  margin-bottom: 32px;
  font-variation-settings: "opsz" 144;
}

.title-emphasis {
  position: relative;
  display: inline-block;
  font-style: italic;
  color: var(--indigo);
}

.underline {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 12px;
}

.title-secondary {
  font-style: italic;
  color: var(--charcoal-soft);
  font-weight: 600;
  opacity: 0.9;
}

.hero-lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--charcoal-soft);
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-lede strong {
  color: var(--charcoal);
  font-weight: 700;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 16px 32px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-soft);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-item strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--charcoal);
  font-family: 'Fraunces', serif;
}

.trust-item span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray);
  font-weight: 600;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--gray-soft);
}

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

/* ============= SECTIONS ============= */

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 20px;
}

.section-eyebrow.inverse { color: var(--amber); }

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--indigo);
  font-weight: 600;
}

.section-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--charcoal-soft);
  max-width: 600px;
  margin: 0 auto;
}

/* ============= MISSION ============= */

.mission {
  background: linear-gradient(180deg, transparent, rgba(79, 70, 229, 0.03));
}

.mission-grid {
  max-width: 800px;
  margin: 0 auto;
}

.mission-card {
  padding: 64px 56px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-soft);
  position: relative;
}

.mission-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-family: 'Fraunces', serif;
  font-size: 180px;
  color: var(--indigo);
  line-height: 1;
  opacity: 0.15;
  font-weight: 800;
}

.mission-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.5;
  font-style: italic;
  color: var(--charcoal);
  position: relative;
  z-index: 1;
}

/* ============= PILLARS ============= */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pillar {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-soft);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--indigo-light);
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--indigo), var(--green), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pillar:hover::before {
  transform: scaleX(1);
}

.pillar-num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--indigo);
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.6;
  font-style: italic;
}

.pillar-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.pillar-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal-soft);
  margin-bottom: 20px;
}

.pillar-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--green-dark);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ============= ABOUT ============= */

.about {
  background: linear-gradient(180deg, rgba(79, 70, 229, 0.03), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .section-title { text-align: left; }
.about-content .section-eyebrow { display: inline-block; }

.about-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal-soft);
  margin-bottom: 16px;
}

.about-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
}

.about-list svg {
  color: var(--green);
  flex-shrink: 0;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.visual-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-soft);
  transition: transform 0.3s ease;
}

.visual-card:hover { transform: translateY(-4px); }

.card-1 { transform: translateY(-20px); }
.card-2 { transform: translateY(20px); }
.card-3 { transform: translateY(20px); }
.card-4 { transform: translateY(-20px); }

.card-emoji {
  font-size: 36px;
  line-height: 1;
}

.card-text {
  display: flex;
  flex-direction: column;
}

.card-text strong {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--charcoal);
  font-weight: 700;
}

.card-text span {
  font-size: 13px;
  color: var(--gray);
}

/* ============= JOIN ============= */

.join {
  padding: 100px 0 120px;
}

.join-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--charcoal) 0%, #2D3748 100%);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.5);
}

.join-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--indigo) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.join-card::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.join-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.join-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.15;
}

.join-title em {
  font-style: italic;
  color: var(--amber);
}

.join-lede {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

/* ============= FORM ============= */

.signup-form { position: relative; z-index: 1; }

.form-step { display: none; }
.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.field {
  margin-bottom: 20px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.required {
  color: var(--amber);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s;
  appearance: none;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.field input.error,
.field select.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.field-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.field-error {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #FCA5A5;
  font-weight: 500;
  min-height: 0;
}

.field-error:not(:empty) {
  min-height: 18px;
}

/* Phone input */
.phone-input {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px;
}

.phone-input select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

/* Role selector */
.role-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.role-option {
  cursor: pointer;
}

.role-option input { display: none; }

.role-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  transition: all 0.2s;
}

.role-option input:checked + .role-card {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--amber);
}

.role-option:hover .role-card {
  background: rgba(255, 255, 255, 0.08);
}

.role-emoji {
  font-size: 22px;
}

.role-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

/* Consent */
.consent {
  background: rgba(255, 255, 255, 0.05);
  padding: 14px;
  border-radius: 10px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--amber);
  flex-shrink: 0;
}

.checkbox-label a {
  color: var(--amber);
  text-decoration: underline;
}

/* ============= OTP INPUT ============= */

.step-header {
  text-align: center;
  margin-bottom: 32px;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.step-header h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.step-header strong {
  color: var(--amber);
}

.otp-input {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 32px 0;
  align-items: center;
}

.otp-input input {
  width: 50px;
  height: 60px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Fraunces', serif;
}

.otp-input input:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(245, 158, 11, 0.15);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.otp-dash {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.step-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

.step-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.15);
}

.step-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.step-back {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.step-back:hover {
  color: var(--amber);
}

/* ============= SUCCESS STATE ============= */

.success-state {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  margin-bottom: 24px;
  animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.success-state h3 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.success-state p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  margin-bottom: 32px;
}

.share-section {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.share-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.share-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: var(--white);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.share-btn:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: var(--amber);
}

/* ============= FOOTER ============= */

.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer .brand {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer-by {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-by .footer-link {
  color: var(--amber);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dotted rgba(245, 158, 11, 0.4);
  transition: border-color 0.2s;
}

.footer-by .footer-link:hover {
  border-color: var(--amber);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }
.footer-col a.muted { color: rgba(255, 255, 255, 0.4); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-built {
  font-style: italic;
}

/* ============= RESPONSIVE ============= */

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  
  .hero { padding: 60px 0 80px; }
  .hero-trust { padding: 12px 20px; gap: 16px; }
  .trust-item strong { font-size: 14px; }
  .trust-item span { font-size: 10px; }
  
  .section { padding: 70px 0; }
  
  .mission-card { padding: 40px 28px; }
  .mission-card::before { font-size: 120px; }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-content .section-title { text-align: center; }
  
  .field-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .role-options {
    grid-template-columns: 1fr;
  }
  
  .otp-input input {
    width: 40px;
    height: 50px;
    font-size: 20px;
  }
  
  .otp-input { gap: 6px; }
  
  .step-actions {
    flex-direction: column;
  }
  
  .step-actions .btn { width: 100%; justify-content: center; }
  
  .join-card { padding: 40px 24px; }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  
  .hero-trust {
    flex-direction: column;
    gap: 12px;
    border-radius: 24px;
    padding: 16px 24px;
  }
  
  .trust-divider {
    width: 28px;
    height: 1px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============= REDUCED MOTION ============= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .orb { animation: none; }
}
