:root {
  --navy: #07192f;
  --ink: #102235;
  --blue: #0f4c81;
  --sky: #1f8cc8;
  --gold: #f6bd2f;
  --amber: #ffdb76;
  --coral: #f2694b;
  --teal: #3ac6b6;
  --paper: #f7f8fb;
  --white: #ffffff;
  --muted: #687789;
  --line: rgba(16, 34, 53, 0.12);
  --shadow: 0 22px 70px rgba(7, 25, 47, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(7, 25, 47, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar[data-elevated="true"] {
  background: rgba(7, 25, 47, 0.94);
  box-shadow: 0 12px 30px rgba(7, 25, 47, 0.22);
}

.back-chip {
  display: grid;
  place-items: center;
  width: 46px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  color: var(--blue);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(246, 189, 47, 0.24);
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.back-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(246, 189, 47, 0.3);
}

.back-chip.is-hidden {
  display: none;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), var(--amber));
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav a,
.ghost-link,
.primary-link,
.side-link {
  border-radius: 8px;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav a,
.ghost-link {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 0.92rem;
}

.nav a:hover,
.ghost-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.top-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.primary-link {
  padding: 11px 16px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
}

.primary-link:hover,
.button:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.screen {
  display: none;
}

.screen.active {
  display: block;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  padding: 120px clamp(20px, 6vw, 88px) 76px;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("/wp-content/uploads/2017/09/conheca.jpg");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 25, 47, 0.96) 0%, rgba(7, 25, 47, 0.78) 38%, rgba(7, 25, 47, 0.2) 78%),
    linear-gradient(180deg, rgba(7, 25, 47, 0.18), rgba(7, 25, 47, 0.72));
}

.hero-content {
  position: relative;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.14rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span,
.offer-label,
.material-type {
  display: inline-flex;
  width: fit-content;
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.trust-row span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button-primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(246, 189, 47, 0.22);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-button {
  color: var(--white);
  background: var(--blue);
  border: 1px solid rgba(15, 76, 129, 0.16);
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.16);
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--navy);
}

.button.full {
  width: 100%;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 88px);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  background: var(--white);
}

.product-copy {
  max-width: 760px;
}

.price-row {
  display: grid;
  gap: 6px;
  margin: 22px 0;
}

.price-row strong {
  color: var(--blue);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1;
}

.price-row span {
  color: var(--ink);
  font-weight: 900;
}

.home-speaker {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(246, 189, 47, 0.12), transparent 42%),
    var(--white);
}

.speaker-copy {
  max-width: 840px;
}

.speaker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.speaker-panel {
  display: grid;
  gap: 14px;
}

.speaker-panel article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f8fb;
  box-shadow: 0 12px 36px rgba(7, 25, 47, 0.05);
}

.speaker-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1.25rem;
}

.speaker-panel span {
  color: var(--muted);
  line-height: 1.6;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-strip article,
.feature-card,
.module-grid article,
.testimonials article,
.checkout-box,
.summary-panel,
.support-form,
.support-info,
.resource-grid article,
.account-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(7, 25, 47, 0.06);
}

.metric-strip article {
  min-height: 138px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metric-strip strong {
  color: var(--blue);
  font-size: 2.6rem;
  line-height: 1;
}

.metric-strip span {
  color: var(--muted);
  font-weight: 800;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(58, 198, 182, 0.11), transparent 38%),
    var(--navy);
}

.section-dark p,
.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.feature-grid,
.module-grid,
.testimonials,
.resource-grid,
.course-catalog,
.offer-stack,
.authority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.catalog-section {
  background: #f4f8fb;
}

.course-card,
.offer-card,
.authority-grid article,
.argument-grid article,
.reference-grid article,
.pricing-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(7, 25, 47, 0.06);
}

.course-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.official-content-grid .course-card .button {
  align-self: end;
  margin-top: auto;
}

.quote-panel small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.course-card span {
  color: var(--blue);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.course-card strong,
.offer-price,
.summary-price {
  color: var(--blue);
  font-weight: 950;
}

.course-card strong {
  font-size: 1.8rem;
}

.offer-stack {
  background: var(--white);
}

.offer-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.book-cover-card {
  justify-items: center;
  text-align: center;
  background: #fff7dc;
}

.book-cover-card img {
  display: block;
  width: min(100%, 320px);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 25, 47, 0.18);
}

.book-cover-card p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.product-offer-note p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.product-offer-note {
  background: #fff7dc;
}

.speaker-references {
  background: #f4f8fb;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reference-grid article {
  min-height: 190px;
}

.reference-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 1.1rem;
}

.reference-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.pricing-section {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  display: grid;
  gap: 14px;
  align-content: start;
  position: relative;
}

.pricing-card.best-choice {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(246, 189, 47, 0.22), transparent 40%),
    var(--navy);
  border-color: rgba(246, 189, 47, 0.72);
  box-shadow: 0 24px 70px rgba(7, 25, 47, 0.24);
  transform: translateY(-12px);
}

.pricing-card.best-choice p,
.pricing-card.best-choice .check-list li,
.pricing-card.best-choice small {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-price {
  color: var(--blue);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 950;
  line-height: 1;
}

.best-choice .pricing-price {
  color: rgba(255, 255, 255, 0.78);
}

.installment-price {
  color: var(--blue);
  font-size: clamp(2.35rem, 4vw, 3.7rem);
  font-weight: 950;
  line-height: 0.96;
}

.best-choice .installment-price {
  color: var(--gold);
}

.pricing-card small {
  color: var(--muted);
  font-weight: 900;
}

.muted-label {
  background: #e8eef5;
}

.not-included {
  opacity: 0.58;
}

.not-included::before {
  background: var(--coral);
}

.comparison-table {
  margin-top: 34px;
  padding: 26px;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f8fb;
}

.comparison-table table {
  margin-top: 16px;
}

.comparison-table p {
  margin: 18px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 9px;
  border-radius: 5px;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.2;
  white-space: nowrap;
}

.mark.yes {
  color: #156b5d;
  background: #dff8f4;
}

.mark.no {
  color: #8a3427;
  background: #ffe0d9;
}

.mark.text {
  min-width: 86px;
  padding: 7px 10px;
  color: var(--blue);
  background: #fff0c2;
  font-size: 0.9rem;
}

.featured-offer {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(246, 189, 47, 0.24), transparent 42%),
    var(--navy);
  border-color: rgba(255, 255, 255, 0.12);
}

.featured-offer p {
  color: rgba(255, 255, 255, 0.76);
}

.offer-price {
  color: var(--gold);
  font-size: 3rem;
  line-height: 1;
}

.installment {
  margin-top: -6px;
  font-weight: 850;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 4px var(--white);
}

.urgency-card {
  border-color: rgba(246, 189, 47, 0.52);
  background: #fff8e2;
}

.conversion-band,
.proof-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.conversion-band h3,
.proof-band h2 {
  margin: 0;
}

.feature-card {
  min-height: 250px;
  padding: 26px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--gold);
  font-weight: 950;
}

.page-hero {
  padding: 132px clamp(20px, 6vw, 88px) 68px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 76, 129, 0.42), transparent 45%),
    linear-gradient(90deg, var(--navy), #12304f);
}

.page-hero.compact {
  min-height: 440px;
  display: grid;
  align-content: end;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.benefit-list {
  display: grid;
  gap: 12px;
}

.benefit-list span {
  padding: 18px 20px;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: #f1f7fb;
  font-weight: 850;
}

.module-grid article {
  min-height: 208px;
  padding: 24px;
}

.module-grid strong {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--gold);
}

.section-accent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #ffe18d);
}

.section-accent p,
.section-accent .eyebrow {
  color: rgba(7, 25, 47, 0.72);
}

.section-accent > div {
  max-width: 760px;
}

.detail-layout,
.checkout-layout,
.support-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
}

.login-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 22px;
  background: var(--white);
}

.login-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(7, 25, 47, 0.06);
}

.admin-login {
  background: #f3f7fb;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 900;
}

.narrow-page {
  max-width: 720px;
}

.summary-panel,
.checkout-box {
  align-self: start;
  padding: 28px;
  position: sticky;
  top: 98px;
}

.summary-panel ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.summary-price {
  margin: 18px 0;
  font-size: 2.35rem;
  line-height: 1;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  padding: 26px;
  border-left: 6px solid var(--sky);
  background: var(--white);
}

.timeline span,
.webhook-log span {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.quote-panel {
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy));
}

.quote-panel p {
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 850;
}

.testimonials article {
  padding: 28px;
}

.testimonials p {
  color: var(--ink);
  font-size: 1.08rem;
}

.testimonials span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.proof-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(246, 189, 47, 0.22), transparent 40%),
    var(--blue);
}

.proof-band p,
.proof-band .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.sales-arguments {
  background: #f4f8fb;
}

.argument-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.argument-grid article {
  min-height: 220px;
}

.argument-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 1.18rem;
}

.light-band {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(7, 25, 47, 0.06);
}

.light-band p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

details {
  padding: 22px 24px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 1.08rem;
}

details p {
  margin: 14px 0 0;
}

.support-form,
.support-info {
  padding: 26px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
}

textarea {
  resize: vertical;
}

.support-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.checkout-hero {
  background:
    linear-gradient(120deg, rgba(246, 189, 47, 0.18), transparent 42%),
    linear-gradient(90deg, var(--navy), #163d61);
}

.price {
  margin: 16px 0;
  color: var(--blue);
  font-size: 3.4rem;
  font-weight: 950;
}

.event-flow {
  display: grid;
  gap: 14px;
}

.event-flow article {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 88px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.event-flow strong {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--gold);
}

.sales-flow article {
  min-height: 110px;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 270px 1fr;
  padding-top: 74px;
  background: #eef3f7;
}

.app-sidebar {
  padding: 28px 18px;
  color: var(--white);
  background: var(--navy);
}

.compact-brand {
  margin-bottom: 28px;
}

.side-link {
  width: 100%;
  min-height: 44px;
  margin-bottom: 8px;
  border: 0;
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  text-align: left;
  font-weight: 850;
}

.side-link.active,
.side-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.app-main {
  padding: clamp(22px, 4vw, 42px);
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.app-header h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.app-header .button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.student-tab,
.admin-tab {
  display: none;
}

.student-tab.active,
.admin-tab.active {
  display: block;
}

.progress-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(246, 189, 47, 0.2), transparent 45%),
    var(--blue);
}

.progress-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.progress-ring {
  display: grid;
  place-items: center;
  flex: 0 0 112px;
  height: 112px;
  border: 10px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--gold);
  border-radius: 50%;
  font-weight: 950;
  font-size: 1.35rem;
}

.compact-modules {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lesson-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 22px;
}

.video-frame {
  min-height: 430px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(242, 105, 75, 0.22), transparent 42%),
    linear-gradient(145deg, var(--navy), #0c3e68);
}

.video-frame span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.video-frame strong {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.lesson-list {
  display: grid;
  gap: 10px;
}

.lesson-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.lesson-item button,
.resource-grid button,
td button {
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
}

.lesson-item.done {
  border-color: rgba(58, 198, 182, 0.55);
  background: #f0fbf9;
}

.resource-grid article {
  padding: 24px;
}

.resource-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
}

.account-panel {
  padding: 26px;
  max-width: 720px;
}

dl {
  display: grid;
  gap: 12px;
}

dl div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-weight: 850;
}

dd {
  margin: 0;
  font-weight: 850;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: 22px;
}

.editor-form,
.admin-list,
.webhook-log,
.audit-list,
.marketing-admin article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.add-course-form {
  grid-column: 1 / -1;
}

.material-admin-list {
  display: grid;
  gap: 10px;
}

.admin-material-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 8px;
  background: #f4f8fb;
}

.admin-material-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-material-row button {
  align-self: center;
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--white);
  background: var(--coral);
  font-weight: 900;
}

.marketing-admin {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 22px;
}

.ad-copy {
  padding: 18px;
  border-radius: 8px;
  color: var(--ink);
  background: #f4f8fb;
  font-weight: 800;
}

.admin-list ol {
  padding-left: 24px;
  line-height: 2.5;
}

.admin-list span {
  float: right;
  color: var(--muted);
  font-size: 0.92rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.82rem;
}

.status.ok {
  color: #0d685e;
  background: #dff8f4;
}

.status.warn {
  color: #8a5b00;
  background: #fff0c2;
}

.status.danger {
  color: #9a2b16;
  background: #ffe0d9;
}

.webhook-log {
  display: grid;
  gap: 12px;
}

.webhook-log article {
  padding: 16px;
  border-radius: 8px;
  background: #f4f8fb;
}

.audit-list p {
  padding: 12px 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.legal-page {
  max-width: 900px;
  min-height: 70vh;
  padding: 140px 24px 80px;
  margin: 0 auto;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4rem);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 88px);
  color: var(--white);
  background: #061222;
}

.footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 850;
}

.checkout-status {
  position: fixed;
  right: clamp(16px, 4vw, 34px);
  bottom: 24px;
  z-index: 60;
  max-width: min(420px, calc(100vw - 32px));
  padding: 16px 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  box-shadow: var(--shadow);
  font-weight: 850;
  line-height: 1.45;
}

.checkout-status[data-tone="error"] {
  background: #9a2b16;
}

.checkout-status[data-tone="success"] {
  background: #176b4b;
}

.checkout-status[hidden] {
  display: none;
}

@media (max-width: 1020px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .nav,
  .top-actions {
    display: none;
  }

  .topbar.menu-open .nav,
  .topbar.menu-open .top-actions {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .topbar.menu-open .nav a,
  .topbar.menu-open .ghost-link,
  .topbar.menu-open .primary-link {
    width: 100%;
  }

  .section-split,
  .home-speaker,
  .detail-layout,
  .checkout-layout,
  .support-layout,
  .login-grid,
  .lesson-layout,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .module-grid,
  .testimonials,
  .resource-grid,
  .course-catalog,
  .offer-stack,
  .authority-grid,
  .argument-grid,
  .reference-grid,
  .compact-modules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.best-choice {
    transform: none;
  }

  .marketing-admin {
    grid-template-columns: 1fr;
  }

  .summary-panel,
  .checkout-box {
    position: static;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 14px;
  }

  .compact-brand {
    display: none;
  }

  .side-link {
    width: auto;
    min-width: max-content;
    margin: 0;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 92vh;
    padding-top: 112px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(7, 25, 47, 0.96), rgba(7, 25, 47, 0.64));
  }

  .hero-actions,
  .speaker-actions,
  .section-accent,
  .app-header,
  .footer,
  .conversion-band,
  .proof-band,
  .admin-material-row {
    flex-direction: column;
    align-items: stretch;
  }

  .metric-strip,
  .feature-grid,
  .module-grid,
  .testimonials,
  .resource-grid,
  .course-catalog,
  .offer-stack,
  .authority-grid,
  .argument-grid,
  .reference-grid,
  .compact-modules {
    grid-template-columns: 1fr;
  }

  .progress-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  th,
  td {
    padding: 12px 8px;
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
