/* ============ Reset & Variables ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --white: #ffffff;
  --off-white: #f4f3f1;
  --grey-100: #e8e6e2;
  --grey-400: #9a9691;
  --grey-600: #5c5954;
  --gold: #b8975f;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', Arial, sans-serif;
  --container-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

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

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-head h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 6px; }
.section-head .section-sub { color: var(--grey-600); margin-top: 16px; font-size: 17px; }
.section-head.light .eyebrow { color: var(--gold); }

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  padding: 15px 34px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-primary:hover { background: transparent; color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-light {
  border: 1px solid var(--black);
  color: var(--black);
  padding: 10px 24px;
}
.btn-outline-light:hover { background: var(--black); color: var(--white); }

/* ============ Header ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.0);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 26px 0;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  padding: 14px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  white-space: nowrap;
}
.logo span { color: var(--gold); }
.main-nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
  margin-right: 34px;
}
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a:hover { color: var(--white); }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }
.nav-cta {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  padding: 10px 22px;
}
.nav-cta:hover { background: var(--white); color: var(--black); }
.mobile-join { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  display: block;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; filter: grayscale(45%); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.95) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 80px; max-width: 780px; }
.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.1;
  margin-bottom: 26px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex;
  gap: 50px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 30px;
  flex-wrap: wrap;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-display); font-size: 30px; color: var(--white); }
.hero-stats span { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollcue 1.6s infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 22px; }
}

/* ============ Why Choose Us (white) ============ */
.why { background: var(--white); padding: 120px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--grey-100);
  border: 1px solid var(--grey-100);
}
.why-card {
  background: var(--white);
  padding: 46px 32px;
  transition: background 0.3s ease;
}
.why-card:hover { background: var(--off-white); }
.why-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 24px;
}
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 { font-size: 21px; margin-bottom: 12px; }
.why-card p { color: var(--grey-600); font-size: 15px; }

/* ============ About (black) ============ */
.about {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 130px 0;
  overflow: hidden;
}
.about-inner { position: relative; z-index: 2; }
.about-copy { max-width: 720px; margin: 0 auto; }
.about-copy h2 {
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 28px;
  color: var(--off-white);
}
.about-copy .lead { font-size: 18px; color: var(--white); margin-bottom: 20px; }
.about-copy .lead strong { color: var(--gold); font-weight: 500; }
.about-copy > p { color: rgba(255,255,255,0.7); margin-bottom: 30px; }
.about-points { display: grid; gap: 14px; margin-top: 10px; }
.about-points li {
  padding-left: 22px;
  position: relative;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
}
.about-points li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--gold);
}
.about-points strong { color: var(--white); font-weight: 500; }

/* ============ How It Works (white) ============ */
.how { background: var(--off-white); padding: 120px 0; }
.how .section-head.light h2 { color: var(--black); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.how-step { text-align: center; padding: 0 10px; }
.how-num {
  width: 56px; height: 56px;
  margin: 0 auto 22px;
  border: 1px solid var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
}
.how-step h3 { font-size: 18px; margin-bottom: 10px; }
.how-step p { font-size: 14px; color: var(--grey-600); }

/* ============ Offline Experience (black) ============ */
.offline { background: var(--black); color: var(--white); padding: 130px 0; }
.offline .section-head .eyebrow { color: var(--gold); }
.offline .section-head h2 { color: var(--white); }
.offline .section-head .section-sub { color: rgba(255,255,255,0.65); }
.offline-intro {
  max-width: 760px;
  margin: 0 auto 70px;
}
.offline-intro p {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  margin-bottom: 20px;
}
.offline-intro p:last-child { margin-bottom: 0; }
.offline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 22px;
}
.offline-card { position: relative; overflow: hidden; height: 320px; }
.offline-card.large { grid-row: span 2; height: 100%; }
.offline-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(35%);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.offline-card:hover img { transform: scale(1.08); filter: grayscale(0%); }
.offline-text {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
}
.offline-text h3 { font-size: 22px; margin-bottom: 6px; }
.offline-text p { font-size: 14px; color: rgba(255,255,255,0.75); }
.offline-card.large .offline-text h3 { font-size: 26px; }

/* ============ Success Story (white) ============ */
.stories { background: var(--white); padding: 130px 0; }
.story-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
  border: 1px solid var(--grey-100);
  padding: 50px;
}
.story-photo { height: 460px; overflow: hidden; position: sticky; top: 120px; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%); }
.quote-mark {
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 20px;
}
.story-quote {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.6;
  color: var(--black-soft);
  margin-bottom: 20px;
}
.story-quote:last-of-type { margin-bottom: 30px; }
.story-author strong { display: block; font-size: 16px; }
.story-author span { font-size: 13px; color: var(--grey-600); letter-spacing: 0.03em; }

/* ============ FAQ (off-white) ============ */
.faq { background: var(--off-white); padding: 130px 0; }
.faq .section-head.light h2 { color: var(--black); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--grey-100);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  padding: 28px 4px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--black);
  cursor: pointer;
}
.faq-toggle {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 4px;
}
.faq-item.open .faq-answer { max-height: 220px; padding-bottom: 26px; }
.faq-answer p { color: var(--grey-600); font-size: 15px; max-width: 680px; }

/* ============ CTA (black) ============ */
.cta {
  position: relative;
  padding: 150px 0;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(60%); }
.cta-overlay { position: absolute; inset: 0; background: rgba(8,8,8,0.86); }
.cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta h2 { font-size: clamp(32px, 4.5vw, 48px); margin-bottom: 18px; }
.cta p { color: rgba(255,255,255,0.75); margin-bottom: 40px; font-size: 17px; }
.cta .hero-actions { justify-content: center; margin-bottom: 26px; }
.cta-note { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* ============ Footer (black) ============ */
.site-footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 90px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand p { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,0.5); max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col a { display: block; font-size: 14px; margin-bottom: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding: 30px 0; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(3, 1fr); }
  .how-step:nth-child(4), .how-step:nth-child(5) { grid-column: span 1; }
  .offline-grid { grid-template-columns: repeat(2, 1fr); }
  .offline-card.large { grid-column: span 2; height: 320px; }
  .story-card { grid-template-columns: 1fr; }
  .story-photo { height: 320px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ============ Signup Page ============ */
.header-solid { background: rgba(10,10,10,0.92); backdrop-filter: blur(8px); padding: 14px 0; box-shadow: 0 6px 24px rgba(0,0,0,0.25); }

.signup-hero {
  position: relative;
  color: var(--black);
  background: var(--off-white);
  padding: 140px 0 40px;
}
.signup-hero-content { position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto; }
.signup-hero-content h1 { font-size: clamp(28px, 3.6vw, 38px); margin-bottom: 12px; }
.signup-hero-content .hero-sub { margin: 0 auto; color: var(--grey-600); font-size: 16px; max-width: 560px; }

.signup-section { background: var(--off-white); padding: 20px 0 130px; }
.signup-container { max-width: 640px; }

/* ============ Article Page ============ */
.article-section { background: var(--white); padding: 20px 0 130px; }
.article-container { max-width: 760px; margin: 0 auto; }
.article-image { margin-bottom: 46px; border: 1px solid var(--grey-100); }
.article-image img { width: 100%; height: 420px; object-fit: cover; filter: grayscale(15%); }

.article-body { color: var(--grey-600); font-size: 16px; line-height: 1.8; }
.article-body .lead-text { font-family: var(--font-display); font-size: 21px; color: var(--black); line-height: 1.6; margin-bottom: 22px; }
.article-body p { margin-bottom: 22px; }
.article-body h2 { font-size: 26px; color: var(--black); line-height: 1.3; margin: 48px 0 18px; }
.article-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--black);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin: 26px 0;
}
.article-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.article-list li { padding-left: 22px; position: relative; }
.article-list li::before {
  content: '';
  position: absolute; left: 0; top: 11px;
  width: 8px; height: 1px;
  background: var(--gold);
}
.article-list strong { color: var(--black); font-weight: 500; }

.article-cta {
  margin-top: 60px;
  padding: 50px 40px;
  background: var(--black);
  text-align: center;
}
.article-cta h3 { font-size: 26px; color: var(--white); margin-bottom: 12px; }
.article-cta p { color: rgba(255,255,255,0.7); font-size: 15px; margin-bottom: 26px; }

@media (max-width: 640px) {
  .article-image img { height: 260px; }
  .article-cta { padding: 40px 24px; }
}

.signup-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  padding: 48px;
}
.form-step { display: none; }
.form-step.active { display: block; animation: stepIn 0.35s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.form-step-title {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 16px;
}
.form-step-title:not(:first-child) { margin-top: 34px; }

.role-select { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.role-select.shake { animation: shake 0.4s ease; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}
.role-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-body);
  color: var(--grey-600);
}
.role-card svg { width: 28px; height: 28px; }
.role-card span { font-size: 14px; letter-spacing: 0.03em; color: var(--black); }
.role-card:hover { border-color: var(--gold); }
.role-card.selected { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 1px var(--gold); }
.role-card.selected svg { color: var(--gold); }

.field-row { display: flex; gap: 20px; align-items: flex-end; margin-bottom: 20px; }
.field-row:last-child { margin-bottom: 0; }
.field { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-600);
}
.field-sep { padding-bottom: 13px; color: var(--grey-400); font-size: 13px; }
.field select,
.field input[type="text"],
.field input[type="email"],
.field input[type="password"],
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  padding: 13px 14px;
  width: 100%;
  transition: border-color 0.2s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select:focus,
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.upload-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  border: 1px dashed var(--grey-400);
  padding: 34px 20px;
  margin: 6px 0 28px;
  cursor: pointer;
  color: var(--grey-600);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.upload-box:hover { border-color: var(--gold); background: var(--off-white); }
.upload-box svg { width: 30px; height: 30px; color: var(--gold); }
.upload-title { font-size: 14px; color: var(--black); }
.upload-sub { font-size: 12px; color: var(--grey-400); }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  cursor: pointer;
}
.checkbox-row input { margin-top: 4px; accent-color: var(--gold); flex-shrink: 0; }
.checkbox-row span { font-size: 13px; color: var(--grey-600); line-height: 1.5; }
.checkbox-row a { color: var(--gold); text-decoration: underline; }

.form-nav { display: flex; gap: 16px; margin-top: 38px; }
.btn-form-next {
  flex: 1;
  padding: 15px 34px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-form-next:hover { background: var(--gold); border-color: var(--gold); }

.form-success { text-align: center; padding: 20px 0; }
.success-icon { width: 56px; height: 56px; margin: 0 auto 22px; color: var(--gold); }
.success-icon svg { width: 100%; height: 100%; }
.form-success h3 { font-size: 26px; margin-bottom: 14px; }
.form-success p { color: var(--grey-600); font-size: 15px; max-width: 420px; margin: 0 auto; }

.signup-trust {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--grey-600); font-size: 13px; }
.trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ============ Contact Page ============ */
.contact-container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.contact-info {
  background: var(--white);
  border: 1px solid var(--grey-100);
  padding: 44px 40px;
}
.contact-info h3 { font-size: 24px; margin-bottom: 14px; }
.contact-info > p { color: var(--grey-600); font-size: 15px; margin-bottom: 34px; }
.contact-list { display: flex; flex-direction: column; gap: 26px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border: 1px solid var(--grey-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-text { display: flex; flex-direction: column; gap: 3px; font-size: 14px; color: var(--grey-600); padding-top: 6px; }
.contact-text strong { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--black); font-weight: 500; }
.contact-text a { color: var(--gold); }
.contact-text a:hover { text-decoration: underline; }

.contact-consent { font-size: 12px; color: var(--grey-400); margin-top: 16px; line-height: 1.6; }
.contact-consent a { color: var(--gold); text-decoration: underline; }

@media (max-width: 900px) {
  .contact-container { grid-template-columns: 1fr; }
  .contact-info { padding: 36px 28px; }
}

@media (max-width: 640px) {
  .signup-card { padding: 32px 24px; }
  .role-select { grid-template-columns: 1fr 1fr; }
  .field-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .field-sep { display: none; }
  .signup-trust { gap: 26px; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 72%; max-width: 320px; height: 100vh;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.35s ease;
    z-index: 999;
  }
  .main-nav.nav-open { right: 0; }
  .nav-cta { display: none; }
  .mobile-join {
    display: inline-block;
    margin-top: 12px;
    padding: 13px 28px;
    border: 1px solid rgba(255,255,255,0.6);
    color: var(--white);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.25s ease;
  }
  .mobile-join:hover { background: var(--white); color: var(--black); }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-content { padding-top: 100px; }
  .hero-stats { gap: 30px; }
  .why-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .offline-grid { grid-template-columns: 1fr; }
  .offline-card.large { grid-column: span 1; height: 320px; }
  .footer-inner { grid-template-columns: 1fr; }
  section { padding-top: 90px !important; padding-bottom: 90px !important; }
}
