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

:root {
  --ink: #0c0c14;
  --paper: #f8f6f1;
  --white: #ffffff;
  --red: #c8392b;
  --red-dark: #9e2d22;
  --muted: #7a7a8a;
  --border: #e4e0d8;
  --card: #ffffff;
  --navy: #111827;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(12, 12, 20, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #f8f6f1;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-logo span { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(248,246,241,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover { color: #f8f6f1; }

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 8px 20px;
  font-weight: 500 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--red-dark) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(200,57,43,0.03) 40px,
    rgba(200,57,43,0.03) 41px
  );
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  color: #f8f6f1;
  max-width: 700px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(248,246,241,0.6);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: white;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--red-dark); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(248,246,241,0.2);
  color: rgba(248,246,241,0.8);
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: rgba(248,246,241,0.5);
  color: #f8f6f1;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat .number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f8f6f1;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(248,246,241,0.4);
  margin-top: 2px;
}

/* ── WORKLOGR HERO MOCKUP — paste into style.css ── */

.hero-right {
  position: absolute;
  right: 85px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 1100px) {
  .hero-right { display: none; }
}

.wl-monitor {
  width: 520px;
  border: 5px solid rgba(255,255,255,0.25);
  box-shadow: 10 130px 280px rgba(0,0,0,0.6);
  background: transparent;
  font-family: 'Share Tech Mono', monospace;
}

.wl-appbar {
  background: rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wl-appbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wl-winbtns {
  display: flex;
  gap: 5px;
}

.wl-winbtn {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  flex-shrink: 0;
}

.wl-winbtns {
  display: none;
}

.wl-appname {
  font-family: 'Share Tech Mono', monospace;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

.wl-appsession {
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.wl-screen {
  background: #0d0d0d;
  height: 360px;
  overflow: hidden;
  position: relative;
}

.wl-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.015) 3px,
    rgba(255,255,255,0.015) 4px
  );
  pointer-events: none;
  z-index: 10;
}

.wl-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.wl-tab {
  padding: 7px 16px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  cursor: default;
  transition: all 0.15s;
}

.wl-tab.active {
  color: rgba(255,255,255,0.88);
  border-bottom-color: rgba(255,255,255,0.65);
}

.wl-body {
  padding: 13px 15px;
}

.wl-sessionbar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 6px 10px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  margin-bottom: 11px;
}

.wl-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}

.wl-labelrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.wl-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 12px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  width: 200px;
  white-space: nowrap;
}

.wl-genbtn {
  width: 100%;
  padding: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.85);
  font-family: 'Share Tech Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 11px;
  transition: background 0.15s;
}

.wl-genbtn.busy {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.4);
}

.wl-output {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  height: 200px;
  padding: 10px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  position: relative;

  overflow: hidden;    /* THIS is the key */
}

.wl-cursor {
  display: inline-block;
  width: 6px;
  height: 10px;
  background: rgba(255,255,255,0.65);
  animation: wlblink 0.85s step-end infinite;
  vertical-align: middle;
  margin-left: 1px;
}

@keyframes wlblink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.wl-oline { display: block; margin-bottom: 1px; }
.wl-oline.head { color: rgba(255,255,255,0.82); }
.wl-oline.item { color: rgba(255,255,255,0.5); }
.wl-oline.gap  { height: 6px; display: block; }

.wl-panel { display: none; }
.wl-panel.active { display: block; }

.wl-history-item {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  padding: 9px 10px;
  margin-bottom: 7px;
}

.wl-history-ts {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  margin-bottom: 3px;
}

.wl-history-txt {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.55;
}

.wl-timelog-line {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  line-height: 2;
  display: block;
}

.wl-timelog-muted { color: rgba(255,255,255,0.28); }

.wl-mouse {
  position: absolute;
  width: 20px;
  height: 28px;
  pointer-events: none;
  z-index: 20;
  transition: top 0.42s cubic-bezier(0.4,0,0.2,1),
              left 0.42s cubic-bezier(0.4,0,0.2,1),
              transform 0.1s;
}

.wl-mouse svg { width: 20px; height: 28px; }

.wl-stand {
  width: 2px;
  height: 20px;
  background: rgba(255,255,255,0.08);
  margin: 0 auto;
}

.wl-base {
  width: 80px;
  height: 5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  margin: 0 auto;
}

/* ── SECTIONS ── */
section { padding: 96px 48px; }

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: var(--border);
}

.step {
  background: var(--white);
  padding: 36px 28px;
  position: relative;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
   color: rgba(200, 57, 43, 0.35);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FEATURES GRID ── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: var(--red); }

.feature-icon {
  width: 40px;
  height: 40px;
  background: #fdf0ef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: nowrap; /* 🔥 forces single row */
  overflow-x: auto;  /* prevents breaking on smaller screens */
  padding-bottom: 8px;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s;
}

.pricing-card.featured {
  border-color: var(--red);
  background: var(--navy);
  color: #f8f6f1;
}

.pricing-card.featured .pricing-price { color: #f8f6f1; }
.pricing-card.featured .pricing-desc { color: rgba(248,246,241,0.5); }
.pricing-card.featured .pricing-feature { color: rgba(248,246,241,0.8); border-color: rgba(255,255,255,0.08); }
.pricing-card.featured h3 { color: #f8f6f1; }

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
}

.pricing-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-feature {
  font-size: 0.88rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-feature::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

.btn-pricing {
  display: block;
  text-align: center;
  padding: 13px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-pricing-dark {
  background: var(--ink);
  color: white;
}

.btn-pricing-dark:hover { background: var(--red); }

.btn-pricing-outline {
  border: 1.5px solid var(--border);
  color: var(--ink);
}

.btn-pricing-outline:hover { border-color: var(--ink); }

.btn-pricing-red {
  background: var(--red);
  color: white;
}

.btn-pricing-red:hover { background: var(--red-dark); }

.pricing-grid {
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: center;
  gap: 20px;
  padding-bottom: 8px;
}

/* makes cards behave properly in one row */
.pricing-card {
  flex: 0 0 260px;
}

@media (max-width: 900px) {
  .pricing-grid {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .pricing-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


/* ── PRICING GRID LAYOUT ── */
.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;

  flex-wrap: nowrap;        /* single row */
  overflow-x: auto;         /* allow horizontal scroll */
  padding: 10px 24px 16px;  /* breathing room */
  margin: 0 -24px;          /* prevents edge cut-off */

  scroll-padding: 24px;
  -webkit-overflow-scrolling: touch;
}

/* ── PRICING CARD SIZING ── */
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s;

  flex: 0 0 260px;  /* fixed width for clean row */
  margin-top: 12px; /* prevents top clipping */
}

/* ── FEATURED CARD ── */
.pricing-card.featured {
  border-color: var(--red);
  background: var(--navy);
  color: #f8f6f1;
}

.pricing-card.featured .pricing-price { color: #f8f6f1; }
.pricing-card.featured .pricing-desc { color: rgba(248,246,241,0.5); }
.pricing-card.featured .pricing-feature { color: rgba(248,246,241,0.8); border-color: rgba(255,255,255,0.08); }
.pricing-card.featured h3 { color: #f8f6f1; }

/* ── BADGE ── */
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
}

/* ── TEXT STYLES ── */
.pricing-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 28px;
}

/* ── FEATURES ── */
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-feature {
  font-size: 0.88rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-feature::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn-pricing {
  display: block;
  text-align: center;
  padding: 13px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-pricing-dark { background: var(--ink); color: white; }
.btn-pricing-dark:hover { background: var(--red); }

.btn-pricing-outline {
  border: 1.5px solid var(--border);
  color: var(--ink);
}
.btn-pricing-outline:hover { border-color: var(--ink); }

.btn-pricing-red { background: var(--red); color: white; }
.btn-pricing-red:hover { background: var(--red-dark); }

/* ── SAFETY FIX (NO GLOBAL CLIPPING) ── */
.container {
  overflow: visible;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .pricing-grid {
    flex-wrap: wrap;
    overflow-x: visible;
    margin: 0;
    padding: 0;
  }

  .pricing-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


/* ── FIX: REMOVE LEFT CUT-OFF ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* ── FIX: CARD SIZE STABILITY ── */
.pricing-card {
  width: 100%;
  margin-top: 0;
}

/* ── FIX: PRICE TYPOGRAPHY (reduce size) ── */
.pricing-price {
  font-size: 1.8rem;  /* reduced from 2.2rem */
  font-weight: 750;
  line-height: 1;
  margin-bottom: 4px;
}

/* ── OPTIONAL: slightly reduce card density (makes them feel less tall) ── */
.pricing-feature {
  font-size: 0.85rem;
  padding: 8px 0;
}

/* ── SAFETY ── */
.container {
  overflow: visible;
}


/* ── TESTIMONIALS ── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-quote::before { content: '\201C'; color: var(--red); font-size: 2rem; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 500;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── DARK SECTION ── */
.section-dark {
  background: var(--navy);
  color: #f8f6f1;
}

.section-dark .section-sub { color: rgba(248,246,241,0.5); }
.section-dark .section-title { color: #f8f6f1; }

.tracking-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 48px 56px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.tracking-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 28px;
}

.tracking-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.tracking-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
}

.check {
  color: var(--red);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.tracking-wrapper {
  width: 100%;
  max-width: none;

  margin: 0;
  padding: 64px 96px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;

  background: var(--white);
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);

  box-shadow: 0 12px 40px rgba(0,0,0,0.03);
}

/* Each column block */
.tracking-wrapper > div {
  background: var(--white);
  padding: 24px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .tracking-wrapper {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 32px;
  }
}

.tracking-title {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.tracking-title.red {
  color: var(--red);
}

.tracking-title.muted {
  color: var(--muted);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(248,246,241,0.5);
  padding: 48px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand .name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #f8f6f1;
  margin-bottom: 6px;
}

.footer-brand .name span { color: var(--red); }

.footer-brand p {
  font-size: 0.8rem;
  max-width: 220px;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.3);
  margin-bottom: 12px;
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  color: rgba(248,246,241,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: #f8f6f1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 48px 80px;
}

.legal-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-content .updated {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 40px 0 12px;
}

.legal-content p { margin-bottom: 16px; color: var(--ink); }
.legal-content ul { margin: 0 0 16px 24px; }
.legal-content li { margin-bottom: 8px; font-size: 0.95rem; }

/* ── ABOUT ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 16px;
}

.team-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card p { font-size: 0.82rem; color: var(--muted); }

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 36px;
  height: 36px;
  background: #fdf0ef;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item-text .label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-item-text p { font-size: 0.9rem; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--ink); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.tm {
  font-size: 0.6em;
  vertical-align: super;
  letter-spacing: 0.02em;
}


/* ── UTILITIES ── */
.container { max-width: 1160px; margin: 0 auto; }
.text-red { color: var(--red); }
.text-muted { color: var(--muted); }

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 64px 24px; }
  .hero { padding: 100px 24px 64px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .legal-content { padding: 100px 24px 60px; }
  footer { padding: 40px 24px; }
}
