@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@500;600;700;800&family=Red+Hat+Text:wght@400;500;600;700&display=swap');

/* =============================================
   CUSTOM PROPERTIES
   ============================================= */
:root {
  --thi-purple: #6C3DE8;
  --thi-indigo: #4F46E5;
  --thi-violet: #7C3AED;
  --thi-rose: #E8468A;
  --thi-amber: #F59E0B;
  --thi-teal: #0EA5E9;

  --thi-grad-primary: linear-gradient(135deg, #6C3DE8 0%, #E8468A 100%);
  --thi-grad-secondary: linear-gradient(135deg, #4F46E5 0%, #0EA5E9 100%);
  --thi-grad-warm: linear-gradient(135deg, #E8468A 0%, #F59E0B 100%);
  --thi-grad-cool: linear-gradient(135deg, #6C3DE8 0%, #0EA5E9 60%, #E8468A 100%);
  --thi-grad-bg: linear-gradient(160deg, #0f0a1e 0%, #1a0f35 25%, #0d1b3e 55%, #1a0a2e 80%, #0f0a1e 100%);
  --thi-grad-section: linear-gradient(180deg, #0f0a1e 0%, #130d2a 50%, #0f1628 100%);

  --thi-bg-deep: #0a0618;
  --thi-bg-dark: #0f0a1e;
  --thi-bg-mid: #160e2d;
  --thi-surface: rgba(255,255,255,0.04);
  --thi-surface-hover: rgba(255,255,255,0.07);
  --thi-border: rgba(255,255,255,0.08);
  --thi-border-light: rgba(255,255,255,0.12);

  --thi-text-primary: #f0ecff;
  --thi-text-secondary: #b8aee0;
  --thi-text-muted: #7a6ea8;
  --thi-text-on-grad: #ffffff;

  --thi-shadow-sm: 0 2px 8px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --thi-shadow-md: 0 8px 24px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.05);
  --thi-shadow-lg: 0 20px 60px rgba(0,0,0,0.5), 0 8px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
  --thi-shadow-glow: 0 0 40px rgba(108,61,232,0.3), 0 8px 32px rgba(0,0,0,0.5);
  --thi-shadow-rose-glow: 0 0 40px rgba(232,70,138,0.25), 0 8px 32px rgba(0,0,0,0.4);

  --thi-radius-sm: 8px;
  --thi-radius-md: 16px;
  --thi-radius-lg: 24px;
  --thi-radius-xl: 32px;

  --thi-space-xs: 8px;
  --thi-space-sm: 16px;
  --thi-space-md: 24px;
  --thi-space-lg: 40px;
  --thi-space-xl: 64px;
  --thi-space-2xl: 96px;
  --thi-space-3xl: 128px;

  --thi-nav-height: 72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Red Hat Text', sans-serif;
  background-color: var(--thi-bg-deep);
  color: var(--thi-text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a { color: inherit; text-decoration: none; transition: all 0.25s ease; }

ul { list-style: none; }

/* =============================================
   NAVIGATION
   ============================================= */
.thi-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--thi-nav-height);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid transparent;
}

.thi-nav.thi-nav-scrolled {
  background: rgba(10, 6, 24, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.thi-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--thi-space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--thi-space-md);
}

.thi-logo {
  display: flex;
  align-items: center;
  gap: var(--thi-space-xs);
  text-decoration: none;
  flex-shrink: 0;
}

.thi-logo-img { width: 36px; height: 36px; }

.thi-logo-text {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--thi-text-primary);
  letter-spacing: -0.02em;
}

.thi-nav-links {
  display: none;
  align-items: center;
  gap: var(--thi-space-xs);
}

.thi-nav-link {
  font-family: 'Red Hat Text', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--thi-text-secondary);
  padding: 8px 14px;
  border-radius: var(--thi-radius-sm);
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.thi-nav-link:hover,
.thi-nav-link.thi-nav-active {
  color: var(--thi-text-primary);
  background: var(--thi-surface);
}

.thi-nav-cta {
  background: var(--thi-grad-primary);
  color: white !important;
  padding: 8px 20px;
  border-radius: var(--thi-radius-md);
  font-weight: 600;
  box-shadow: var(--thi-shadow-glow);
}

.thi-nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 0 50px rgba(108,61,232,0.4), 0 8px 32px rgba(0,0,0,0.5);
  background: var(--thi-grad-primary);
}

.thi-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--thi-radius-sm);
  transition: background 0.2s ease;
}

.thi-hamburger:hover { background: var(--thi-surface); }

.thi-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--thi-text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* =============================================
   MOBILE MENU - DIAGONAL CLIP-PATH WIPE
   ============================================= */
.thi-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: linear-gradient(160deg, #1a0f35 0%, #0d1b3e 50%, #1a0a2e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: polygon(100% 0%, 100% 0%, 100% 0%, 100% 0%);
  transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}

.thi-mobile-menu.thi-menu-open {
  clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 100% 100%);
  pointer-events: all;
}

.thi-mobile-close {
  position: absolute;
  top: var(--thi-space-md);
  right: var(--thi-space-md);
  background: var(--thi-surface);
  border: 1px solid var(--thi-border);
  color: var(--thi-text-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.thi-mobile-close:hover {
  background: var(--thi-surface-hover);
  transform: rotate(90deg);
}

.thi-mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--thi-space-sm);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.35s, transform 0.4s ease 0.35s;
}

.thi-mobile-menu.thi-menu-open .thi-mobile-nav {
  opacity: 1;
  transform: translateY(0);
}

.thi-mobile-link {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--thi-text-secondary);
  padding: 10px 20px;
  border-radius: var(--thi-radius-md);
  transition: color 0.2s ease, background 0.2s ease;
  text-align: center;
}

.thi-mobile-link:hover {
  color: var(--thi-text-primary);
  background: var(--thi-surface);
}

/* =============================================
   HERO SECTION
   ============================================= */
.thi-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--thi-nav-height) var(--thi-space-md) var(--thi-space-2xl);
}

.thi-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--thi-grad-bg);
  z-index: 0;
}

.thi-hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(108,61,232,0.35) 0%, transparent 70%);
  filter: blur(60px);
}

.thi-hero-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(232,70,138,0.3) 0%, transparent 70%);
  filter: blur(60px);
}

.thi-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

.thi-hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108,61,232,0.4) 0%, transparent 70%);
  top: 10%;
  right: 5%;
}

.thi-hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14,165,233,0.3) 0%, transparent 70%);
  bottom: 15%;
  left: 5%;
}

.thi-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 0 var(--thi-space-sm);
}

.thi-hero-eyebrow {
  font-family: 'Red Hat Text', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--thi-text-muted);
  margin-bottom: var(--thi-space-md);
  display: block;
}

.thi-hero-headline {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--thi-text-primary);
  margin-bottom: var(--thi-space-md);
}

.thi-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--thi-text-secondary);
  max-width: 600px;
  margin: 0 auto var(--thi-space-lg);
  line-height: 1.7;
}

.thi-hero-actions {
  display: flex;
  gap: var(--thi-space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.thi-hero-scroll-hint {
  position: absolute;
  bottom: var(--thi-space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--thi-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: thi-bounce 2s infinite;
}

@keyframes thi-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   GRADIENT TEXT
   ============================================= */
.thi-gradient-text {
  background: var(--thi-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   BUTTONS
   ============================================= */
.thi-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Red Hat Text', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--thi-radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  min-height: 44px;
  white-space: nowrap;
}

.thi-btn-primary {
  background: var(--thi-grad-primary);
  color: white;
  box-shadow: var(--thi-shadow-glow);
}

.thi-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(108,61,232,0.45), 0 12px 40px rgba(0,0,0,0.5);
  opacity: 0.95;
}

.thi-btn-ghost {
  background: transparent;
  color: var(--thi-text-primary);
  border: 1px solid var(--thi-border-light);
}

.thi-btn-ghost:hover {
  background: var(--thi-surface);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.thi-btn-white {
  background: white;
  color: #1a0f35;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.thi-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.thi-btn-outline {
  background: transparent;
  color: var(--thi-text-primary);
  border: 1.5px solid rgba(108,61,232,0.6);
}

.thi-btn-outline:hover {
  background: rgba(108,61,232,0.1);
  border-color: var(--thi-purple);
  transform: translateY(-1px);
}

/* =============================================
   LABEL / EYEBROW
   ============================================= */
.thi-label {
  display: inline-block;
  font-family: 'Red Hat Text', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--thi-purple);
  background: rgba(108,61,232,0.12);
  border: 1px solid rgba(108,61,232,0.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: var(--thi-space-sm);
}

.thi-label-light {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

/* =============================================
   PAGE BACKGROUND
   ============================================= */
.thi-page-bg {
  background: var(--thi-grad-section);
  position: relative;
  padding-bottom: var(--thi-space-xl);
}

.thi-page-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--thi-grad-primary);
  opacity: 0.3;
}

/* =============================================
   SECTION WRAPPER
   ============================================= */
.thi-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--thi-space-xl) var(--thi-space-md) 0;
}

.thi-section:last-child { padding-bottom: var(--thi-space-xl); }

/* =============================================
   CARD BASE
   ============================================= */
.thi-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--thi-border);
  border-radius: var(--thi-radius-xl);
  padding: var(--thi-space-xl);
  box-shadow: var(--thi-shadow-md);
  position: relative;
  overflow: hidden;
  container-type: inline-size;
  container-name: card;
}

.thi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

/* =============================================
   SECTION HEADING
   ============================================= */
.thi-section-heading {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--thi-text-primary);
  margin-bottom: var(--thi-space-md);
}

/* =============================================
   LINK ARROW
   ============================================= */
.thi-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--thi-purple);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.25s ease, color 0.25s ease;
}

.thi-link-arrow:hover {
  color: var(--thi-rose);
  gap: 12px;
}

/* =============================================
   HERO REFRAME SECTION
   ============================================= */
.thi-reframe-card {
  padding: var(--thi-space-xl);
}

.thi-reframe-card .thi-section-heading { max-width: 520px; }

.thi-reframe-card p {
  color: var(--thi-text-secondary);
  margin-bottom: var(--thi-space-md);
  font-size: 1.05rem;
  max-width: 520px;
}

@container card (min-width: 700px) {
  .thi-reframe-card > :first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--thi-space-xl);
    align-items: center;
  }
}

.thi-reframe-text { flex: 1; }

.thi-reframe-visual { flex: 1; }

.thi-reframe-img-wrap {
  position: relative;
  border-radius: var(--thi-radius-lg);
  overflow: hidden;
}

.thi-reframe-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--thi-radius-lg);
  display: block;
}

.thi-reframe-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--thi-grad-primary);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
}

/* =============================================
   HOW IT WORKS SECTION
   ============================================= */
.thi-how-header {
  margin-bottom: var(--thi-space-lg);
}

.thi-how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--thi-space-md);
}

@container card (min-width: 600px) {
  .thi-how-grid { grid-template-columns: 1fr 1fr; }
}

@container card (min-width: 900px) {
  .thi-how-grid { grid-template-columns: repeat(4, 1fr); }
}

.thi-how-item {
  padding: var(--thi-space-md);
  background: var(--thi-surface);
  border-radius: var(--thi-radius-md);
  border: 1px solid var(--thi-border);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.thi-how-item:hover {
  background: var(--thi-surface-hover);
  border-color: var(--thi-border-light);
  transform: translateY(-3px);
}

.thi-how-icon {
  width: 48px;
  height: 48px;
  background: var(--thi-grad-primary);
  border-radius: var(--thi-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--thi-space-sm);
  font-size: 1.1rem;
  color: white;
  box-shadow: var(--thi-shadow-glow);
}

.thi-how-item h3 {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--thi-text-primary);
  margin-bottom: 8px;
}

.thi-how-item p {
  font-size: 0.9rem;
  color: var(--thi-text-secondary);
  line-height: 1.6;
}

/* =============================================
   PHOTO GRID SECTION
   ============================================= */
.thi-photo-header { margin-bottom: var(--thi-space-lg); }

.thi-photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: var(--thi-space-sm);
}

@container card (min-width: 600px) {
  .thi-photo-grid {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 280px 200px;
  }

  .thi-photo-large { grid-column: 1; grid-row: 1; }
  .thi-photo-tall { grid-column: 2; grid-row: 1 / 3; }
  .thi-photo-square { grid-column: 1; grid-row: 2; }
  .thi-photo-wide { display: none; }
}

@container card (min-width: 900px) {
  .thi-photo-grid {
    grid-template-columns: 2fr 1fr 1.2fr;
    grid-template-rows: 260px 200px;
  }

  .thi-photo-large { grid-column: 1; grid-row: 1; }
  .thi-photo-tall { grid-column: 2; grid-row: 1 / 3; }
  .thi-photo-square { grid-column: 1; grid-row: 2; }
  .thi-photo-wide { display: block; grid-column: 3; grid-row: 1 / 3; }
}

.thi-photo-item {
  border-radius: var(--thi-radius-md);
  overflow: hidden;
  box-shadow: var(--thi-shadow-md);
  min-height: 200px;
}

.thi-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.thi-photo-item:hover .thi-photo-img { transform: scale(1.04); }

/* =============================================
   TOPICS SECTION
   ============================================= */
.thi-topics-intro {
  margin-bottom: var(--thi-space-lg);
  max-width: 640px;
}

.thi-topics-intro p {
  color: var(--thi-text-secondary);
  font-size: 1.05rem;
}

.thi-topics-list {
  display: flex;
  flex-direction: column;
  gap: var(--thi-space-sm);
}

.thi-topic-item {
  display: flex;
  align-items: flex-start;
  gap: var(--thi-space-md);
  padding: var(--thi-space-md);
  background: var(--thi-surface);
  border-radius: var(--thi-radius-md);
  border: 1px solid var(--thi-border);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.thi-topic-item:hover {
  background: var(--thi-surface-hover);
  border-color: rgba(108,61,232,0.3);
  transform: translateX(4px);
}

.thi-topic-item > i {
  font-size: 1.2rem;
  background: var(--thi-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.thi-topic-item h4 {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--thi-text-primary);
  margin-bottom: 4px;
}

.thi-topic-item p {
  font-size: 0.9rem;
  color: var(--thi-text-secondary);
  line-height: 1.6;
}

/* =============================================
   WHO SECTION
   ============================================= */
.thi-who-content {
  display: flex;
  flex-direction: column;
  gap: var(--thi-space-xl);
}

@container card (min-width: 700px) {
  .thi-who-content {
    flex-direction: row;
    align-items: center;
  }
}

.thi-who-text { flex: 1; }

.thi-who-text p {
  color: var(--thi-text-secondary);
  margin-bottom: var(--thi-space-md);
  font-size: 1.05rem;
}

.thi-who-img-wrap {
  flex: 0 0 380px;
  position: relative;
}

.thi-who-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--thi-radius-lg);
  box-shadow: var(--thi-shadow-lg);
}

.thi-who-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--thi-grad-primary);
  color: white;
  padding: var(--thi-space-sm) var(--thi-space-md);
  border-radius: var(--thi-radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--thi-shadow-glow);
  max-width: 280px;
  line-height: 1.4;
}

.thi-who-badge i { font-size: 1.1rem; flex-shrink: 0; }

/* =============================================
   CTA SECTION
   ============================================= */
.thi-cta-card {
  background: var(--thi-grad-primary) !important;
  border-color: transparent !important;
  text-align: center;
  box-shadow: var(--thi-shadow-glow), var(--thi-shadow-lg) !important;
  overflow: hidden;
}

.thi-cta-card::before { display: none; }

.thi-cta-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px;
  right: -50px;
  pointer-events: none;
}

.thi-cta-content { position: relative; z-index: 1; }

.thi-cta-heading {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: white;
  line-height: 1.2;
  margin-bottom: var(--thi-space-sm);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thi-cta-card p {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--thi-space-lg);
  font-size: 1.05rem;
}

/* =============================================
   PAGE HERO (INNER PAGES)
   ============================================= */
.thi-page-hero {
  position: relative;
  padding: calc(var(--thi-nav-height) + var(--thi-space-2xl)) var(--thi-space-md) var(--thi-space-2xl);
  overflow: hidden;
  background: var(--thi-grad-bg);
}

.thi-page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.thi-orb-a {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(108,61,232,0.4) 0%, transparent 70%);
  top: 0;
  right: 10%;
}

.thi-orb-b {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,70,138,0.3) 0%, transparent 70%);
  bottom: 0;
  left: 10%;
}

.thi-page-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.thi-page-hero-title {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--thi-text-primary);
  margin-bottom: var(--thi-space-md);
}

.thi-page-hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--thi-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   WHAT MAKES US DIFFERENT PAGE
   ============================================= */
.thi-diff-intro {
  display: flex;
  flex-direction: column;
  gap: var(--thi-space-xl);
}

@container card (min-width: 700px) {
  .thi-diff-intro {
    flex-direction: row;
    align-items: center;
  }
}

.thi-diff-intro-text { flex: 1; }

.thi-diff-intro-text p {
  color: var(--thi-text-secondary);
  font-size: 1.05rem;
  margin-bottom: var(--thi-space-md);
}

.thi-diff-intro-img { flex: 0 0 360px; }

.thi-rounded-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--thi-radius-lg);
  box-shadow: var(--thi-shadow-lg);
}

.thi-contrasts-grid {
  display: flex;
  flex-direction: column;
  gap: var(--thi-space-sm);
  margin-top: var(--thi-space-lg);
}

.thi-contrast-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--thi-space-sm);
  padding: var(--thi-space-md);
  background: var(--thi-surface);
  border-radius: var(--thi-radius-md);
  border: 1px solid var(--thi-border);
  align-items: center;
}

@container card (min-width: 700px) {
  .thi-contrast-item {
    grid-template-columns: 1fr 40px 1fr;
  }
}

.thi-contrast-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.thi-contrast-other-label {
  background: rgba(255,255,255,0.06);
  color: var(--thi-text-muted);
}

.thi-contrast-us-label {
  background: rgba(108,61,232,0.15);
  color: var(--thi-purple);
}

.thi-contrast-other p {
  color: var(--thi-text-muted);
  font-size: 0.9rem;
}

.thi-contrast-us p {
  color: var(--thi-text-secondary);
  font-size: 0.9rem;
}

.thi-contrast-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thi-purple);
  font-size: 1.1rem;
}

.thi-peer-content {
  display: flex;
  flex-direction: column;
  gap: var(--thi-space-xl);
}

@container card (min-width: 700px) {
  .thi-peer-content {
    flex-direction: row;
    align-items: center;
  }
}

.thi-peer-img-wrap { flex: 0 0 360px; }
.thi-peer-text { flex: 1; }
.thi-peer-text p { color: var(--thi-text-secondary); font-size: 1.05rem; margin-bottom: var(--thi-space-md); }

.thi-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--thi-space-md);
  margin-top: var(--thi-space-lg);
}

@container card (min-width: 600px) {
  .thi-values-grid { grid-template-columns: 1fr 1fr; }
}

.thi-value-item {
  padding: var(--thi-space-md);
  background: var(--thi-surface);
  border-radius: var(--thi-radius-md);
  border: 1px solid var(--thi-border);
  border-left: 3px solid transparent;
  border-image: var(--thi-grad-primary) 1;
  transition: background 0.25s ease, transform 0.25s ease;
}

.thi-value-item:hover {
  background: var(--thi-surface-hover);
  transform: translateY(-2px);
}

.thi-value-num {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  background: var(--thi-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--thi-space-xs);
}

.thi-value-item h3 {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--thi-text-primary);
  margin-bottom: 8px;
}

.thi-value-item p {
  font-size: 0.9rem;
  color: var(--thi-text-secondary);
  line-height: 1.6;
}

/* =============================================
   PROGRAMS PAGE
   ============================================= */
.thi-prog-overview {
  display: flex;
  flex-direction: column;
  gap: var(--thi-space-xl);
}

@container card (min-width: 700px) {
  .thi-prog-overview {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.thi-prog-overview > div:first-child { flex: 1; }
.thi-prog-overview > div:first-child p { color: var(--thi-text-secondary); font-size: 1.05rem; }

.thi-prog-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--thi-space-sm);
  flex: 0 0 auto;
}

.thi-prog-highlight-item {
  display: flex;
  align-items: center;
  gap: var(--thi-space-sm);
  padding: var(--thi-space-sm) var(--thi-space-md);
  background: var(--thi-surface);
  border-radius: var(--thi-radius-md);
  border: 1px solid var(--thi-border);
  min-width: 220px;
}

.thi-prog-highlight-item > i {
  font-size: 1.3rem;
  background: var(--thi-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thi-prog-highlight-item strong {
  display: block;
  color: var(--thi-text-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.thi-prog-highlight-item span {
  font-size: 0.8rem;
  color: var(--thi-text-muted);
}

.thi-programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--thi-space-md);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--thi-space-xl) var(--thi-space-md) 0;
}

@media (min-width: 800px) {
  .thi-programs-grid { grid-template-columns: 1fr 1fr; }
}

.thi-prog-card {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.thi-prog-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--thi-grad-primary);
}

.thi-prog-card-accent-adv {
  background: var(--thi-grad-secondary);
}

.thi-prog-card-inner {
  padding: var(--thi-space-xl);
}

.thi-prog-track {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--thi-text-muted);
  margin-bottom: var(--thi-space-xs);
}

.thi-prog-name {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  color: var(--thi-text-primary);
  margin-bottom: var(--thi-space-xs);
}

.thi-prog-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--thi-purple);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: var(--thi-space-md);
}

.thi-prog-desc {
  color: var(--thi-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--thi-space-md);
}

.thi-prog-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--thi-space-md);
}

.thi-prog-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--thi-text-secondary);
}

.thi-prog-features li i {
  color: var(--thi-purple);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.thi-prog-themes h4 {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--thi-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--thi-space-xs);
}

.thi-theme-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--thi-space-lg);
}

.thi-theme-tags span {
  background: var(--thi-surface);
  border: 1px solid var(--thi-border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.8rem;
  color: var(--thi-text-secondary);
}

.thi-prog-cta { width: 100%; justify-content: center; }

.thi-org-content {
  display: flex;
  flex-direction: column;
  gap: var(--thi-space-xl);
}

@container card (min-width: 700px) {
  .thi-org-content {
    flex-direction: row;
    align-items: center;
  }
}

.thi-org-img-wrap { flex: 0 0 360px; }
.thi-org-text { flex: 1; }
.thi-org-text p { color: var(--thi-text-secondary); font-size: 1.05rem; margin-bottom: var(--thi-space-md); }

.thi-faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--thi-space-xs);
  margin-top: var(--thi-space-lg);
}

.thi-faq-item {
  background: var(--thi-surface);
  border: 1px solid var(--thi-border);
  border-radius: var(--thi-radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.thi-faq-item[open] { border-color: rgba(108,61,232,0.4); }

.thi-faq-item summary {
  padding: var(--thi-space-md);
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--thi-text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.thi-faq-item summary::-webkit-details-marker { display: none; }

.thi-faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--thi-purple);
  transition: transform 0.3s ease;
  line-height: 1;
}

.thi-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.thi-faq-item p {
  padding: 0 var(--thi-space-md) var(--thi-space-md);
  font-size: 0.95rem;
  color: var(--thi-text-secondary);
  line-height: 1.7;
}

/* =============================================
   OUR METHOD PAGE
   ============================================= */
.thi-method-intro {
  display: flex;
  flex-direction: column;
  gap: var(--thi-space-xl);
}

@container card (min-width: 700px) {
  .thi-method-intro {
    flex-direction: row;
    align-items: center;
  }
}

.thi-method-intro-text { flex: 1; }
.thi-method-intro-text p { color: var(--thi-text-secondary); font-size: 1.05rem; margin-bottom: var(--thi-space-md); }
.thi-method-intro-img { flex: 0 0 380px; }

.thi-session-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--thi-space-lg);
  position: relative;
}

.thi-session-steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--thi-purple) 0%, var(--thi-rose) 100%);
  opacity: 0.3;
}

.thi-step {
  display: flex;
  gap: var(--thi-space-md);
  padding-bottom: var(--thi-space-lg);
  position: relative;
}

.thi-step:last-child { padding-bottom: 0; }

.thi-step-num {
  width: 56px;
  height: 56px;
  background: var(--thi-grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
  box-shadow: var(--thi-shadow-glow);
  position: relative;
  z-index: 1;
}

.thi-step-content { flex: 1; padding-top: 10px; }

.thi-step-content h3 {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--thi-text-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--thi-space-xs);
}

.thi-step-time {
  font-family: 'Red Hat Text', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--thi-purple);
  background: rgba(108,61,232,0.1);
  padding: 2px 10px;
  border-radius: 100px;
}

.thi-step-content p {
  font-size: 0.95rem;
  color: var(--thi-text-secondary);
  line-height: 1.7;
}

.thi-facilitation-content {
  display: flex;
  flex-direction: column;
  gap: var(--thi-space-xl);
}

@container card (min-width: 700px) {
  .thi-facilitation-content {
    flex-direction: row;
    align-items: center;
  }
}

.thi-facilitation-img { flex: 0 0 360px; }
.thi-facilitation-text { flex: 1; }
.thi-facilitation-text p { color: var(--thi-text-secondary); font-size: 1.05rem; margin-bottom: var(--thi-space-md); }

.thi-between-header { margin-bottom: var(--thi-space-lg); }

.thi-between-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--thi-space-md);
}

@container card (min-width: 700px) {
  .thi-between-grid { grid-template-columns: repeat(3, 1fr); }
}

.thi-between-item {
  padding: var(--thi-space-md);
  background: var(--thi-surface);
  border-radius: var(--thi-radius-md);
  border: 1px solid var(--thi-border);
  text-align: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.thi-between-item:hover {
  background: var(--thi-surface-hover);
  transform: translateY(-3px);
}

.thi-between-icon {
  width: 52px;
  height: 52px;
  background: var(--thi-grad-secondary);
  border-radius: var(--thi-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--thi-space-sm);
  font-size: 1.1rem;
  color: white;
  box-shadow: 0 4px 20px rgba(79,70,229,0.3);
}

.thi-between-item h3 {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--thi-text-primary);
  margin-bottom: 8px;
}

.thi-between-item p {
  font-size: 0.9rem;
  color: var(--thi-text-secondary);
  line-height: 1.6;
}

.thi-progression-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--thi-space-lg);
  position: relative;
}

.thi-progression-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--thi-purple) 0%, var(--thi-rose) 100%);
  opacity: 0.3;
}

.thi-timeline-item {
  display: flex;
  gap: var(--thi-space-md);
  padding-bottom: var(--thi-space-lg);
  position: relative;
}

.thi-timeline-item:last-child { padding-bottom: 0; }

.thi-timeline-marker {
  width: 24px;
  height: 24px;
  background: var(--thi-grad-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 12px rgba(108,61,232,0.5);
}

.thi-timeline-marker-end {
  background: var(--thi-grad-warm);
  box-shadow: 0 0 12px rgba(232,70,138,0.5);
}

.thi-timeline-content h4 {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--thi-text-primary);
  margin-bottom: 6px;
}

.thi-timeline-content p {
  font-size: 0.9rem;
  color: var(--thi-text-secondary);
  line-height: 1.7;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.thi-contact-main { position: relative; }

.thi-contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.thi-contact-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108,61,232,0.3) 0%, transparent 70%);
  top: 0;
  right: 0;
}

.thi-contact-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,70,138,0.25) 0%, transparent 70%);
  bottom: 10%;
  left: 0;
}

.thi-contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--thi-nav-height) + var(--thi-space-xl)) var(--thi-space-md) var(--thi-space-2xl);
  position: relative;
  z-index: 1;
}

.thi-contact-header {
  text-align: center;
  margin-bottom: var(--thi-space-xl);
}

.thi-contact-title {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--thi-text-primary);
  margin-bottom: var(--thi-space-sm);
}

.thi-contact-subtitle {
  color: var(--thi-text-secondary);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.thi-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--thi-space-md);
  margin-bottom: var(--thi-space-md);
}

@media (min-width: 900px) {
  .thi-contact-grid { grid-template-columns: 1fr 340px; }
}

.thi-form-card { padding: var(--thi-space-xl); }

.thi-form-group {
  margin-bottom: var(--thi-space-md);
}

.thi-form-label {
  display: block;
  font-family: 'Red Hat Text', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--thi-text-primary);
  margin-bottom: 8px;
}

.thi-form-input,
.thi-form-textarea {
  width: 100%;
  background: var(--thi-surface);
  border: 1.5px solid var(--thi-border);
  border-radius: var(--thi-radius-md);
  padding: 14px 16px;
  font-family: 'Red Hat Text', sans-serif;
  font-size: 0.95rem;
  color: var(--thi-text-primary);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  -webkit-appearance: none;
}

.thi-form-input::placeholder,
.thi-form-textarea::placeholder {
  color: var(--thi-text-muted);
}

.thi-form-input:focus,
.thi-form-textarea:focus {
  border-color: var(--thi-purple);
  background: rgba(108,61,232,0.05);
  box-shadow: 0 0 0 3px rgba(108,61,232,0.15);
}

.thi-form-textarea { resize: vertical; min-height: 140px; }

.thi-form-helper {
  display: block;
  font-size: 0.8rem;
  color: var(--thi-text-muted);
  margin-top: 6px;
  line-height: 1.5;
}

.thi-form-checkbox-group { display: flex; flex-direction: column; }

.thi-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--thi-text-secondary);
  line-height: 1.5;
}

.thi-checkbox { position: absolute; opacity: 0; pointer-events: none; }

.thi-checkbox-custom {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--thi-border-light);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--thi-surface);
  transition: all 0.2s ease;
  position: relative;
}

.thi-checkbox:checked + .thi-checkbox-custom {
  background: var(--thi-grad-primary);
  border-color: transparent;
}

.thi-checkbox:checked + .thi-checkbox-custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.thi-form-link {
  color: var(--thi-purple);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.thi-form-link:hover { color: var(--thi-rose); }

.thi-form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  margin-top: var(--thi-space-xs);
}

.thi-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--thi-space-md);
}

.thi-contact-info-card,
.thi-hours-card {
  padding: var(--thi-space-md);
}

.thi-contact-info-card h3,
.thi-hours-card h3 {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--thi-text-primary);
  margin-bottom: var(--thi-space-md);
  display: flex;
  align-items: center;
  gap: 8px;
}

.thi-hours-card h3 i { color: var(--thi-purple); }

.thi-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--thi-space-sm);
  margin-bottom: var(--thi-space-sm);
}

.thi-contact-detail:last-child { margin-bottom: 0; }

.thi-contact-detail > i {
  color: var(--thi-purple);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.thi-contact-detail strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--thi-text-muted);
  margin-bottom: 3px;
}

.thi-contact-detail p,
.thi-contact-detail a {
  font-size: 0.9rem;
  color: var(--thi-text-secondary);
  line-height: 1.5;
  transition: color 0.2s ease;
}

.thi-contact-detail a:hover { color: var(--thi-purple); }

.thi-hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.thi-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--thi-text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid var(--thi-border);
}

.thi-hours-row:last-child { border-bottom: none; }

.thi-hours-closed { color: var(--thi-text-muted); }

.thi-hours-note {
  font-size: 0.8rem;
  color: var(--thi-text-muted);
  margin-top: var(--thi-space-sm);
  line-height: 1.5;
  font-style: italic;
}

.thi-map-card {
  padding: 0;
  overflow: hidden;
  border-radius: var(--thi-radius-xl);
}

.thi-map-card iframe {
  display: block;
  border-radius: var(--thi-radius-xl);
  filter: invert(90%) hue-rotate(180deg) saturate(0.7);
}

/* =============================================
   THANKS PAGE
   ============================================= */
.thi-thanks-main { min-height: 100vh; }

.thi-thanks-bg {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.thi-thanks-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.thi-thanks-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(108,61,232,0.35) 0%, transparent 70%);
  top: 10%;
  right: 10%;
}

.thi-thanks-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(232,70,138,0.3) 0%, transparent 70%);
  bottom: 10%;
  left: 10%;
}

.thi-thanks-center {
  padding: calc(var(--thi-nav-height) + var(--thi-space-xl)) var(--thi-space-md) var(--thi-space-xl);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.thi-thanks-card {
  text-align: center;
  padding: var(--thi-space-2xl) var(--thi-space-xl);
  box-shadow: var(--thi-shadow-lg);
}

.thi-thanks-icon {
  font-size: 3.5rem;
  background: var(--thi-grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--thi-space-md);
}

.thi-thanks-heading {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--thi-text-primary);
  margin-bottom: var(--thi-space-md);
}

.thi-thanks-text {
  color: var(--thi-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--thi-space-sm);
}

.thi-thanks-actions {
  display: flex;
  gap: var(--thi-space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--thi-space-lg);
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.thi-legal-main { min-height: 100vh; }

.thi-legal-header {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(var(--thi-nav-height) + var(--thi-space-xl)) var(--thi-space-md) var(--thi-space-lg);
  text-align: center;
}

.thi-legal-title {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--thi-text-primary);
  margin-bottom: var(--thi-space-xs);
}

.thi-legal-date {
  color: var(--thi-text-muted);
  font-size: 0.9rem;
}

.thi-legal-cards {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--thi-space-md) var(--thi-space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--thi-space-md);
}

.thi-legal-card {
  padding: var(--thi-space-lg);
}

.thi-legal-card h2 {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--thi-text-primary);
  margin-bottom: var(--thi-space-md);
  padding-bottom: var(--thi-space-xs);
  border-bottom: 1px solid var(--thi-border);
}

.thi-legal-card p {
  color: var(--thi-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: var(--thi-space-sm);
}

.thi-legal-card p:last-child { margin-bottom: 0; }

.thi-legal-card strong { color: var(--thi-text-primary); font-weight: 600; }

/* =============================================
   FOOTER
   ============================================= */
.thi-footer {
  background: var(--thi-bg-deep);
  border-top: 1px solid var(--thi-border);
  padding: var(--thi-space-2xl) 0 0;
  margin-top: auto;
}

.thi-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--thi-space-md) var(--thi-space-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--thi-space-xl);
}

@media (min-width: 768px) {
  .thi-footer-inner { grid-template-columns: 1fr 1fr; }
}

.thi-footer-logo { width: 40px; height: 40px; margin-bottom: var(--thi-space-sm); }

.thi-footer-tagline {
  color: var(--thi-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--thi-space-sm);
  max-width: 340px;
}

.thi-footer-address,
.thi-footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--thi-text-muted);
  font-size: 0.85rem;
  margin-bottom: 6px;
  line-height: 1.5;
}

.thi-footer-address i,
.thi-footer-contact i {
  color: var(--thi-purple);
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.thi-footer-contact a {
  color: var(--thi-text-muted);
  transition: color 0.2s ease;
}

.thi-footer-contact a:hover { color: var(--thi-purple); }

.thi-footer-links {
  display: flex;
  gap: var(--thi-space-xl);
  flex-wrap: wrap;
}

.thi-footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.thi-footer-col h4 {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--thi-text-muted);
  margin-bottom: 4px;
}

.thi-footer-col a {
  color: var(--thi-text-muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
  padding: 2px 0;
}

.thi-footer-col a:hover { color: var(--thi-text-primary); }

.thi-footer-bottom {
  border-top: 1px solid var(--thi-border);
  padding: var(--thi-space-md);
  text-align: center;
}

.thi-footer-bottom p {
  color: var(--thi-text-muted);
  font-size: 0.8rem;
}

/* =============================================
   COOKIE CONSENT
   ============================================= */
.thi-cookie-modal {
  position: fixed;
  bottom: var(--thi-space-md);
  left: var(--thi-space-md);
  z-index: 9999;
  background: rgba(22, 14, 45, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--thi-border-light);
  border-radius: var(--thi-radius-lg);
  padding: var(--thi-space-md);
  max-width: 360px;
  width: calc(100vw - var(--thi-space-lg));
  box-shadow: var(--thi-shadow-lg), 0 0 30px rgba(108,61,232,0.15);
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.thi-cookie-modal.thi-cookie-hidden {
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}

.thi-cookie-header {
  margin-bottom: var(--thi-space-xs);
}

.thi-cookie-title {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--thi-text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.thi-cookie-title i { color: var(--thi-amber); }

.thi-cookie-text {
  font-size: 0.8rem;
  color: var(--thi-text-secondary);
  line-height: 1.5;
  margin-bottom: var(--thi-space-sm);
}

.thi-cookie-expandable {
  background: var(--thi-surface);
  border-radius: var(--thi-radius-sm);
  padding: var(--thi-space-sm);
  margin-bottom: var(--thi-space-sm);
  border: 1px solid var(--thi-border);
}

.thi-cookie-category {
  margin-bottom: var(--thi-space-xs);
}

.thi-cookie-category:last-child { margin-bottom: 0; }

.thi-cookie-category label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--thi-text-primary);
  cursor: pointer;
  margin-bottom: 3px;
}

.thi-cookie-required {
  font-size: 0.65rem;
  background: rgba(108,61,232,0.2);
  color: var(--thi-purple);
  padding: 1px 6px;
  border-radius: 100px;
}

.thi-cookie-category p {
  font-size: 0.75rem;
  color: var(--thi-text-muted);
  line-height: 1.4;
  padding-left: 24px;
}

.thi-cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.thi-cookie-btn {
  padding: 10px 16px;
  border-radius: var(--thi-radius-sm);
  font-family: 'Red Hat Text', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  min-height: 44px;
}

.thi-cookie-accept {
  background: var(--thi-grad-primary);
  color: white;
  box-shadow: 0 2px 12px rgba(108,61,232,0.3);
}

.thi-cookie-accept:hover { opacity: 0.9; transform: translateY(-1px); }

.thi-cookie-customize {
  background: var(--thi-surface);
  color: var(--thi-text-secondary);
  border: 1px solid var(--thi-border);
}

.thi-cookie-customize:hover { background: var(--thi-surface-hover); color: var(--thi-text-primary); }

.thi-cookie-reject {
  background: transparent;
  color: var(--thi-text-muted);
  border: 1px solid var(--thi-border);
}

.thi-cookie-reject:hover { color: var(--thi-text-secondary); }

/* =============================================
   ANIMATIONS
   ============================================= */
.thi-animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: thi-fade-up 0.8s ease 0.1s forwards;
}

@keyframes thi-fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   INTL TEL INPUT OVERRIDES
   ============================================= */
.iti { display: block; }

.iti__flag-container { z-index: 10; }

.iti__selected-dial-code { color: var(--thi-text-secondary); }

.iti--separate-dial-code .iti__selected-flag {
  background: var(--thi-surface);
}

/* =============================================
   RESPONSIVE - DESKTOP NAV
   ============================================= */
@media (min-width: 900px) {
  .thi-nav-links { display: flex; }
  .thi-hamburger { display: none; }
}

/* =============================================
   RESPONSIVE - GENERAL
   ============================================= */
@media (max-width: 600px) {
  :root {
    --thi-space-xl: 48px;
    --thi-space-2xl: 72px;
  }

  .thi-card { padding: var(--thi-space-md); }

  .thi-reframe-card { flex-direction: column; }
  .thi-reframe-img { height: 240px; }

  .thi-who-img-wrap { flex: unset; }
  .thi-who-img { height: 300px; }
  .thi-who-badge { font-size: 0.8rem; }

  .thi-hero-actions { flex-direction: column; align-items: center; }

  .thi-prog-card-inner { padding: var(--thi-space-md); }
}

@media (min-width: 600px) {
  .thi-reframe-card > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--thi-space-xl);
    align-items: center;
  }
}

/* =============================================
   INTL TEL INPUT - DARK THEME
   ============================================= */
.iti__country-list {
  background: #1a0f35;
  border-color: var(--thi-border);
  color: var(--thi-text-primary);
}

.iti__country.iti__highlight {
  background: var(--thi-surface-hover);
}

.iti__dial-code { color: var(--thi-text-muted); }