﻿:root {
  --ink: #0a0f19;
  --ink-2: #07111f;
  --paper: #f6fbfb;
  --paper-2: #ffffff;
  --line: #d8e9e8;
  --muted: #5f6f70;
  --red: #c8302a;
  --red-light: #e4473f;
  --gold: #d4a843;
  --gold-light: #f0c060;
  --teal: #176b6b;
  --teal-light: #2a9d8f;
  --shadow: 0 18px 55px rgba(10, 15, 25, 0.10);
  --radius: 14px;
  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-serif: "DM Serif Display", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(180deg, #fbffff 0%, #f6fbfb 34%, #f4f8f5 100%);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.mini-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 820px; }
.section { padding: 86px 0; }
.section.compact { padding: 60px 0; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--ink);
  transition: opacity .3s ease, visibility .3s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader img { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 40px rgba(42,157,143,.35); }

.welcome {
  position: fixed;
  inset: 0;
  z-index: 800;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(10, 15, 25, .72);
  backdrop-filter: blur(12px);
}
.welcome.show { display: grid; }
.welcome-card {
  width: min(520px, 100%);
  position: relative;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: 0 28px 90px rgba(0,0,0,.34);
  text-align: center;
}
.welcome-card img { width: 118px; height: 118px; object-fit: cover; border-radius: 50%; margin: 0 auto 18px; }
.welcome-card h2 { margin: 0 0 10px; font-family: var(--font-serif); font-size: clamp(28px, 5vw, 42px); }
.welcome-card p { color: var(--muted); margin: 0 0 22px; }
.welcome-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(251,255,255,.95), rgba(232,250,251,.93));
  border-bottom: 1px solid rgba(0,176,200,.22);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0, 176, 200, .08);
}
.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(10,15,25,.12); }
.brand strong { display: block; font-family: var(--font-display); font-size: 1.6rem; letter-spacing: .02em; line-height: .9; color: var(--teal); }
.brand small { display: block; color: var(--muted); font-size: .72rem; white-space: nowrap; }
.nav-menu, .nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-link { padding: 10px 14px; border-radius: 999px; color: var(--muted); font-size: .92rem; font-weight: 700; }
.nav-link:hover, .nav-link.active { color: var(--ink); background: rgba(0,176,200,.10); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper-2); cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); }

.btn, .btn-primary, .btn-outline, .btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
}
.btn:hover, .btn-primary:hover, .btn-outline:hover, .btn-soft:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--red); box-shadow: 0 14px 34px rgba(200,48,42,.22); }
.btn-primary:hover { background: var(--red-light); }
.btn-outline { color: var(--paper); border-color: rgba(245,242,236,.32); background: transparent; }
.btn-outline:hover { border-color: var(--gold); }
.btn-soft { color: var(--ink); background: var(--paper-2); border-color: var(--line); }

.hero-strip {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0 72px;
}
.hero-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(212,168,67,.045) 30px, rgba(212,168,67,.045) 31px);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.hero-label, .eyebrow, .section-eyebrow { margin: 0 0 14px; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: 4px; text-transform: uppercase; }
.hero-title { margin: 0; font-family: var(--font-display); font-size: clamp(62px, 10vw, 120px); line-height: .92; letter-spacing: .02em; }
.hero-title span { color: var(--gold); }
.hero-sub { max-width: 680px; margin: 24px 0 0; color: rgba(245,242,236,.74); font-size: 1.08rem; font-weight: 300; }
.hero-sub strong { color: var(--paper); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.proof-item { min-width: 150px; padding: 16px; border: 1px solid rgba(245,242,236,.12); border-radius: 12px; background: rgba(255,255,255,.045); }
.proof-item strong { display: block; font-family: var(--font-display); color: var(--gold); font-size: 2rem; line-height: 1; }
.proof-item span { color: rgba(245,242,236,.56); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.hero-logo-card { position: relative; padding: 26px; border: 1px solid rgba(245,242,236,.12); border-radius: 18px; background: rgba(255,255,255,.04); box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.hero-logo-card img { width: min(410px, 100%); margin: 0 auto; border-radius: 16px; }
.logo-caption { margin-top: 18px; color: rgba(245,242,236,.68); text-align: center; font-size: .92rem; }

.section-head { margin-bottom: 38px; }
.section-title { margin: 0 0 16px; font-family: var(--font-serif); font-size: clamp(31px, 5vw, 52px); line-height: 1.12; color: var(--ink); }
.section-title em { color: var(--teal); font-style: italic; }
.section-lead { max-width: 760px; margin: 0; color: var(--muted); font-size: 1.06rem; font-weight: 300; }
.section-lead strong { color: var(--ink); font-weight: 700; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }

.card-grid { display: grid; gap: 22px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card, .pillar-card, .method-card, .contact-form, .contact-panel, .faq-list details {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card:hover, .pillar-card:hover, .method-card:hover { transform: translateY(-4px); }
.card h3, .pillar-card h3, .method-card h3 { margin: 12px 0 10px; font-family: var(--font-serif); font-size: 1.45rem; line-height: 1.2; }
.card p, .pillar-card p, .method-card p { margin: 0; color: var(--muted); }
.card-label { display: inline-flex; padding: 5px 12px; border-radius: 999px; background: #fef6e4; color: #a07820; font-weight: 900; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.card-number { font-family: var(--font-display); color: rgba(200,48,42,.25); font-size: 4rem; line-height: .8; }
.pillar-symbol {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,176,200,.10);
  color: var(--brand-cyan);
  margin-bottom: 16px;
}

.slab-wrapper { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); background: var(--paper-2); }
table.slab { width: 100%; border-collapse: collapse; min-width: 760px; font-size: .92rem; }
.slab thead tr { background: var(--ink); color: var(--paper); }
.slab th { padding: 16px 18px; text-align: left; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.slab td { padding: 15px 18px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.slab tr:last-child td { border-bottom: none; }
.badge { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 900; }
.badge-green { background: #e6f4ef; color: #1a7a52; }
.badge-gold { background: #fef6e4; color: #a07820; }
.badge-orange { background: #fff0e4; color: #c05820; }
.badge-red { background: #ffeaea; color: #b02020; }
.slab-note { margin-top: 16px; color: var(--muted); font-size: .84rem; }

.truth-band, .promise-band, .dark-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: 86px 0;
}
.truth-band::after, .promise-band::after {
  content: "PROGYLM";
  position: absolute;
  right: -40px;
  bottom: -20px;
  font-family: var(--font-display);
  font-size: 190px;
  line-height: 1;
  color: rgba(255,255,255,.035);
  pointer-events: none;
}
.truth-inner, .promise-inner, .dark-inner { position: relative; z-index: 1; }
.truth-eyebrow { color: var(--red-light); }
.truth-title, .promise-title { margin: 0 0 20px; max-width: 860px; font-family: var(--font-serif); font-size: clamp(30px, 5vw, 54px); line-height: 1.12; }
.truth-title em, .promise-title em { color: var(--gold); font-style: italic; }
.truth-copy, .promise-copy { max-width: 780px; color: rgba(245,242,236,.68); font-weight: 300; }
.truth-copy strong, .promise-copy strong { color: var(--paper); }
.dark-card { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px; }
.dark-card h3 { margin: 12px 0 10px; color: var(--paper); font-family: var(--font-serif); font-size: 1.35rem; }
.dark-card p { margin: 0; color: rgba(245,242,236,.66); }
.dark-card .card-number { color: rgba(212,168,67,.25); }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 38px 0; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); overflow: hidden; }
.stat-cell { padding: 24px; background: rgba(255,255,255,.04); }
.stat-num { font-family: var(--font-display); color: var(--gold); font-size: 3.2rem; line-height: .9; }
.stat-label { margin-top: 8px; color: rgba(245,242,236,.58); font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; }

.clock-card { background: var(--ink); color: var(--paper); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.clock-big { font-family: var(--font-display); color: var(--gold); font-size: clamp(72px, 12vw, 130px); line-height: .85; }
.clock-label { color: rgba(245,242,236,.58); letter-spacing: .14em; text-transform: uppercase; font-size: .78rem; }
.timeline { display: grid; gap: 12px; }
.timeline-row { display: grid; grid-template-columns: 110px 1fr 72px; gap: 14px; align-items: center; color: rgba(245,242,236,.74); }
.timeline-bar { height: 10px; border-radius: 999px; background: rgba(255,255,255,.09); overflow: hidden; }
.timeline-fill { height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--teal-light), var(--gold)); }

.steps { display: grid; gap: 14px; }
.step { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-2); }
.step span { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--paper); background: var(--teal); font-weight: 900; }
.step p { margin: 0; color: var(--muted); }

.youtube-card { display: flex; justify-content: space-between; align-items: center; gap: 28px; padding: 36px; border-radius: var(--radius); background: var(--ink); color: var(--paper); box-shadow: var(--shadow); }
.youtube-card p { color: rgba(245,242,236,.68); }

.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: start; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; margin-bottom: 8px; font-weight: 800; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 14px 15px; color: var(--ink); background: var(--paper); outline: none; }
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(42,157,143,.12); }
.form-note { color: var(--muted); font-size: .88rem; }
.contact-panel > img { width: 132px; height: 132px; object-fit: cover; border-radius: 18px; margin-bottom: 20px; }
.contact-links { display: grid; gap: 14px; margin-top: 24px; }
.contact-links a { display: flex; align-items: center; gap: 14px; padding: 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.contact-links span, .social-links a {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--brand-cyan));
  color: white;
  line-height: 1;
}
.contact-links small { display: block; color: var(--muted); }
.social-links { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.social-icon { flex: 0 0 20px; width: 20px; height: 20px; margin: auto; fill: currentColor; }

.faq-list { display: grid; gap: 12px; }
summary { cursor: pointer; font-weight: 900; }
details p { color: var(--muted); }

.site-footer { padding: 58px 0 28px; background: var(--ink); color: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.footer-grid p, .footer-grid a, .footer-bottom { color: rgba(245,242,236,.62); }
.footer-grid a { display: block; margin: 8px 0; }
.footer-grid .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.footer-grid h3 { margin-top: 0; color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding-top: 24px; margin-top: 32px; border-top: 1px solid rgba(255,255,255,.1); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-menu { position: fixed; inset: 76px 18px auto 18px; display: none; flex-direction: column; align-items: stretch; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-2); box-shadow: var(--shadow); }
  .nav-menu.open { display: flex; }
  .nav-actions .btn-primary { display: none; }
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .card-grid.three, .card-grid.four, .stat-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1120px); }
  .section, .truth-band, .promise-band, .dark-band { padding: 64px 0; }
  .hero-strip { padding: 72px 0 56px; }
  .brand small { display: none; }
  .card-grid.two, .card-grid.three, .card-grid.four, .stat-grid, .footer-grid { grid-template-columns: 1fr; }
  .youtube-card, .footer-bottom { flex-direction: column; align-items: stretch; }
  .timeline-row { grid-template-columns: 1fr; gap: 8px; }
  .hero-title { font-size: clamp(54px, 18vw, 86px); }
}

/* Preview 2 restoration and Progylm protection polish */
:root { --brand-cyan: #00b0c8; }
.brand strong, .brand-word, .footer-tag span { color: var(--brand-cyan); }
.protected-brand, .protected-brand * { user-select: none; -webkit-user-select: none; }
img { -webkit-user-drag: none; user-select: none; }
body.content-guard { -webkit-touch-callout: none; }
.hero-logo-card { display: grid; justify-items: center; }
.hero-logo-card img {
  width: min(360px, 82vw);
  height: min(360px, 82vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,176,200,.32);
  box-shadow: 0 0 44px rgba(0,176,200,.16);
}
.logo-caption { color: rgba(245,242,236,.82); font-weight: 700; }

.badge-grey { background: #f0f0f0; color: #666; }
.slab-wrapper { border-radius: 12px; }
.slab tbody tr { transition: background .2s ease; }
.slab tbody tr:hover { background: #f9f6ef; }
.rank-bar-wrap { display: flex; align-items: center; gap: 10px; min-width: 180px; }
.rank-bar { flex: 1; height: 6px; background: var(--line); border-radius: 99px; overflow: hidden; }
.rank-bar-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--teal-light), var(--gold)); transition: width 1s ease; }
.slab-note { display: flex; gap: 7px; align-items: flex-start; color: var(--muted); font-size: 12px; line-height: 1.7; }
.slab-note span { color: var(--gold); font-weight: 900; }

.truth-band::after {
  content: "TRUTH";
  right: -20px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(90deg);
  color: rgba(200,48,42,.06);
  font-size: clamp(120px, 18vw, 220px);
}
.truth-copy { font-size: 16px; line-height: 1.9; }
.truth-copy strong { color: var(--paper); font-weight: 700; }
.truth-copy strong:nth-of-type(2) { color: var(--gold); }
.stat-highlight { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: rgba(255,255,255,.08); border-radius: 12px; overflow: hidden; margin: 52px 0; border: 1px solid rgba(255,255,255,.08); }
.stat-highlight .stat-cell { background: rgba(10,10,15,.6); padding: 36px 28px; text-align: center; }
.truth-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 52px; }
.truth-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 32px 28px; position: relative; overflow: hidden; transition: transform .3s ease, border-color .3s ease; }
.truth-card:hover { transform: translateY(-4px); border-color: rgba(212,168,67,.3); }
.truth-card-num { position: absolute; top: 16px; right: 20px; font-family: var(--font-display); font-size: 64px; line-height: 1; color: rgba(212,168,67,.15); }
.truth-card-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: rgba(0,176,200,.12); color: var(--brand-cyan); font-family: var(--font-display); font-size: 1.35rem; letter-spacing: .04em; margin-bottom: 16px; }
.truth-card-icon .mini-icon { width: 23px; height: 23px; }
.truth-card h3 { margin: 0 0 10px; font-family: var(--font-serif); font-size: 20px; color: var(--paper); }
.truth-card p { margin: 0; font-size: 14px; font-weight: 300; color: rgba(245,242,236,.65); line-height: 1.7; }
.truth-card p strong { color: var(--gold); font-weight: 700; }
.cta-strip { margin-top: 52px; border: 1px solid rgba(200,48,42,.4); background: rgba(200,48,42,.08); border-radius: 12px; padding: 32px 36px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.cta-strip-text { flex: 1; min-width: 260px; }
.cta-strip-text h3 { margin: 0 0 8px; font-family: var(--font-serif); font-size: 22px; color: var(--paper); }
.cta-strip-text p { margin: 0; font-size: 14px; font-weight: 300; color: rgba(245,242,236,.6); }

.demand-section { background: var(--paper); padding: 86px 0; }
.demand-inner { max-width: 1120px; }
.demand-hero-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 72px; }
.clock-visual { background: var(--ink); border-radius: 16px; padding: 48px 32px; text-align: center; position: relative; overflow: hidden; color: var(--paper); box-shadow: var(--shadow); }
.clock-visual::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(212,168,67,.12) 0%, transparent 70%); pointer-events: none; }
.clock-visual > * { position: relative; }
.clock-unit { font-size: 16px; font-weight: 300; color: rgba(245,242,236,.5); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 4px; }
.clock-divider { width: 40px; height: 2px; background: var(--gold); margin: 16px auto; opacity: .4; }
.clock-caption { font-size: 13px; color: rgba(245,242,236,.45); margin-top: 12px; font-weight: 300; }
.clock-mini-label { margin-top: 24px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(245,242,236,.3); }
.clock-sub-stat { font-family: var(--font-display); font-size: 42px; color: var(--red-light); line-height: 1; }
.clock-note { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.07); font-size: 12px; color: rgba(245,242,236,.42); font-weight: 300; line-height: 1.7; }
.clock-note strong { color: rgba(212,168,67,.72); }
.demand-right .section-eyebrow { color: var(--teal); }
.demand-copy { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.8; }
.demand-copy strong:first-child { color: var(--ink); }
.demand-copy strong:last-child { color: var(--teal); }
.pillar-eyebrow { margin-bottom: 24px; }
.demand-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 52px; }
.demand-pillars .pillar-card { position: relative; overflow: hidden; padding: 28px 22px; }
.demand-pillars .pillar-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; }
.pillar-card.speed::before { background: var(--red); }
.pillar-card.precis::before { background: var(--teal); }
.pillar-card.accur::before { background: var(--gold); }
.pillar-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: rgba(0,176,200,.1); color: var(--brand-cyan); font-family: var(--font-display); font-size: 1.45rem; letter-spacing: .04em; margin-bottom: 14px; }
.pillar-icon .mini-icon { width: 24px; height: 24px; }
.pillar-label { margin: 0 0 8px; font-family: var(--font-display) !important; font-size: 28px !important; letter-spacing: 1px; color: var(--ink); }
.pillar-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.7; }
.pillar-desc strong { color: var(--ink); font-weight: 700; }
.time-breakdown { background: var(--ink); border-radius: 16px; padding: 40px 36px; color: var(--paper); position: relative; overflow: hidden; }
.time-breakdown::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,.01) 60px, rgba(255,255,255,.01) 61px); pointer-events: none; }
.time-breakdown > * { position: relative; }
.tb-title { margin: 0 0 28px; font-family: var(--font-serif); font-size: 22px; color: var(--paper); }
.tb-title span { color: var(--gold); }
.tb-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.tb-label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(245,242,236,.5); min-width: 110px; }
.tb-bar-wrap { flex: 1; height: 8px; background: rgba(255,255,255,.07); border-radius: 99px; overflow: hidden; }
.tb-bar { height: 100%; border-radius: 99px; animation: growBar 1.4s ease forwards; transform-origin: left; }
@keyframes growBar { from { width: 0; } to { width: var(--w); } }
.tb-val { font-family: var(--font-display); font-size: 20px; min-width: 64px; text-align: right; }
.tb-gold { background: rgba(212,168,67,.7); }
.tb-teal { background: rgba(42,157,143,.7); }
.tb-red { background: rgba(200,48,42,.7); }
.tb-paper { background: rgba(245,242,236,.3); }
.tb-gold-text { color: var(--gold); }
.tb-teal-text { color: var(--teal-light); }
.tb-red-text { color: var(--red-light); }
.tb-paper-text { color: rgba(245,242,236,.5); }
.tb-note { margin: 20px 0 0; font-size: 12px; font-weight: 300; color: rgba(245,242,236,.35); line-height: 1.8; }
.tb-note strong { color: rgba(245,242,236,.65); }

.promise-band { background: linear-gradient(135deg, var(--teal) 0%, #0d4a4a 100%); text-align: center; padding: 72px 0; }
.promise-band::after { content: "PROGYLM"; left: 50%; right: auto; bottom: auto; top: 50%; transform: translate(-50%, -50%); color: rgba(0,176,200,.08); font-size: clamp(110px, 20vw, 220px); white-space: nowrap; }
.promise-inner { max-width: 820px; }
.promise-inner .section-eyebrow { color: var(--gold-light); }
.promise-body { font-size: 16px; font-weight: 300; color: rgba(255,255,255,.72); line-height: 1.8; margin: 0 0 40px; }
.promise-body strong { color: white; }
.promise-steps { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.p-step { display: flex; align-items: center; gap: 10px; padding: 10px 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); font-size: 13px; font-weight: 700; color: white; letter-spacing: .5px; }
.p-step:first-child { border-radius: 6px 0 0 6px; }
.p-step:last-child { border-radius: 0 6px 6px 0; }
.p-step-dot { width: 8px; height: 8px; background: var(--gold-light); border-radius: 50%; flex: 0 0 auto; }
.footer-tag { background: var(--ink); text-align: center; padding: 28px 24px; font-size: 12px; color: rgba(245,242,236,.35); letter-spacing: 2px; text-transform: uppercase; }

@media (max-width: 900px) {
  .demand-hero-row, .demand-pillars { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cta-strip { flex-direction: column; align-items: stretch; }
  .tb-row { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .tb-val { text-align: left; }
  .p-step { width: 100%; justify-content: center; border-radius: 6px !important; }
}
.contact-panel > img { border-radius: 50%; border: 2px solid rgba(0,176,200,.26); }

/* Multi-year NEET distribution table from uploaded TSX, converted to static HTML */
.neet-distribution-section .section-lead { max-width: 860px; }
.neet-sample-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 26px;
}
.neet-sample-grid div { background: var(--paper-2); padding: 22px; }
.neet-sample-grid strong { display: block; font-family: var(--font-display); color: var(--brand-cyan); font-size: 2.3rem; line-height: 1; }
.neet-sample-grid span { display: block; margin-top: 8px; color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.year-filter { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.year-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
  padding: 8px 15px;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.year-pill:hover { transform: translateY(-1px); }
.year-pill.active { background: var(--ink); border-color: var(--ink); color: var(--gold); }
.neet-table-wrap { background: #101827; border-color: rgba(255,255,255,.08); box-shadow: 0 28px 80px rgba(10,15,25,.18); }
.neet-sampling-table { width: 100%; min-width: 1180px; border-collapse: separate; border-spacing: 0; color: #e2e8f0; font-size: 13px; }
.neet-sampling-table caption { text-align: left; padding: 14px 16px; color: #94a3b8; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.neet-sampling-table th { position: sticky; top: 0; z-index: 1; background: #0f172a; color: #94a3b8; padding: 12px 14px; text-align: center; border-bottom: 1px solid rgba(255,255,255,.08); white-space: nowrap; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.neet-sampling-table th:first-child, .neet-sampling-table th:nth-child(2), .neet-sampling-table td:first-child, .neet-sampling-table td:nth-child(2) { text-align: left; }
.neet-sampling-table th span { display: block; margin-top: 4px; color: #64748b; font-size: 10px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.neet-sampling-table td { padding: 11px 14px; border-bottom: 1px solid rgba(255,255,255,.055); text-align: center; white-space: nowrap; }
.neet-sampling-table tbody tr:hover td { background: rgba(255,255,255,.035); }
.neet-sampling-table .slab-range { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-weight: 900; }
.tier-badge, .pct-badge { display: inline-flex; align-items: center; justify-content: center; border-radius: 7px; padding: 3px 9px; font-weight: 900; font-size: 12px; border: 1px solid currentColor; background: color-mix(in srgb, currentColor 12%, transparent); }
.neet-tier-elite { color: #22c55e; }
.neet-tier-very-good { color: #84cc16; }
.neet-tier-good { color: #eab308; }
.neet-tier-average { color: #f97316; }
.neet-tier-below { color: #ef4444; }
.neet-tier-low { color: #dc2626; }
.neet-tier-very-low { color: #991b1b; }
.qualified-row td { color: #22c55e; background: rgba(34,197,94,.055); font-weight: 800; }
.below-total-row td { color: #ef4444; background: rgba(239,68,68,.055); font-weight: 800; }
.below-cutoff-row td { opacity: .72; }
.year-hidden { display: none !important; }
.distribution-bars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 28px; }
.distribution-year { border: 1px solid var(--line); border-radius: 14px; background: var(--paper-2); padding: 16px; box-shadow: var(--shadow); }
.distribution-year h3 { margin: 0 0 12px; color: var(--brand-cyan); font-family: var(--font-display); font-size: 1.8rem; line-height: 1; }
.distribution-year .bar { display: grid; grid-template-columns: 72px 1fr 42px; align-items: center; gap: 8px; margin: 7px 0; color: var(--muted); font-size: 11px; }
.distribution-year .bar::before { content: ""; display: block; grid-column: 2; height: 7px; width: calc(var(--w) * 2); min-width: 3px; border-radius: 999px; background: currentColor; }
.distribution-year .bar b { grid-column: 1; grid-row: 1; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.distribution-year .bar em { grid-column: 3; grid-row: 1; font-style: normal; font-weight: 900; text-align: right; }
.distribution-year .elite { color: #22c55e; }
.distribution-year .very-good { color: #84cc16; }
.distribution-year .good { color: #d4a843; }
.distribution-year .average { color: #f97316; }
.distribution-year .below { color: #ef4444; }

@media (max-width: 980px) {
  .neet-sample-grid { grid-template-columns: repeat(2, 1fr); }
  .distribution-bars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .neet-sample-grid, .distribution-bars { grid-template-columns: 1fr; }
  .year-filter { position: sticky; top: 78px; z-index: 20; background: rgba(245,242,236,.94); padding: 8px 0; backdrop-filter: blur(12px); }
  .neet-sampling-table { min-width: 900px; }
}
.distribution-year .low { color: #dc2626; } .distribution-year .very-low { color: #991b1b; } .tier-badge, .pct-badge { background: rgba(255,255,255,.04); }

/* Updated NEET appeared-vs-government-seat table */
.neet-seats-section .section-lead { max-width: 880px; }
.neet-seats-section .neet-table-wrap {
  background: var(--paper-2);
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.neet-seats-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 14px;
}
.neet-seats-table caption {
  padding: 14px 18px;
  text-align: left;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.neet-seats-table thead tr { background: #1e3a5f; }
.neet-seats-table th {
  padding: 15px 18px;
  color: #fff;
  text-align: right;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: nowrap;
}
.neet-seats-table th:first-child,
.neet-seats-table td:first-child { text-align: center; }
.neet-seats-table th span {
  color: rgba(255,255,255,.72);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.neet-seats-table td {
  padding: 15px 18px;
  border-bottom: 1px solid #e2e8f0;
  text-align: right;
  vertical-align: middle;
}
.neet-seats-table tbody tr:nth-child(even) { background: #f8fafc; }
.neet-seats-table tbody tr:hover { background: #eef6f8; }
.neet-seats-table td > span,
.neet-seats-table small {
  display: block;
  margin-top: 2px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
}
.neet-seats-table td:first-child strong {
  color: #1e3a5f;
  font-size: 16px;
}
.neet-seats-table .seat-count { color: #15803d; }
.ratio-badge {
  display: inline-block !important;
  width: max-content;
  margin-left: auto;
  padding: 5px 10px;
  border: 1px solid #bbf7d0;
  border-radius: 7px;
  background: #f0fdf4;
  color: #15803d !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px !important;
  font-weight: 900;
}
.ratio-badge.is-high {
  border-color: #fecaca;
  background: #fef2f2;
  color: #dc2626 !important;
}
.neet-seats-table tfoot td {
  background: #f1f5f9;
  color: #64748b;
  font-size: 11px;
  line-height: 1.7;
  text-align: left;
}
.neet-seats-table tfoot strong { color: #475569; }

.seat-bars {
  margin-top: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}
.seat-bars h3 {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}
.seat-bar-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 13px;
}
.seat-bar-row > span {
  color: #1e3a5f;
  font-weight: 900;
}
.seat-bar-row div { display: grid; gap: 4px; }
.seat-bar-row b {
  display: flex;
  align-items: center;
  min-width: 92px;
  height: 20px;
  border-radius: 5px;
  padding-left: 8px;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
}
.appeared-bar {
  width: var(--w);
  background: #3b82f6;
}
.govt-bar {
  width: max(var(--w), 92px);
  background: #22c55e;
}
.seat-bars p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.legend-blue,
.legend-green {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  align-self: center;
}
.legend-blue { background: #3b82f6; }
.legend-green { background: #22c55e; }

@media (max-width: 620px) {
  .neet-seats-table { min-width: 760px; font-size: 13px; }
  .neet-seats-table th,
  .neet-seats-table td { padding: 12px 14px; }
  .seat-bars { padding: 16px; }
}

/* Learning page: six-pillar content and shifted NEET performance framework */
.learning-hero .clock-card {
  min-height: 310px;
  display: grid;
  align-content: center;
  text-align: center;
}
.learning-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.learning-pillar {
  position: relative;
  overflow: hidden;
}
.learning-pillar::before,
.subject-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--gold));
}
.learning-pillar h3,
.subject-card h3 {
  margin-top: 14px;
}
.learning-pillar p,
.subject-card p {
  font-size: 14px;
  line-height: 1.75;
}
.subjects-section {
  background: rgba(255,255,255,.44);
}
.subject-card {
  position: relative;
  overflow: hidden;
}
.study-section {
  background: rgba(255,255,255,.56);
}
.study-steps .step span {
  width: 46px;
  height: 46px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--teal), var(--brand-cyan));
}
.learning-demand-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 980px) {
  .learning-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .learning-pillars { grid-template-columns: 1fr; }
}
