/* Departure Club shared styles - used by both directions */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

:root {
  --navy: #002B5E;
  --navy-deep: #001A3D;
  --navy-soft: #133C72;
  --ink: #0A0F1C;
  --paper: #FAF8F4;
  --paper-warm: #F1EDE4;
  --grey-100: #F5F5F3;
  --grey-200: #E8EAEE;
  --grey-300: #D4D7DC;
  --grey-500: #6B7280;
  --grey-700: #3D4148;
  --gold: #C9A86A;
  --white: #FFFFFF;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.mono { font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace; }
.eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 500;
}

.display {
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

/* ruling line */
.rule { height: 1px; background: currentColor; opacity: 0.15; }

/* button base */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.25s cubic-bezier(.2,.7,.3,1);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary-light { background: var(--white); color: var(--navy); }
.btn-primary-light:hover { background: var(--paper); transform: translateY(-1px); }
.btn-primary-dark { background: var(--navy); color: var(--white); }
.btn-primary-dark:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-ghost-light { color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.btn-ghost-dark { color: var(--navy); border: 1px solid rgba(0,43,94,0.2); }
.btn-ghost-dark:hover { background: rgba(0,43,94,0.05); border-color: rgba(0,43,94,0.5); }

/* scrollbar hide */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; }

/* scroll-reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.9s cubic-bezier(.2,.7,.3,1), transform 0.9s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* line draw */
@keyframes drawIn { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* marquee */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee { display: flex; animation: marquee 40s linear infinite; }

/* subtle float */
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* coming soon — disabled CTA state */
.is-coming-soon {
  cursor: not-allowed !important;
  opacity: 0.55 !important;
  pointer-events: none;
  user-select: none;
  font-style: normal !important;
  letter-spacing: 0.02em;
}
.is-coming-soon:hover { transform: none !important; }
