:root{
  --paper:#f4eedf;
  --paper-deep:#e7ddc9;
  --panel:#fffdf8;
  --panel-soft:rgba(255,252,245,.92);
  --line:rgba(126,108,74,.24);
  --ink:#171513;
  --muted:#5f5645;
  --olive:#53684e;
  --gold:#d8b14b;
  --gold-deep:#c39a2b;
  --green:#b9d8bb;
  --shadow:0 18px 44px rgba(102,85,54,.14);
  --shadow-soft:0 8px 18px rgba(115,94,56,.12);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;background:linear-gradient(180deg,#f7f2e8 0%,#efe7d7 100%)}
body{
  margin:0;
  min-height:100vh;
  color:var(--ink);
  font-family:"Inter","Segoe UI",sans-serif;
  line-height:1.55;
  overflow-x:hidden;
  background:
    radial-gradient(circle at top left,rgba(255,255,255,.72),transparent 28%),
    radial-gradient(circle at bottom right,rgba(223,210,183,.48),transparent 32%),
    linear-gradient(180deg,#f7f2e8 0%,#efe7d7 100%);
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 12% 18%,rgba(225,216,198,.9) 0 8%,transparent 8.2%),
    radial-gradient(circle at 90% 22%,rgba(236,228,212,.8) 0 9%,transparent 9.2%),
    radial-gradient(circle at 10% 88%,rgba(236,228,212,.9) 0 10%,transparent 10.3%),
    radial-gradient(circle at 80% 84%,rgba(229,218,195,.88) 0 11%,transparent 11.2%);
  opacity:.75;
}
a{color:inherit}
.page{
  position:relative;
  z-index:1;
  width:min(960px,calc(100% - 32px));
  margin:0 auto;
  padding:18px 0 40px;
}
.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 2px 18px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--ink);
  text-decoration:none;
  font-family:"Montserrat",sans-serif;
  font-weight:700;
  font-size:1.05rem;
}
.brand img{width:32px;height:32px;object-fit:contain}
.nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
}
.button,.nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:12px 20px;
  border:1px solid rgba(112,93,57,.22);
  border-radius:10px;
  background:linear-gradient(180deg,#fffaf0 0%,#eee4d0 100%);
  color:var(--ink);
  text-decoration:none;
  font-family:"Montserrat",sans-serif;
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.02em;
  text-transform:uppercase;
  box-shadow:var(--shadow-soft);
  transition:transform .16s ease,box-shadow .16s ease;
}
.button:hover,.nav a:hover{transform:translateY(-1px);box-shadow:0 12px 22px rgba(128,104,58,.18)}
.button.primary{
  background:linear-gradient(180deg,#e0c66e 0%,#d2ad46 100%);
  border-color:rgba(143,111,35,.28);
}
.panel,.card{
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--panel-soft);
  box-shadow:var(--shadow);
  backdrop-filter:blur(2px);
}
.hero{
  position:relative;
  overflow:hidden;
  min-height:376px;
  padding:74px 34px 32px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,.44fr);
  align-items:end;
  gap:28px;
}
.hero::before{
  content:"";
  position:absolute;
  inset:14px 16px 10px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.25),rgba(255,255,255,.6)),
    url("/tcp-logo.png") center 48%/34% auto no-repeat;
  opacity:.08;
  filter:grayscale(1);
  pointer-events:none;
}
.hero > *{position:relative;z-index:1}
.eyebrow{
  display:block;
  margin:0 0 8px;
  color:#9b7a24;
  font-family:"Montserrat",sans-serif;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
h1,h2,h3{
  margin:0;
  font-family:"Montserrat",sans-serif;
  letter-spacing:0;
  line-height:1.02;
}
.hero-title{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}
.hero-title img{width:58px;height:58px;object-fit:contain}
h1{font-size:3rem;font-weight:800}
.lede{
  max-width:570px;
  margin:0 0 18px;
  color:var(--muted);
  font-size:1.05rem;
}
.hero-actions{display:flex;gap:10px;flex-wrap:wrap}
.focus-card{
  justify-self:end;
  width:min(100%,300px);
  padding:16px;
  border-radius:10px;
  background:rgba(255,253,248,.96);
  box-shadow:0 18px 36px rgba(102,85,54,.17);
}
.meter{height:9px;border-radius:999px;background:#d7e9d8;overflow:hidden;margin:6px 0 12px}
.meter span{display:block;width:74%;height:100%;background:linear-gradient(90deg,#8fbd92,#c8e0ca)}
.focus-card strong{display:block;margin-bottom:10px;font-family:"Montserrat",sans-serif;font-size:1.03rem;line-height:1.12}
.mini-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.mini{
  padding:8px;
  border:1px solid rgba(125,103,62,.18);
  border-radius:8px;
  background:#fbf6eb;
  font-size:.72rem;
}
.mini b{display:flex;justify-content:space-between;font-family:"Montserrat",sans-serif;font-size:.72rem}
.mini i{display:block;height:6px;border-radius:999px;background:#dfe4df;margin:5px 0;overflow:hidden}
.mini i::before{content:"";display:block;height:100%;width:var(--fill);background:#a6cfa8;border-radius:inherit}
.info-grid,.category-grid{display:grid;gap:14px}
.info-grid{grid-template-columns:repeat(3,1fr);margin:14px 0}
.card{padding:18px}
.card h3{margin-bottom:10px;color:#9b7a24;font-size:.9rem;text-transform:uppercase;letter-spacing:.1em}
.card p{margin:0;color:var(--muted)}
.feature-panel{padding:26px 28px;margin-top:14px}
.feature-top{
  display:grid;
  grid-template-columns:minmax(0,1fr) 86px;
  gap:20px;
  align-items:start;
  margin-bottom:18px;
}
.feature-top h2{max-width:700px;font-size:2.05rem;margin-bottom:10px}
.feature-top p{max-width:760px;margin:0;color:var(--muted)}
.feature-icon{width:78px;height:78px;justify-self:end;object-fit:contain}
.feature-layout{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(230px,.58fr);
  gap:24px;
}
.process-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.process-card{
  position:relative;
  min-height:112px;
  padding:14px;
  border:1px solid rgba(125,103,62,.18);
  border-radius:2px;
  background:rgba(255,249,238,.92);
}
.process-card span{display:block;margin-bottom:10px;color:#9b7a24;font-family:"Montserrat",sans-serif;font-size:.78rem;font-weight:800;letter-spacing:.09em;text-transform:uppercase}
.process-card p{margin:0;color:var(--muted);font-size:.9rem;line-height:1.45}
.side-list{display:flex;flex-direction:column;gap:18px}
.side-item{display:grid;grid-template-columns:1fr 76px;gap:12px;align-items:center}
.side-item h3{margin-bottom:6px;color:#9b7a24;font-size:.82rem;text-transform:uppercase;letter-spacing:.09em}
.side-item p{margin:0;color:var(--muted);font-size:.9rem;line-height:1.42}
.side-art{
  width:76px;
  height:76px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:#f2eadb;
  color:var(--olive);
  font-family:"Montserrat",sans-serif;
  font-size:2rem;
  font-weight:800;
}
.category-grid{grid-template-columns:repeat(2,1fr);margin-top:14px}
.category{
  display:flex;
  gap:14px;
  align-items:center;
  min-height:110px;
  text-decoration:none;
}
.category .mark{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(180deg,#d8ecd3,#cfe4ca);
  color:#263c29;
  font-family:"Montserrat",sans-serif;
  font-size:1.1rem;
  font-weight:800;
  flex:0 0 auto;
}
.category .image-mark{
  background:transparent;
  overflow:hidden;
  padding:0;
}
.category .image-mark img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.category strong{display:block;font-family:"Montserrat",sans-serif;margin-bottom:4px}
.category span{color:var(--muted);font-size:.9rem}
.cert{text-align:center;margin-top:14px;padding:28px}
.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:8px 18px;
  margin-bottom:14px;
  border-radius:999px;
  background:linear-gradient(180deg,#e0c66e,#d2ad46);
  color:#2d2417;
  font-family:"Montserrat",sans-serif;
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.cert h2{font-size:1.8rem;margin-bottom:12px}
.cert p{max-width:720px;margin:0 auto;color:var(--muted)}
.footer{
  padding:30px 0 2px;
  text-align:center;
  color:#9c8f78;
  font-size:.9rem;
}
.footer strong{display:block;color:var(--ink);font-family:"Montserrat",sans-serif;margin-bottom:6px}
.footer a{color:#6f5b1e;font-weight:700;text-decoration:none}

/* --- grading subpages --- */
.crumbs{display:flex;gap:8px;align-items:center;flex-wrap:wrap;margin:2px 0 14px;font-family:"Montserrat",sans-serif;font-size:.74rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--muted)}
.crumbs a{color:#6f5b1e;text-decoration:none}
.crumbs a:hover{text-decoration:underline}
.crumbs i{font-style:normal;color:var(--line)}
.subhero{min-height:0;padding:46px 34px 30px;display:block}
.subhero::before{display:none}
.subhero h1{font-size:2.5rem;font-weight:800;margin-bottom:12px}
.subhero .lede{margin-bottom:0}
.statement{margin-top:14px;padding:22px 26px;font-size:1.06rem;color:var(--ink)}
.statement b{color:#9b7a24}
.section-head{margin:26px 0 0}
.section-head .eyebrow{margin-bottom:8px}
.section-head h2{font-size:1.7rem;font-weight:800}
.section-head p{max-width:760px;margin:10px 0 0;color:var(--muted)}
.scale{display:flex;flex-direction:column;gap:8px;margin-top:14px}
.scale-row{display:grid;grid-template-columns:128px 1fr;gap:14px;align-items:center;padding:12px 14px;border:1px solid rgba(125,103,62,.18);border-radius:10px;background:rgba(255,249,238,.92)}
.grade-chip{display:inline-flex;align-items:center;justify-content:center;padding:7px 8px;border-radius:8px;background:linear-gradient(180deg,#d8ecd3,#cfe4ca);color:#263c29;font-family:"Montserrat",sans-serif;font-weight:800;font-size:.8rem;text-align:center;line-height:1.1}
.scale-row p{margin:0;color:var(--muted);font-size:.92rem}
.scale-row strong{color:var(--ink)}
.check-list{list-style:none;margin:14px 0 0;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:10px}
.check-list li{position:relative;padding:12px 14px 12px 42px;border:1px solid rgba(125,103,62,.18);border-radius:10px;background:rgba(255,249,238,.92);color:var(--muted);font-size:.92rem}
.check-list li::before{content:"✓";position:absolute;left:14px;top:12px;width:18px;height:18px;display:grid;place-items:center;border-radius:50%;background:linear-gradient(180deg,#d8ecd3,#cfe4ca);color:#263c29;font-family:"Montserrat",sans-serif;font-size:.68rem;font-weight:800}
.disclaimer{margin-top:14px;padding:16px 20px;font-size:.86rem;color:var(--muted)}
@media(max-width:560px){
  .check-list{grid-template-columns:1fr}
  .scale-row{grid-template-columns:104px 1fr}
  .subhero h1{font-size:2rem}
}



.video-figure{margin:0;align-self:center}
.walkthrough{display:block;width:100%;max-width:320px;height:auto;max-height:70vh;margin:0;border:1px solid var(--line);border-radius:12px;background:#0c0b0a;box-shadow:var(--shadow-soft)}
.video-caption{margin:12px 0 0;max-width:340px;color:var(--muted);font-family:"Montserrat",sans-serif;font-size:.72rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;line-height:1.5}
.video-aside .aside-head{font-family:"Montserrat",sans-serif;font-size:1.5rem;font-weight:800;line-height:1.06;margin:0 0 10px}
.video-aside .muted-lead{margin:0 0 16px;color:var(--muted);font-size:1rem}
.video-aside .side-list{gap:10px}
.aside-tags{margin:16px 0 0;color:#9c8f78;font-family:"Montserrat",sans-serif;font-size:.7rem;font-weight:800;letter-spacing:.07em;text-transform:uppercase}


/* video section: bigger video, tighter aside */
.video-section .feature-layout{grid-template-columns:minmax(0,1fr) minmax(0,260px);align-items:center;gap:28px}
.video-section .walkthrough{max-width:none;width:80%}
.video-section .video-caption{max-width:none}
.video-aside .aside-head{font-size:1.15rem}
.video-aside .muted-lead{font-size:.86rem;margin-bottom:12px}
.video-aside .process-card{min-height:0;padding:10px 12px}
.video-aside .process-card span{margin-bottom:5px;font-size:.72rem}
.video-aside .process-card p{font-size:.82rem;line-height:1.4}
.video-aside .side-list{gap:8px}
.aside-tags{font-size:.66rem}
@media(max-width:820px){.video-section .feature-layout{grid-template-columns:1fr}.video-section .walkthrough{max-width:420px;margin:0 auto}}

/* category cards: clear clickable affordance */
.category{transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease;position:relative;padding-right:42px}
.category:hover{transform:translateY(-2px);border-color:var(--gold);box-shadow:0 14px 26px rgba(128,104,58,.2)}
.category::after{content:"\2192";position:absolute;right:18px;top:50%;transform:translateY(-50%);color:var(--gold-deep);font-family:"Montserrat",sans-serif;font-weight:800;font-size:1.15rem;opacity:.45;transition:opacity .16s ease,right .16s ease}
.category:hover::after{opacity:1;right:13px}

/* right-side alignment: match the video's top and bottom edges (video size unchanged) */
.video-section .feature-layout{align-items:stretch}
.video-section .video-figure{align-self:start}
.video-section .video-aside{display:flex;flex-direction:column;height:100%}
.video-section .video-aside .aside-tags{margin-top:auto}

/* hero brand meaning */
.brand-meaning{margin:0 0 12px;font-family:"Montserrat",sans-serif;font-size:1rem;font-weight:700;letter-spacing:.04em;color:var(--muted)}
.brand-meaning strong{color:var(--gold-deep);font-weight:800}

/* right side: natural height, fixed 10px gap above tags */
.video-section .feature-layout{align-items:start}
.video-section .video-aside{display:block;height:auto}
.video-section .video-aside .aside-tags{margin-top:10px}

/* figure wraps the video exactly: column = video width, no extra space */
.video-section .feature-layout{grid-template-columns:minmax(0,465px) minmax(0,1fr)}
.video-section .walkthrough{width:100%;max-width:465px}
.video-section .video-caption{max-width:100%}

/* ===== green theme: buttons + category cards (site-wide) ===== */
:root{--gr:#5a7d4d;--gr-deep:#3f5e34}
/* secondary + nav buttons: green accent */
.button,.nav a{border-color:rgba(63,94,52,.34);color:var(--gr-deep)}
/* primary buttons: solid green */
.button.primary{background:linear-gradient(180deg,#5a7d4d 0%,#3f5e34 100%);border-color:rgba(47,71,38,.4);color:#fff}
.button.primary:hover{box-shadow:0 12px 22px rgba(50,74,40,.28)}
/* category cards: green arrow + green hover */
.category::after{color:var(--gr-deep)}
.category:hover{border-color:var(--gr)}

/* fill empty space under tags in video aside */
.aside-extra{margin-top:16px;font-size:.86rem}
.aside-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.aside-actions .button{min-height:38px;padding:10px 16px;font-size:.76rem}

/* pills use the same green as the primary button, site-wide */
.grade-chip{background:linear-gradient(180deg,#5a7d4d 0%,#3f5e34 100%);color:#fff}
.badge{background:linear-gradient(180deg,#5a7d4d 0%,#3f5e34 100%);color:#fff}

/* ============ RESPONSIVE / MOBILE (overrides all desktop rules above) ============ */
@media(max-width:820px){
  .site-header{align-items:flex-start;flex-direction:column}
  .nav{width:100%;justify-content:flex-start}
  .nav a{flex:1 1 140px}
  .hero{grid-template-columns:1fr;padding:48px 22px 24px;min-height:0}
  .focus-card{justify-self:stretch;width:100%}
  .info-grid,.category-grid,.feature-layout{grid-template-columns:1fr}
  .feature-top{grid-template-columns:1fr}
  .feature-icon{justify-self:start}
  .video-section .feature-layout{grid-template-columns:1fr}
  .video-section .walkthrough{max-width:420px;width:100%;margin:0 auto}
  .video-section .video-caption{max-width:420px;margin-left:auto;margin-right:auto}
  .scale-row{grid-template-columns:104px 1fr}
}
@media(max-width:560px){
  .page{width:min(100%,calc(100% - 20px));padding-top:10px}
  h1{font-size:2.1rem}
  .hero-title img{width:42px;height:42px}
  .process-grid,.mini-grid,.check-list{grid-template-columns:1fr}
  .category{align-items:flex-start}
  .subhero h1{font-size:1.9rem}
  .feature-top h2,.section-head h2,.cert h2{font-size:1.45rem}
  .hero,.feature-panel,.subhero,.statement,.cert{padding-left:18px;padding-right:18px}
  .scale-row{grid-template-columns:88px 1fr;gap:10px}
  .grade-chip{font-size:.72rem;padding:6px 6px}
}

img{max-width:100%;height:auto}/*imgsafe*/
