/* ============================================================
   UNIQFLY CANADA — STYLES
   Brand: Navy #1E2A3A · Cyan #B87333 · Red #FF2B2B
   ============================================================ */

:root {
  --navy: #1E2A3A;
  --navy-2: #263544;
  --navy-3: #2E3F55;
  --cyan: #B87333;
  --cyan-2: #A66629;
  --cyan-dim: rgba(184, 115, 51, 0.15);
  --sage: #7BA098;
  --sage-dim: rgba(123, 160, 152, 0.2);
  --red: #B87333;
  --silver: #A8B5C4;
  --silver-dim: rgba(168, 181, 196, 0.4);
  --white: #F0EAE0;
  --ink: #F0EAE0;
  --ink-2: #A8B5C4;
  --border: rgba(168, 181, 196, 0.12);
  --border-strong: rgba(184, 115, 51, 0.35);
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --max-w: 1240px;
  --radius: 4px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--navy);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

::selection { background: var(--cyan); color: #1E2A3A; }

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

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background: var(--cyan);
  color: #1E2A3A;
  box-shadow: 0 0 32px rgba(184, 115, 51, 0.4);
}

.btn--primary {
  background: var(--cyan);
  color: #1E2A3A;
}

.btn--primary:hover {
  background: #D4A574;
  border-color: #D4A574;
  color: #1E2A3A;
  box-shadow: 0 0 40px rgba(184, 115, 51, 0.5);
}

.btn--ghost {
  border-color: var(--silver-dim);
  color: var(--ink);
}

.btn--ghost:hover {
  background: transparent;
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn--small {
  padding: 10px 18px;
  font-size: 11px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(30, 42, 58, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}

.nav.is-scrolled {
  background: rgba(30, 42, 58, 0.95);
}

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

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__logo {
  width: 42px;
  height: 42px;
  transition: filter 0.3s var(--ease), transform 0.3s var(--ease);
  filter: drop-shadow(0 0 12px rgba(184, 115, 51, 0.3));
}

.nav__brand:hover .nav__logo {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(184, 115, 51, 0.7)) brightness(1.1);
}

.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--white);
}

.nav__wordmark-accent { color: var(--cyan); }

.nav__links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav__links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.3s var(--ease);
}

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

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

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
  transition: all 0.3s var(--ease);
}

.nav__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy);
  border-bottom: 1px solid var(--border-strong);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
}

.nav__mobile.is-open { display: flex; }

.nav__mobile a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.35) contrast(1.05) saturate(0.6) sepia(0.2);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(184, 115, 51, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(123, 160, 152, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(30, 42, 58, 0.45) 0%, rgba(30, 42, 58, 0.88) 60%, rgba(30, 42, 58, 0.99) 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(184, 115, 51, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 115, 51, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* HUD corners */
.hero__hud {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--cyan);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 5;
  opacity: 0.7;
}

.hero__hud--tl { top: 100px; left: 32px; }
.hero__hud--tr { top: 100px; right: 32px; text-align: right; align-items: flex-end; }
.hero__hud--bl { bottom: 80px; left: 32px; }
.hero__hud--br { bottom: 80px; right: 32px; text-align: right; align-items: flex-end; }

.hud__label {
  color: var(--ink-2);
  font-size: 9px;
  text-transform: uppercase;
}

.hud__value {
  color: var(--cyan);
  font-weight: 500;
}

.hud__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7BA098;
  margin-right: 6px;
  animation: pulse 1.6s infinite;
  vertical-align: middle;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(0, 255, 136, 0); }
}

/* Credentials stack — replaces the floating drone visual */
.hero__credentials {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: 420px;
  max-width: 38vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-cred {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: rgba(38, 53, 68, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(184, 115, 51, 0.18);
  border-left: 3px solid var(--cyan);
  transition: all 0.25s var(--ease);
}

.hero-cred:hover {
  background: rgba(46, 63, 85, 0.7);
  border-left-width: 5px;
  transform: translateX(-3px);
}

.hero-cred__icon {
  width: 32px;
  height: 32px;
  color: var(--cyan);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-cred__icon svg { width: 100%; height: 100%; }

.hero-cred__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.hero-cred__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.hero-cred__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.005em;
}

.hero-cred--status { border-left-color: var(--sage); }
.hero-cred--status .hero-cred__icon { color: var(--sage); }

.hero-cred__pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse-sage 1.8s infinite;
}

@keyframes pulse-sage {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(123, 160, 152, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 10px rgba(123, 160, 152, 0); }
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  background: rgba(184, 115, 51, 0.05);
}

.eyebrow__dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
}

.hero__h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 780px;
  margin-bottom: 32px;
}

.hero__h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--cyan);
}

.hero__h1-accent {
  display: inline-block;
  background: linear-gradient(120deg, #B87333, #D4A574);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1px solid var(--cyan);
  border-radius: 12px;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero__scroll span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--cyan);
  border-radius: 2px;
  animation: scroll 1.8s infinite;
}

@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */

.trust {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--navy-2);
}

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

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  background: rgba(184, 115, 51, 0.03);
  transition: all 0.3s var(--ease);
}

.trust__item:hover {
  background: rgba(184, 115, 51, 0.08);
  border-left-width: 6px;
}

.trust__icon {
  width: 36px;
  height: 36px;
  color: var(--cyan);
}

.trust__icon svg {
  width: 100%;
  height: 100%;
}

.trust__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.trust__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section__head {
  max-width: 880px;
  margin-bottom: 72px;
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
  padding-left: 32px;
  position: relative;
}

.section__eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--cyan);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.section__title-accent {
  background: linear-gradient(120deg, #B87333, #D4A574);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section__lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 720px;
}

/* ============================================================
   LIFECYCLE
   ============================================================ */

.lifecycle { padding: 120px 0; }

.lifecycle__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.life-card {
  position: relative;
  padding: 40px 32px;
  background: var(--navy);
  transition: background 0.3s var(--ease);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.life-card:hover { background: var(--navy-2); }

.life-card__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.life-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.life-card__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  flex: 1;
}

.life-card__pin {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* ============================================================
   SERVICES
   ============================================================ */

.services {
  padding: 120px 0;
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--navy);
  border: 1px solid var(--border);
  padding: 40px;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}

.svc-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.svc-card:hover::before { transform: translateX(100%); }

.svc-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-color: var(--border-strong);
}

.svc-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.svc-card__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 0.1em;
}

.svc-card__from {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.svc-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.svc-card__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 28px;
}

.svc-card__list {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.svc-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
}

.svc-card__list li:first-child { border-top: none; }

.svc-card__list li > span:first-child { color: var(--ink); }

.svc-card__list li > span:last-child {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.02em;
}

.svc-card__list--tight li { padding: 8px 0; font-size: 13px; }

/* Service card tag pills (replaces price list) */
.svc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  flex: 1;
}

.svc-card__tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(184, 115, 51, 0.04);
  transition: all 0.25s var(--ease);
}

.svc-card:hover .svc-card__tags span {
  border-color: var(--border-strong);
  color: var(--ink);
}

/* Enterprise sub-cards inside featured card */
.svc-sub {
  padding: 24px;
  background: rgba(184, 115, 51, 0.03);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s var(--ease);
}

.svc-sub:hover {
  background: rgba(184, 115, 51, 0.06);
  border-color: var(--border-strong);
}

.svc-sub__body {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 4px;
}

.svc-sub__from {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--cyan);
  text-transform: uppercase;
}

.svc-sub__cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 10px 0;
  border-top: 1px solid var(--border-strong);
  margin-top: 8px;
  transition: color 0.25s var(--ease);
}

.svc-sub__cta:hover { color: #D4A574; }

.svc-card__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.svc-card__sublabel {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.svc-card__cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: auto;
  align-self: flex-start;
  padding: 12px 0;
  position: relative;
}

.svc-card__cta::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.svc-card__cta:hover::after { transform: scaleX(1); }

.services__travel {
  margin-top: 48px;
  padding: 20px 28px;
  background: rgba(184, 115, 51, 0.04);
  border-left: 3px solid var(--cyan);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}

.services__travel strong {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  margin-right: 8px;
}

/* ============================================================
   STORE (COMING SOON)
   ============================================================ */

.store { padding: 120px 0; }

.store__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 64px;
}

.store__grid--glimpse {
  grid-template-columns: repeat(4, 1fr);
}

.store__grid--glimpse .store__item {
  min-height: 220px;
  padding: 32px 28px;
}

.store__grid--glimpse .store__item h4 {
  font-size: 18px;
  margin-top: 36px;
}

.store__grid--glimpse .store__item p {
  font-size: 13px;
  line-height: 1.5;
}

.store__item {
  background: var(--navy);
  padding: 28px 24px;
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s var(--ease);
}

.store__item:hover {
  background: var(--navy-2);
}

.store__item--feature {
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy-3) 100%);
}

.store__pin {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 3px 8px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(184, 115, 51, 0.05);
}

.store__item h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
  color: var(--white);
  margin: 32px 0 8px 0;
  letter-spacing: -0.01em;
}

.store__item p {
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-2);
  flex: 1;
}

.store__price {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 18px;
  color: var(--cyan);
  margin-top: 12px;
}

.store__cta {
  text-align: center;
  padding: 64px 32px;
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy-3) 100%);
  border: 1px solid var(--border-strong);
}

.store__cta h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.store__cta p {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 auto 32px;
}

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

.about {
  padding: 120px 0;
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.about__copy .section__eyebrow { margin-bottom: 20px; }

.about__lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  margin: 24px 0;
}

.about__copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 16px;
}

.about__copy strong { color: var(--white); font-weight: 600; }

.about__credentials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cred {
  padding: 28px;
  background: var(--navy);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  position: relative;
  transition: all 0.25s var(--ease);
}

.cred:hover { border-left-width: 6px; background: var(--navy-3); }

.cred__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.cred h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.cred p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact { padding: 120px 0; }

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact__card {
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  background: var(--navy-2);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  min-height: 280px;
}

.contact__card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.contact__card--primary {
  background: linear-gradient(135deg, rgba(184, 115, 51, 0.08), rgba(46, 63, 85, 0.15));
  border-color: var(--border-strong);
}

.contact__icon {
  width: 40px;
  height: 40px;
  color: var(--cyan);
  margin-bottom: 24px;
}

.contact__icon svg { width: 100%; height: 100%; }

.contact__card h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.contact__card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  flex: 1;
  margin-bottom: 24px;
}

.contact__cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

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

.footer {
  padding: 64px 0 32px;
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer__brand p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-top: 8px;
}

.footer__logo {
  width: 56px;
  margin-bottom: 16px;
  transition: filter 0.3s var(--ease), transform 0.3s var(--ease);
}

.footer__logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(184, 115, 51, 0.6));
}

.footer__copy { font-size: 11px !important; color: var(--ink-2); margin-top: 16px; }

.footer__col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--ink-2);
  padding: 6px 0;
}

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

.footer__coord {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  padding: 4px 0;
}

.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.05em;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__hud { display: none; }
  .hero__credentials { display: none; }

  .trust__grid { grid-template-columns: 1fr; }

  .lifecycle__grid { grid-template-columns: repeat(2, 1fr); }

  .services__grid { grid-template-columns: 1fr; }
  .svc-card--featured { grid-column: span 1; }
  .svc-card__split { grid-template-columns: 1fr; gap: 24px; }

  .store__grid { grid-template-columns: repeat(2, 1fr); }
  .store__grid--glimpse { grid-template-columns: repeat(2, 1fr); }

  .about__grid { grid-template-columns: 1fr; gap: 48px; }

  .contact__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 640px) {
  .container { padding: 0 20px; }

  .nav__inner > .btn { display: none; }
  .nav__wordmark { display: none; }

  .hero { min-height: 100vh; padding-top: 100px; }
  .hero__h1 { font-size: 36px; }
  .hero__sub { font-size: 15px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__credentials { display: none; }

  .trust { padding: 48px 0; }
  .trust__item { padding: 20px; }

  .lifecycle, .services, .store, .about, .contact { padding: 80px 0; }

  .section__head { margin-bottom: 48px; }
  .section__title { font-size: 32px; }

  .lifecycle__grid { grid-template-columns: 1fr; }
  .life-card { min-height: auto; padding: 32px 24px; }

  .svc-card { padding: 32px 24px; }
  .svc-card__title { font-size: 22px; }

  .store__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__video { display: none; }
}
