
:root {
  --sand: #F5F0E8;
  --sand-light: #FAF8F3;
  --sand-dark: #E8E0D0;
  --earth: #8B7355;
  --earth-dark: #6B5740;
  --earth-deep: #4A3C2A;
  --amber: #C4954A;
  --amber-light: #D4A85A;
  --warm-white: #FEFCF9;
  --warm-black: #2C2416;
  --warm-gray: #9C9488;
  --warm-gray-light: #B8B0A4;
  --sage: #8A9A7B;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* KILL WORDPRESS THEME HEADER */
header, .wp-site-header, .wp-block-template-part { display: none !important; }

/* RESET - Override WordPress theme */
.tcu-page, .tcu-page *, .tcu-page *::before, .tcu-page *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
.tcu-page {
  font-family: var(--font-body) !important;
  -webkit-font-feature-settings: normal;
  color: var(--warm-black) !important;
  background: var(--warm-white) !important;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}
.tcu-page a { text-decoration: none; }
.tcu-page ul { list-style: none; }
.tcu-page h1, .tcu-page h2, .tcu-page h3 { margin: 0; padding: 0; }
.tcu-page p { margin: 0; padding: 0; }
.tcu-page img { max-width: 100%; }

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

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

/* ANIMATIONS - disabled for WordPress compatibility */
.tcu-anim { opacity: 1; transform: none; }
.tcu-anim.tcu-visible { opacity: 1; transform: none; }

/* NAV */
.tcu-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 9999;
  padding: 1.5rem 0; transition: all 0.4s var(--ease-smooth); background: transparent;
}
.tcu-nav.scrolled {
  background: rgba(254,252,249,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139,115,85,0.08); padding: 1rem 0;
}
.tcu-nav .tcu-container { display: flex; justify-content: space-between; align-items: center; }
.tcu-nav-logo {
  font-family: var(--font-display) !important; font-size: 1.1rem; font-weight: 500;
  color: var(--warm-white); text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.4s var(--ease-smooth);
}
.tcu-nav.scrolled .tcu-nav-logo { color: var(--warm-black); }
.tcu-nav-logo span { color: var(--amber); }
.tcu-nav-cta {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--warm-white) !important; background: var(--earth-deep); padding: 0.7rem 1.5rem;
  border-radius: 100px; text-decoration: none !important; transition: all 0.3s var(--ease-smooth);
}
.tcu-nav-cta:hover { background: var(--amber); transform: translateY(-1px); }

/* HERO */
.tcu-hero {
  position: relative; display: flex; align-items: center;
  background: linear-gradient(180deg, #6B8BA4 0%, #8FA4B8 40%, var(--sand) 100%);
  padding: 2rem 0;
}
.tcu-hero-content {
  position: relative; z-index: 2;
  padding: 9rem 2rem 4rem; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.tcu-hero-text { text-align: left !important; }
.tcu-hero-image { display: flex; align-items: center; justify-content: center; }
.tcu-hero-image img {
  width: 100%; max-width: 550px; border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.tcu-hero-eyebrow {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--earth); margin-bottom: 1.5rem;
}
.tcu-hero h1 {
  font-family: var(--font-display) !important; font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 600; line-height: 1.08; color: var(--warm-black);
  margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.tcu-hero h1 em { font-style: italic; color: var(--earth); }
.tcu-hero-sub {
  font-size: 1.1rem; line-height: 1.65; color: var(--earth); font-weight: 600;
  max-width: 480px; margin: 0 0 2.5rem 0 !important;
}
.tcu-btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.95rem; font-weight: 600; color: var(--warm-white) !important;
  background: var(--earth-deep); padding: 1rem 2.2rem; border-radius: 100px;
  text-decoration: none !important; transition: all 0.35s var(--ease-smooth);
  box-shadow: 0 4px 20px rgba(74,60,42,0.2);
}
.tcu-btn-primary:hover {
  background: var(--amber); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,149,74,0.3);
}
.tcu-btn-primary svg { width: 16px; height: 16px; transition: transform 0.3s; }
.tcu-btn-primary:hover svg { transform: translateX(3px); }

/* TRUST BAR */
.tcu-trust-bar { background: var(--sand); padding: 3.5rem 0; border-bottom: 1px solid var(--sand-dark); }
.tcu-trust-items { display: flex; justify-content: center; align-items: center; gap: 4rem; flex-wrap: wrap; }
.tcu-trust-item { text-align: center; }
.tcu-trust-icon { width: 42px; height: 42px; color: var(--earth); margin-bottom: 0.8rem; opacity: 0.6; }
.tcu-trust-number { font-family: var(--font-display) !important; font-size: 2rem; font-weight: 600; color: var(--earth-deep); }
.tcu-trust-label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--warm-gray); margin-top: 0.4rem; }
.tcu-trust-divider { width: 1px; height: 40px; background: var(--sand-dark); }

/* SECTION LABEL */
.tcu-section-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1rem; display: block;
}

/* PROBLEM TOP */
.tcu-problem-top { padding: 4rem 0 0; background: var(--sand-light); }
.tcu-problem-header { text-align: center !important; margin-bottom: 2.5rem; }
.tcu-problem-header h2 {
  font-family: var(--font-display) !important; font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600; color: var(--warm-black);
}
.tcu-pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.tcu-pain-card {
  background: var(--warm-white); border-radius: 12px; padding: 1.8rem;
  border-left: 3px solid #C4785A; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s var(--ease-smooth);
}
.tcu-pain-card:hover { transform: translateY(-2px); }
.tcu-pain-card p { font-size: 0.95rem; color: var(--earth-dark); line-height: 1.6; font-weight: 500; }
.tcu-pain-card strong { color: var(--warm-black); display: block; margin-bottom: 0.3rem; font-size: 1rem; }

/* STORY BRIDGE */
.tcu-problem-bridge { padding: 3rem 0; background: linear-gradient(to bottom, var(--sand-light) 0%, var(--warm-white) 100%); }
.tcu-problem-story {
  display: grid; grid-template-columns: auto 1fr; gap: 2.5rem; align-items: center;
  background: white; border-radius: 16px; padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08); position: relative; z-index: 2;
}
.tcu-problem-photo {
  width: 130px; height: 130px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--sand-dark); flex-shrink: 0;
  background: var(--sand); display: flex; align-items: center; justify-content: center;
  color: var(--warm-gray); font-size: 0.75rem; text-align: center;
}
.tcu-problem-photo img { width: 100%; height: 100%; object-fit: cover; }
.tcu-problem-story-text p { font-size: 1rem; color: var(--earth-dark); line-height: 1.7; margin-bottom: 0.8rem; }
.tcu-problem-story-text strong { color: var(--warm-black); }
.tcu-story-highlight {
  font-family: var(--font-display) !important; font-size: 1.15rem; font-weight: 600;
  color: var(--warm-black); font-style: italic;
}

/* SOLUTION BOTTOM */
.tcu-solution-bottom { padding: 0 0 4rem; background: var(--warm-white); }
.tcu-solution-header { text-align: center !important; margin-bottom: 2.5rem; padding-top: 1rem; }
.tcu-solution-header h2 {
  font-family: var(--font-display) !important; font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600; color: var(--warm-black);
}
.tcu-solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.tcu-solution-card {
  background: var(--sand-light); border-radius: 12px; padding: 1.8rem;
  border-left: 3px solid var(--sage); box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s var(--ease-smooth);
}
.tcu-solution-card:hover { transform: translateY(-2px); }
.tcu-solution-card p { font-size: 0.95rem; color: var(--earth-dark); line-height: 1.6; font-weight: 500; }
.tcu-solution-card strong { color: var(--warm-black); display: block; margin-bottom: 0.3rem; font-size: 1rem; }

/* ROADMAP */
.tcu-roadmap {
  padding: 4rem 0; background: var(--warm-white);
}
.tcu-roadmap-flow {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: nowrap; max-width: 950px; margin: 0 auto;
}
.tcu-roadmap-step {
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  flex: 0 0 auto;
}
.tcu-roadmap-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--sand); border: 2px solid var(--sand-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  transition: all 0.4s var(--ease-smooth);
}
.tcu-roadmap-step:hover .tcu-roadmap-icon {
  transform: translateY(-4px) scale(1.08);
  border-color: var(--amber);
  box-shadow: 0 8px 25px rgba(196,149,74,0.2);
}
.tcu-roadmap-step span {
  font-family: var(--font-display) !important; font-size: 0.95rem;
  font-weight: 600; color: var(--warm-black); text-align: center;
}
.tcu-roadmap-step-final .tcu-roadmap-icon {
  background: rgba(196,149,74,0.1); border-color: var(--amber);
}
.tcu-roadmap-step-final span { color: var(--amber); }
.tcu-roadmap-arrow {
  font-size: 1.5rem; color: var(--amber); font-weight: 300;
  padding: 0 1rem; margin-bottom: 1.5rem;
  opacity: 0.5;
}

@media (max-width: 700px) {
  .tcu-roadmap-flow { flex-wrap: wrap; gap: 0.5rem; }
  .tcu-roadmap-arrow { font-size: 1.2rem; padding: 0 0.4rem; }
  .tcu-roadmap-icon { width: 55px; height: 55px; font-size: 1.4rem; }
  .tcu-roadmap-step span { font-size: 0.8rem; }
}

/* STATEMENT */
.tcu-statement { padding: 4rem 2rem; background: var(--warm-white); text-align: center; }
.tcu-statement-text {
  font-family: var(--font-display) !important; font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-weight: 600; color: var(--warm-black); line-height: 1.3;
  max-width: 900px; margin: 0 auto;
}
.tcu-st-arrow { color: var(--amber); font-weight: 400; padding: 0 0.3rem; }
.tcu-st-highlight { color: var(--amber); font-style: italic; }

/* VIRAL METHOD */
.tcu-viral { padding: 4rem 0; background: var(--sand-light); }
.tcu-viral-header { text-align: center !important; margin-bottom: 3rem; }
.tcu-viral-header h2 {
  font-family: var(--font-display) !important; font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600; color: var(--warm-black); line-height: 1.15;
}
.tcu-viral-header h2 em { font-style: italic; color: var(--earth); }
.tcu-viral-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; }
.tcu-viral-text p { font-size: 1.05rem; line-height: 1.75; color: var(--earth); margin-bottom: 1.2rem; }
.tcu-viral-text p strong { color: var(--warm-black); font-weight: 600; }
.tcu-viral-screenshot { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.tcu-viral-screenshot img { width: 100%; height: auto; display: block; }

/* PROOF */
.tcu-proof { padding: 4rem 0; background: var(--sand); overflow: hidden; }
.tcu-proof-header { text-align: center !important; margin-bottom: 3rem; }
.tcu-proof h2 { font-family: var(--font-display) !important; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 600; color: var(--warm-black); margin-bottom: 0.8rem; }
.tcu-proof-sub { font-size: 1.05rem; color: var(--earth); max-width: 500px; margin: 0 auto; text-align: center; }

/* PROOF CAROUSEL */
.tcu-proof-carousel-wrap {
  position: relative; width: 100vw; left: 50%; transform: translateX(-50%);
  overflow: hidden; touch-action: pan-y;
}
.tcu-proof-carousel-wrap::before,
.tcu-proof-carousel-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60px;
  z-index: 2; pointer-events: none;
}
.tcu-proof-carousel-wrap::before { left: 0; background: linear-gradient(to right, var(--sand), transparent); }
.tcu-proof-carousel-wrap::after { right: 0; background: linear-gradient(to left, var(--sand), transparent); }
.tcu-proof-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1rem 0 2rem;
}
.tcu-proof-slide {
  flex: 0 0 70vw; max-width: 800px; height: auto;
  border-radius: 16px; overflow: hidden;
  background: var(--sand);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}
.tcu-proof-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.tcu-proof-slide img { width: 100%; height: auto; display: block; }
.tcu-proof-slide.placeholder {
  background: var(--sand-light); border: 2px dashed var(--sand-dark);
  display: flex; align-items: center; justify-content: center;
}
.tcu-proof-slide.placeholder span { font-size: 0.95rem; color: var(--warm-gray); text-align: center; padding: 2rem; line-height: 1.6; }
.tcu-proof-nav {
  display: flex; justify-content: center; align-items: center; gap: 1.5rem;
  margin-top: 1.5rem;
}
.tcu-proof-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(74,60,42,0.06); border: 1px solid rgba(74,60,42,0.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s var(--ease-smooth); color: var(--earth);
}
.tcu-proof-arrow:hover {
  background: var(--amber); border-color: var(--amber); color: white; transform: scale(1.08);
}
.tcu-proof-arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.tcu-proof-dots { display: flex; gap: 0.5rem; align-items: center; }
.tcu-proof-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sand-dark); transition: all 0.3s var(--ease-smooth); cursor: pointer;
}
.tcu-proof-dot.active { background: var(--amber); width: 24px; border-radius: 4px; }

@media (max-width: 700px) {
  .tcu-proof-slide { flex: 0 0 85vw; }
}

/* FIT SECTION */
.tcu-fit { padding: 4rem 0; background: var(--sand-light); }
.tcu-fit-header { text-align: center !important; margin-bottom: 3rem; }
.tcu-fit-header h2 {
  font-family: var(--font-display) !important; font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600; color: var(--warm-black); line-height: 1.15;
}
.tcu-fit-header h2 em { font-style: italic; color: var(--earth); }
.tcu-fit-layout { display: grid; grid-template-columns: auto 1fr; gap: 3.5rem; align-items: center; }
.tcu-fit-photos { display: flex; gap: 0.8rem; }
.tcu-fit-photo {
  width: 150px; aspect-ratio: 4/5; border-radius: 12px; overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.tcu-fit-photo:nth-child(2) { margin-top: 2rem; }
.tcu-fit-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tcu-fit-photo-placeholder {
  width: 100%; height: 100%; background: var(--sand-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--warm-gray); text-align: center; padding: 0.5rem;
}
.tcu-fit-fears { display: flex; flex-direction: column; gap: 1.5rem; }
.tcu-fit-fear { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.tcu-fit-fear-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(138,154,123,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 0.1rem;
}
.tcu-fit-fear-icon svg { width: 20px; height: 20px; color: var(--sage); }
.tcu-fit-fear-worry {
  font-size: 0.82rem; font-weight: 500; color: var(--warm-gray);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem;
}
.tcu-fit-fear-answer { font-size: 1rem; color: var(--earth-dark); line-height: 1.55; font-weight: 500; }
.tcu-fit-fear-answer strong { color: var(--warm-black); }
.tcu-fit-disclaimer {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--sand-dark);
  font-size: 0.9rem; color: var(--warm-gray); line-height: 1.6; font-style: italic;
}
.tcu-fit-disclaimer strong { color: var(--earth); font-style: normal; }

/* LIFESTYLE */
.tcu-lifestyle { padding: 4rem 0; background: var(--warm-white); }
.tcu-lifestyle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.tcu-lifestyle h2 { font-family: var(--font-display) !important; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 600; line-height: 1.15; color: var(--warm-black); margin-bottom: 1.5rem; }
.tcu-lifestyle h2 em { font-style: italic; color: var(--earth); }
.tcu-lifestyle-text p { font-size: 1.05rem; line-height: 1.75; color: var(--earth); margin-bottom: 1.2rem; }
.tcu-lifestyle-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tcu-lifestyle-img {
  border-radius: 12px; aspect-ratio: 3/4; background: var(--sand);
  border: 1px solid var(--sand-dark); display: flex; align-items: center;
  justify-content: center; overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.tcu-lifestyle-img:first-child { margin-top: 2rem; }

/* CURRICULUM */
.tcu-curriculum {
  padding: 4rem 0; background: var(--earth-deep); color: var(--sand); position: relative; overflow: hidden;
}
.tcu-curriculum::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.tcu-curriculum-header { text-align: center !important; margin-bottom: 1.5rem; position: relative; }
.tcu-curriculum .tcu-section-label { color: var(--amber-light); }
.tcu-curriculum h2 { font-family: var(--font-display) !important; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 600; color: var(--sand-light); margin-bottom: 0.8rem; }
.tcu-curriculum-sub { font-size: 1.05rem; color: var(--warm-gray-light); max-width: 520px; margin: 0 auto; text-align: center; }

/* TABS */
.tcu-tabs { max-width: 850px; margin: 0 auto; position: relative; }
.tcu-tabs-nav {
  display: flex; gap: 0; position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tcu-tabs-nav::-webkit-scrollbar { display: none; }
.tcu-tab-btn {
  flex: 1; min-width: 0; padding: 1.2rem 0.5rem 1.4rem;
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  position: relative; z-index: 1;
  transition: all 0.3s var(--ease-smooth);
}
.tcu-tab-num {
  font-family: var(--font-display) !important; font-size: 0.85rem; font-weight: 700;
  color: rgba(196,149,74,0.5); transition: all 0.3s var(--ease-smooth);
}
.tcu-tab-name {
  font-family: var(--font-body) !important; font-size: 0.82rem; font-weight: 600;
  color: var(--sand); letter-spacing: 0.03em;
  transition: all 0.3s var(--ease-smooth);
}
.tcu-tab-btn:hover .tcu-tab-num { color: var(--amber); }
.tcu-tab-btn:hover .tcu-tab-name { color: #fff; }
.tcu-tab-btn.active .tcu-tab-num { color: var(--amber); font-size: 0.95rem; }
.tcu-tab-btn.active .tcu-tab-name { color: #fff; font-weight: 700; }

/* Sliding indicator */
.tcu-tab-indicator {
  position: absolute; bottom: -1px; left: 0; height: 2px;
  background: var(--amber); border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(196,149,74,0.4);
}

/* Capstone tab */
.tcu-tab-btn-cap .tcu-tab-num { color: rgba(196,149,74,0.55); }
.tcu-tab-btn-cap.active .tcu-tab-num { color: var(--amber-light); }

/* Arrow nav */
.tcu-tab-arrows {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 1.5rem; margin-top: 0.8rem; position: relative; z-index: 2;
}
.tcu-tab-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s var(--ease-smooth);
  color: var(--sand); font-size: 1.1rem;
}
.tcu-tab-arrow:hover {
  background: rgba(196,149,74,0.15); border-color: var(--amber);
  color: var(--amber); transform: scale(1.08);
}
.tcu-tab-arrow.disabled {
  opacity: 0.2; pointer-events: none;
}
.tcu-tab-arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.tcu-tab-counter {
  font-family: var(--font-body) !important; font-size: 0.8rem; font-weight: 500;
  color: var(--warm-gray-light); letter-spacing: 0.05em;
}

/* PANELS */
.tcu-tabs-content {
  position: relative; min-height: 320px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
  border-top: none; border-radius: 0 0 16px 16px;
  touch-action: pan-y;
}
.tcu-tab-panel {
  position: absolute; inset: 0; padding: 2.5rem 3rem;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.tcu-tab-panel.active {
  opacity: 1; visibility: visible; transform: translateY(0);
  position: relative;
}
.tcu-tab-inner {
  display: grid; grid-template-columns: 1fr 220px; gap: 2.5rem; align-items: center;
}
.tcu-tab-text h3 {
  font-family: var(--font-display) !important; font-size: 1.5rem;
  font-weight: 600; color: var(--sand-light); margin-bottom: 0.8rem;
}
.tcu-tab-text p {
  font-size: 0.92rem; line-height: 1.7; color: var(--warm-gray-light); margin-bottom: 1.5rem;
}
.tcu-tab-lessons { display: flex; flex-direction: column; gap: 0.6rem; }
.tcu-tab-lesson {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.88rem; color: var(--sand-light); font-weight: 400;
  padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.tcu-tab-lesson::before {
  content: '→'; color: var(--amber); font-weight: 600; font-size: 0.85rem; flex-shrink: 0;
}
.tcu-tab-lesson:last-child { border-bottom: none; }

/* Visual side */
.tcu-tab-visual {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  padding-top: 0.5rem;
}
.tcu-tab-icon-wrap {
  width: 90px; height: 90px; border-radius: 50%;
  background: rgba(196,149,74,0.06); border: 1.5px solid rgba(196,149,74,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.tcu-tab-icon-cap {
  background: rgba(196,149,74,0.1); border-color: rgba(196,149,74,0.3);
  box-shadow: 0 0 30px rgba(196,149,74,0.1);
}
.tcu-tab-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.35rem; }
.tcu-tab-tags span {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--amber);
  background: rgba(196,149,74,0.08); border: 1px solid rgba(196,149,74,0.15);
  padding: 0.25rem 0.6rem; border-radius: 100px;
}

/* MOBILE TABS */
@media (max-width: 700px) {
  .tcu-tab-btn { padding: 1rem 0.3rem 1.2rem; min-width: 60px; }
  .tcu-tab-name { font-size: 0.68rem; }
  .tcu-tab-panel { padding: 1.8rem 1.5rem; }
  .tcu-tab-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .tcu-tab-visual { flex-direction: column; flex-wrap: wrap; justify-content: center; align-items: center; }
  .tcu-tab-icon-wrap { width: 60px; height: 60px; font-size: 1.8rem; }
  .tcu-tab-text h3 { font-size: 1.25rem; }
}

/* PRE-PRICING */
.tcu-prepricing { padding: 2rem 0; background: var(--warm-white); }
.tcu-prepricing-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center;
}
.tcu-prepricing-mockup img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.12));
}
.tcu-prepricing-text h2 {
  font-family: var(--font-display) !important; font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600; color: var(--warm-black); line-height: 1.2; margin-bottom: 1.2rem;
}
.tcu-prepricing-text h2 em { font-style: italic; color: var(--earth); }
.tcu-prepricing-text p { font-size: 1.05rem; line-height: 1.7; color: var(--earth); margin-bottom: 2rem; }

/* PRICING */
.tcu-pricing { padding: 4rem 0; background: var(--sand); }
.tcu-pricing-header { text-align: center !important; margin-bottom: 4rem; }
.tcu-pricing h2 { font-family: var(--font-display) !important; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 600; color: var(--warm-black); margin-bottom: 0.8rem; }
.tcu-pricing-sub { font-size: 1.05rem; color: var(--earth); max-width: 480px; margin: 0 auto; text-align: center; }
.tcu-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.tcu-pricing-card {
  background: var(--warm-white); border-radius: 18px; padding: 2.5rem;
  border: 1px solid rgba(139,115,85,0.1); transition: all 0.35s var(--ease-smooth); position: relative;
}
.tcu-pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(74,60,42,0.1); }
.tcu-pricing-card.tcu-featured { border: 2px solid var(--amber); box-shadow: 0 8px 30px rgba(196,149,74,0.12); }
.tcu-pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--warm-white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 1.2rem; border-radius: 100px; white-space: nowrap;
}
.tcu-pricing-tier { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 0.6rem; }
.tcu-pricing-name { font-family: var(--font-display) !important; font-size: 1.35rem; font-weight: 600; color: var(--warm-black); margin-bottom: 0.3rem; }
.tcu-pricing-desc { font-size: 0.88rem; color: var(--warm-gray); line-height: 1.5; margin-bottom: 1.5rem; min-height: 2.7rem; }
.tcu-pricing-amount { font-family: var(--font-display) !important; font-size: 2.8rem; font-weight: 700; color: var(--earth-deep); line-height: 1; margin-bottom: 0.2rem; }
.tcu-pricing-amount span { font-size: 1.2rem; font-weight: 400; color: var(--warm-gray); }
.tcu-pricing-period { font-size: 0.82rem; color: var(--warm-gray); margin-bottom: 2rem; }
.tcu-pricing-divider { width: 100%; height: 1px; background: var(--sand-dark); margin-bottom: 1.5rem; }
.tcu-pricing-features { list-style: none !important; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; padding: 0 !important; }
.tcu-pricing-features li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9rem; color: var(--earth-dark); line-height: 1.45; list-style: none !important; padding: 0 !important; }
.tcu-pricing-features li svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 3px; color: var(--sage); }
.tcu-pricing-btn {
  display: block; width: 100%; text-align: center; padding: 0.95rem;
  border-radius: 100px; text-decoration: none !important; font-size: 0.88rem; font-weight: 600;
  transition: all 0.3s var(--ease-smooth); cursor: pointer; border: none;
  font-family: var(--font-body) !important;
}
.tcu-pricing-btn--primary { background: var(--earth-deep); color: var(--warm-white) !important; }
.tcu-pricing-btn--primary:hover { background: var(--amber); transform: translateY(-1px); }
.tcu-pricing-btn--outline { background: transparent; color: var(--earth-deep) !important; border: 1.5px solid var(--earth-deep); }
.tcu-pricing-btn--outline:hover { background: var(--earth-deep); color: var(--warm-white) !important; }
.tcu-pricing-btn--muted { background: transparent; color: var(--warm-gray) !important; border: 1.5px solid var(--sand-dark); }
.tcu-pricing-btn--muted:hover { border-color: var(--earth); color: var(--earth-dark) !important; }

/* ABOUT */
.tcu-about { padding: 4rem 0; background: var(--warm-white); }
.tcu-about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.tcu-about-image {
  border-radius: 16px; aspect-ratio: 4/5; background: var(--sand);
  border: 1px solid var(--sand-dark); display: flex; align-items: center; justify-content: center;
}
.tcu-about h2 { font-family: var(--font-display) !important; font-size: clamp(2rem, 3vw, 2.5rem); font-weight: 600; line-height: 1.2; color: var(--warm-black); margin-bottom: 1.5rem; }
.tcu-about-text p { font-size: 1.05rem; line-height: 1.75; color: var(--earth); margin-bottom: 1rem; }
.tcu-about-stats { display: flex; gap: 2.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--sand-dark); }
.tcu-about-stat-number { font-family: var(--font-display) !important; font-size: 1.6rem; font-weight: 600; color: var(--earth-deep); }
.tcu-about-stat-label { font-size: 0.78rem; color: var(--warm-gray); margin-top: 0.2rem; }

/* FAQ */
.tcu-faq { padding: 4rem 0; background: var(--sand); }
.tcu-faq-header { text-align: center !important; margin-bottom: 3.5rem; }
.tcu-faq h2 { font-family: var(--font-display) !important; font-size: clamp(2rem, 3vw, 2.5rem); font-weight: 600; color: var(--warm-black); }
.tcu-faq-list { max-width: 720px; margin: 0 auto; }
.tcu-faq-item { border-bottom: 1px solid var(--sand-dark); }
.tcu-faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-body) !important; font-size: 1.02rem; font-weight: 500; color: var(--warm-black);
}
.tcu-faq-question:hover { color: var(--amber); }
.tcu-faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--warm-gray); transition: transform 0.3s var(--ease-smooth); }
.tcu-faq-item.open .tcu-faq-icon { transform: rotate(45deg); }
.tcu-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-smooth); }
.tcu-faq-item.open .tcu-faq-answer { max-height: 300px; }
.tcu-faq-answer p { font-size: 0.95rem; line-height: 1.7; color: var(--earth); padding-bottom: 1.4rem; }

/* FINAL CTA */
.tcu-final-cta { padding: 4rem 0; background: var(--earth-deep); text-align: center !important; position: relative; overflow: hidden; }
.tcu-final-cta::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; background: radial-gradient(circle, rgba(196,149,74,0.08) 0%, transparent 70%);
}
.tcu-final-cta h2 { font-family: var(--font-display) !important; font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 600; color: var(--sand-light); line-height: 1.15; margin-bottom: 1rem; position: relative; }
.tcu-final-cta h2 em { font-style: italic; color: var(--amber-light); }
.tcu-final-cta p { font-size: 1.1rem; color: var(--warm-gray-light); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.65; text-align: center; }
.tcu-btn-amber {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 1rem; font-weight: 600; color: var(--earth-deep) !important; background: var(--amber);
  padding: 1.1rem 2.5rem; border-radius: 100px; text-decoration: none !important;
  transition: all 0.35s var(--ease-smooth); position: relative;
  box-shadow: 0 4px 20px rgba(196,149,74,0.3);
}
.tcu-btn-amber:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(196,149,74,0.4); }

/* FOOTER */
.tcu-footer { background: var(--warm-black); padding: 4rem 0; text-align: center; }
.tcu-footer p { font-size: 0.82rem; color: rgba(245,240,232,0.4); }
.tcu-footer a { color: rgba(245,240,232,0.6); text-decoration: none; }
.tcu-footer a:hover { color: var(--amber); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .tcu-hero-content { grid-template-columns: 1fr; text-align: center !important; }
  .tcu-statement-text { font-size: clamp(1.3rem, 5vw, 2rem); }
  .tcu-hero-text { text-align: center !important; }
  .tcu-prepricing-mockup { order: -1; max-width: 500px; margin: 0 auto -1.5rem; }
  .tcu-hero-image { order: -1; }
  .tcu-hero-image img { max-width: 350px; }
  .tcu-hero-sub { margin: 0 auto 2.5rem !important; }
  .tcu-problem-grid, .tcu-lifestyle-grid, .tcu-about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .tcu-pain-grid, .tcu-solution-grid { grid-template-columns: 1fr; }
  .tcu-viral-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .tcu-fit-layout { grid-template-columns: 1fr; }
  .tcu-fit-photos { justify-content: center; overflow-x: auto; width: 100%; }
  .tcu-fit-photo { width: 30%; min-width: 100px; flex-shrink: 0; }
  .tcu-fit-fear { gap: 0.7rem; }
  .tcu-fit-fear-answer { font-size: 0.9rem; }
  .tcu-fit-content { overflow: hidden; }
  .tcu-prepricing-inner { grid-template-columns: 1fr; text-align: center; }
  .tcu-prepricing-mockup { order: -1; max-width: 500px; margin: 0 auto -7rem; }
  .tcu-problem-story { grid-template-columns: 1fr; text-align: center; }
  .tcu-problem-photo { margin: 0 auto; }
  .tcu-curriculum-grid { grid-template-columns: 1fr; }
  .tcu-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .tcu-trust-items { gap: 2rem; }
  .tcu-trust-divider { display: none; }
}
@media (max-width: 600px) {
  .tcu-about-stats { flex-direction: column; gap: 1.5rem; }
}
@media (max-width: 500px) {
  .tcu-fit-fear { grid-template-columns: 1fr; }
  .tcu-fit-fear-icon { display: none; }
}

/* --- Blog pages (non-tcu-page markup) --- */
body { font-family: 'DM Sans', -apple-system, sans-serif; color: var(--warm-black); background: var(--warm-white); margin: 0; }
.blog-page .wrap, .bar .wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.bar { background: var(--warm-black); padding: 20px 0; }
.bar .wrap { display: flex; justify-content: space-between; align-items: center; }
.bar .brand { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; text-decoration: none; }
.bar .login-btn { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; background: var(--earth-deep); text-decoration: none; padding: 10px 22px; border-radius: 100px; }
.blog-page { padding: 50px 0 80px; }
.blog-index h1, .post-body h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4.5vw, 3rem); margin: 0 0 16px; }
.blog-empty { color: var(--warm-gray); }
.post-link { display: block; background: var(--sand-light); border: 1px solid var(--sand-dark); border-radius: 14px; padding: 26px 30px; margin-bottom: 16px; text-decoration: none; color: inherit; }
.post-link h3 { font-family: 'Playfair Display', serif; margin: 0 0 6px; }
.post-link p { color: var(--earth-dark); margin: 0; }
.post-body { max-width: 720px; }
.post-body p { color: var(--earth-dark); margin-bottom: 18px; }
.section-sub { color: var(--warm-gray); }
.site-footer { background: var(--warm-black); color: rgba(255,255,255,0.75); padding: 36px 0; font-size: 0.9rem; }
.site-footer .wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.site-footer a { color: rgba(255,255,255,0.9); text-decoration: none; }

/* --- Mastery application page --- */
.apply-body { background: var(--sand); font-family: 'DM Sans', -apple-system, sans-serif; color: var(--warm-black); margin: 0; min-height: 100vh; }
.apply-wrap { max-width: 640px; margin: 0 auto; padding: 48px 24px 80px; }
.apply-back { display: inline-block; font-size: 0.9rem; color: var(--earth); text-decoration: none; margin-bottom: 22px; }
.apply-back:hover { color: var(--earth-deep); }
.apply-card { background: var(--warm-white); border: 1px solid rgba(139,115,85,0.15); border-radius: 18px; padding: 44px 40px; box-shadow: 0 16px 50px rgba(74,60,42,0.08); }
.apply-tier { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
.apply-card h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.9rem, 4vw, 2.5rem); font-weight: 600; margin: 0 0 12px; color: var(--warm-black); }
.apply-sub { color: var(--earth-dark); font-size: 1rem; line-height: 1.6; margin: 0 0 30px; }
#apply-form label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--earth-deep); margin-bottom: 18px; }
#apply-form input[type="text"], #apply-form input[type="email"], #apply-form textarea {
  display: block; width: 100%; margin-top: 7px; padding: 12px 14px;
  font: inherit; font-weight: 400; color: var(--warm-black);
  background: var(--sand-light); border: 1px solid var(--sand-dark); border-radius: 10px;
  box-sizing: border-box; resize: vertical;
}
#apply-form input:focus, #apply-form textarea:focus { outline: none; border-color: var(--earth); }
#apply-form .hp { position: absolute; left: -9999px; height: 1px; width: 1px; opacity: 0; }
.apply-send { width: 100%; border: none; cursor: pointer; font: inherit; font-weight: 600; margin-top: 6px; }
.apply-send:disabled { opacity: 0.6; cursor: default; }
.apply-error { margin-top: 16px; color: #a83838; font-size: 0.92rem; }
.apply-error a { color: inherit; }
.apply-success h1 { margin-bottom: 10px; }
