/* ========================================
   TRADESOURCE — Light Refined Theme
   Typography: Syne + Outfit
   Palette: Warm whites, deep navy, gold accents
   ======================================== */

:root {
  --bg-deep: #faf9f6;
  --bg-dark: #f1efe9;
  --bg-card: #ffffff;
  --bg-elevated: #f6f5f1;
  --gold: #b8942e;
  --gold-light: #d4ab3a;
  --gold-dim: rgba(184, 148, 46, 0.1);
  --navy: #1a2a3a;
  --navy-light: #2c3e50;
  --cyan: #0a8fb0;
  --cyan-dim: rgba(10, 143, 176, 0.08);
  --text-primary: #1a1a1a;
  --text-secondary: #5a5a5a;
  --text-muted: #9a9590;
  --border: rgba(0, 0, 0, 0.1);
  --border-subtle: rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: #fff;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gold { color: var(--gold); }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s var(--ease-smooth);
}

.nav--scrolled {
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

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

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

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

.nav__cta {
  padding: 0.55rem 1.4rem !important;
  border: 1px solid var(--navy);
  color: var(--navy) !important;
  border-radius: 2px;
  transition: all 0.3s !important;
}

.nav__cta:hover {
  background: var(--navy) !important;
  color: #fff !important;
}

.nav__cta::after { display: none !important; }

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

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 1rem 2.4rem;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  text-transform: uppercase;
}

.btn--primary {
  background: var(--navy);
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn--primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 42, 58, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(175deg, #ffffff 0%, var(--bg-deep) 40%, var(--bg-dark) 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.07;
  filter: saturate(0.3) brightness(1.1);
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.02'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero__geometric {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__line {
  position: absolute;
  background: var(--border-subtle);
}

.hero__line--1 {
  width: 1px;
  height: 60%;
  left: 15%;
  top: 20%;
  animation: lineFade 4s ease-in-out infinite;
}

.hero__line--2 {
  width: 40%;
  height: 1px;
  right: 0;
  top: 35%;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  animation: lineFade 5s ease-in-out 1s infinite;
}

.hero__line--3 {
  width: 1px;
  height: 45%;
  right: 20%;
  bottom: 10%;
  background: linear-gradient(180deg, var(--gold-dim), transparent);
  animation: lineFade 6s ease-in-out 2s infinite;
}

.hero__circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
}

@keyframes lineFade {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.hero__content {
  text-align: center;
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero__tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero__tag::before,
.hero__tag::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-bottom: 0.1em;
  white-space: nowrap;
  font-size: min(6vw, 5rem);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 2;
}

.hero__scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ---- SECTIONS ---- */
.section {
  padding: 8rem 0;
  position: relative;
}

.section--dark {
  background: var(--bg-dark);
}

.section--dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section__header {
  margin-bottom: 4rem;
}

.section__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.section__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin-top: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ---- ABOUT ---- */
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about__image {
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.about__image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.5s var(--ease-out);
}

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

.lead {
  font-size: 1.2rem;
  line-height: 1.9;
  font-weight: 300;
  color: var(--text-secondary);
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-out);
}

.about__feature:hover {
  border-color: var(--gold-dim);
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.about__feature-icon {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.9;
}

.about__feature span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-primary);
}

/* ---- SOLUTIONS ---- */
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.solutions__card {
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
}

.solutions__card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.solutions__card-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.solutions__card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--navy);
}

.solutions__card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

.solutions__card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transition: width 0.5s var(--ease-out);
}

.solutions__card:hover .solutions__card-line {
  width: 100%;
}

/* ---- PARTNERS ---- */
.partners {
  padding: 4rem 0;
}

.partners__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partners__logo {
  padding: 1.2rem 2.5rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.partners__logo:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}

.partners__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.4);
  transition: filter 0.3s;
}

.partners__logo:hover img {
  filter: grayscale(0);
}

/* Missing layer bg */
.missing {
  position: relative;
}

.missing__bg-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.missing__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.04;
  filter: saturate(0.3) brightness(1.2);
}

.missing .container {
  position: relative;
  z-index: 1;
}

/* ---- MISSING LAYER ---- */
.missing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.missing__item {
  padding: 2.5rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  border-radius: 4px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-out);
}

.missing__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  border-radius: 0 0 2px 2px;
  transition: height 0.4s var(--ease-out);
}

.missing__item:hover::before {
  height: 100%;
}

.missing__item:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.missing__icon {
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.missing__item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--navy);
}

.missing__item p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* ---- COMPLIANT LAYER ---- */
.compliant__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.compliant__content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-top: 1.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.compliant__list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.compliant__list li {
  font-size: 0.95rem;
  color: var(--text-primary);
  padding-left: 1.6rem;
  position: relative;
  font-weight: 400;
}

.compliant__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
}

.compliant__image {
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.compliant__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.5s var(--ease-out);
}

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

.compliant__box {
  padding: 2.5rem;
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.compliant__box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim), transparent);
  pointer-events: none;
  border-radius: 0 4px 4px 0;
}

.compliant__box p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* ---- PROBLEMS ---- */
.problems__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.problems__item {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  transition: all 0.35s var(--ease-out);
}

.problems__item:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}

.problems__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.25;
  flex-shrink: 0;
  line-height: 1;
  min-width: 60px;
  transition: opacity 0.3s;
}

.problems__item:hover .problems__number {
  opacity: 0.5;
}

.problems__content h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.problems__content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* ---- HOW IT WORKS ---- */
.how__diagram {
  margin-bottom: 4rem;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  border-radius: 4px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.how__diagram-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.how__timeline {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 3rem;
}

.how__timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), var(--border), transparent);
}

.how__step {
  position: relative;
  padding: 2rem 0 2rem 3rem;
}

.how__step-marker {
  position: absolute;
  left: -3rem;
  top: 2rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  background: var(--bg-deep);
  z-index: 1;
  transform: rotate(45deg);
}

.how__step-marker span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  transform: rotate(-45deg);
}

.how__step-content h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.how__step-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
}

.how__revenue {
  max-width: 700px;
  margin: 0 auto;
}

/* ---- ROADMAP ---- */
.roadmap__track {
  position: relative;
  padding: 2rem 0;
}

.roadmap__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), var(--border), transparent);
}

.roadmap__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  position: relative;
}

.roadmap__item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 2rem);
  text-align: right;
  justify-content: flex-end;
}

.roadmap__item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 2rem);
  text-align: left;
  justify-content: flex-end;
}

.roadmap__dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold);
  background: var(--bg-dark);
  z-index: 1;
  transition: all 0.3s;
}

.roadmap__item:hover .roadmap__dot {
  background: var(--gold);
  box-shadow: 0 0 20px rgba(184, 148, 46, 0.3);
}

.roadmap__date {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0;
}

.roadmap__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ---- TEAM ---- */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team__card {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-out);
}

.team__card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team__avatar {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--bg-dark);
  position: relative;
}

.team__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: filter 0.3s;
}

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

.team__avatar--advisor {
  background: var(--bg-elevated);
}

.team__card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.team__role {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* ---- CONTACT ---- */
.contact__form {
  max-width: 680px;
  margin: 0 auto;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact__field {
  margin-bottom: 1.5rem;
}

.contact__field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.contact__field input,
.contact__field textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact__field input:focus,
.contact__field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.contact__field textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---- FOOTER ---- */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  max-width: 500px;
}

.footer__disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
  font-weight: 300;
}

.footer__links {
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

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

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer__bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 300;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .solutions__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .compliant__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .roadmap__line { display: none; }

  .roadmap__item,
  .roadmap__item:nth-child(odd),
  .roadmap__item:nth-child(even) {
    padding: 1.5rem 0 1.5rem 3rem;
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
  }

  .roadmap__dot {
    left: 0;
    transform: translateX(0) rotate(45deg);
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-deep);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.4s var(--ease-out);
    border-left: 1px solid var(--border);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .section {
    padding: 5rem 0;
  }

  .hero__title {
    font-size: 1.5rem;
  }

  .team__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .problems__item {
    flex-direction: column;
    gap: 1rem;
  }

  .problems__number {
    min-width: auto;
  }

  .footer__inner {
    flex-direction: column;
  }

  .footer__links {
    flex-direction: column;
    gap: 0.8rem;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  .hero {
    padding: 6rem 1.2rem 3rem;
  }

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

  .btn {
    text-align: center;
    justify-content: center;
  }
}
