/* ============================================================
   INMIN — MODERN LUXURY EDITORIAL EDITION
   Champagne Tint · Sapphire Blue & Metallic Gold · Ultra-Premium
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #0A0D14;
  /* Luxury Midnight Black */
  --ink-2: #4B5563;
  /* Premium Charcoal */
  --ink-3: #9CA3AF;
  /* Muted Slate */
  --base: #FFFFFF;
  --tint: #FAF9F6;
  /* Champagne Soft Cream */
  --accent: #0052FF;
  /* High-vibrancy Electric Blue */
  --accent-h: #0044D6;
  --accent-gold: #C2A478;
  /* Metallic Gold Accent */
  --accent-gradient: linear-gradient(135deg, #0052FF 0%, #7A00FF 100%);
  --dark: #0C0E14;
  /* Deep Midnight Footer */
  --border: rgba(181, 154, 114, 0.18);
  /* Champagne border */
  --border-dark: rgba(255, 255, 255, 0.08);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --max-w: 1440px;
  --max-w-wide: 1680px;
  --gutter: clamp(24px, 6vw, 96px);
  --nav-h: 80px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.85s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--base);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.625;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Precise Designer Tech Grid Overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(194, 164, 120, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194, 164, 120, 0.035) 1px, transparent 1px);
  background-size: 100px 100px;
  pointer-events: none;
  z-index: -1;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── LAYOUT & FULL SCREEN SECTIONS ─────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  width: 100%;
}

.container-wide {
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  width: 100%;
}

/* Full-Screen cinematic alignment */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 80px;
  position: relative;
}

.section--tint {
  background: var(--tint);
}

.section--tint::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 82, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.section--dark {
  background: var(--dark);
  color: #fff;
}

/* ─── GLOWING DECORATIVE BACKDROPS ──────────────────────────── */
.hero::before {
  content: '';
  position: absolute;
  width: clamp(400px, 60vw, 900px);
  height: clamp(400px, 60vw, 900px);
  background: radial-gradient(circle, rgba(0, 82, 255, 0.06) 0%, transparent 70%);
  top: 15%;
  pointer-events: none;
  z-index: -1;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: 980px;
  background: var(--accent-gradient);
  color: #fff;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  box-shadow: 0 10px 30px rgba(0, 82, 255, 0.25);
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 82, 255, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: 980px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s var(--ease);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.link-arrow {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s;
  letter-spacing: 0.02em;
}

.link-arrow::after {
  content: ' ›';
  font-size: 20px;
  transition: transform 0.2s var(--ease);
  display: inline-block;
}

.link-arrow:hover::after {
  transform: translateX(3px);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(24px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.nav__logo img {
  height: 56px;
  width: auto;
  max-height: 100%;
  transition: transform 0.25s var(--ease);
}

.nav__logo img:hover {
  transform: scale(1.03);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav__link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: color 0.2s;
}

.nav__link:hover,
.nav__link.active {
  color: var(--accent);
}

.nav__cta {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 8px 18px;
  border-radius: 980px;
  background: transparent;
  transition: all 0.2s;
}

.nav__cta:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 100px 32px 32px;
  flex-direction: column;
}

.nav__mobile-link {
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  padding-block: 20px;
  border-bottom: 1px solid var(--border);
}



/* ─── HERO (Premium Light Mesh Gradient Edition) ────────────── */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) var(--gutter) 80px;
  background:
    radial-gradient(at 0% 0%, rgba(0, 82, 255, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(194, 164, 120, 0.08) 0px, transparent 50%),
    radial-gradient(at 50% 100%, rgba(122, 0, 255, 0.04) 0px, transparent 65%),
    var(--base);
  position: relative;
  overflow: hidden;
}

/* Subtle light designer tech grid lines overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(194, 164, 120, 0.12) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(194, 164, 120, 0.12) 1.5px, transparent 1.5px);
  background-size: 100px 100px;
  pointer-events: none;
  z-index: 1;
}

/* Blueprint Monoline Layout Guides & Circles */
.hero-circle {
  position: absolute;
  width: min(650px, 90vw);
  height: min(650px, 90vw);
  border: 1px solid rgba(181, 154, 114, 0.32);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.hero-circle::before {
  content: '';
  position: absolute;
  inset: 50px;
  border: 1px dashed rgba(0, 82, 255, 0.12);
  border-radius: 50%;
}

.hero-circle::after {
  content: '';
  position: absolute;
  inset: 120px;
  border: 1px solid rgba(181, 154, 114, 0.2);
  border-radius: 50%;
}


/* Subtle single spotlight glow */
.hero-spotlight {
  position: absolute;
  width: min(800px, 110vw);
  height: min(800px, 110vw);
  background: radial-gradient(circle, rgba(0, 82, 255, 0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

/* Precise Monoline Layout Crosshairs */
.hero-crosshair {
  position: absolute;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--accent-gold);
  opacity: 0.65;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 2;
}

.hc-tl {
  top: 40px;
  left: 40px;
}

.hc-tr {
  top: 40px;
  right: 40px;
}

.hc-bl {
  bottom: 40px;
  left: 40px;
}

.hc-br {
  bottom: 40px;
  right: 40px;
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 24px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 3;
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(60px, 10vw, 116px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 28ch;
  margin: 0 auto 32px;
  z-index: 3;
}

/* Luminous Accent Gradients */
.hero__headline em,
.feature__head em,
.about__lede em,
.careers__lede em,
.impact__head em {
  font-style: italic;
  font-weight: 300;
  background-image: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 400;
  color: var(--ink-2);
  max-width: 72ch;
  line-height: 1.6;
  margin: 0 auto 48px;
  z-index: 3;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 3;
}

/* Revert outline button for light hero */
.hero .btn-outline {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

.hero .btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

/* Premium Scroll Down Indicator (Mouse Wheel Icon) */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: 24px;
  height: 40px;
  border: 1.5px solid var(--accent-gold);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  opacity: 0.8;
  z-index: 3;
}

.scroll-indicator__wheel {
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollMouse 1.8s ease-in-out infinite;
}

@keyframes scrollMouse {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  50% {
    transform: translate3d(0, 8px, 0);
    opacity: 0;
  }

  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* Floating Back-to-Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--border);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 15px, 0);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.2s, color 0.2s;
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.back-to-top:hover {
  transform: scale(1.06);
  border-color: var(--accent);
  color: var(--accent);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}



/* ─── METRICS BAND ───────────────────────────────────────────── */
.metrics {
  padding-block: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: relative;
}

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

.metric {
  text-align: center;
  padding-inline: 16px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.metric:last-child {
  border-right: none;
}

.metric__num {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.metric__num sup {
  font-size: 0.42em;
  color: var(--accent);
  font-family: var(--sans);
  font-weight: 600;
  vertical-align: super;
}

.metric__label {
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ─── CATEGORY PILLS ─────────────────────────────────────────── */
.categories {
  padding-block: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid var(--border);
  background: var(--tint);
  position: relative;
}

.cat-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 24px;
}

.cat-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 10px 22px;
  border-radius: 980px;
  border: 1px solid var(--border);
  background: #fff;
  transition: all 0.25s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.cat-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.cat-pill svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── FEATURE SECTIONS (Full Screen) ─────────────────────────── */
.feature {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 100px;
  position: relative;
  overflow: hidden;
}

.feature__inner {
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
  width: 100%;
}

.feature__inner--rev {
  direction: rtl;
}

.feature__inner--rev>* {
  direction: ltr;
}

.feature__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature__num {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.12em;
}

.feature__head {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
}

.feature__body {
  font-size: 18px;
  line-height: 1.68;
  color: var(--ink-2);
  font-weight: 400;
  max-width: 42ch;
}

/* ─── MAC PLATFORM VISUAL MOCKUPS ────────────────────────────── */
.pv {
  background: linear-gradient(135deg, #FAF9F6 0%, #F3F1EC 100%);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  font-size: clamp(10px, 1.25vw, 13px);
  border: 1px solid var(--border);
  box-shadow: 0 32px 80px rgba(10, 13, 20, 0.08);
}

.pv__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.pv__dots {
  display: flex;
  gap: 5px;
}

.pv__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.pv__dot:nth-child(1) {
  background: #FF5F57;
}

.pv__dot:nth-child(2) {
  background: #FFBD2E;
}

.pv__dot:nth-child(3) {
  background: #28CA41;
}

.pv__title {
  font-size: 0.95em;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pv__body {
  padding: 16px;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Product grid mockups */
.pv-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pv-product {
  border: 1px solid rgba(181, 154, 114, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.pv-product__img {
  height: 56px;
}

.pv-product__info {
  padding: 8px 10px;
}

.pv-product__name {
  font-size: 0.85em;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.pv-product__price {
  font-size: 0.85em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
}

.pv-product__btn {
  width: 100%;
  padding: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 0.78em;
  font-weight: 600;
  border-radius: 4px;
}

.pv-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pv-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.pv-stat__n {
  font-family: var(--serif);
  font-size: 1.4em;
  font-weight: 400;
  color: var(--ink);
}

.pv-stat__l {
  font-size: 0.8em;
  color: var(--ink-2);
  font-weight: 500;
}

/* Order feed mockups */
.pv-orders {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  overflow: hidden;
}

.pv-order {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: #fff;
  border: 1px solid rgba(181, 154, 114, 0.1);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.01);
}

.pv-order__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pv-order__info {
  flex: 1;
  min-width: 0;
}

.pv-order__name {
  font-size: 0.88em;
  font-weight: 600;
  color: var(--ink);
}

.pv-order__meta {
  font-size: 0.78em;
  color: var(--ink-2);
}

.pv-order__amount {
  font-size: 0.88em;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}

/* Delivery mockups */
.pv-delivery {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.pv-map {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  min-height: 80px;
  background: linear-gradient(135deg, #EBEFFC 0%, #D4E3FC 100%);
}

.pv-map::before {
  content: '';
  position: absolute;
  width: 55%;
  height: 3px;
  background: var(--accent);
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  border-radius: 3px;
}

.pv-map::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 3px solid var(--accent);
  border-radius: 50%;
  top: 50%;
  left: 65%;
  transform: translateY(-50%);
}

.pv-track {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.pv-track__icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.pv-track__icon svg {
  width: 15px;
  height: 15px;
}

.pv-track__status {
  font-size: 0.88em;
  font-weight: 600;
  color: var(--ink);
}

.pv-track__eta {
  font-size: 0.78em;
  color: var(--ink-2);
}

/* ─── IMPACT SECTION ─────────────────────────────────────────── */
.impact {
  text-align: center;
}

.impact__head {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin: 16px auto;
}

.impact__sub {
  font-size: 20px;
  font-weight: 400;
  color: var(--ink-2);
  max-width: 48ch;
  margin: 0 auto 64px;
}

.impact__eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  background: #fff;
  width: 100%;
}

.istat {
  padding: clamp(36px, 5vw, 56px) clamp(20px, 3vw, 32px);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background 0.3s var(--ease);
}

.istat:last-child {
  border-right: none;
}

.istat:hover {
  background: var(--tint);
}

.istat__num {
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.istat__num sup {
  font-size: 0.4em;
  color: var(--accent);
  font-family: var(--sans);
  font-weight: 600;
  vertical-align: super;
}

.istat__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
}

.istat__desc {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
  width: 100%;
}

.about__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
  transition: filter 0.6s var(--ease);
}

.about__img:hover img {
  filter: saturate(1);
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__lede {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}

.about__body {
  font-size: 18px;
  line-height: 1.68;
  color: var(--ink-2);
  font-weight: 400;
}

.eyebrow-sm {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tl {
  border-top: 1px solid var(--border);
  margin-top: 16px;
}

.tl-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding-block: 18px;
  border-bottom: 1px solid var(--border);
}

.tl-year {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  padding-top: 2px;
}

.tl-text {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
}

.tl-text strong {
  color: var(--ink);
  font-weight: 600;
}

.team__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(36px, 5vw, 64px);
  width: 100%;
}

.team__head {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
  width: 100%;
}

.tc {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 36px 4px 36px 4px;
  padding: 16px 16px 20px;
  transition: all 0.5s var(--ease);
  box-shadow: 0 4px 24px rgba(10, 13, 20, 0.012);
  cursor: pointer;
}

.tc:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  border-radius: 4px 36px 4px 36px;
  box-shadow: 0 20px 48px rgba(194, 164, 120, 0.08);
}

.tc__portrait {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--tint);
  position: relative;
  border-radius: 28px 4px 28px 4px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.5s var(--ease);
}

.tc:hover .tc__portrait {
  border-radius: 4px 28px 4px 28px;
}

.tc__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.6s var(--ease);
  mix-blend-mode: multiply;
}

.tc:hover .tc__portrait img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.tc__overlay {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px 4px 20px 4px;
  padding: 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.5s var(--ease);
  box-shadow: 0 8px 32px rgba(10, 13, 20, 0.08);
}

.tc:hover .tc__overlay {
  opacity: 1;
  transform: translateY(0);
  border-radius: 4px 20px 4px 20px;
}

.tc__name {
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 22px);
  font-weight: 500;
  color: var(--ink);
  padding-inline: 8px;
  margin-top: 4px;
  transition: color 0.3s;
}

.tc:hover .tc__name {
  color: var(--accent);
}

.tc__role {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: rgba(0, 82, 255, 0.06);
  border-radius: 20px;
  width: fit-content;
  margin-left: 8px;
  margin-bottom: 12px;
  display: inline-block;
}

.tc__bio {
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.55;
  font-weight: 450;
}


/* ─── CAREERS ────────────────────────────────────────────────── */
.careers__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  width: 100%;
}

.careers__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.careers__lede {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}

.careers__body {
  font-size: 18px;
  line-height: 1.68;
  color: var(--ink-2);
  font-weight: 400;
}

.values {
  border-top: 1px solid var(--border);
  margin-top: 16px;
}

.value {
  font-size: 15px;
  color: var(--ink-2);
  padding-block: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.65;
}

.value::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 9px;
  flex-shrink: 0;
}

.roles {
  border-top: 1px solid var(--border);
  width: 100%;
}

.role {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding-block: 20px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: padding-left 0.25s var(--ease);
}

.role:hover {
  padding-left: 12px;
}

.role__title {
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  color: var(--ink);
}

.role__meta {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 4px;
  font-weight: 500;
}

.role__arr {
  width: 18px;
  height: 18px;
  stroke: var(--ink-2);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s var(--ease);
}

.role:hover .role__arr {
  transform: translateX(6px);
  stroke: var(--accent);
}

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
  width: 100%;
}

.contact__lede {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}

.contact__body {
  font-size: 18px;
  line-height: 1.68;
  color: var(--ink-2);
  font-weight: 400;
  margin-bottom: 32px;
}

.offices {
  border-top: 1px solid var(--border);
}

.office {
  padding-block: 22px;
  border-bottom: 1px solid var(--border);
}

.office__city {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}

.office__addr {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.68;
}

.office__email {
  display: inline-block;
  font-size: 15px;
  color: var(--accent);
  margin-top: 6px;
  font-weight: 600;
}

.cform {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fgroup {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.flabel {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}

.finput,
.ftextarea,
.fselect {
  width: 100%;
  padding: 13px 16px;
  background: #fff;
  border: 1.5px solid rgba(181, 154, 114, 0.25);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.finput:focus,
.ftextarea:focus,
.fselect:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 82, 255, 0.12);
}

.ftextarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* ─── FOOTER (Premium Layout Edition) ────────────────────────── */
.footer {
  background: #070A13;
  color: rgba(255, 255, 255, 0.7);
  padding-block: 100px 60px;
  border-top: 1px solid rgba(181, 154, 114, 0.15);
  font-family: var(--sans);
}

.footer__inner {
  max-width: 100%;
  margin-inline: auto;
  padding-inline: clamp(24px, 6vw, 120px);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo-wrap {
  margin-bottom: 24px;
  display: inline-block;
}

.footer__logo-img {
  height: 64px;
  width: auto;
  opacity: 0.95;
  transition: transform 0.25s var(--ease);
}

.footer__logo-img:hover {
  transform: scale(1.02);
}

.footer__tag {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 45ch;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.fsoc {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(181, 154, 114, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.25s var(--ease);
}

.fsoc:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(181, 154, 114, 0.08);
  transform: translate3d(0, -2px, 0);
}

.fsoc svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer__col-h {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__col-link {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer__col-link:hover {
  color: var(--accent-gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 48px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--accent-gold);
}


/* ─── SCROLL PROGRESS BAR ────────────────────────────────────── */
.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--accent);
  z-index: 1001;
  transition: width 0.08s linear;
}



/* ─── INTRO PRELOADER ───────────────────────────────────────── */
.intro {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

.intro.hide {
  transform: translateY(-100%);
}

.intro__logo {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.1em;
  animation: introText 1.4s var(--ease) forwards;
}

@keyframes introText {
  0% {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(4px);
  }

  35% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  65% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-10px);
    filter: blur(4px);
  }
}

/* ─── MARQUEE TICKER BAND ────────────────────────────────────── */
.marquee-band {
  background: var(--tint);
  border-bottom: 1px solid var(--border);
  padding-block: 16px;
  overflow: hidden;
  display: flex;
  position: relative;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  gap: 12px;
}

.marquee-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.marquee-accent {
  color: var(--accent-gold);
  font-weight: 600;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-l {
  opacity: 0;
  transform: translate3d(-30px, 0, 0);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.reveal-l.in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.pv {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.98);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.pv.in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* Mask reveal elements for Hero */
.hl-mask {
  display: block;
  overflow: hidden;
  line-height: 1.15;
}

.hl-word {
  display: inline-block;
  transform: translate3d(0, 105%, 0);
  transition: transform 0.9s cubic-bezier(0.15, 0.85, 0.35, 1);
}

.hl-word.in {
  transform: translate3d(0, 0, 0);
}

.hero__eyebrow {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.hero__eyebrow.in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero__sub {
  opacity: 0;
  transform: translate3d(0, 15px, 0);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.hero__sub.in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero__actions {
  opacity: 0;
  transform: translate3d(0, 15px, 0);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.hero__actions.in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.d1 {
  transition-delay: 80ms;
}

.d2 {
  transition-delay: 160ms;
}

.d3 {
  transition-delay: 240ms;
}

.d4 {
  transition-delay: 320ms;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .team__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .feature__inner,
  .about__inner,
  .careers__inner,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .feature__inner--rev {
    direction: ltr;
  }

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

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

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

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

  .team__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section {
    min-height: auto;
    padding-block: 80px;
  }

  .hero {
    min-height: 100vh;
  }
}

@media (max-width: 600px) {
  .frow {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .cat-pills {
    gap: 7px;
  }
}

@media (max-width: 480px) {
  .team__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

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

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

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

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Premium Right Side Sheet */
.bottom-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 13, 20, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  justify-content: flex-end;
  /* Align side sheet to right */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bottom-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.bottom-drawer {
  width: 100%;
  max-width: 640px;
  /* Wider side sheet */
  height: 100vh;
  background: var(--base);
  border-left: 1px solid var(--border);
  box-shadow: -20px 0 64px rgba(10, 13, 20, 0.15);
  padding: 48px;
  transform: translateX(100%);
  /* Slide from right */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.bottom-drawer-overlay.open .bottom-drawer {
  transform: translateX(0);
}

.bottom-drawer__close {
  position: absolute;
  top: 36px;
  right: 36px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--tint);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-2);
  transition: all 0.2s;
  z-index: 10;
}

.bottom-drawer__close:hover {
  background: var(--border);
  color: var(--ink);
  transform: scale(1.05);
}

.bottom-drawer__close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bottom-drawer__num {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--accent-gold);
  margin-bottom: 12px;
  display: block;
}

.bottom-drawer__title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 44px);
  color: var(--ink);
  margin-top: 0;
  margin-bottom: 6px;
  font-weight: 300;
  line-height: 1.15;
}

.bottom-drawer__subtitle {
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 36px;
  line-height: 1.5;
}

.drawer-section {
  margin-bottom: 36px;
}

.drawer-section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

/* Steps list styling */
.drawer-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.drawer-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(181, 154, 114, 0.12);
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.drawer-step-text h5 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px 0;
}

.drawer-step-text p {
  font-size: 13.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.45;
}

.bottom-drawer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.drawer-feature-card {
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

.drawer-feature-card h4 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.drawer-feature-card p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}

.bottom-drawer__actions {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-start;
}

.bottom-drawer__actions .btn-solid {
  padding: 14px 40px;
  font-size: 15px;
}