/*
Theme Name: Alpha AI Education Academy
Description: Practical AI education theme — academy programs, lead capture, enrollment, payments, and student dashboard.
Version: 1.0
Tags: education, academy, ai, custom
*/

:root {
  --ink: #070b1f;
  --ink-2: #0d1430;
  --panel: #111a3d;
  --paper: #ffffff;
  --wash: #f4f7ff;
  --line: #dce4f5;
  --muted: #5f6c86;
  --text: #172033;
  --white: #ffffff;
  --violet: #7c3dff;
  --blue: #246bfe;
  --cyan: #08c7d7;
  --green: #12a86b;
  --orange: #ff7a1a;
  --pink: #e85aa9;
  --shadow: 0 18px 45px rgba(9, 18, 48, 0.14);
  --soft-shadow: 0 10px 25px rgba(9, 18, 48, 0.08);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  color: var(--text);
  background-color: var(--wash);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

/*--Academy site header--*/
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(9, 18, 48, 0.1);
  box-shadow: 0 12px 36px rgba(9, 18, 48, 0.08);
  backdrop-filter: blur(18px);
  width: 100%;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 172px;
  text-decoration: none;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  color: #1f2940;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s linear, color 0.15s linear;
}

.main-nav a:hover,
.main-nav a.is-active,
.main-nav li.current-menu-item a {
  background: rgba(124, 61, 255, 0.1);
  color: var(--violet);
}

.main-nav ul,
.main-nav ol {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(71, 74, 255, 0.26);
  transition: transform 0.15s linear;
}

.nav-cta:hover {
  transform: translateY(-1px);
  color: var(--white);
}

/*--Auth menu inside academy header (logged-out: pill, logged-in: dropdown)--*/
.nav-auth {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-auth .auth_link {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.15s linear, background 0.15s linear, transform 0.15s linear;
}

.nav-auth .auth_link.auth_link_primary {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(71, 74, 255, 0.26);
}

.nav-auth .auth_link.auth_link_primary:hover {
  transform: translateY(-1px);
  color: var(--white);
}

.nav-auth .auth_link:not(.auth_link_primary):hover {
  color: var(--violet);
}

.nav-auth .auth_user {
  position: relative;
}

.nav-auth .auth_user_toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  background-color: rgba(124, 61, 255, 0.06);
  border-radius: 8px;
  user-select: none;
  transition: background-color 0.15s linear;
}

.nav-auth .auth_user_toggle:hover {
  background-color: rgba(124, 61, 255, 0.12);
}

.nav-auth .auth_user_toggle .fa-solid {
  font-size: 11px;
  color: var(--muted);
}

.nav-auth .auth_user_menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 200px;
  background-color: var(--white);
  border: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  z-index: 100;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.nav-auth .auth_user.open .auth_user_menu {
  display: block;
}

.nav-auth .auth_user_menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
}

.nav-auth .auth_user_menu li a:hover {
  background-color: var(--wash);
  color: var(--violet);
}

.nav-auth .auth_user_menu .fa-solid {
  margin-right: 8px;
  color: var(--muted);
  width: 14px;
  text-align: center;
}

/*--Academy footer--*/
.site-footer {
  background-color: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0 0;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-grid > div p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 14px 0 0 0;
}

.footer-grid h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 14px 0;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid ul li {
  margin-bottom: 8px;
}

.footer-grid ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-grid ul li a:hover {
  color: var(--orange);
}

.footer-grid .brand-logo {
  filter: brightness(0) invert(1);
  width: 160px;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/*--Toast (carried from academy)--*/
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--ink);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 14px;
  max-width: 360px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.25s linear, transform 0.25s linear;
  z-index: 9000;
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast.toast_success {
  background-color: #0f5132;
}

.toast.toast_error {
  background-color: #842029;
}

/*--Inline lead-form feedback (academy public pages)--*/
.lead_message {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.lead_message_success {
  background-color: rgba(18, 168, 107, 0.12);
  color: #0f5132;
  border: 1px solid rgba(18, 168, 107, 0.32);
}

.lead_message_error {
  background-color: rgba(220, 53, 69, 0.12);
  color: #842029;
  border: 1px solid rgba(220, 53, 69, 0.28);
}

.mobile_menu {
  display: none;
}

.mobile_menu .fa-bars {
  font-size: 22px;
  color: #000000;
  cursor: pointer;
}

.mobilemenuwrap {
  position: fixed;
  left: -100%;
  top: 0;
  width: 280px;
  height: 100%;
  background-color: #ffffff;
  transition: all 0.3s linear;
  z-index: 9999;
  overflow-y: auto;
}

.mobilemenuwrap.in {
  left: 0;
}

.mobilemenu_logo {
  display: block;
  width: 100%;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #eeeeee;
}

.mobilemenu_logo a {
  display: inline-block;
  width: 100%;
}

.mobilemenu_logo a img {
  display: inline-block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.mobilemenu_nav {
  display: block;
  width: 100%;
  padding: 10px 0;
}

.mobilemenu_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobilemenu_nav ul li {
  display: block;
  width: 100%;
  list-style: none;
  border-bottom: 1px solid #f3f3f3;
}

.mobilemenu_nav ul li a {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  color: #000000;
  text-decoration: none;
}

.mobilemenu_nav ul li a:hover {
  color: #ff7a1a;
}

.mobilemenu_nav ul li.current-menu-item a {
  color: #08c7d7;
}

.mobilemenuwrap .auth_menu {
  display: block;
  width: 100%;
  border-top: 1px solid #eeeeee;
}

.mobilemenuwrap .auth_link {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid #f3f3f3;
}

.mobilemenuwrap .auth_link:hover {
  color: #ff7a1a;
}

.mobilemenuwrap .auth_user {
  display: block;
  width: 100%;
}

.mobilemenuwrap .auth_user_toggle {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  color: #000000;
  cursor: pointer;
  border-bottom: 1px solid #f3f3f3;
  user-select: none;
}

.mobilemenuwrap .auth_user_toggle .fa-solid {
  margin: -2px 0 0 5px;
  font-size: 12px;
}

.mobilemenuwrap .auth_user_menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #fbfbfb;
}

.mobilemenuwrap .auth_user.open .auth_user_menu {
  display: block;
}

.mobilemenuwrap .auth_user_menu li {
  display: block;
  width: 100%;
  border-bottom: 1px solid #f3f3f3;
}

.mobilemenuwrap .auth_user_menu li a {
  display: block;
  width: 100%;
  padding: 12px 30px;
  font-size: 14px;
  color: #000000;
  text-decoration: none;
}

.mobilemenuwrap .auth_user_menu li a:hover {
  color: #ff7a1a;
}

.auth_user_menu .fa-solid {
  margin: 0 6px 0 0;
}

/*--Auth pages (login, signup, forgot password)--*/
.auth_section {
  padding: 80px 0;
  background-color: #f5f7fa;
  width: 100%;
}

.auth_card_wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.auth_card {
  width: 100%;
  max-width: 480px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.auth_card h2 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 6px 0;
}

.auth_card .auth_subtitle {
  font-size: 13px;
  color: #666666;
  margin: 0 0 22px 0;
  line-height: 1.5;
}

.auth_field {
  margin-bottom: 18px;
  position: relative;
}

.auth_field_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.auth_field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 6px;
}

.auth_field input[type="text"],
.auth_field input[type="email"],
.auth_field input[type="password"],
.auth_field input[type="tel"] {
  width: 100%;
  padding: 12px 40px 12px 14px;
  font-size: 14px;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s linear;
}

.auth_field input:focus {
  border-color: #ff7a1a;
}

.auth_field .field_icon {
  position: absolute;
  right: 14px;
  top: 42px;
  color: #999999;
  font-size: 14px;
}

.auth_field .field_icon.toggle {
  cursor: pointer;
}

.auth_field .field_helper {
  font-size: 12px;
  color: #777777;
  margin-top: 6px;
}

.auth_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.auth_remember {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #333333;
  margin: 0;
  cursor: pointer;
}

.auth_remember input[type="checkbox"] {
  margin-right: 8px;
}

.auth_forgot {
  font-size: 13px;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}

.auth_forgot:hover {
  color: #ff7a1a;
}

.auth_terms {
  display: flex;
  align-items: flex-start;
  margin: 0 0 20px 0;
  font-size: 13px;
  color: #333333;
  line-height: 1.5;
  cursor: pointer;
}

.auth_terms input[type="checkbox"] {
  margin: 3px 8px 0 0;
  flex-shrink: 0;
}

.auth_terms a {
  color: #08c7d7;
  text-decoration: none;
}

.auth_terms a:hover {
  color: #ff7a1a;
}

.auth_btn {
  display: block;
  width: auto;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 12px 30px rgba(71, 74, 255, 0.26);
  transition: transform 0.15s linear;
  max-width: 100%;
}

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

.auth_btn:disabled {
  cursor: not-allowed;
}

.auth_btn .fa-circle-notch {
  margin-right: 6px;
}

.auth_form .auth_message {
  margin-top: 12px;
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 8px;
  text-align: center;
}

.auth_form .auth_message.error {
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
}

.auth_form .auth_message.success {
  background-color: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
}

/*--Page / Single body area--*/
.body_area {
  padding: 60px 0;
  background-color: #f5f7fa;
  width: 100%;
}

.body_area_fluid {
  padding: 60px 0;
}

.entry {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  overflow: hidden;
}

.entry_featured {
  margin: -40px -50px 30px -50px;
}

.entry_featured img {
  width: 100%;
  height: auto;
  display: block;
}

.entry_header {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #eeeeee;
}

.entry_title {
  font-size: 36px;
  font-weight: 800;
  color: #000000;
  line-height: 1.2;
  margin: 0 0 14px 0;
}

.entry_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: #777777;
}

.entry_meta .fa-solid {
  margin-right: 5px;
  color: #08c7d7;
}

.entry_meta a {
  color: #777777;
  text-decoration: none;
}

.entry_meta a:hover {
  color: #ff7a1a;
}

.entry_content {
  font-size: 15px;
  color: #333333;
  line-height: 1.7;
}

.entry_content h1,
.entry_content h2,
.entry_content h3,
.entry_content h4,
.entry_content h5,
.entry_content h6 {
  font-weight: 700;
  color: #000000;
  margin: 1.5em 0 0.6em 0;
  line-height: 1.3;
}

.entry_content h1 {
  font-size: 30px;
}
.entry_content h2 {
  font-size: 26px;
}
.entry_content h3 {
  font-size: 22px;
}
.entry_content h4 {
  font-size: 18px;
}
.entry_content h5 {
  font-size: 16px;
}
.entry_content h6 {
  font-size: 14px;
}

.entry_content p {
  margin: 0 0 1.2em 0;
}

.entry_content a {
  color: #ff7a1a;
  text-decoration: none;
}

.entry_content a:hover {
  color: #08c7d7;
  text-decoration: underline;
}

.entry_content ul,
.entry_content ol {
  margin: 0 0 1.2em 0;
  padding-left: 1.6em;
}

.entry_content li {
  margin-bottom: 0.5em;
}

.entry_content blockquote {
  margin: 1.5em 0;
  padding: 14px 22px;
  border-left: 4px solid #ff7a1a;
  background-color: #fbfbfb;
  font-style: italic;
  color: #555555;
  border-radius: 0 6px 6px 0;
}

.entry_content blockquote p:last-child {
  margin-bottom: 0;
}

.entry_content code {
  background-color: #f6f7f7;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  font-family: Menlo, Monaco, Consolas, monospace;
  color: #d63384;
}

.entry_content pre {
  background-color: #1a1a1a;
  color: #f5f5f5;
  padding: 16px 20px;
  border-radius: 8px;
  overflow-x: auto;
  font-size: 13px;
  margin: 1.2em 0;
}

.entry_content pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

.entry_content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1em 0;
}

.entry_content figure {
  margin: 1.5em 0;
}

.entry_content figcaption {
  font-size: 12px;
  color: #888888;
  text-align: center;
  margin-top: 6px;
}

.entry_content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 14px;
}

.entry_content th,
.entry_content td {
  padding: 10px 14px;
  border: 1px solid #eeeeee;
  text-align: left;
}

.entry_content th {
  background-color: #fbfbfb;
  font-weight: 700;
  color: #000000;
}

.entry_content hr {
  border: none;
  border-top: 1px solid #eeeeee;
  margin: 2em 0;
}

.entry_pagelinks {
  margin-top: 1em;
  font-size: 13px;
  color: #555555;
}

.entry_pagelinks a {
  display: inline-block;
  padding: 4px 10px;
  margin: 0 3px;
  background-color: #fbfbfb;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  color: #000000;
  text-decoration: none;
}

.entry_pagelinks a:hover {
  border-color: #ff7a1a;
  color: #ff7a1a;
}

.entry_tags {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #eeeeee;
  font-size: 13px;
  color: #777777;
}

.entry_tags .fa-solid {
  color: #08c7d7;
  margin-right: 5px;
}

.entry_tags a {
  color: #ff7a1a;
  text-decoration: none;
}

.entry_tags a:hover {
  color: #08c7d7;
}

.entry_author_bio {
  display: flex;
  gap: 18px;
  margin-top: 30px;
  padding: 22px;
  background-color: #fbfbfb;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  align-items: flex-start;
}

.entry_author_avatar img {
  border-radius: 50%;
  display: block;
}

.entry_author_info {
  flex: 1;
}

.entry_author_info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 6px 0;
}

.entry_author_info p {
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.entry_author_link {
  font-size: 13px;
  font-weight: 600;
  color: #ff7a1a;
  text-decoration: none;
}

.entry_author_link:hover {
  color: #08c7d7;
}

.entry_footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #eeeeee;
  font-size: 12px;
}

.entry_footer a {
  color: #777777;
  text-decoration: none;
}

.entry_footer a:hover {
  color: #ff7a1a;
}

.entry_post_nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.entry_post_nav a {
  flex: 1;
  display: block;
  padding: 14px 18px;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  color: #000000;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.15s linear;
}

.entry_post_nav a:hover {
  border-color: #ff7a1a;
  color: #ff7a1a;
}

/*--Dashboard layout--*/
.dash_section {
  padding: 40px 0 60px 0;
  background-color: #f5f7fa;
  width: 100%;
  min-height: calc(100vh - 250px);
}

.dashinner {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}

.dash_sidebar {
  width: 260px;
  flex-shrink: 0;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 20px;
}

.dash_user {
  text-align: center;
  padding-bottom: 22px;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 22px;
}

.dash_user_photo {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  cursor: pointer;
}

.dash_user_avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  padding: 3px;
  margin: 0 auto 8px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 32px;
  color: #999999;
}

.dash_user_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.dash_editpic {
  font-size: 13px;
  font-weight: 600;
  color: #000000;
  letter-spacing: -0.2px;
  cursor: pointer;
}

.dash_user_photo:hover .dash_editpic {
  color: #ff7a1a;
}

.dash_user_name {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 4px 0;
}

.dash_user_email {
  font-size: 12px;
  color: #999999;
  margin: 0;
  word-break: break-all;
}

.dash_nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dash_nav li {
  display: block;
  margin-bottom: 6px;
}

.dash_nav li a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  background-color: #f5f7fa;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s linear;
}

.dash_nav li a:hover {
  background-color: #e9ecf1;
  color: #000000;
}

.dash_nav li a.active {
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(71, 74, 255, 0.22);
}

.dash_nav li a .fa-solid {
  margin-right: 12px;
  font-size: 14px;
  width: 18px;
  text-align: center;
}

.dash_main {
  flex: 1;
  min-width: 0;
}

.dash_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.dash_header h1 {
  font-size: 32px;
  font-weight: 800;
  color: #000000;
  margin: 0;
}

.dash_card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.dash_card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 12px 0;
}

.dash_card p {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

/*--Deliverables page--*/
.deliv_toc {
  list-style: none;
  margin: 14px 0 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.deliv_toc li a {
  display: block;
  padding: 10px 14px;
  background-color: #fbfbfb;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  transition: all 0.15s linear;
}

.deliv_toc li a:hover {
  border-color: #08c7d7;
  color: #08c7d7;
  background-color: #ffffff;
}

.dash_card h3 .fa-solid {
  margin-right: 10px;
  color: #ff7a1a;
}

.deliv_table_wrap {
  overflow-x: auto;
  margin-top: 14px;
}

.deliv_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.deliv_table th,
.deliv_table td {
  padding: 10px 12px;
  border: 1px solid #eeeeee;
  text-align: left;
  vertical-align: top;
  color: #333333;
}

.deliv_table th {
  background-color: #fbfbfb;
  font-weight: 700;
  color: #000000;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.deliv_table tr:nth-child(even) td {
  background-color: #fcfcfc;
}

.deliv_software {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}

.deliv_sw_item {
  padding: 16px 18px;
  background-color: #fbfbfb;
  border: 1px solid #eeeeee;
  border-left: 4px solid #08c7d7;
  border-radius: 0px;
}

.deliv_sw_item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.deliv_sw_item p {
  font-size: 13px;
  color: #555555;
  margin: 0 0 4px 0;
  line-height: 1.5;
}

.deliv_sw_item p:last-child {
  margin-bottom: 0;
}

.deliv_sw_item a {
  color: #ff7a1a;
  text-decoration: none;
  font-weight: 600;
}

.deliv_sw_item a:hover {
  color: #08c7d7;
}

.deliv_pill {
  display: inline-block;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 999px;
}

.deliv_pill.required {
  background-color: rgba(220, 53, 69, 0.12);
  color: #dc3545;
}

.deliv_pill.required-week3 {
  background-color: rgba(255, 122, 26, 0.14);
  color: #ff7a1a;
}

.deliv_pill.recommended {
  background-color: rgba(8, 199, 215, 0.14);
  color: #08c7d7;
}

.deliv_list {
  list-style: none;
  margin: 14px 0 0 0;
  padding: 0;
}

.deliv_list li {
  position: relative;
  padding: 10px 0 10px 26px;
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
  border-bottom: 1px solid #f5f5f5;
}

.deliv_list li:last-child {
  border-bottom: none;
}

.deliv_list li::before {
  content: "\2192";
  position: absolute;
  left: 4px;
  top: 10px;
  color: #08c7d7;
  font-weight: 700;
  font-size: 14px;
}

.deliv_checklist {
  list-style: none;
  margin: 14px 0 0 0;
  padding: 0;
}

.deliv_checklist li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 14px;
  color: #333333;
  line-height: 1.5;
  border-bottom: 1px solid #f5f5f5;
}

.deliv_checklist li:last-child {
  border-bottom: none;
}

.deliv_checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  border: 2px solid #08c7d7;
  border-radius: 4px;
  background-color: #ffffff;
}

.deliv_note {
  margin-top: 18px;
  padding: 10px 14px;
  background-color: rgba(8, 199, 215, 0.08);
  border-left: 3px solid #08c7d7;
  border-radius: 0px;
  font-size: 13px;
  color: #555555;
}

.deliv_note .fa-solid {
  color: #08c7d7;
  margin-right: 6px;
}

.dash_enroll_cta {
  background: linear-gradient(135deg, var(--violet) 0%, var(--blue) 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 18px 45px rgba(71, 74, 255, 0.22);
}

.dash_enroll_cta h3 {
  color: #ffffff;
  font-size: 22px;
  margin: 0 0 8px 0;
}

.dash_enroll_cta p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 18px 0;
}

.dash_enroll_btn {
  display: inline-block;
  width: auto;
  padding: 12px 32px;
  background: #ffffff;
  background-image: none;
  color: var(--violet);
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.dash_enroll_btn:hover {
  transform: translateY(-1px);
  color: var(--violet);
}

.dash_meet_btn {
  margin-top: 16px;
  width: auto;
  padding: 11px 22px;
  font-size: 14px;
}

.dash_meet_btn .fa-video {
  margin-right: 8px;
}

.dash_meet_pending {
  margin: 16px 0 0 0;
  padding: 10px 14px;
  background-color: rgba(124, 61, 255, 0.06);
  border-left: 3px solid var(--violet);
  border-radius: 6px;
  font-size: 13px;
  color: var(--muted);
}

.dash_meet_pending .fa-clock {
  color: var(--violet);
  margin-right: 6px;
}

/*--Enrollment page (batch cards)--*/
.enroll_help {
  font-size: 13px;
  color: #777777;
  margin: 0 0 16px 0;
}

.batch_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}

.batch_card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px;
  box-shadow: var(--soft-shadow);
  border-top: 4px solid var(--violet);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.15s linear, box-shadow 0.15s linear;
}

.batch_card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.batch_card_full,
.batch_card_full:hover {
  opacity: 0.6;
  transform: none;
}

/* Per-program top-border accent */
.batch_card_young-innovators { border-top-color: var(--green); }
.batch_card_founder-clone { border-top-color: var(--orange); }
.batch_card_entrepreneur-hub { border-top-color: var(--violet); }

.batch_badge {
  display: inline-block;
  width: fit-content;
  padding: 5px 11px;
  background: rgba(124, 61, 255, 0.12);
  color: var(--violet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 999px;
}

.batch_card_young-innovators .batch_badge { background: rgba(18, 168, 107, 0.12); color: var(--green); }
.batch_card_founder-clone .batch_badge { background: rgba(255, 122, 26, 0.12); color: var(--orange); }

.batch_title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

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

.batch_meta li {
  list-style: none;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.batch_meta .fa-solid {
  color: var(--blue);
  font-size: 12px;
  width: 14px;
  text-align: center;
}

.batch_desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.batch_foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.batch_price {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}

.batch_enroll_btn {
  width: auto;
  padding: 11px 22px;
  font-size: 14px;
}

.batch_enroll_btn:disabled {
  background: #c7cdd9;
  box-shadow: none;
  cursor: not-allowed;
}

.enroll_secure {
  margin: 12px 0 0 0;
  font-size: 12px;
  color: #777777;
  text-align: center;
}

.enroll_secure .fa-shield-halved {
  color: var(--blue);
  margin-right: 4px;
}

.batch_enroll_btn .fa-lock {
  margin-right: 6px;
}

/*--Thank you / Transaction failed pages--*/
.thank_card {
  text-align: center;
}

.thank_icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.thank_icon_success {
  background-color: rgba(25, 135, 84, 0.12);
  color: #198754;
}

.thank_icon_failed {
  background-color: rgba(220, 53, 69, 0.12);
  color: #dc3545;
}

.thank_card h2 {
  font-size: 24px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 8px 0;
}

.thank_card .auth_subtitle {
  text-align: center;
  margin-bottom: 22px;
}

.thank_details {
  background-color: #fbfbfb;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 6px 18px;
  margin: 0 0 20px 0;
  text-align: left;
}

.thank_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
}

.thank_row:last-child {
  border-bottom: none;
}

.thank_row > span:first-child {
  color: #777777;
}

.thank_row > span:last-child {
  color: #000000;
  font-weight: 600;
  word-break: break-all;
  text-align: right;
}

.thank_row_small > span:last-child {
  font-size: 11px;
  font-weight: 500;
}

.thank_helper {
  font-size: 13px;
  color: #777777;
  line-height: 1.6;
  margin: 0 0 22px 0;
}

.thank_btn {
  display: inline-block;
  width: 100%;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  border: none;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(71, 74, 255, 0.26);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s linear;
}

.thank_btn:hover {
  transform: translateY(-1px);
  color: #ffffff;
}

.auth_alt {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: #666666;
}

.auth_alt a {
  color: #000000;
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
}

.auth_alt a:hover {
  color: #ff7a1a;
}

.auth_back {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
}

.auth_back:hover {
  color: #ff7a1a;
}

/*========================================
  ACADEMY SECTION STYLES (alphaibiz public pages)
  Imported from alpha_academy/style.css
========================================*/

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/*--Buttons--*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--violet), var(--blue));
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(71, 74, 255, 0.26);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
}

.btn:hover {
  transform: translateY(-1px);
  color: var(--white);
}

.btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.btn.light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--soft-shadow);
}

/*--Hero (homepage)--*/
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(124, 61, 255, 0.55), transparent 28%),
    radial-gradient(circle at 55% 15%, rgba(8, 199, 215, 0.25), transparent 25%),
    linear-gradient(135deg, #050816 0%, #091436 50%, #10104a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 80%, transparent);
  opacity: 0.42;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 48px;
  align-items: center;
  min-height: 620px;
  padding: 80px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(124, 61, 255, 0.28);
  border-radius: 999px;
  color: #bda8ff;
  background: rgba(124, 61, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.5rem, 6vw, 5.1rem);
  line-height: 0.98;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #a66cff, #4c8dff 45%, #08d6c7);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy,
.page-copy {
  max-width: 640px;
  color: #d7def3;
  font-size: 1.12rem;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
  color: #f4f7ff;
  font-weight: 800;
  font-size: 0.9rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(8, 199, 215, 0.14);
}

/*--Hero visual orbital--*/
.academy-visual {
  position: relative;
  min-height: 430px;
}

.orbital-card {
  position: absolute;
  inset: 10% 4% auto auto;
  width: min(410px, 88%);
  min-height: 340px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(9, 17, 48, 0.72);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.orbital-brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
  height: 50px;
  margin-bottom: 28px;
  padding: 7px 12px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

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

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.signal {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.signal strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.signal span {
  color: #c4cdeb;
  font-size: 0.8rem;
  font-weight: 700;
}

.float-chip {
  position: absolute;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  min-width: 190px;
  max-width: 230px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  background: rgba(5, 9, 28, 0.74);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.float-chip strong { font-size: 0.92rem; line-height: 1.1; }
.float-chip span { color: #cbd5f4; font-size: 0.78rem; line-height: 1.25; }
.float-chip strong, .float-chip span:not(.chip-icon) { grid-column: 2; }

.chip-icon {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  position: relative;
  display: block;
  color: var(--white);
  overflow: hidden;
}

.chip-1 { top: 0; left: 2%; }
.chip-2 { right: 0; bottom: 6%; }
.chip-3 { left: 0; bottom: 24%; }

/*--Page hero (inner pages)--*/
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 30%, rgba(124, 61, 255, 0.48), transparent 28%),
    linear-gradient(135deg, #060a1c, #0c1742 58%, #160d3a);
}

.page-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: center;
  min-height: 390px;
  padding: 72px 0;
}

.page-badge {
  justify-self: end;
  width: 270px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.page-badge strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
}

.page-badge span {
  color: #cbd5f4;
  font-weight: 800;
}

/*--Section base--*/
.section { padding: 76px 0; }
.section.compact { padding: 46px 0; }

.section.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(124, 61, 255, 0.3), transparent 25%),
    linear-gradient(135deg, var(--ink), var(--ink-2));
}

.section-header {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-header.left { margin-left: 0; text-align: left; }

.section-kicker {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section h2,
.section h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.12;
}

.section.dark h2,
.section.dark h3 { color: var(--white); }

.section-header p,
.muted { margin: 0; color: var(--muted); }

.section.dark .section-header p,
.section.dark .muted { color: #cbd5f4; }

/*--Grid--*/
.grid { display: grid; gap: 22px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }

/*--Cards--*/
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}
.card.pad { padding: 26px; }

.card.dark-card {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(160deg, rgba(15, 25, 66, 0.98), rgba(9, 17, 48, 0.92));
}

.card h3, .card h4 { margin: 0 0 10px; color: var(--ink); font-size: 1.18rem; }
.dark-card h3, .dark-card h4 { color: var(--white); }
.card p { margin: 0; color: var(--muted); }
.dark-card p { color: #cbd5f4; }

.program-card {
  display: grid;
  min-height: 100%;
  padding: 28px;
  border-top: 4px solid var(--violet);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program-card:hover, .card.pad:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.program-card.green { border-top-color: var(--green); }
.program-card.orange { border-top-color: var(--orange); }

.program-icon, .mini-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--violet), var(--blue));
  position: relative;
  flex: 0 0 auto;
}

.program-card.green .program-icon, .mini-icon.green {
  background: linear-gradient(135deg, #13b66f, #55d98a);
}

.program-card.orange .program-icon, .mini-icon.orange {
  background: linear-gradient(135deg, #ff7a1a, #ffaf4d);
}

.partner-features .mini-icon { margin-bottom: 0; }

.program-icon::before,
.program-icon::after,
.mini-icon::before,
.mini-icon::after,
.chip-icon::before,
.chip-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  box-sizing: border-box;
}

.rocket-icon::before,
.launch-icon::before {
  width: 16px;
  height: 23px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 45% 45%;
  transform: translate(-50%, -50%) rotate(35deg);
}

.rocket-icon::after,
.launch-icon::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  transform: translate(3px, -12px);
}

.bulb-icon::before,
.learn-icon::before {
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -62%);
}

.bulb-icon::after,
.learn-icon::after {
  width: 14px;
  height: 8px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 5px 5px;
  transform: translate(-50%, 42%);
}

.system-icon::before,
.ai-icon::before {
  width: 25px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 5px;
  transform: translate(-50%, -50%);
}

.system-icon::after,
.ai-icon::after {
  width: 20px;
  height: 3px;
  background: currentColor;
  box-shadow: -8px -10px 0 -1px currentColor, 8px -10px 0 -1px currentColor, -8px 10px 0 -1px currentColor, 8px 10px 0 -1px currentColor;
  transform: translate(-50%, -50%);
}

.project-icon::before,
.validate-icon::before {
  width: 24px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 5px;
  transform: translate(-50%, -50%);
}

.project-icon::after,
.validate-icon::after {
  width: 12px;
  height: 7px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translate(-50%, -54%) rotate(-45deg);
}

.design-icon::before {
  width: 24px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 5px;
  transform: translate(-50%, -50%) rotate(-10deg);
}

.design-icon::after {
  width: 4px;
  height: 22px;
  background: currentColor;
  border-radius: 99px;
  transform: translate(5px, -14px) rotate(28deg);
}

.certificate-icon::before,
.showcase-icon::before {
  width: 24px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 5px;
  transform: translate(-50%, -58%);
}

.certificate-icon::after,
.showcase-icon::after {
  width: 10px;
  height: 10px;
  border: 3px solid currentColor;
  border-radius: 50%;
  transform: translate(0, 4px);
}

.code-icon::before {
  width: 12px;
  height: 12px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translate(-95%, -50%) rotate(45deg);
}

.code-icon::after {
  width: 12px;
  height: 12px;
  border-right: 3px solid currentColor;
  border-top: 3px solid currentColor;
  transform: translate(-5%, -50%) rotate(45deg);
}

.scale-icon::before {
  width: 24px;
  height: 18px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translate(-50%, -44%);
}

.scale-icon::after {
  width: 18px;
  height: 18px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translate(-44%, -58%) rotate(45deg);
}

.program-icon::before,
.mini-icon::before,
.chip-icon::before {
  content: none;
}

.program-icon::after,
.mini-icon::after,
.chip-icon::after {
  left: 50%;
  top: 50%;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: currentColor;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.chip-icon::after {
  font-size: 0.94rem;
}

.rocket-icon::after,
.launch-icon::after,
.scale-icon::after {
  content: "UP";
  font-size: 0.78rem;
}

.bulb-icon::after,
.learn-icon::after {
  content: "AI";
  font-size: 0.82rem;
}

.system-icon::after,
.ai-icon::after {
  content: "AI";
  font-size: 0.88rem;
}

.project-icon::after,
.validate-icon::after,
.certificate-icon::after,
.showcase-icon::after {
  content: "OK";
  font-size: 0.78rem;
}

.design-icon::after {
  content: "UX";
  font-size: 0.78rem;
}

.code-icon::after {
  content: "</>";
  font-size: 0.78rem;
}

/*--Lists inside cards--*/
.program-card ul,
.check-list,
.plain-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.program-card li, .check-list li {
  position: relative;
  padding-left: 24px;
  color: #27324a;
  font-weight: 650;
  font-size: 0.94rem;
}

.program-card li::before, .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 4px rgba(124, 61, 255, 0.12);
}

.program-card.green li::before { background: var(--green); box-shadow: 0 0 0 4px rgba(18, 168, 107, 0.12); }
.program-card.orange li::before { background: var(--orange); box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.14); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover { color: var(--violet); }

/*--Partner band, stats, timeline--*/
.partner-band {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px;
  border: 1px solid rgba(124, 61, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 0%, rgba(124, 61, 255, 0.16), transparent 28%),
    var(--paper);
  box-shadow: var(--soft-shadow);
}

.partner-logo {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  overflow: hidden;
}

.partner-logo img {
  width: 100%;
  max-height: 94px;
  object-fit: contain;
}

.partner-features { display: grid; gap: 14px; }
.partner-features div { display: flex; align-items: center; gap: 12px; font-weight: 800; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.stat { padding: 26px; background: rgba(255, 255, 255, 0.08); }
.stat strong { display: block; color: var(--white); font-size: 2rem; line-height: 1; }
.stat span { color: #cbd5f4; font-weight: 800; }

.timeline { display: grid; gap: 16px; counter-reset: step; }

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.timeline-item::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--violet), var(--blue));
  font-size: 1.3rem;
  font-weight: 900;
}

.timeline-item h3 { margin: 0 0 6px; font-size: 1.1rem; }
.timeline-item p { margin: 0; color: var(--muted); }

/*--Tables--*/
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.table-wrap table { width: 100%; min-width: 760px; border-collapse: collapse; }
.table-wrap th, .table-wrap td { padding: 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.table-wrap th { color: var(--ink); background: #edf2ff; font-size: 0.78rem; font-weight: 900; text-transform: uppercase; }
.table-wrap td { color: #2d3850; }
.table-wrap tr:last-child td { border-bottom: 0; }

/*--Split layout & form-card--*/
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.form-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-card h2, .form-card h3 { margin: 0 0 8px; font-size: 1.55rem; color: var(--ink); }
.form-card p { margin: 0 0 18px; color: var(--muted); }

.form-grid { display: grid; gap: 14px; }
.field { display: grid; gap: 7px; }
.field label { color: var(--ink); font-size: 0.84rem; font-weight: 900; }

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cfd8ec;
  border-radius: 8px;
  color: var(--text);
  background: var(--white);
  font: inherit;
  font-family: inherit;
}

.lead-form textarea { min-height: 112px; resize: vertical; }

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(36, 107, 254, 0.18);
  border-color: var(--blue);
}

.form-note { font-size: 0.82rem; color: var(--muted); }

/*--CTA band & FAQ--*/
.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(124, 61, 255, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(8, 199, 215, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(124, 61, 255, 0.12), rgba(36, 107, 254, 0.08)),
    var(--paper);
}

.cta-band h2, .cta-band h3 { margin: 0 0 4px; color: var(--ink); font-size: 1.45rem; }
.cta-band p { margin: 0; color: var(--muted); }

.faq { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 8px; background: var(--paper); box-shadow: var(--soft-shadow); }
.faq-item button { width: 100%; padding: 18px 20px; border: 0; color: var(--ink); background: transparent; font: inherit; font-weight: 900; text-align: left; cursor: pointer; }
.faq-item p { display: none; margin: 0; padding: 0 20px 18px; color: var(--muted); }
.faq-item.is-open p { display: block; }

