/* ═══════════════════════════════════════════════
   TTAI — style.css
   Fonts: Syne (headings) · Inter (body)
   Icons: Font Awesome 6
   ═══════════════════════════════════════════════ */

/* ── Tokens ────────────────────────────────── */
:root {
  --bg:         #02060F;
  --bg-2:       #060D1C;
  --bg-3:       #091426;
  --border:     rgba(255,255,255,0.07);
  --border-hi:  rgba(37,99,235,0.35);

  --blue:       #2563EB;
  --blue-hi:    #3B82F6;
  --cyan:       #22D3EE;
  --cyan-dim:   rgba(34,211,238,0.10);
  --green:      #22C55E;

  --t1: #F0F6FF;
  --t2: #94A3B8;
  --t3: #475569;

  --ff-h: 'Inter', sans-serif;
  --ff-b: 'Inter', sans-serif;

  --r:    12px;
  --r-sm: 8px;
  --ease: cubic-bezier(0.22,1,0.36,1);
}

/* ── Reset ─────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased}
body{background:var(--bg);color:var(--t1);font-family:var(--ff-b);font-size:16px;line-height:1.6;overflow-x:hidden}
a{text-decoration:none;color:inherit}
ul{list-style:none}
img{display:block;max-width:100%}
button{cursor:pointer;font-family:inherit;border:none;background:none}

/* ── Scrollbar ─────────────────────────────── */
::-webkit-scrollbar{width:4px}
::-webkit-scrollbar-track{background:var(--bg)}
::-webkit-scrollbar-thumb{background:var(--blue);border-radius:99px}

/* ── Container ─────────────────────────────── */
.container{width:100%;max-width:1160px;margin-inline:auto;padding-inline:clamp(16px,4vw,40px)}

/* ═══════════════════════════════════════════════
   SITE WRAPPER
   ═══════════════════════════════════════════════ */
#site {
  opacity: 1;
  transform: none;
  pointer-events: all;
}

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(2,6,15,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(16px,4vw,40px);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 36px;
}

/* Logo */
.logo {
  font-family: var(--ff-h);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  color: var(--t1);
  line-height: 1;
}
.logo-ai, .f-logo .logo-ai { color: var(--cyan); }

.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  font-size: 0.86rem;
  font-weight: 450;
  color: var(--t2);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--cyan);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover        { color: var(--t1) }
.nav-links a:hover::after { width: 100% }
.nav-links a.active       { color: var(--cyan) }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border: 1px solid var(--border-hi);
  border-radius: var(--r-sm);
  background: rgba(37,99,235,0.09);
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 550;
  white-space: nowrap;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, color 0.3s;
  flex-shrink: 0;
}

.btn-nav-cta:hover {
  background: rgba(37,99,235,0.22);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(34,211,238,0.18);
  color: #fff;
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--t2);
  font-size: 1rem;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
  margin-left: auto;
}

.hamburger:hover { border-color: var(--cyan); color: var(--cyan); }

/* Mobile dropdown */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(2,6,15,0.98);
  border-bottom: 1px solid var(--border);
  padding: 8px 0 16px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  padding: 13px clamp(16px,4vw,40px);
  font-size: 0.95rem;
  color: var(--t2);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--cyan); padding-left: calc(clamp(16px,4vw,40px) + 10px); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--bg);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  display: block;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 55%, rgba(37,99,235,0.07) 0%, transparent 70%),
    linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(100px,15vh,140px) clamp(16px,5vw,40px) 80px;
  max-width: 820px;
  width: 100%;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  border: 1px solid rgba(34,211,238,0.2);
  border-radius: 99px;
  background: rgba(34,211,238,0.05);
  font-size: clamp(0.65rem,1.5vw,0.72rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(34,211,238,0.8);
  margin-bottom: 28px;
  animation: fadeUp 0.8s var(--ease) 0.15s both;
}

.pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,100%{ box-shadow:0 0 5px var(--green) }
  50%    { box-shadow:0 0 14px var(--green), 0 0 24px rgba(34,197,94,0.4) }
}

.hero-title {
  font-family: var(--ff-h);
  font-size: clamp(5rem,17vw,11rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 0.96;
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}

.title-ai {
  background: linear-gradient(135deg, var(--blue-hi), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--ff-h);
  font-size: clamp(0.95rem,2.2vw,1.3rem);
  font-weight: 500;
  color: var(--t2);
  margin-bottom: 14px;
  animation: fadeUp 0.8s var(--ease) 0.45s both;
}

.hero-body {
  font-size: clamp(0.86rem,1.4vw,0.98rem);
  color: var(--t3);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 36px;
  line-height: 1.8;
  animation: fadeUp 0.8s var(--ease) 0.58s both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.7s both;
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px) }
  to   { opacity:1; transform:none }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-bar {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  margin: auto;
}

.scroll-fill {
  width: 100%;
  height: 45%;
  background: linear-gradient(to bottom, transparent, var(--cyan));
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%   { transform:translateY(-100%) }
  100% { transform:translateY(300%) }
}

/* ── Buttons ─────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--blue);
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  color: #fff;
  font-family: var(--ff-b);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.3s, box-shadow 0.3s, transform 0.25s var(--ease);
  box-shadow: 0 4px 18px rgba(37,99,235,0.35);
}

.btn-primary:hover {
  background: var(--blue-hi);
  box-shadow: 0 6px 28px rgba(37,99,235,0.55);
  transform: translateY(-2px);
}

.btn-primary.btn-full { width:100%; justify-content:center }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--t2);
  font-family: var(--ff-b);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.3s, color 0.3s, transform 0.25s var(--ease);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.16);
  color: var(--t1);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   SECTION HEADER COMMONS
   ═══════════════════════════════════════════════ */
section { padding: 100px 0 }

.sec-hd {
  text-align: center;
  margin-bottom: 56px;
}

.sec-hd p, .logistics-copy > p {
  font-size: clamp(0.88rem,1.4vw,1rem);
  color: var(--t2);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.8;
}

.logistics-copy > p { margin-inline: unset; margin-bottom: 32px; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border: 1px solid rgba(37,99,235,0.35);
  border-radius: 99px;
  background: rgba(37,99,235,0.07);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.chip i { font-size: 0.65rem }

.chip-light {
  color: rgba(34,211,238,0.9);
  border-color: rgba(34,211,238,0.2);
  background: rgba(34,211,238,0.06);
}

.sec-hd h2, .logistics-copy h2, .manifesto-inner h2, .contact-info h2 {
  font-family: var(--ff-h);
  font-size: clamp(1.8rem,4.5vw,3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.ac {
  background: linear-gradient(135deg, var(--blue-hi), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════
   QUICK NAV
   ═══════════════════════════════════════════════ */
#qnav {
  padding: 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.qnav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.qcard {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
  color: inherit;
  position: relative;
}

.qcard:last-child { border-right: none }

.qcard::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width 0.4s var(--ease);
}

.qcard:hover { background: rgba(37,99,235,0.05) }
.qcard:hover::after { width: 100% }
.qcard:hover .qcard-icon { color: var(--cyan); border-color: rgba(34,211,238,0.3) }
.qcard:hover .qcard-arr  { opacity: 1; transform: translate(2px,-2px) }

.qcard-icon {
  font-size: 1rem;
  color: var(--t3);
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: color 0.25s, border-color 0.25s;
}

.qcard > div { display: flex; flex-direction: column; gap: 2px; min-width: 0 }
.qcard strong { font-size: 0.9rem; font-weight: 700; font-family: var(--ff-h) }
.qcard span   { font-size: 0.76rem; color: var(--t3) }

.qcard-arr {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--t3);
  opacity: 0.4;
  transition: opacity 0.25s, transform 0.25s var(--ease);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
#about {
  background: var(--bg);
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 640px; height: 360px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Stats band */
.stats-band {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 52px;
}

.stat-cell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 20px;
  background: var(--bg-2);
  gap: 6px;
  text-align: center;
}

.snum {
  font-family: var(--ff-h);
  font-size: clamp(2.4rem,5.5vw,4rem);
  font-weight: 800;
  color: var(--t1);
  line-height: 1;
}

.sunit {
  font-family: var(--ff-h);
  font-size: clamp(1.4rem,3vw,2.2rem);
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-left: 2px;
  align-self: flex-start;
  margin-top: 4px;
}

.slabel {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t3);
}

.stat-sep {
  width: 1px;
  height: 56px;
  background: var(--border);
  flex-shrink: 0;
}

/* Shared 3-col grid */
.three-cols {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

/* Feat card (About + Seeking reuse) */
.feat-card, .seek-card {
  padding: 32px 26px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
}

.feat-card:hover, .seek-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 40px rgba(37,99,235,0.12);
}

.feat-ico {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.22);
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.feat-card h4, .seek-card h4, .fin-card h4, .lf h5 {
  font-family: var(--ff-h);
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 10px;
}

.feat-card h4, .seek-card h4 { font-size: 1rem }
.fin-card h4 { font-size: 1rem; margin-bottom: 10px }
.lf h5 { font-size: 0.92rem; margin-bottom: 6px }

.feat-card p, .seek-card p, .fin-card p, .lf p {
  font-size: 0.86rem;
  color: var(--t2);
  line-height: 1.75;
}

/* Seek card extra */
.seek-card { display: flex; flex-direction: column; gap: 10px }
.seek-card p { flex: 1 }

.seek-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  transition: gap 0.25s var(--ease);
  margin-top: 4px;
}

.seek-link:hover { gap: 12px }
.seek-link i { font-size: 0.72rem }

/* ═══════════════════════════════════════════════
   MARKETPLACE
   ═══════════════════════════════════════════════ */
#marketplace {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.mcard {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
}

.mcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width 0.45s var(--ease);
}

.mcard:hover { border-color: var(--border-hi); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4) }
.mcard:hover::before { width: 100% }

.mcard-soon { opacity: 0.52 }
.mcard-soon:hover { opacity: 0.8 }

.mcard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mcard-ico {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.22);
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 1rem;
}

.muted-ico {
  background: rgba(255,255,255,0.04);
  border-color: var(--border);
  color: var(--t3);
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.08);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.bdot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t3);
}

.mcard h3 {
  font-family: var(--ff-h);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.mcard-sub {
  font-size: 0.82rem;
  color: var(--t3);
  margin-bottom: 18px;
}

.mcard-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}

.mcard-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--t2);
}

.mcard-list li i { color: var(--cyan); font-size: 0.72rem; margin-top: 4px; flex-shrink: 0 }
.muted-list li i { color: var(--t3) }

.mcard-tags { display: flex; flex-wrap: wrap; gap: 7px }

.mcard-tags span {
  padding: 3px 11px;
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--t3);
  background: rgba(37,99,235,0.06);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════
   LOGISTICS
   ═══════════════════════════════════════════════ */
#logistics {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.logistics-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 70px;
  align-items: center;
}

.logistics-copy { display: flex; flex-direction: column; gap: 4px }

.lf-list { display: flex; flex-direction: column; gap: 4px; margin-top: 8px }

.lf {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}

.lf:hover {
  background: var(--bg-2);
  border-color: var(--border);
  transform: translateX(6px);
}

.lf-ico {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 0.88rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.logistics-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Globe */
.globe-box {
  position: relative;
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

#globe-canvas {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  display: block;
}

.globe-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t3);
  text-align: center;
}

/* Routes */
.routes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 260px;
}

.route-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--t2);
  transition: border-color 0.25s, background 0.25s;
}

.route-row:hover { border-color: var(--border-hi); background: var(--bg-3) }

.route-row i {
  font-size: 0.45rem;
  color: var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════
   FINANCING
   ═══════════════════════════════════════════════ */
#financing {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.fin-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.fin-card {
  position: relative;
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
}

.fin-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 36px rgba(37,99,235,0.1);
}

.fin-n {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--ff-h);
  font-size: 3.2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  user-select: none;
}

.fin-ico {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.22);
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

/* ═══════════════════════════════════════════════
   MANIFESTO
   ═══════════════════════════════════════════════ */
#manifesto {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 110px 0;
}

.manifesto-inner {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.manifesto-inner h2 { margin-bottom: 40px; color: var(--t1) }

.obj-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
}

.obj-it {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--t2);
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s var(--ease);
  cursor: default;
}

.obj-it i { color: var(--cyan); font-size: 0.82rem }

.obj-it:hover {
  border-color: var(--border-hi);
  color: var(--t1);
  background: rgba(37,99,235,0.07);
  transform: translateY(-3px);
}

blockquote {
  font-family: var(--ff-h);
  font-size: clamp(1rem,2.5vw,1.35rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.55;
  color: rgba(180,210,255,0.6);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 36px;
  background: rgba(255,255,255,0.02);
  position: relative;
}

blockquote::before {
  content: '"';
  position: absolute;
  top: -22px; left: 20px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(37,99,235,0.18);
  line-height: 1;
}

blockquote strong {
  color: var(--cyan);
  font-weight: 800;
  font-style: normal;
  -webkit-text-fill-color: initial;
  background: none;
}

/* ═══════════════════════════════════════════════
   SEEKING
   ═══════════════════════════════════════════════ */
#seeking {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
#contact {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 0 }
.contact-info h2 { margin-bottom: 14px }
.contact-info > p { font-size: 0.9rem; color: var(--t2); line-height: 1.75; margin-bottom: 32px; max-width: 400px }

.cinfo-list { display: flex; flex-direction: column; gap: 12px }

.cinfo-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.cinfo-row:hover { border-color: var(--border-hi); transform: translateX(4px) }

.cinfo-ico {
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.18);
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 0.82rem;
  flex-shrink: 0;
}

.cinfo-row > div { display: flex; flex-direction: column; gap: 3px }
.cinfo-row strong { font-size: 0.86rem; font-weight: 600; color: var(--t1) }
.cinfo-row span   { font-size: 0.78rem; color: var(--t3) }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 16px }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field { display: flex; flex-direction: column; gap: 7px }

.field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t3);
}

.field input,
.field textarea {
  padding: 11px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--t1);
  font-family: var(--ff-b);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--t3) }

.field input:focus,
.field textarea:focus {
  border-color: rgba(37,99,235,0.55);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

.field textarea { resize: vertical; min-height: 124px }

.sel-wrap { position: relative }

.sel-wrap select {
  width: 100%;
  padding: 11px 38px 11px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--t1);
  font-family: var(--ff-b);
  font-size: 0.9rem;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.sel-wrap select:focus {
  border-color: rgba(37,99,235,0.55);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}

.sel-wrap select option { background: var(--bg-3) }

.sel-icon {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--t3);
  font-size: 0.68rem;
  pointer-events: none;
}

.form-ok {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--green);
  font-size: 0.86rem;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
#footer {
  background: #01030A;
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.f-logo {
  font-family: var(--ff-h);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--t3);
  line-height: 1.7;
  max-width: 220px;
}

.footer-col { display: flex; flex-direction: column; gap: 10px }

.footer-col h6 {
  font-family: var(--ff-h);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.84rem;
  color: var(--t3);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--t1) }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p { font-size: 0.76rem; color: var(--t3); opacity: 0.55 }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════ */
.sr {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.sr.in {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

/* ── ≤ 1024px ──────────────────────────────── */
@media (max-width: 1024px) {
  .logistics-layout { grid-template-columns: 1fr; gap: 52px }
  .logistics-right  { flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 32px }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 32px }
}

/* ── ≤ 860px ───────────────────────────────── */
@media (max-width: 860px) {
  /* Nav */
  .nav-links, .btn-nav-cta { display: none }
  .hamburger { display: inline-flex }

  /* Quick nav */
  .qnav-grid { grid-template-columns: repeat(2,1fr) }
  .qcard { border-right: none; border-bottom: 1px solid var(--border) }
  .qcard:nth-child(2n) { border-right: none }
  .qcard:nth-last-child(-n+2) { border-bottom: none }

  /* Grids */
  .three-cols { grid-template-columns: 1fr 1fr }
  .market-grid { grid-template-columns: 1fr }
  .fin-grid { grid-template-columns: 1fr }

  /* Stats */
  .stats-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--r);
    overflow: hidden;
  }
  .stat-cell:nth-child(1) { border-bottom: 1px solid var(--border) }
  .stat-cell:nth-child(3) { border-bottom: 1px solid var(--border) }
  .stat-sep { display: none }

  /* Contact */
  .contact-wrap { grid-template-columns: 1fr; gap: 48px }
  .form-row { grid-template-columns: 1fr }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr }
}

/* ── ≤ 600px ───────────────────────────────── */
@media (max-width: 600px) {
  section { padding: 72px 0 }

  #loader-wordmark { font-size: clamp(4rem, 22vw, 7rem) }

  .qnav-grid { grid-template-columns: 1fr }
  .qcard { border-bottom: 1px solid var(--border) }
  .qcard:last-child { border-bottom: none }

  .three-cols { grid-template-columns: 1fr }

  .stats-band {
    grid-template-columns: 1fr;
  }
  .stat-cell:nth-child(1),
  .stat-cell:nth-child(3) { border-bottom: 1px solid var(--border) }

  .hero-actions { flex-direction: column; align-items: center }
  .btn-primary, .btn-outline { width: 100%; justify-content: center }

  .obj-items { flex-direction: column; align-items: stretch }

  blockquote { padding: 24px 20px }

  .footer-grid { grid-template-columns: 1fr }
  .footer-bottom { flex-direction: column; align-items: flex-start }

  .logistics-right { gap: 20px }
  .globe-box, #globe-canvas { width: 240px; height: 240px }
}

/* ── ≤ 400px ───────────────────────────────── */
@media (max-width: 400px) {
  .hero-title { font-size: clamp(4rem, 22vw, 6rem) }
}
