/* ============================================================
   FOREX COMPASS — main.css
   Design reference: huly.io dark fintech aesthetic
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=DM+Sans:wght@300;400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --fc-bg:         #07090F;
  --fc-surface:    #0D1117;
  --fc-surface2:   #131820;
  --fc-border:     #1E2530;
  --fc-amber:      #EF9F27;
  --fc-amber-dim:  #BA7517;
  --fc-teal:       #1D9E75;
  --fc-white:      #F4F1EB;
  --fc-muted:      #8A8F9E;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --max-w: 1200px;
  --nav-h: 72px;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: auto; /* locomotive-scroll handles this */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background-color: var(--fc-bg);
  color: var(--fc-white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Locomotive scroll container */
html.has-scroll-smooth {
  overflow: hidden;
}
html.has-scroll-dragging {
  user-select: none;
}
.has-scroll-smooth body {
  overflow: hidden;
}
.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}
.c-scrollbar {
  position: fixed;
  right: 6px;
  top: 0;
  width: 4px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
  z-index: 9999;
}
.c-scrollbar:hover { opacity: 1; }
.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--fc-amber);
  opacity: 0.5;
  width: 4px;
  border-radius: 10px;
  cursor: grab;
}
.c-scrollbar_thumb:active { cursor: grabbing; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--fc-white);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { color: var(--fc-muted); line-height: 1.7; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

strong { color: var(--fc-white); font-weight: 500; }

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fc-amber);
  margin-bottom: 16px;
}

.section-padding {
  padding: 120px 0;
}

.section-padding-sm {
  padding: 80px 0;
}

.text-amber { color: var(--fc-amber); }
.text-muted { color: var(--fc-muted); }
.text-teal  { color: var(--fc-teal); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--fc-amber);
  color: #07090F;
  border-color: var(--fc-amber);
}
.btn-primary:hover {
  background: var(--fc-amber-dim);
  border-color: var(--fc-amber-dim);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(239, 159, 39, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--fc-white);
  border-color: var(--fc-border);
}
.btn-outline:hover {
  border-color: var(--fc-amber);
  color: var(--fc-amber);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ── Focus styles (accessibility) ── */
*:focus-visible {
  outline: 2px solid var(--fc-amber);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(7, 9, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--fc-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fc-white);
  flex-shrink: 0;
}

.nav__logo svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav__logo-img {
  width: 44px;
  height: 44px;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}

.nav__logo-text {
  color: var(--fc-white);
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0.02em;
}

.nav__logo-text-accent {
  color: var(--fc-amber);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--fc-muted);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--fc-amber);
  transition: width var(--transition);
}

.nav__links a:hover {
  color: var(--fc-white);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta {
  display: flex;
  align-items: center;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1100;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fc-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: var(--fc-bg);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.nav__overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav__overlay-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.nav__overlay-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fc-muted);
  transition: color var(--transition);
}

.nav__overlay-links a:hover { color: var(--fc-white); }

.nav__overlay-links li { overflow: hidden; }

.nav__overlay-links li span {
  display: block;
  transform: translateY(100%);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.82;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
}

/* Dot grid texture */
.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle, rgba(239,159,39,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(239, 159, 39, 0.3);
  border-radius: 100px;
  background: rgba(239, 159, 39, 0.08);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fc-amber);
  margin-bottom: 32px;
  opacity: 0;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fc-amber);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 159, 39, 0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(239, 159, 39, 0); }
}

.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 20px;
  opacity: 0;
}

.hero__title .word-wrap { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero__title .word      { display: inline-block; }

.hero__sub {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(244, 241, 235, 0.7);
  margin-bottom: 40px;
  opacity: 0;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--fc-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s 1.8s forwards;
}

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid var(--fc-amber);
  border-bottom: 1.5px solid var(--fc-amber);
  transform: rotate(45deg);
  animation: bounce-arrow 1.6s infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  border-top: 1px solid var(--fc-border);
  border-bottom: 1px solid var(--fc-border);
  padding: 40px 0;
  background: var(--fc-surface);
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--fc-border);
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--fc-border);
}

.trust-bar__item:last-child { border-right: none; }

.trust-bar__num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--fc-amber);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-bar__label {
  font-size: 0.8125rem;
  color: var(--fc-muted);
  font-weight: 400;
  max-width: 120px;
  line-height: 1.4;
}

/* ============================================================
   PRODUCTS PREVIEW
   ============================================================ */
.products-preview {
  background: var(--fc-bg);
}

.products-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

/* Product cards */
.product-card {
  background: var(--fc-surface);
  border: 1px solid var(--fc-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition-slow);
  transform-style: preserve-3d;
  will-change: transform;
}

.product-card:hover {
  border-color: rgba(239, 159, 39, 0.3);
}

.product-card__media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--fc-surface2);
}

.product-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card__media video.playing,
.product-card__media video[autoplay] { opacity: 1; }

.product-card__media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fc-surface2);
}

.product-card__media-placeholder svg {
  opacity: 0.15;
}

.product-card__body {
  padding: 28px;
}

.product-card__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.badge-live {
  background: rgba(29, 158, 117, 0.12);
  border: 1px solid rgba(29, 158, 117, 0.3);
  color: var(--fc-teal);
}

.badge-coming {
  background: rgba(239, 159, 39, 0.08);
  border: 1px solid rgba(239, 159, 39, 0.25);
  color: var(--fc-amber);
}

.product-card__title {
  font-size: 1.375rem;
  margin-bottom: 12px;
}

.product-card__features {
  list-style: none;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fc-muted);
}

.product-card__features li::before {
  content: '→';
  color: var(--fc-amber);
  flex-shrink: 0;
  margin-top: 1px;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fc-amber);
  font-size: 0.9rem;
  font-weight: 500;
  transition: gap var(--transition);
}

.product-card__link:hover { gap: 14px; }

/* ============================================================
   MISSION STATEMENT
   ============================================================ */
.mission {
  background: var(--fc-surface);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 159, 39, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.mission__compass {
  width: 48px;
  height: 48px;
  margin: 0 auto 32px;
  color: var(--fc-amber);
}

.mission__quote {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--fc-white);
  line-height: 1.4;
  max-width: 780px;
  margin: 0 auto 24px;
}

.mission__byline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fc-amber);
}

/* ============================================================
   FEATURE DEEP DIVE
   ============================================================ */
.feature-dive {
  background: var(--fc-bg);
}

.feature-dive__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.feature-dive__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}

.feature-item {
  padding: 20px 24px;
  border-left: 2px solid var(--fc-border);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.feature-item.active {
  border-left-color: var(--fc-amber);
  background: rgba(239, 159, 39, 0.04);
}

.feature-item__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: var(--fc-amber);
  margin-bottom: 6px;
  font-weight: 700;
}

.feature-item__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fc-white);
  margin-bottom: 8px;
}

.feature-item__desc {
  font-size: 0.9rem;
  color: var(--fc-muted);
  display: none;
  line-height: 1.6;
}

.feature-item.active .feature-item__desc { display: block; }

.feature-dive__visual {
  position: relative;
}

.browser-chrome {
  background: var(--fc-surface2);
  border: 1px solid var(--fc-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.browser-chrome__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--fc-surface);
  border-bottom: 1px solid var(--fc-border);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dot:nth-child(1) { background: #FF5F56; }
.browser-dot:nth-child(2) { background: #FFBD2E; }
.browser-dot:nth-child(3) { background: #27C93F; }

.browser-chrome__content {
  position: relative;
  overflow: hidden;
}

.browser-chrome__content video {
  width: 100%;
  display: block;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  background: var(--fc-surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, min(540px, 100%));
  justify-content: center;
  gap: 24px;
  margin-top: 56px;
}

.pricing-card {
  background: var(--fc-surface2);
  border: 1px solid var(--fc-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: border-color var(--transition), transform var(--transition);
}

.pricing-card:hover {
  border-color: var(--fc-border);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: rgba(239, 159, 39, 0.35);
  position: relative;
}

.pricing-card__region {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fc-muted);
  margin-bottom: 12px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-card__currency {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fc-amber);
}

.pricing-card__amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--fc-white);
  line-height: 1;
}

.pricing-card__period {
  font-size: 0.9rem;
  color: var(--fc-muted);
}

.pricing-card__desc {
  font-size: 0.9rem;
  color: var(--fc-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.pricing-card .btn { width: 100%; justify-content: center; margin-top: 28px; }

.pricing-callout {
  margin-top: 40px;
  padding: 24px 32px;
  background: rgba(239, 159, 39, 0.06);
  border: 1px solid rgba(239, 159, 39, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pricing-callout__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-callout p {
  font-size: 0.9375rem;
  color: var(--fc-white);
  line-height: 1.6;
}

.pricing-footnote {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8125rem;
  color: var(--fc-muted);
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
  background: var(--fc-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.team-card {
  background: var(--fc-surface);
  border: 1px solid var(--fc-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition-slow);
  cursor: default;
}

.team-card:hover {
  border-color: rgba(239, 159, 39, 0.25);
  transform: translateY(-6px);
}

.team-card__canvas-wrap {
  display: none;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 2px solid var(--fc-border);
}

.team-card__canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.team-card__img-fallback {
  display: block;
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--fc-border);
  box-shadow: 0 0 0 4px rgba(239, 159, 39, 0.12);
}

.team-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fc-white);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.8125rem;
  color: var(--fc-amber);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.team-card__quote {
  font-size: 0.875rem;
  color: var(--fc-muted);
  font-style: italic;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
}

.team-card:hover .team-card__quote {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SIGN-UP / WAITLIST
   ============================================================ */
.signup-section {
  background: var(--fc-surface);
  text-align: center;
}

.signup-section h2 {
  margin-bottom: 12px;
}

.signup-section > .container > p {
  max-width: 480px;
  margin: 0 auto 40px;
}

.signup-form {
  display: flex;
  align-items: stretch;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto 20px;
  flex-wrap: wrap;
}

.signup-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  background: var(--fc-surface2);
  border: 1.5px solid var(--fc-border);
  border-radius: var(--radius-sm);
  color: var(--fc-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  transition: border-color var(--transition);
}

.signup-form input::placeholder { color: var(--fc-muted); }
.signup-form input:focus { outline: none; border-color: var(--fc-amber); }

.signup-footnote {
  font-size: 0.8125rem;
  color: var(--fc-muted);
  margin-top: 16px;
}

.signup-footnote span { color: var(--fc-amber); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--fc-bg);
  border-top: 1px solid var(--fc-border);
  padding: 60px 0 32px;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--fc-border);
  margin-bottom: 32px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fc-white);
}

.footer__logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.footer__logo-text {
  text-transform: none;
  letter-spacing: 0.02em;
}

.footer__logo-text-accent {
  color: var(--fc-amber);
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--fc-muted);
  max-width: 280px;
  line-height: 1.6;
}

.footer__col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fc-white);
  margin-bottom: 20px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  font-size: 0.9rem;
  color: var(--fc-muted);
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--fc-white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.8125rem;
  color: var(--fc-muted);
}

.footer__copy span { color: var(--fc-amber); }

.footer__right {
  font-size: 0.8125rem;
  color: var(--fc-muted);
  font-style: italic;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero__img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,9,15,0.92) 30%, rgba(7,9,15,0.4) 100%);
}

.about-hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.about-hero__content h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 640px;
}

/* Story */
.about-story {
  background: var(--fc-bg);
}

.about-story__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-story__inner p {
  font-size: 1.0625rem;
  line-height: 1.8;
}

/* Timeline */
.timeline {
  background: var(--fc-surface);
  overflow: hidden;
}

.timeline__track {
  position: relative;
  max-width: 800px;
  margin: 56px auto 0;
  padding-left: 40px;
}

.timeline__line {
  position: absolute;
  left: 15px;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--fc-amber);
  transition: height 0.1s linear;
}

.timeline__item {
  position: relative;
  margin-bottom: 48px;
}

.timeline__dot {
  position: absolute;
  left: -33px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--fc-amber);
  border: 3px solid var(--fc-bg);
  box-shadow: 0 0 0 3px var(--fc-amber);
}

.timeline__year {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--fc-amber);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.timeline__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fc-white);
  margin-bottom: 6px;
}

.timeline__desc { font-size: 0.9rem; }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.value-card {
  background: var(--fc-surface);
  border: 1px solid var(--fc-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: border-color var(--transition);
}

.value-card:hover { border-color: rgba(239, 159, 39, 0.3); }

.value-card__icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.value-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p { font-size: 0.9rem; }

/* ============================================================
   PRODUCT PAGES (journal / macro-terminal)
   ============================================================ */
.product-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.product-hero__video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.product-hero__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,9,15,0.85) 0%, rgba(7,9,15,0.55) 100%);
}

.product-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.product-hero__content h1 { max-width: 640px; margin-bottom: 16px; }
.product-hero__content p  { max-width: 520px; font-size: 1.0625rem; margin-bottom: 36px; }

/* Alternating feature sections */
.product-features { background: var(--fc-bg); }

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--fc-border);
}

.feature-split:last-child { border-bottom: none; }

.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }

.feature-split__text h3 {
  margin-bottom: 16px;
}

.feature-split__text p {
  margin-bottom: 24px;
  line-height: 1.7;
}

.feature-split__media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--fc-border);
  background: var(--fc-surface2);
}

.feature-split__media video {
  width: 100%;
  display: block;
}

/* Coming soon badge */
.coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid rgba(239, 159, 39, 0.4);
  border-radius: 100px;
  background: rgba(239, 159, 39, 0.08);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fc-amber);
  margin-bottom: 32px;
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center;
  background: var(--fc-bg);
}

.pricing-hero p {
  max-width: 520px;
  margin: 16px auto 0;
  font-size: 1.0625rem;
}

.pricing-full { background: var(--fc-bg); }

.pricing-full .pricing-grid {
  grid-template-columns: minmax(0, min(540px, 100%));
  justify-content: center;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fc-muted);
}

.pricing-features-list li .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(29, 158, 117, 0.12);
  border: 1px solid rgba(29, 158, 117, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--fc-teal);
  font-size: 0.65rem;
}

/* Comparison table */
.comparison {
  background: var(--fc-surface);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--fc-border);
}

.comparison-table th {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 20px 24px;
  text-align: left;
  background: var(--fc-surface2);
  border-bottom: 1px solid var(--fc-border);
  color: var(--fc-white);
}

.comparison-table th:not(:first-child) { text-align: center; }

.comparison-table td {
  padding: 16px 24px;
  font-size: 0.9rem;
  color: var(--fc-muted);
  border-bottom: 1px solid var(--fc-border);
}

.comparison-table td:not(:first-child) { text-align: center; }

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table tr:nth-child(even) td { background: rgba(255,255,255,0.01); }

.check-icon { color: var(--fc-teal); font-size: 1rem; }
.cross-icon { color: #FF5B5B; font-size: 1rem; }
.amber-text { color: var(--fc-amber); font-weight: 500; }

/* FAQ Accordion */
.faq { background: var(--fc-bg); }

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--fc-surface);
  border: 1px solid var(--fc-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(239, 159, 39, 0.3); }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fc-white);
  transition: color var(--transition);
}

.faq-item__q:hover { color: var(--fc-amber); }

.faq-item__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--fc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--fc-amber);
  transition: transform var(--transition), border-color var(--transition);
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  border-color: var(--fc-amber);
}

.faq-item__a {
  height: 0;
  overflow: hidden;
}

.faq-item__a-inner {
  padding: 0 24px 22px;
  font-size: 0.9375rem;
  color: var(--fc-muted);
  line-height: 1.7;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.blog-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,9,15,0.95) 20%, rgba(7,9,15,0.4) 100%);
}

.blog-hero__content {
  position: relative;
  z-index: 2;
  padding: 48px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.blog-listing { background: var(--fc-bg); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.blog-card {
  background: var(--fc-surface);
  border: 1px solid var(--fc-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition-slow);
}

.blog-card:hover {
  border-color: rgba(239, 159, 39, 0.25);
  transform: translateY(-4px);
}

.blog-card__img {
  aspect-ratio: 16/9;
  background: var(--fc-surface2);
  position: relative;
  overflow: hidden;
}

.blog-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--fc-surface2), var(--fc-surface));
}

.blog-card__img-placeholder span {
  font-size: 2.5rem;
  opacity: 0.15;
}

.blog-card__body { padding: 24px; }

.blog-card__tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(239, 159, 39, 0.08);
  border: 1px solid rgba(239, 159, 39, 0.2);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fc-amber);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.blog-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--fc-white);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color var(--transition);
}

.blog-card:hover .blog-card__title { color: var(--fc-amber); }

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--fc-muted);
  margin-bottom: 16px;
}

.blog-card__meta span { display: flex; align-items: center; gap: 4px; }

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--fc-amber);
  font-weight: 500;
  transition: gap var(--transition);
}

.blog-card__link:hover { gap: 12px; }

/* Blog post */
.blog-post { background: var(--fc-bg); }

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--fc-amber);
  width: 0%;
  z-index: 2000;
  transition: width 0.1s linear;
}

.blog-post__header {
  padding: calc(var(--nav-h) + 60px) 0 48px;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.blog-post__content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.blog-post__content h2 {
  font-size: 1.625rem;
  margin: 40px 0 16px;
}

.blog-post__content h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
}

.blog-post__content p {
  margin-bottom: 20px;
  font-size: 1.0625rem;
  line-height: 1.8;
}

.blog-post__content ul,
.blog-post__content ol {
  margin: 16px 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-post__content li {
  color: var(--fc-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.blog-post__content blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--fc-amber);
  background: rgba(239, 159, 39, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-post__content blockquote p {
  color: var(--fc-white);
  font-style: italic;
  font-size: 1.0625rem;
  margin-bottom: 0;
}

.blog-post__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.blog-post__author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--fc-surface2);
  border: 1.5px solid var(--fc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--fc-amber);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.blog-post__meta-text { font-size: 0.875rem; }
.blog-post__meta-name { color: var(--fc-white); font-weight: 500; }
.blog-post__meta-info { color: var(--fc-muted); }

.related-posts {
  background: var(--fc-surface);
}

/* ============================================================
   UTILITIES / ANIMATIONS
   ============================================================ */

/* GSAP entrance defaults — elements start hidden */
.gsap-fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
}

.no-gsap .gsap-fade-up,
.no-gsap .scroll-reveal,
.no-gsap .hero__badge,
.no-gsap .hero__title,
.no-gsap .hero__sub,
.no-gsap .hero__ctas {
  opacity: 1;
  transform: none;
}

/* Amber glow utility */
.amber-glow {
  box-shadow: 0 0 40px rgba(239, 159, 39, 0.12);
}

/* Divider */
.divider {
  border: none;
  border-top: 1px solid var(--fc-border);
  margin: 0;
}

/* Section header block */
.section-header {
  margin-bottom: 0;
}

.section-header h2 { margin-top: 8px; }
.section-header p   { margin-top: 16px; max-width: 560px; }

/* Inline CTA strip */
.cta-strip {
  background: rgba(239, 159, 39, 0.05);
  border: 1px solid rgba(239, 159, 39, 0.2);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  margin-top: 80px;
}

.cta-strip h2 { margin-bottom: 12px; }
.cta-strip p  { margin-bottom: 32px; }

/* ============================================================
   RESPONSIVE — Tablet (768-1199px)
   ============================================================ */
@media (max-width: 1199px) {
  .feature-dive__inner { grid-template-columns: 1fr; gap: 40px; }
  .feature-dive__list  { position: static; }
  .footer__main        { grid-template-columns: 1fr 1fr; }
  .pricing-grid        { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .pricing-full .pricing-grid { grid-template-columns: 1fr; max-width: 500px; }
}

/* ============================================================
   RESPONSIVE — Mobile (<768px)
   ============================================================ */
@media (max-width: 767px) {
  :root { --nav-h: 64px; }

  .section-padding    { padding: 80px 0; }
  .section-padding-sm { padding: 56px 0; }
  .container { padding: 0 24px; }

  h1 { font-size: clamp(2.25rem, 11vw, 3.2rem); }
  h2 { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  h3 { font-size: clamp(1.25rem, 6vw, 1.65rem); }
  h1, h2, h3 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  /* Nav */
  .nav,
  .nav__overlay {
    width: 100vw;
    max-width: 100vw;
    right: auto;
    overflow: hidden;
  }
  .nav__inner { padding: 0 24px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__logo { min-width: 0; gap: 8px; }
  .nav__logo-img { width: 34px; height: 34px; }
  .nav__logo-text {
    font-size: 0.9rem;
    max-width: calc(100vw - 128px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Hero */
  .hero { min-height: 100svh; padding-top: var(--nav-h); }
  .hero__content { padding: 0 24px; }
  .hero__title { font-size: clamp(2.25rem, 10.5vw, 3rem); line-height: 1.06; }
  .hero__sub { font-size: 1rem; margin-bottom: 32px; }
  .hero__ctas  { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }

  /* Trust bar */
  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__item {
    min-width: 0;
    padding: 16px 14px;
  }
  .trust-bar__num,
  .trust-bar__label {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .trust-bar__item:nth-child(2) { border-right: none; }
  .trust-bar__item:nth-child(3) { border-top: 1px solid var(--fc-border); border-right: 1px solid var(--fc-border); }
  .trust-bar__item:nth-child(4) { border-top: 1px solid var(--fc-border); border-right: none; }

  /* Product grid */
  .products-preview__grid { grid-template-columns: 1fr; }
  .product-card__body { padding: 24px; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }

  /* Three.js spheres → CSS fallback */
  .team-card__canvas-wrap { display: none; }
  .team-card__img-fallback { display: block; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Feature split */
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .feature-split.reverse { direction: ltr; }
  .feature-split__text h3 { font-size: clamp(1.5rem, 8vw, 2.15rem); }
  .feature-split__media { border-radius: var(--radius-sm); }

  .feature-dive__inner { gap: 32px; }
  .feature-item { padding: 20px; }
  .browser-chrome__content video,
  .feature-split__media video { min-height: 220px; object-fit: cover; }

  /* Values */
  .values-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__main { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Signup form */
  .signup-form { flex-direction: column; }
  .signup-form input { width: 100%; min-width: 0; }
  .signup-form .btn { width: 100%; justify-content: center; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-full .pricing-grid { max-width: 100%; }
  .pricing-card { padding: 28px 24px; }
  .pricing-card__amount { font-size: clamp(3rem, 15vw, 4rem); }
  .pricing-callout { flex-direction: column; padding: 24px; }
  .comparison .container { padding: 0 16px; }
  .comparison-table th,
  .comparison-table td {
    padding: 14px 12px;
    font-size: 0.8125rem;
    min-width: 116px;
  }

  /* Timeline */
  .timeline__track { padding-left: 32px; }

  .product-hero {
    min-height: 100svh;
    height: auto;
    padding: calc(var(--nav-h) + 44px) 0 72px;
  }
  .product-hero__content {
    width: 100%;
    padding: 0 24px;
  }
  .product-hero__content h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
    line-height: 1.08;
  }
  .product-hero__content p { font-size: 1rem; }

  .about-hero,
  .blog-hero {
    min-height: 560px;
    height: 72svh;
  }
  .about-hero__content h1,
  .blog-hero__content h1 {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
    line-height: 1.08;
  }
  .blog-grid { gap: 22px; }
}

@media (max-width: 430px) {
  .container,
  .hero__content,
  .product-hero__content,
  .nav__inner { padding-left: 20px; padding-right: 20px; }

  .hero__badge { margin-bottom: 24px; }
  .hero__scroll { bottom: 22px; }
  .trust-bar__num { font-size: clamp(1.7rem, 11vw, 2.4rem); }
  .trust-bar__label { font-size: 0.75rem; }
  .mission__glow {
    width: 100vw;
    height: 100vw;
  }
  .mission__quote { font-size: clamp(1.5rem, 8vw, 2rem); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .hero__badge-dot  { animation: none; }
  .hero__scroll-arrow { animation: none; }
}
