* {
  box-sizing: border-box;
}

:root {
  --bg: #f6faf9;
  --bg-soft: #eef6f5;
  --panel: #ffffff;
  --panel-strong: #f1f7f6;
  --line: #dce8e6;
  --line-strong: #c6d8d5;
  --text: #203332;
  --muted: #738082;
  --muted-strong: #485759;
  --orange: #e1262d;
  --orange-light: #f33a42;
  --teal: #16968e;
  --gold: #f6ba4b;
  --green: #2f9f72;
  --shadow: 0 24px 70px rgba(24, 55, 53, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(22, 150, 142, 0.11), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(225, 38, 45, 0.08), transparent 24rem),
    linear-gradient(180deg, #ffffff 0, #f7fbfa 54rem, #eef7f5 100%),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

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

main {
  min-height: 100vh;
  overflow: hidden;
}

.site-header,
.admin-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(34, 51, 50, 0.09);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  align-items: center;
  background: transparent;
  border-radius: 8px;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 6px 8px;
  width: 68px;
}

.brand-logo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.96rem;
  letter-spacing: 0;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav .nav-cta {
  background: var(--orange);
  border-radius: 7px;
  color: #ffffff;
  font-weight: 800;
  padding: 10px 16px;
}

.site-header .brand-logo {
  height: 64px;
  padding: 0;
  width: 174px;
}

.site-header .brand > span:not(.brand-logo) {
  display: none;
}

.site-header {
  padding-bottom: 12px;
  padding-top: 12px;
}

.section-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 40px);
  width: 100%;
}

.hero-section {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: calc(100vh - 72px);
  padding-top: clamp(32px, 5vw, 72px);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--orange-light);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.9rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 24px;
  max-width: 820px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.08rem;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-lede,
.section-heading p,
.prose-block p,
.showcase-copy p,
.enrollment-copy p,
.final-cta p,
.thank-you-card p,
.admin-hero p {
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  line-height: 1.7;
}

.hero-lede {
  max-width: 690px;
}

.hero-actions,
.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: 0 18px 40px rgba(255, 90, 31, 0.26);
  color: #ffffff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  color: var(--text);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.hero-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 36px 0 0;
  max-width: 680px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.hero-stats dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.hero-stats dd {
  color: var(--text);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 900;
  margin: 0;
}

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

.visual-card,
.registration-form,
.tool-card,
.timeline-card,
.feature-card,
.benefit-card,
.thank-you-card,
.admin-login,
.admin-stats article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-card {
  aspect-ratio: 16 / 8.8;
  min-height: 230px;
  overflow: hidden;
  position: relative;
}

.visual-card img,
.showcase-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.visual-card::after,
.showcase-media::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.08)),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
  content: "";
  inset: 0;
  position: absolute;
}

.visual-overlay {
  bottom: 20px;
  left: 20px;
  position: absolute;
  z-index: 2;
}

.visual-overlay span,
.visual-overlay strong {
  display: block;
}

.visual-overlay span {
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.visual-overlay strong {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
}

.registration-form {
  display: grid;
  gap: 13px;
  padding: clamp(18px, 3vw, 28px);
}

.form-heading span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-heading h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
  margin: 6px 0;
}

.form-heading p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.registration-form label,
.admin-login label {
  color: var(--muted-strong);
  display: grid;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 7px;
}

.registration-form input,
.registration-form select,
.registration-form textarea,
.admin-login input,
.admin-table select {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text);
  min-height: 42px;
  outline: none;
  padding: 10px 12px;
  width: 100%;
}

.registration-form textarea {
  min-height: 82px;
  resize: vertical;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus,
.admin-login input:focus,
.admin-table select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.16);
}

.form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.form-error,
.admin-error {
  background: rgba(255, 90, 31, 0.12);
  border: 1px solid rgba(255, 90, 31, 0.34);
  border-radius: 7px;
  color: #ffd6c7;
  font-weight: 800;
  margin: 0;
  padding: 12px;
}

.form-submit {
  width: 100%;
}

.two-column,
.receive-section,
.enrollment-section {
  align-items: start;
  display: grid;
  gap: clamp(24px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.prose-block p:last-child,
.showcase-copy p:last-child,
.section-heading p:last-child,
.enrollment-copy p:last-child,
.final-cta p:last-child {
  margin-bottom: 0;
}

.section-heading {
  margin-bottom: clamp(26px, 4vw, 46px);
  max-width: 780px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.advantage-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.advantage-grid .section-heading {
  grid-column: 1 / -1;
}

.feature-card,
.benefit-card {
  min-height: 124px;
  padding: 20px;
}

.feature-card span,
.benefit-card span {
  background: linear-gradient(135deg, var(--teal), var(--orange));
  border-radius: 999px;
  display: block;
  height: 9px;
  margin-bottom: 18px;
  width: 42px;
}

.feature-card h3,
.benefit-card p {
  margin: 0;
}

.tool-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tool-card {
  min-height: 230px;
  padding: 24px;
}

.tool-card h3 {
  color: var(--text);
  font-size: 1.15rem;
}

.tool-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.journey-section {
  position: relative;
}

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

.timeline-card {
  padding: 24px;
}

.timeline-card > span {
  color: var(--orange-light);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.timeline-card ul {
  color: var(--muted-strong);
  display: grid;
  gap: 9px;
  line-height: 1.5;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.timeline-card li {
  border-top: 1px solid var(--line);
  padding-top: 9px;
}

.tutor-section {
  align-items: center;
  display: grid;
  gap: clamp(26px, 5vw, 72px);
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
}

.tutor-media {
  background:
    linear-gradient(135deg, rgba(34, 194, 203, 0.18), rgba(255, 90, 31, 0.16)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 520px;
  overflow: hidden;
  padding: 10px;
  position: relative;
}

.tutor-media::after {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
  content: "";
  inset: 10px;
  pointer-events: none;
  position: absolute;
}

.tutor-media img {
  border-radius: 6px;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.tutor-copy {
  max-width: 720px;
}

.tutor-copy h2 {
  margin-bottom: 12px;
}

.tutor-role {
  color: var(--teal);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.tutor-copy p:not(.tutor-role) {
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.75;
}

.tutor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tutor-tags span {
  background: rgba(34, 194, 203, 0.1);
  border: 1px solid rgba(34, 194, 203, 0.28);
  border-radius: 999px;
  color: var(--muted-strong);
  font-weight: 900;
  padding: 11px 14px;
}

.split-showcase {
  align-items: center;
  display: grid;
  gap: clamp(24px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.showcase-media {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.project-list,
.career-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.project-list span,
.career-grid span {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  font-weight: 800;
  padding: 11px 14px;
}

.career-grid {
  justify-content: center;
}

.benefit-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-card {
  min-height: 118px;
}

.enrollment-section {
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.18), rgba(34, 194, 203, 0.12)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: clamp(54px, 7vw, 90px);
  max-width: 1100px;
  padding: clamp(28px, 5vw, 54px);
}

.enrollment-section .button {
  align-self: center;
  justify-self: end;
}

.faq-list {
  border-top: 1px solid var(--line);
  margin: 0 auto;
  max-width: 900px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-list summary {
  color: var(--muted-strong);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  padding: 22px 6px;
  position: relative;
}

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

.faq-list summary::after {
  color: var(--orange-light);
  content: "+";
  font-size: 1.35rem;
  position: absolute;
  right: 8px;
  top: 17px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 760px;
  padding: 0 46px 22px 6px;
}

.final-cta {
  max-width: 900px;
  text-align: center;
}

.final-cta .button {
  margin-top: 12px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 36px clamp(18px, 4vw, 40px) 56px;
}

.site-footer img {
  background: #ffffff;
  border-radius: 8px;
  height: 48px;
  object-fit: contain;
  padding: 6px;
  width: 118px;
}

.site-footer p {
  color: var(--muted);
  margin: 12px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.site-footer a {
  color: var(--muted-strong);
  font-weight: 800;
}

.thank-you-page,
.admin-page {
  min-height: 100vh;
}

.thank-you-page {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: clamp(18px, 5vw, 70px);
}

.thank-you-card {
  max-width: 720px;
  padding: clamp(26px, 5vw, 54px);
  text-align: center;
}

.thank-you-brand {
  justify-content: center;
  margin-bottom: 38px;
}

.thank-you-card h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.thank-you-actions {
  justify-content: center;
}

.admin-page {
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 194, 203, 0.16), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(255, 90, 31, 0.14), transparent 26rem),
    var(--bg);
  padding-bottom: 70px;
}

.admin-header {
  position: relative;
}

.admin-hero,
.admin-stats,
.admin-table-wrap,
.admin-error {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
  width: calc(100% - clamp(36px, 8vw, 80px));
}

.admin-hero {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  padding: 70px 0 34px;
}

.admin-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  margin-bottom: 14px;
}

.admin-login {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.admin-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 18px;
}

.admin-stats article {
  box-shadow: none;
  padding: 20px;
}

.admin-stats span {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.admin-stats strong {
  display: block;
  font-size: 2rem;
}

.admin-table-wrap {
  margin-top: 22px;
}

.table-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.table-heading h2 {
  font-size: 1.6rem;
  margin: 0;
}

.admin-table-scroll {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
}

.admin-table {
  border-collapse: collapse;
  min-width: 1080px;
  width: 100%;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--muted-strong);
}

.admin-table td strong,
.admin-table td span,
.admin-table td a {
  display: block;
}

.admin-table td span,
.admin-table td a {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 5px;
}

.text-button {
  background: none;
  border: 0;
  color: var(--orange-light);
  cursor: pointer;
  font-weight: 900;
  padding: 0;
}

@media (max-width: 1100px) {
  .hero-section,
  .two-column,
  .receive-section,
  .enrollment-section,
  .tutor-section,
  .split-showcase,
  .admin-hero {
    grid-template-columns: 1fr;
  }

  .tool-grid,
  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enrollment-section .button {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .site-header,
  .admin-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    width: 100%;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .section-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-section {
    min-height: auto;
  }

  .tutor-media {
    min-height: 420px;
  }

  .tutor-media img {
    min-height: 400px;
  }

  .hero-stats,
  .timeline,
  .benefit-grid,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .form-row,
  .tool-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .admin-hero,
  .admin-stats,
  .admin-table-wrap,
  .admin-error {
    width: calc(100% - 36px);
  }
}

/* AGT professional light-theme refinements */
h1 {
  font-size: 4.8rem;
  line-height: 1.02;
}

h2 {
  font-size: 3.15rem;
  line-height: 1.08;
}

.hero-lede,
.section-heading p,
.prose-block p,
.showcase-copy p,
.enrollment-copy p,
.final-cta p,
.thank-you-card p,
.admin-hero p {
  font-size: 1.08rem;
}

.eyebrow,
.form-heading span,
.timeline-card > span {
  color: var(--teal);
  letter-spacing: 0;
}

.hero-section {
  gap: 56px;
  min-height: calc(100vh - 88px);
  position: relative;
}

.hero-section::before {
  background: rgba(22, 150, 142, 0.1);
  border-radius: 999px 0 0 999px;
  content: "";
  height: 320px;
  position: absolute;
  right: -170px;
  top: 160px;
  width: 430px;
  z-index: 0;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  color: var(--text);
  max-width: 780px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.hero-badges span,
.tutor-tags span,
.project-list span,
.career-grid span {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(24, 55, 53, 0.07);
  color: var(--muted-strong);
  font-weight: 850;
}

.button {
  border-radius: 8px;
  min-height: 50px;
}

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: 0 16px 34px rgba(225, 38, 45, 0.24);
}

.button-secondary {
  background: #ffffff;
  border-color: var(--line-strong);
  color: var(--teal);
}

.main-nav a {
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.main-nav a:hover {
  color: var(--teal);
}

.main-nav .nav-cta {
  box-shadow: 0 14px 28px rgba(225, 38, 45, 0.2);
  padding: 14px 22px;
}

.visual-card,
.registration-form,
.tool-card,
.timeline-card,
.feature-card,
.benefit-card,
.thank-you-card,
.admin-login,
.admin-stats article,
.outcome-card,
.admin-table-wrap {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.visual-card {
  border-radius: 90px 8px 90px 8px;
}

.visual-card::after {
  background:
    linear-gradient(90deg, rgba(11, 72, 68, 0.8), rgba(11, 72, 68, 0.1)),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(18, 45, 43, 0.64));
}

.visual-overlay span {
  color: #ffffff;
}

.visual-overlay strong {
  color: #ffffff;
}

.registration-form {
  border-top: 5px solid var(--teal);
}

.registration-form input,
.registration-form select,
.registration-form textarea,
.admin-login input,
.admin-table select,
.admin-toolbar input,
.admin-toolbar select {
  background: #ffffff;
  border: 1px solid var(--line-strong);
  color: var(--text);
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus,
.admin-login input:focus,
.admin-table select:focus,
.admin-toolbar input:focus,
.admin-toolbar select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(22, 150, 142, 0.14);
}

.consent-label {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 18px 1fr;
}

.consent-label input {
  min-height: 18px;
  padding: 0;
}

.form-error,
.admin-error {
  background: #fff1f2;
  border-color: rgba(225, 38, 45, 0.32);
  color: #9e151b;
}

.hero-stats div,
.enrollment-section,
.final-cta {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-stats dd,
.tool-card h3 {
  color: var(--text);
}

.course-metrics {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-bottom: 36px;
  padding-top: 20px;
}

.course-metrics article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(24, 55, 53, 0.08);
  padding: 24px;
}

.course-metrics strong {
  color: var(--teal);
  display: block;
  font-size: 2.3rem;
  line-height: 1;
  margin-bottom: 8px;
}

.course-metrics span {
  color: var(--muted-strong);
  font-weight: 900;
}

.feature-card span,
.benefit-card span,
.outcome-card span {
  background: linear-gradient(135deg, var(--teal), var(--orange));
}

.outcomes-section {
  padding-top: 46px;
}

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

.outcome-card {
  border-radius: 8px;
  min-height: 250px;
  padding: 26px;
}

.outcome-card span {
  border-radius: 999px;
  display: block;
  height: 10px;
  margin-bottom: 22px;
  width: 54px;
}

.outcome-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.tutor-section {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 54px;
  margin-top: 44px;
  padding: clamp(28px, 5vw, 58px);
}

.tutor-media {
  background:
    linear-gradient(135deg, rgba(22, 150, 142, 0.18), rgba(225, 38, 45, 0.1)),
    #ffffff;
  border: 0;
  border-radius: 120px 8px 120px 8px;
  box-shadow: none;
  min-height: 560px;
  padding: 0;
}

.tutor-media::after {
  background: linear-gradient(180deg, transparent 52%, rgba(14, 46, 43, 0.16));
  inset: 0;
}

.tutor-media img {
  border-radius: 120px 8px 120px 8px;
  min-height: 560px;
  object-position: center top;
}

.tutor-role {
  color: var(--teal);
}

.tutor-proof {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.tutor-proof article {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.tutor-proof strong,
.tutor-proof span {
  display: block;
}

.tutor-proof strong {
  color: var(--orange);
  font-size: 1.45rem;
  margin-bottom: 5px;
}

.tutor-proof span {
  color: var(--muted-strong);
  font-weight: 850;
}

.showcase-media {
  border-radius: 8px 90px 8px 90px;
}

.showcase-media::after {
  background: linear-gradient(180deg, rgba(11, 72, 68, 0), rgba(11, 72, 68, 0.34));
}

.faq-list {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(24, 55, 53, 0.08);
  overflow: hidden;
}

.faq-list details {
  border-color: var(--line);
}

.faq-list summary::after {
  color: var(--teal);
}

.final-cta {
  border-top: 5px solid var(--orange);
  border-radius: 8px;
  margin-bottom: 64px;
  padding: clamp(32px, 6vw, 64px);
}

.site-footer {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -14px 46px rgba(24, 55, 53, 0.05);
  margin-top: 36px;
}

.admin-page {
  background:
    radial-gradient(circle at 15% 5%, rgba(22, 150, 142, 0.12), transparent 30rem),
    radial-gradient(circle at 86% 8%, rgba(225, 38, 45, 0.09), transparent 28rem),
    linear-gradient(180deg, #ffffff 0, #f4faf9 100%);
}

.admin-header .brand-logo {
  width: 86px;
}

.admin-hero h1 {
  font-size: 3.8rem;
}

.admin-stats article small {
  color: var(--muted);
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 6px;
}

.admin-table-wrap {
  border-radius: 8px;
  padding: 24px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-toolbar {
  align-items: end;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(220px, 1fr) 220px auto;
  margin: 0 0 16px;
  padding: 16px;
}

.admin-toolbar label {
  color: var(--muted-strong);
  display: grid;
  font-size: 0.84rem;
  font-weight: 900;
  gap: 7px;
}

.admin-toolbar p {
  color: var(--teal);
  font-weight: 900;
  margin: 0 0 12px;
  white-space: nowrap;
}

.admin-table-scroll {
  background: #ffffff;
}

.admin-table th {
  background: #f2f8f7;
  color: var(--text);
}

.admin-table tr:hover td {
  background: #fbfefe;
}

.admin-table td strong {
  color: var(--text);
}

.text-button {
  color: var(--orange);
}

@media (max-width: 1100px) {
  h1,
  .admin-hero h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .course-metrics,
  .outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-toolbar {
    grid-template-columns: 1fr 220px;
  }

  .admin-toolbar p {
    margin-bottom: 0;
  }
}

@media (max-width: 760px) {
  .site-header .brand-logo {
    height: 54px;
    width: 150px;
  }

  h1,
  .admin-hero h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-section::before {
    height: 180px;
    right: -120px;
    top: 180px;
    width: 260px;
  }

  .hero-badges,
  .hero-actions,
  .thank-you-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-stats,
  .course-metrics,
  .outcome-grid,
  .tutor-proof,
  .admin-toolbar {
    grid-template-columns: 1fr;
  }

  .visual-card,
  .tutor-media,
  .tutor-media img,
  .showcase-media {
    border-radius: 8px;
  }

  .tutor-media,
  .tutor-media img {
    min-height: 430px;
  }

  .admin-table-wrap {
    padding: 18px;
  }

  .table-heading {
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }

  .admin-actions {
    justify-content: flex-start;
    width: 100%;
  }
}
