/* ============================================================
   IP100x — Colors & Type
   Source: uploads/index.html (root :root block)
   ============================================================ */

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

:root {
  /* ---------- Palette ---------- */
  --cream:              #FAF7F2;   /* page background, light surfaces */
  --cream-warm:         #F5F0E8;   /* secondary warm surface (compare/calc area) */
  --dark:               #1A1A1A;   /* primary dark surface (hero, dark sections) */
  --dark-alt:           #222222;   /* footer */
  --dark-card:          #2A2A2A;   /* raised dark card */

  --terracotta:         #C45E38;   /* primary accent — the entire brand rests on this */
  --terracotta-hover:   #D46A42;
  --terracotta-muted:   rgba(196,94,56,0.12);

  /* Text — on light */
  --text-primary:       #2C2C2C;
  --text-muted:         #7A7A7A;

  /* Text — on dark */
  --text-light:         rgba(255,255,255,0.6);
  --text-lighter:       rgba(255,255,255,0.4);

  /* Hairline borders */
  --border:             rgba(44,44,44,0.08);
  --border-dark:        rgba(255,255,255,0.06);
  --border-dark-strong: rgba(255,255,255,0.2);

  /* Accent tints (used for glows / radar fills / outlines) */
  --accent-004:         rgba(196,94,56,0.04);
  --accent-006:         rgba(196,94,56,0.06);
  --accent-010:         rgba(196,94,56,0.10);
  --accent-015:         rgba(196,94,56,0.15);
  --accent-020:         rgba(196,94,56,0.20);
  --accent-025:         rgba(196,94,56,0.25);
  --accent-035:         rgba(196,94,56,0.35);

  /* ---------- Typography ---------- */
  --font-display:       'DM Serif Display', Georgia, serif;
  --font-body:          'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ---------- Motion ---------- */
  --ease:               cubic-bezier(0.4, 0, 0.2, 1);

  /* ---------- Layout ---------- */
  --max-w:              1140px;

  /* ---------- Radii ---------- */
  --r-sm:  4px;    /* badges, labels, small chips */
  --r-md:  6px;    /* buttons */
  --r-lg:  12px;   /* stats, counters, inline cards */
  --r-xl:  14px;   /* testimonials, sliders card */
  --r-2xl: 16px;   /* problem cards, product cards, modal */
  --r-full: 50%;

  /* ---------- Elevation ---------- */
  --shadow-nav:     0 1px 24px rgba(0,0,0,0.15);
  --shadow-btn:     0 6px 24px rgba(196,94,56,0.25);
  --shadow-card:    0 2px 6px rgba(196,94,56,0.3);
  --shadow-product: 0 8px 32px rgba(196,94,56,0.18);
}

/* ============================================================
   Semantic Type Tokens
   ============================================================ */

/* Display — editorial serif, low letter-spacing, 1.15–1.2 line height */
.t-display-hero {
  font-family: var(--font-display);
  font-weight: 400;                /* DM Serif Display only ships regular */
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  color: #fff;
}
.t-display-xl {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.15;
}
.t-display-lg {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
}
.t-display-md {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 1.2;
}
.t-display-sm {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.3;
}

/* Italic emphasis inside display type uses terracotta, not italic */
.t-emph {
  color: var(--terracotta);
  font-style: normal;
}

/* Eyebrows / section labels — uppercase, wide tracking, terracotta */
.t-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.t-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.t-kicker {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Body copy — light weight, generous line-height */
.t-lead {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
}
.t-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
}
.t-body-sm {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.65;
}
.t-caption {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
}
.t-micro {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Italic sub-line accent (hero secondary line) */
.t-sub-italic {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1.7;
}

/* Stat / counter numerals */
.t-stat {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--terracotta);
  line-height: 1;
}
.t-stat-lg {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--terracotta);
  line-height: 1;
}

/* Uppercase brand lockup */
.t-brandmark {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
