/* --- Reset --- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  background-color: #f6f7fb;
  color: black;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  color: #999;
  font-family: "Inter", sans-serif;
  font-weight: 300;
}

p {
  font-size: 18px;
}

a:hover,
input,
textarea,
select,
button {
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-appearance: none;
  border-radius: 0px;
  font-family: "Inter", sans-serif;
}

/* --- Variables --- */

:root {
  --primary: #eb510f;
  --primary-text: #fff;
}

a {
  color: #0099cc;
}

/* --- Main styles --- */

body {
  display: flex;
}

.sidebar {
  width: 280px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  color: #1c1c1f;
  height: 100vh;
  flex-shrink: 0;
  border-right: 1px solid #e6e9f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 6px 0 18px rgba(16, 24, 40, 0.05);
}

.sidebar .top {
  overflow-y: auto;
}

.sidebar .top .logo {
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(230, 233, 240, 0.8);
  text-align: center;
  max-height: 78px;
}

.sidebar .top .logo img {
  max-width: 180px;
}

.sidebar nav {
  padding: 18px 14px 24px;
}

.sidebar nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar nav ul li a {
  color: #4c4f57;
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  border: solid 1px #fff;
}

.sidebar nav ul li a i {
  font-size: 18px;
  color: #6b7280;
  transition: color 0.2s ease;
}

.sidebar nav ul li a span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar nav ul li a:hover {
  background-color: rgba(235, 81, 15, 0.08);
  color: #1c1c1f;
  transform: translateX(2px);
}

.sidebar nav ul li a:hover i {
  color: var(--primary);
}

.sidebar nav ul li a.active {
  background: linear-gradient(
    135deg,
    rgba(235, 81, 15, 0.15),
    rgba(235, 81, 15, 0.05)
  );
  color: #0f172a;
  font-weight: 600;
  border: 1px solid rgba(235, 81, 15, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.sidebar nav ul li a.active i {
  color: var(--primary);
}

/* --- Option 1 --- */
.sidebar .group {
  border: solid 1px #ccc;
  padding: 20px;
  border-radius: 10px;
}

.sidebar .group .groupTitle {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: #666;
}

/* --- Option 2 --- */
/*.sidebar .group {
   border: solid 1px #ccc;
   padding: 10px;
}

.sidebar .group .groupTitle {
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  background-color: #ccc;
  padding: 5px;
}
 */

.sidebar .betaNote {
  margin: 0 20px 18px;
  padding: 14px 16px;
  font-size: 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.12),
    rgba(99, 102, 241, 0.05)
  );
  color: #1f2a4a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.sidebar .betaNote a {
  color: #4753b7;
  font-weight: 600;
}

.sidebar .betaNote h6 {
  font-size: 12px;
  margin-bottom: 6px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1f2a4a;
}

.sidebar .betaNote h6 i {
  font-weight: 300;
}

.redItem {
  background: #a83232 !important;
  color: white !important;
}

.redItem:hover {
  background: #732222 !important;
  color: white !important;
}

.main-content {
  flex-grow: 1;
  overflow-y: auto;
}

.inner {
  max-width: 1400px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

header {
  width: 100%;
  background-color: white;
  position: fixed;
  left: 0;
  top: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 300;
}

header .inner {
  display: flex;
  justify-content: space-between;
}

header .logo {
  display: flex;
  align-items: center;
}

header .logo img {
  max-width: 300px;
  max-height: 80px;
  display: inline-block;
}

header nav {
}

header nav ul li {
  display: inline-block;
}

header nav ul li a {
  display: inline-block;
  padding: 24px 30px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 22px;
}

header nav ul li a:hover {
  text-decoration: underline;
}

header nav ul li .active {
  color: var(--main-bg-color);
  font-weight: bold;
}

footer {
  background-color: var(--main-bg-color);
  color: var(--main-bg-text-color);
}

footer .logo {
  font-size: 22px;
  font-weight: bold;
  padding: 30px 0;
}

footer .columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

footer .columns .col {
  flex: 1;
}

footer .columns .col .heading {
  font-weight: bold;
}

footer .columns .col .links a {
  display: block;
  width: 100%;
}

footer .links + .heading {
  margin-top: 10px;
}

footer a {
  color: #ddeeff;
}

footer .socLinks {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}

footer .socLinks .soci-link {
  text-decoration: none;
  display: inline-block;
  padding: 10px;
  border-radius: 3px;
  vertical-align: top;
  margin-top: 10px;
  flex-basis: 50px;
}

footer .socLinks .soci-link img {
  width: 50px;
}

footer .bottom {
  margin-top: 30px;
  padding: 20px 0;
  border-top: solid 1px var(--main-bg-color-hov);
}

footer .bottom .copyright {
  display: inline-block;
}

footer .bottom .legal {
  float: right;
  display: inline-block;
}

.main {
  padding: 100px 0;
}

.main h1 {
  font-size: 50px;
  font-weight: bold;
}

.sectionHeading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 600;
  color: #1c1c1f;
  margin-bottom: 12px;
}

.sectionHeading span {
  flex: 1;
}

.anchorButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #7a7f8c;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
  position: relative;
  flex: 0 0 34px;
  min-width: auto;
  padding: 0;
  margin-top: 0;
  text-align: center;
}

.anchorButton i {
  font-size: 18px;
  margin-right: 0;
}

.anchorButton:hover,
.anchorButton:focus-visible {
  color: var(--primary);
  background: rgba(235, 81, 15, 0.12);
  outline: none;
}

.anchorButton.copied {
  color: #18794e;
}

.anchorButton.copied::after {
  content: "Copied!";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -185%);
  background: #18794e;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 600px) {
  .sectionHeading {
    font-size: 24px;
  }

  .anchorButton {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }

  .anchorButton i {
    font-size: 16px;
  }
}

.settingsForm {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

.formRow {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.formRow.split {
  flex-direction: row;
  gap: 20px;
}

.formRow.split > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.settingsForm label {
  font-weight: 500;
  color: #222;
  margin-top: 0 !important;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px !important;
  border: 1px solid #d9dce5 !important;
  border-radius: 8px !important;
  background-color: #ffffff;
  font-size: 15px !important;
  color: #1c1c1f;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(235, 81, 15, 0.12);
  outline: none;
}

/* Inline dropdown indicator */
select {
  background-image: linear-gradient(45deg, transparent 50%, #4c4f57 50%),
    linear-gradient(135deg, #4c4f57 50%, transparent 50%),
    linear-gradient(#d9dce5, #d9dce5);
  background-position: calc(100% - 18px) center, calc(100% - 12px) center,
    calc(100% - 2.5rem) center;
  background-size: 6px 6px, 6px 6px, 1px 60%;
  background-repeat: no-repeat;
  padding-right: 2.5rem !important;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.settingsForm .finePrint {
  font-size: 13px;
  color: #6f7380;
}

button {
  align-self: flex-start;
  padding: 12px 20px;
  background: var(--primary);
  color: var(--primary-text);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  gap: 8px;
}

button:hover {
  background: #d2470d;
}

button[disabled],
input[type="submit"][disabled],
.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.secondaryButton {
  padding: 10px 18px;
  background: #ffffff;
  color: #1c1c1f;
  border: 1px solid #d9dce5;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.secondaryButton:hover {
  background: #f3f4f8;
  border-color: var(--primary);
  color: #1c1c1f;
}

.settingsForm.is-loading,
.settingsForm .is-loading {
  pointer-events: none;
  opacity: 0.75;
}

.formFeedback {
  font-size: 14px;
  margin-top: 6px;
}

.formFeedback.info {
  color: #0057b8;
}

.formFeedback.success {
  color: #18794e;
}

.formFeedback.error {
  color: #c0392b;
}

.dangerSection .sectionHeading span {
  color: #a53c0f;
}

.dangerNotice {
  background: linear-gradient(135deg, #fff8f4 0%, #ffe5d6 100%);
  border: 1px solid #f4c8ac;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
  color: #5b2b0b;
}

.dangerNotice-lead {
  font-weight: 600;
  margin-bottom: 8px;
}

.dangerZone {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #f0b69b;
  border-radius: 12px;
  padding: 20px;
  background: #fffdf9;
}

.dangerZone.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

.dangerZone .formRow-inline {
  display: flex;
  align-items: center;
}

.dangerCheckbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #70320c;
}

.dangerCheckbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.planChooser {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 20px 0 16px;
}

.planCard {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  display: block;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.planCard--disabled {
  cursor: not-allowed;
  opacity: 0.65;
  box-shadow: none;
}

.planCard--disabled .planCard__price {
  color: #6b7280;
}

.planCard__note {
  font-size: 13px;
  color: #6b7280;
}

.planCard input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.planCard__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.planCard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.planCard__price {
  font-weight: 700;
  font-size: 18px;
  color: #111827;
}

.planCard__desc {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.4;
}

.planCard__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #1f2937;
  font-size: 14px;
}

.planCard__features li::before {
  content: "•";
  color: var(--primary);
  margin-right: 8px;
}

#oracle-toast.oracleToast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 10px) scale(0.98);
  background: #0f172a;
  color: #fff;
  padding: 14px 18px 18px;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 9999;
  min-width: 260px;
  text-align: center;
}

#oracle-toast.oracleToast.visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

#oracle-toast.oracleToast .toastProgress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, #22d3ee, #f97316);
  width: 100%;
  transform-origin: left;
  animation: toastCountdown 4s linear forwards;
}

@keyframes toastCountdown {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

.planCard:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.planCard:has(input[type="radio"]:checked) {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dangerButton {
  background: #d92d20;
  color: #fff;
  border: none;
}

.dangerButton:hover {
  background: #b42318;
}

.featureList {
  margin: 12px 0 18px;
  padding-left: 1.2rem;
  color: #34373f;
}

.featureList li {
  margin-bottom: 6px;
  line-height: 1.4;
}

input[type="date"] {
  min-height: 46px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(39%) sepia(58%) saturate(563%) hue-rotate(348deg)
    brightness(97%) contrast(90%);
  cursor: pointer;
}

input[type="url"] {
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  .formRow.split {
    flex-direction: column;
  }
}

.btn {
  margin-top: 30px;
  padding: 20px;
  font-size: 20px;
  background-color: var(--main-bg-color);
  color: var(--main-bg-text-color);
  border: none;
  outline: none;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--main-bg-color-hov);
  color: var(--main-bg-text-color-hov);
}

#map {
  height: 700px;
  margin-top: 50px;
}

.contact {
  padding: 150px 0;
}

.contactForm {
  max-width: 600px;
  width: 100%;
  margin-top: 30px;
}

.contactForm .turnstile {
  height: 72px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* --- Privacy policy --- */

.privacy h1 {
  font-size: 60px;
  margin-bottom: 10px;
}

.privacy h2 {
  font-size: 35px;
  margin-top: 30px;
  margin-bottom: 5px;
}

.privacy p {
  font-size: 20px;
}

.privacy p + p {
  margin-top: 20px;
}

.privacy li {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.privacy ul {
  margin-left: 50px;
}

.light {
  background-color: white !important;
  color: black !important;
}

.dark {
  background-color: #ebebee !important;
  color: black !important;
}

section {
  padding: 50px 0;
}

section + section {
  padding-top: 0;
}

.hero {
  background-color: var(--main-bg-color);
  color: var(--main-bg-text-color);
  padding: 130px 0 !important;
}

.hero h1 {
  font-size: 60px;
}

.together .inner {
  display: flex;
  gap: 50px;
  flex-direction: row;
  align-items: center;
}

.together .inner .image img {
  width: 100%;
}

.together .inner .image {
  flex: 1;
}

.together .inner .text {
  flex: 1.5;
}

.touchBottom {
  padding-bottom: 0 !important;
}

.touchBottom .inner .text {
  padding-bottom: 150px !important;
}

/*
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"],
select {
  border: solid 1px #ccc;
  padding: 20px;
  font-size: 20px;
  width: 100%;
  border-radius: 3px;
}

label {
  display: block;
  margin-top: 20px;
  margin-bottom: 5px;
}

button,
input[type="submit"],
.btn {
  background-color: var(--primary);
  color: var(--primary-text);
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  border: none;
  min-width: 180px;
  padding: 15px 30px;
  font-size: 16px;
  margin-top: 30px;
}

button:hover,
input[type="submit"]:hover,
.btn:hover {
  background-color: #ffb595;
}

button[disabled],
input[type="submit"][disabled],
.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn i,
button i {
  font-weight: 300 !important;
  display: inline-block;
  margin-right: 10px;
}

textarea {
  min-height: 280px;
}
  */

video {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.loginPage {
  background-color: #ebebee;
  display: inline-block;
}

.loginPage nav {
  background-color: white;
  width: 100%;
}

.loginPage nav .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}

.loginPage nav .logo {
  padding: 15px 0;
}

.loginPage nav .logo img {
  width: 100%;
  max-width: 250px;
}

.loginPage nav .inner .nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.loginPage nav .inner .nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 400;
  font-size: 17px;
}

.loginPage nav .inner .nav a:hover {
  text-decoration: underline;
}

.loginPage nav .inner .nav a.selected {
  color: #777;
}

.loginPage .extras {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.loginPage .extras a {
  color: var(--primary);
  font-size: 14px;
}

.login {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 500px;
}

.login h1 {
  font-size: 40px;
}

.login p {
  margin: 20px 0;
  font-size: 16px;
}

.login .inner {
  position: relative;
  display: inline-block;
  padding: 50px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 8%);
  width: 100% !important;
}

.login .turnstile {
  height: 69px;
  margin-top: 30px;
}

.hero a {
  color: white;
}

.entries .all {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.business {
  border: solid 1px #ccc;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
}

.business h3 {
  margin-bottom: 10px;
}

.business .lastAGSReport {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 5px;
  margin-top: 20px;
}

.business .last {
  margin-top: 20px;
  font-weight: bold;
  font-size: 16px;
  color: #666;
}

.business .lastAGSReport .data {
  padding: 30px;
  border: solid 1px #ccc;
  border-radius: 10px;
  flex: 1;
  text-align: center;
}

.quickActions {
  background-color: white;
  padding: 10px 0;
}

.quickActions a {
  padding: 10px 20px;
  display: inline-block;
  background-color: #fc4c5c;
  color: white;
  border-radius: 3px;
  text-decoration: none;
}

.quickActions a i {
  margin-right: 5px;
}

.navigator {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  align-items: center;
  background-color: white;
  border: solid 1px #ccc;
  border-radius: 10px;
  padding: 30px;
}

.navigator .image img {
  border-radius: 50%;
  height: 100px;
  width: 100px;
  border: solid 4px var(--primary);
}

.navigator .details h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.navigator .details p {
  margin-bottom: 20px;
  font-size: 15px;
}

.coverAll {
  min-height: calc(100vh - 65px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverAll form {
  max-width: 600px;
  border: solid 1px #ccc;
  background-color: white;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 8%);
}

.contactSection {
  margin-top: 30px;
}

.contactLayout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}

.contactIntro,
.contactFormWrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contactIntro-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contactEyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
}

.contactHeading {
  font-size: 32px;
  line-height: 1.2;
  color: #1b1d24;
}

.contactIntro-header > p {
  color: #4c4f57;
  font-size: 16px;
  line-height: 1.6;
}

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

.contactHighlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid #d9dce5;
  background: linear-gradient(135deg, #f9fafe 0%, #ffffff 100%);
  box-shadow: 0 6px 12px rgba(16, 24, 40, 0.06);
}

.contactHighlight i {
  font-size: 24px;
  color: var(--primary);
  line-height: 1;
  margin-top: 4px;
}

.contactHighlight h3 {
  font-size: 18px;
  color: #111320;
  margin-bottom: 6px;
}

.contactHighlight p {
  font-size: 15px;
  color: #4c4f57;
  line-height: 1.5;
}

.contactHighlight.is-disabled {
  border-style: dashed;
  background: linear-gradient(135deg, #f5f6fa 0%, #ffffff 100%);
  color: #7a7f8f;
  opacity: 0.85;
}

.contactHighlight.is-disabled i {
  color: #9aa1b9;
}

.contactHighlight.is-disabled h3 {
  color: #303445;
}

.billingAlert {
  margin: 20px 0 30px;
  border: 1px solid #f4c8ac;
  background: linear-gradient(135deg, #fff7f1 0%, #fff1e6 100%);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(235, 81, 15, 0.08);
}

.billingAlert-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
}

.billingAlert-copy strong {
  display: block;
  font-size: 18px;
  color: #a53c0f;
  margin-bottom: 6px;
}

.billingAlert-copy p {
  margin: 0;
  font-size: 15px;
  color: #4c4f57;
  line-height: 1.5;
}

.billingAlert .secondaryButton {
  white-space: nowrap;
}

.contactFormCard {
  padding: 28px;
  border-radius: 14px;
  border: 1px solid #d9dce5;
  background: #f6f7fb;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.contactFormCard h3 {
  font-size: 22px;
  color: #1b1d24;
  margin-bottom: 6px;
}

.contactFormCard p {
  color: #4c4f57;
  font-size: 15px;
  line-height: 1.6;
}

.contactForm {
  margin-top: 22px;
}

.contactForm button {
  align-self: flex-start;
  padding: 12px 24px;
}

@media (max-width: 1024px) {
  .contactLayout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contactIntro,
  .contactFormWrapper {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .contactSection .inner {
    padding: 20px;
  }

  .contactFormCard {
    padding: 22px;
  }
}

@media (max-width: 680px) {
  .billingAlert-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .billingAlert .secondaryButton {
    width: 100%;
    justify-content: center;
  }
}

.back {
  position: fixed;
  top: 20px;
  left: 20px;
}

.profile {
  display: flex;
  align-items: center;
  gap: 30px;
}

.profile .image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.profile .details h1 {
  margin-bottom: 10px;
}

.upperContent .inner {
  display: flex;
  gap: 50px;
}

.upperContent .inner > div {
  flex: 1;
}

.status {
  background-color: white;
  margin-top: 20px;
  border: solid 1px #ccc;
  border-radius: 10px;
  overflow: hidden;
}

.status h3 {
  font-size: 12px;
  padding-top: 10px;
  padding-left: 10px;
}

.status .flex {
  display: flex;
  padding: 30px;
}

.prevDat {
  background-color: #ebebee;
  border-top: solid 1px #ccc;
}

.data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.value {
  font-size: 24px;
  /* Adjust this as needed */
  font-weight: bold;
}

.value sup {
  font-size: 10px;
}

.name {
  font-size: 14px;
  /* Adjust this as needed */
  font-weight: bold;
  color: #666;
  margin-top: 10px;
}

.marketing h3 {
  background-color: #ff6f61;
  color: white;
}

.sales h3,
.selling h3 {
  background-color: #00c1d4;
  color: black;
}

.delivery h3,
.operations h3 {
  background-color: #ffd166;
  color: black;
}

.finance h3,
.finances h3 {
  background-color: #06d6a0;
  color: black;
}

.strategy h3 {
  background-color: #073b4c;
  color: white;
}

.element {
  padding: 5px 15px;
  border-radius: 30px;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
}

.gap .more {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
}

.marketing {
  background-color: #ff6f61;
  color: white;
}

.sales,
.selling {
  background-color: #00c1d4;
}

.delivery,
.operations {
  background-color: #ffd166;
}

.finance,
.finances {
  background-color: #06d6a0;
}

.strategy {
  background-color: #073b4c;
  color: white;
}

.col h3 {
  padding: 15px 30px;
}

.fabFive {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* 5 equal-width columns */
  text-align: center;
  gap: 10px;
  margin-top: 20px;
}

.fabFive .col {
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
}

.col .holder {
  padding: 20px;
  text-align: left;
}

.col .holder ul {
  padding-left: 20px;
}

.dashboardHero {
  background-image: url("https://dashboard.rocketeer.group/assets/space-background.png");
  background-size: cover;
  background-position: top;
  padding: 0 !important;
  text-align: center;
}

.dashboardHero .cover {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 50px 0;
}

.dashboardHero img {
  max-width: 300px;
  width: 100%;
}

.company {
  margin-top: 20px;
  align-items: center;
  background-color: white;
  border: solid 1px #ccc;
  border-radius: 10px;
  padding: 30px;
}

.company .inc {
  padding: 10px 0;
}

.company .futureVision {
  padding: 10px;
  border-radius: 5px;
  background-color: #ddffea;
  margin-top: 15px;
}

.company .futureVision .header {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 5px;
}

.smaller {
  font-size: 14px;
}

.legalName {
  font-size: 14px;
  margin-left: 3px;
  color: #666;
}

.background .inner {
  padding: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background-color: white;
}

.background p + p {
  margin-top: 20px;
}

.background h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.background h2 {
  font-size: 26px;
  margin-bottom: 5px;
}

.background .cards {
  display: flex;
  margin-top: 20px;
  gap: 50px;
}

.background .cards a {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: var(--primary-text);
  border: solid 1px var(--primary);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 8%);
}

.background .cards a:hover {
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 50%);
  background-color: #ffeae0;
}

.background .cards a img {
  width: 100%;
  max-width: 150px;
  border-radius: 50%;
}

.background .cards a p {
  margin-top: 20px;
}

.background .cards a .info {
  font-size: 12px;
  margin-top: 10px;
}

.warning {
  background-color: #ff4d4d;
  /* A modern red */
  color: white;
  border-left: 5px solid #ffcc00;
  /* A bright warning yellow */
  font-weight: bold;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-top: 20px;
}

.warning::before {
  content: "⚠️";
  font-size: 24px;
  margin-right: 15px;
}

.userStripeNotSetup {
  margin-top: 20px;
  display: inline-block;
}

.container {
  padding: 2rem;
  max-width: 100%;
  overflow-x: auto;
}

h1 {
  margin-bottom: 1rem;
  colour: #333;
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 800px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

thead {
  background-color: var(--primary);
  color: var(--primary-text);
}

th,
td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

tbody tr:hover {
  background-color: #fdf3ee;
}

a.user-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

a.user-link:hover {
  text-decoration: underline;
}

.pagination {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination a {
  padding: 8px 12px;
  text-decoration: none;
  background: #eee;
  color: #000;
  border-radius: 4px;
}

.pagination a.active {
  background: var(--primary);
  color: var(--primary-text);
  font-weight: bold;
}

.user-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
}

.user-container h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.user-container .user-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.user-container .user-grid section {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .user-container .user-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.user-container h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

.user-container li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.user-container strong {
  display: inline-block;
  width: 160px;
  colour: #333;
}

.user-container span[title] {
  cursor: help;
  border-bottom: 1px dotted #aaa;
}

.user-container .error {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  background: #ffe0dc;
  color: #a33;
  border: 1px solid var(--primary);
  border-radius: 4px;
  font-weight: bold;
  text-align: centre;
}

.video-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem;
}

.video-container .video-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.video-container .video-header h1 {
  font-size: 2rem;
}

.video-container .btn-add {
  background: var(--primary);
  color: var(--primary-text);
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 4px;
}

.video-container .btn-add:hover {
  background: #cc6237;
}

.video-container .video-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.video-container .video-table th,
.video-container .video-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.video-container .video-table th {
  background: var(--primary);
  color: var(--primary-text);
}

.video-container .video-table tr:hover {
  background: #fdf3ee;
}

.video-container .btn-view {
  background: var(--primary);
  color: var(--primary-text);
  padding: 6px 12px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  display: inline-block;
  white-space: nowrap;
  /* prevents text wrapping */
  min-width: 100px;
  /* gives it consistent width */
  text-align: center;
}

.video-container .btn-view:hover {
  background: #cc6237;
}

.video-container .pagination {
  margin-top: 2rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.video-container .pagination a {
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  background: #eee;
  color: #000;
}

.video-container .pagination a.active {
  background: var(--primary);
  color: var(--primary-text);
  font-weight: bold;
}

.video-container .video-table td {
  vertical-align: top;
}

/* Clamp long titles */

.video-container .video-table td:nth-child(2) {
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Clamp long descriptions with 3 lines */

.video-container .video-table td:nth-child(3) {
  max-width: 400px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.video-container .video-table td:last-child,
.video-container .video-table th:last-child {
  width: 120px;
}

.video-add-container {
  max-width: 600px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.video-add-container h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.video-add-container label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.video-add-container input,
.video-add-container textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

.video-add-container textarea {
  min-height: 120px;
  resize: vertical;
}

.video-add-container .btn-submit {
  background: var(--primary);
  color: var(--primary-text);
  padding: 0.75rem 1.25rem;
  border: none;
  margin-top: 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.video-add-container .btn-submit:hover {
  background: #cc6237;
}

.video-add-container .btn-cancel {
  margin-left: 1rem;
  color: #666;
  text-decoration: none;
  font-weight: 500;
}

.video-add-container .btn-cancel:hover {
  text-decoration: underline;
}

.video-add-container .form-error {
  background: #ffe0e0;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--primary);
  border-radius: 4px;
  color: #a33;
}

.video-add-container .form-error ul {
  margin: 0;
  padding-left: 1.25rem;
}

#rai-input-section {
  border: solid 1px #ccc;
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: white;
  overflow: hidden;
  border-radius: 40px;
  padding: 10px;
}

#rai-input-section textarea {
  height: 45px;
  font-size: 18px;
  min-height: auto;
  flex-grow: 1;
  padding: 10px;
  border: none;
}

#rai-input-section button {
  margin: 0;
  padding: 12px 20px;
  font-size: 18px;
  min-width: auto;
  border-radius: 30px;
}

#rai-interface {
  height: calc(100vh - 145px);
  display: flex;
  flex-direction: column;
}

#rai-interface #rai-output {
  flex-grow: 1;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

#rai-interface .user {
  padding: 20px;
  background-color: lightgrey;
  border-radius: 10px;
  display: inline-block;
}

#rai-interface .rai {
  padding: 20px;
  background-color: lightgoldenrodyellow;
  border-radius: 10px;
  display: inline-block;
}

.navigator a,
.navigator .qxCTlb {
  padding: 10px 20px;
  border-radius: 20px;
  background-color: var(--primary) !important;
  color: var(--primary-text);
  font-size: 14px;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  margin-top: 0;
  font-weight: 800;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.navigator a i,
.navigator .qxCTlb i {
  font-weight: 300;
}

.gaps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1rem;
}

.gaps .gap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #e6e9f0;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 6px 12px rgba(16, 24, 40, 0.05);
}

.gaps .gap input[type="checkbox"] {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  border: solid 1px #cfd4dc;
  border-radius: 4px;
}

.gaps .gap input[type="checkbox"]:checked {
  border-color: var(--primary);
  background-color: var(--primary);
}

.gaps .gap .holder {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gaps .gap .text {
  font-size: 1rem;
  color: #0f172a;
}

.gaps .gap .focusText {
  font-size: 12px;
  font-weight: 700;
  color: #c2410c;
}

.gaps .gap.focused {
  border-left: 4px solid var(--primary);
  background: linear-gradient(135deg, rgba(235, 81, 15, 0.06), #fff);
}

.gaps .gap.completed {
  background-color: #f5f5f5;
  border-style: dashed;
}

.gaps .gap.hidden {
  display: none;
}

.hidden {
  display: none !important;
}

.gap-toast-container {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  gap: 10px;
  z-index: 1000;
}

.gap-toast {
  background: #111827;
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  min-width: 260px;
  max-width: 360px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 8px;
  animation: toast-in 0.25s ease forwards;
}

.gap-toast__text {
  font-size: 14px;
  line-height: 1.4;
}

.gap-toast__actions {
  display: flex;
  justify-content: flex-end;
}

.gap-toast__bar {
  height: 4px;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.4));
  width: 100%;
  border-radius: 999px;
  transition: width 0.05s linear;
}

.btn-link {
  background: none;
  border: none;
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 700;
  padding: 0;
}

.gap-toast.is-exiting {
  animation: toast-out 0.22s ease forwards;
}

@keyframes toast-in {
  0% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes toast-out {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

.gap-page {
  background: #f6f7fb;
  padding-bottom: 2rem;
}

.gap-layout {
  display: grid;
  gap: 20px;
}

.gap-hero {
  background: linear-gradient(
    135deg,
    rgba(235, 81, 15, 0.08),
    rgba(0, 153, 204, 0.08)
  );
  border: 1px solid #e6e9f0;
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.08);
}

.gap-hero h1 {
  margin: 6px 0;
  font-size: 1.8rem;
}

.gap-hero .muted {
  color: #4b5563;
  max-width: 680px;
}

.gap-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px;
}

.stat-card {
  min-width: 110px;
  padding: 10px 12px;
  border: 1px solid #e6e9f0;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  text-align: left;
}

.stat-card--positive {
  border-color: rgba(235, 81, 15, 0.45);
  background: linear-gradient(
    135deg,
    rgba(235, 81, 15, 0.14),
    rgba(235, 81, 15, 0.08)
  );
}

.stat-label {
  display: block;
  font-size: 12px;
  color: #6b7280;
}

.stat-value {
  display: block;
  font-weight: 800;
  font-size: 18px;
  color: #111827;
}

.gap-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 20px;
}

.gap-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gap-column--wide {
  min-width: 0;
}

.gap-panel {
  background: #fff;
  border: 1px solid #e6e9f0;
  border-radius: 14px;
  padding: 18px 18px 14px;
  box-shadow: 0 12px 22px rgba(16, 24, 40, 0.06);
}

.gap-panel--secondary {
  background: linear-gradient(
    135deg,
    rgba(0, 153, 204, 0.06),
    rgba(235, 81, 15, 0.04)
  );
}

.gap-panel--list {
  padding: 10px 12px 14px;
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.panel-header h3 {
  margin: 6px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: #6b7280;
  font-weight: 700;
}

.muted {
  color: #6b7280;
}

.gap-form {
  margin: 0.5rem 0 0;
  padding: 0.75rem 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.gap-form__controls {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

.gap-form textarea {
  width: 100%;
  min-height: 120px;
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  border: 1px solid #cfd4dc;
  font-size: 1rem;
  box-shadow: inset 0 1px 2px rgba(16, 24, 40, 0.04);
  resize: vertical;
}

.gap-form button[type="submit"] {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--primary), #ff7847);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(235, 81, 15, 0.25);
  transition: transform 0.08s ease, box-shadow 0.08s ease, filter 0.08s ease;
  text-align: center;
  display: block;
  align-self: stretch;
}

.gap-form button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(235, 81, 15, 0.3);
  filter: brightness(1.02);
}

.gap-form button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.gap-form #gap-form-feedback {
  margin-top: 0.35rem;
  min-height: 1.1rem;
}

.toggle-label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
  user-select: none;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background-color 0.2s ease, border 0.2s ease;
  border: 1px solid transparent;
}

.toggle-label:hover {
  background-color: #f8fafc;
  border-color: #e5e7eb;
}

.gap-panel input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

.gap-panel input[type="checkbox"]:checked {
  background: var(--primary);
  border-color: var(--primary);
}

.focus-summary {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(235, 81, 15, 0.25);
  background: #fff8f5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gap-panel .empty-state {
  margin: 10px 0;
}

.gap-cards {
  display: grid;
  gap: 12px;
}

.gap-card {
  background: #fff;
  border: 1px solid #e6e9f0;
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: 0 10px 18px rgba(16, 24, 40, 0.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gap-card.is-focus {
  border-color: rgba(235, 81, 15, 0.45);
  box-shadow: 0 12px 22px rgba(235, 81, 15, 0.18);
  background: linear-gradient(
    135deg,
    rgba(235, 81, 15, 0.06),
    rgba(255, 255, 255, 0.9)
  );
}

.gap-card.is-complete {
  opacity: 0.85;
}

.gap-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gap-card__task {
  font-size: 1.05rem;
  line-height: 1.45;
  color: #0f172a;
}

.gap-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-ghost {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.08s ease;
  font-size: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff7847);
  color: #fff;
  box-shadow: 0 8px 16px rgba(235, 81, 15, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(235, 81, 15, 0.3);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-ghost {
  background: #fff;
  color: #0f172a;
  border: 1px solid #e5e7eb;
}

.btn-ghost:hover {
  background: #f8fafc;
  border-color: #cdd3dd;
  transform: translateY(-1px);
}

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

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  color: #111827;
  font-weight: 600;
}

.chip--accent {
  background: rgba(235, 81, 15, 0.12);
  border-color: rgba(235, 81, 15, 0.4);
  color: #c2410c;
}

.chip--muted {
  background: #f3f4f6;
  border-color: #e5e7eb;
  color: #374151;
}

.completed-list .gap-card {
  background: linear-gradient(135deg, #f8fafc, #f3f4f6);
  border-style: dashed;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .gap-form__controls {
    flex-direction: column;
    align-items: stretch;
  }

  .gap-form button[type="submit"] {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .gap-grid {
    grid-template-columns: 1fr;
  }

  .gap-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .gap-hero__stats {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    width: 100%;
  }
}

.trend-arrow {
  display: inline-block;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.trend-up {
  color: green;
  animation: bounce-up 1s ease infinite;
}

.trend-down {
  color: red;
  animation: bounce-down 1s ease infinite;
}

.trend-neutral {
  color: orange;
  opacity: 0.7;
}

@keyframes bounce-up {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes bounce-down {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

.status-green {
  animation: heartbeat-shadow-green 1.5s infinite;
}

.status-amber {
  animation: heartbeat-shadow-amber 1.5s infinite;
}

.status-red {
  animation: heartbeat-shadow-red 1.5s infinite;
}

.bevItem.status-green {
  color: rgb(40, 167, 69) !important;
}

.bevItem.status-amber {
  color: rgb(255, 193, 7) !important;
}

.bevItem.status-red {
  color: rgb(220, 53, 69) !important;
}

@keyframes heartbeat-shadow-green {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
  }
  50% {
    box-shadow: 0 0 15px 5px rgba(40, 167, 69, 0.5);
  }
}

@keyframes heartbeat-shadow-amber {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
  }
  50% {
    box-shadow: 0 0 15px 5px rgba(255, 193, 7, 0.5);
  }
}

@keyframes heartbeat-shadow-red {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
  }
  50% {
    box-shadow: 0 0 15px 5px rgba(220, 53, 69, 0.5);
  }
}

.bev {
  margin-top: 20px;
  align-items: center;
  background-color: white;
  border: solid 1px #ccc;
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
}

.bev .bevBar {
  padding: 2px;
  background-color: #ccc;
  border-radius: 12px;
  margin-top: 20px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.bev .bevBar .bevBarActual {
  height: 20px;
  background-color: rgb(40, 167, 69);
  border-radius: 10px;
  text-align: center;
  color: white;
  padding: 2px;
  font-weight: 800;
  font-size: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.bev p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333;
}

.bevRoller {
  display: inline-block;
  height: 60px;
  overflow: hidden;
  border-radius: 8px;
}

#bevDisplay.bevItem {
  font-size: 2.2em;
  font-weight: bold;
  color: #fc4c5c;
  padding: 0 0;
  height: 60px;
  line-height: 60px;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  min-width: 250px;
  display: inline-block;
  box-sizing: border-box;
}

@keyframes slideUpOut {
  0% {
    transform: translateY(0%);
    opacity: 1;
  }
  100% {
    transform: translateY(-110%);
    opacity: 0;
  }
}

@keyframes slideDownInAlive {
  0% {
    transform: translateY(110%);
    opacity: 0;
  }
  60% {
    transform: translateY(-10%);
    opacity: 1;
  }
  80% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.fx-slide-up-out {
  animation: slideUpOut 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

.fx-slide-down-in {
  animation: slideDownInAlive 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-content: center;
}

.comingSoon {
  font-size: 12px !important;
}

.horzNav {
  background-color: white;
  padding: 22px;
  border-bottom: 1px solid #e0e0e0;
  min-height: 65px;
}

.horzNav.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.horzNav .branding {
  font-size: 14px;
  font-weight: bold;
  color: rgb(102, 102, 102);
}

.horzNav a {
  text-decoration: none;
  color: var(--primary);
}

.planChip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #f1f3f8;
  color: #1c1c1f;
  font-size: 13px;
  font-weight: 500;
}

.sidebar .userFooter {
  padding: 16px 20px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #fffdfb, #ffede3);
  border: 1px solid #ffd2bd;
  border-radius: 14px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    border-color 0.16s ease, background 0.16s ease;
  box-shadow: 0 8px 26px rgba(235, 81, 15, 0.14);
  position: relative;
}

.sidebar .userFooter-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(235, 81, 15, 0.15);
}

.sidebar .userFooter .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(235, 81, 15, 0.15),
    rgba(235, 81, 15, 0.35)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
}

.sidebar .userFooter .details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.sidebar .userFooter .details strong {
  font-size: 14px;
  color: #1c1c1f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar .userFooter .details .planChip {
  background-color: #f7f8fc;
  font-size: 12px;
  padding: 4px 10px;
}

.sidebar .userFooter .details .hint {
  font-size: 11px;
  color: #a78564;
  padding: 0;
  border: none;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.01em;
}

.sidebar .userFooter .details .planChip i {
  font-size: 14px;
  color: var(--primary);
}

.emailChip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: #eef2ff;
  color: #1f2a4a;
  font-size: 12px;
  font-weight: 500;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.emailChip i {
  font-size: 14px;
  color: #4753b7;
}

.profileToggle-caret {
  margin-left: auto;
  color: #c75327;
  background: #fff6ef;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffd9c6;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    border-color 0.16s ease;
}

.profileToggle-caret i {
  font-size: 18px;
}

.profileToggle.is-open .profileToggle-caret {
  transform: rotate(180deg);
  box-shadow: inset 0 0 0 1px rgba(235, 81, 15, 0.08);
  border-color: #f1b28e;
}

.sidebar .userFooter:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(235, 81, 15, 0.18);
  border-color: #f5bfa1;
}

.sidebar .userFooter:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(235, 81, 15, 0.16);
}

.sidebar .userFooter:focus-visible {
  outline: 2px solid #eb510f;
  outline-offset: 3px;
}

.profileToggle.is-open {
  border-color: #f1b28e;
  box-shadow: 0 10px 22px rgba(235, 81, 15, 0.18);
}

.sidebar .bottom {
  position: relative;
}

.userFooter-popover {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 90px;
  background: linear-gradient(145deg, #fff7f2 0%, #ffffff 60%);
  border: 1px solid #f0c7ad;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(235, 81, 15, 0.06);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 4;
}

.userFooter-popover.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.userFooter-popoverCard {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.userFooter-popover .popoverHeader {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.userFooter-popover .identityCard {
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(235, 81, 15, 0.12),
    rgba(255, 231, 216, 0.65)
  );
  border: 1px solid #f1b28e;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(235, 81, 15, 0.12);
}

.userFooter-popover .identityLabel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a14a1f;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.userFooter-popover .identityLabel i {
  font-size: 16px;
}

.userFooter-popover .identityName strong {
  font-size: 16px;
  color: #1c1c1f;
}

.userFooter-popover .identityBusiness {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7d3e1c;
  font-size: 13px;
  font-weight: 600;
}

.userFooter-popover .identityBusiness i {
  font-size: 16px;
}

.userFooter-popover .identityMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.userFooter-popover .identityMeta .metaItem {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: none;
  border: none;
  font-size: 13px;
  color: #5b2f1a;
}

.userFooter-popover .popoverActions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.userFooter-popover .popoverActions a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #1c1c1f;
  background: #f7f8fc;
  border: 1px solid #e6e9f0;
  transition: background 0.15s ease, transform 0.15s ease;
}

.userFooter-popover .popoverActions a:hover {
  background: #eef2ff;
  transform: translateY(-1px);
}

.userFooter-popover .popoverActions .logoutAction {
  background: #fff4f4;
  border-color: #ffd9d9;
  color: #a01818;
}

.userFooter-popover .popoverActions .logoutAction:hover {
  background: #ffeaea;
}

.userFooter-backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 1;
  pointer-events: none;
  z-index: 3;
}

.userFooter-backdrop.is-open {
  pointer-events: auto;
}

.generalContainer {
  padding: 20px;
}

.videoPlayerShell {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.videoPlayer-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
  align-items: start;
  background: linear-gradient(135deg, #fff5ef, #ffe7d8);
  border: 1px solid #f1b28e;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(235, 81, 15, 0.12);
}

@media (max-width: 1024px) {
  .videoPlayer-main {
    grid-template-columns: 1fr;
  }
}

.playerFrame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.playerFrame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.aiExplainer {
  margin: 8px 0 18px;
  max-width: 720px;
  background: #fff;
  border: 1px solid #e8ebf2;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
}

.aiExplainerText {
  margin-bottom: 10px;
}

.aiExplainerText h4 {
  margin: 0 0 4px;
}

.aiExplainerText p {
  margin: 0;
  color: #4c4f57;
}

.aiExplainerFrame {
  padding-bottom: 56.25%;
}

.videoMetaCard {
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid #e8ebf2;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.videoMetaCard .metaTop {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.videoMetaCard h2 {
  margin: 0;
  font-size: 1.4rem;
  color: #752706;
}

.videoDescription {
  margin: 0;
  color: #4c4f57;
  line-height: 1.5;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff3eb;
  color: #7d3e1c;
  font-weight: 700;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #e6e9f0;
  color: #4c4f57;
  font-size: 12px;
  background: #fff;
}

/* GAP element color tags */
.chip--marketing {
  background: rgba(235, 81, 15, 0.12);
  border-color: rgba(235, 81, 15, 0.35);
  color: #c2410c;
}

.chip--sales,
.chip--selling {
  background: rgba(0, 153, 204, 0.14);
  border-color: rgba(0, 153, 204, 0.35);
  color: #0f4c81;
}

.chip--delivery,
.chip--operations {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.35);
  color: #0f5132;
}

.chip--finance,
.chip--finances {
  background: rgba(139, 92, 246, 0.14);
  border-color: rgba(139, 92, 246, 0.35);
  color: #5b21b6;
}

.chip--strategy {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.35);
  color: #1d4ed8;
}

.videoSeries {
  margin-top: 8px;
  border: 1px solid #e8ebf2;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
  padding: 16px;
}

.videoSeries .seriesHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.videoSeries .seriesHeader h3 {
  margin: 0;
}

.videoSeries .seriesSub {
  margin: 4px 0 0;
  color: #4c4f57;
}

.seriesBadge img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #e6e9f0;
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.12);
}

.seriesHolder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.seriesCard {
  display: flex;
  gap: 10px;
  border: 1px solid #e6e9f0;
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.seriesCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(16, 24, 40, 0.12);
  border-color: #f1b28e;
}

.seriesCard.is-current {
  border-color: #f37945;
  box-shadow: 0 12px 24px rgba(243, 121, 69, 0.2);
}

.seriesThumb {
  width: 120px;
  min-width: 120px;
  background-size: cover;
  background-position: center;
  height: 100%;
}

.seriesBody {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

.seriesMeta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip-current {
  border-color: #f37945;
  color: #f37945;
  background: #fff3eb;
}

.seriesTitle {
  font-weight: 700;
  color: #1c1c1f;
}

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

.timeline-card {
  display: flex;
  gap: 12px;
  border: 1px solid #e8ebf2;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  padding: 14px;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.08);
}

.timeline-card.is-review {
  border-color: #f1b28e;
  box-shadow: 0 12px 28px rgba(235, 81, 15, 0.12);
  background: linear-gradient(180deg, #fff7f2 0%, #ffffff 100%);
}

.timeline-avatar img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid #e6e9f0;
}

.timeline-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.timeline-name {
  font-weight: 700;
  color: #1c1c1f;
}

.timeline-time {
  font-size: 12px;
  color: #6b7280;
}

.timeline-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.timeline-message {
  font-size: 14px;
  line-height: 1.5;
  color: #4c4f57;
}

.timeline-card.is-review .timeline-message {
  background: #fff3eb;
  border: 1px solid #f1b28e;
  border-radius: 10px;
  padding: 10px 12px;
}

.timeline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.timeline-btn {
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e6e9f0;
  background: #fff;
  color: #1c1c1f;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.timeline-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(16, 24, 40, 0.12);
  border-color: #f1b28e;
}

.timeline-btn-primary {
  background: #eb510f;
  border-color: #eb510f;
  color: #fff;
}

.timeline-btn-secondary {
  background: #fff;
  color: #1c1c1f;
}

.timeline-card.is-actioned {
  opacity: 0.68;
}

.cyberGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.cyberCard {
  display: flex;
  gap: 12px;
  border: 1px solid #e8ebf2;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  padding: 14px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

.cyberIcon {
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff3eb;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(235, 81, 15, 0.15);
}

.cyberBody {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cyberBody h3 {
  margin: 0;
  color: #1c1c1f;
}

.cyberBody p {
  margin: 0;
  color: #4c4f57;
  line-height: 1.5;
}

.cyberMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cyberCallout {
  margin-top: 8px;
  padding: 14px;
  border: 1px dashed #e8ebf2;
  border-radius: 12px;
  background: #fff;
  color: #4c4f57;
  line-height: 1.5;
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.06);
}

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

@media (max-width: 980px) {
  .aiCrew-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .aiCrew-grid {
    grid-template-columns: 1fr;
  }
}

.aiCrew-card {
  border: 1px solid #e8ebf2;
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

.aiCrew-card--disabled {
  opacity: 0.55;
  background: #f5f7fb;
}

.aiCrew-avatar {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  background: linear-gradient(135deg, #ff6a00, #ee0979);
}

.aiCrew-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.aiCrew-card--disabled .aiCrew-avatar {
  background: #9ea3ae;
  box-shadow: none;
}

.aiCrew-card h3 {
  margin: 0;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.aiCrew-card p {
  margin: 0;
  color: #4b5563;
}

.aiCrew-infoBox {
  margin-top: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e3e8f2;
  background: #f9fbff;
  color: #4b5563;
  line-height: 1.4;
  box-shadow: 0 6px 14px rgba(16, 24, 40, 0.06);
}

.aiCrew-infoBox p {
  font-size: 0.82rem;
}

.aiCrew-infoBox a {
  color: #2c5bff;
  font-weight: 600;
}

.aiCrew-infoBox p + p {
  margin-top: 6px;
}

.aiCrew-hint {
  font-size: 0.9rem;
  color: #1f2937;
  background: #fff3e6;
  border: 1px solid #f3d3b6;
  border-radius: 10px;
  padding: 8px 10px;
  line-height: 1.4;
}

.aiCrew-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  background: #fff;
  border: 1px solid #e6e9f0;
  color: #111827;
  width: fit-content;
}

.aiCrew-chip--success {
  color: #065f46;
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.12);
}

.aiCrew-card--disabled .aiCrew-chip {
  background: rgba(75, 85, 99, 0.1);
  color: #4b5563;
}

.aiCrew-actionBtn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 600;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  background: #111;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.aiCrew-actionBtn:hover,
.aiCrew-actionBtn:focus {
  background: #ff6a00;
  transform: translateY(-1px);
}

.aiCrew-optin {
  margin-top: 18px;
}

.optInPanel {
  margin-top: 2rem;
  border: 1px solid #e8ebf2;
  border-radius: 16px;
  padding: 1.75rem;
  background: #fff8f4;
  box-shadow: 0 8px 22px rgba(235, 81, 15, 0.08);
  display: none;
}

.optInPanel.is-visible,
.optInPanel:target {
  display: block;
}

.optInPanel h3 {
  margin-top: 0;
}

.optInPanel label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}

.optInPanel input[type="url"] {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.optInPanel button {
  border: none;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.optInPanel button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(16, 24, 40, 0.12);
}

.formFeedback {
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  margin-bottom: 1rem;
}

.formFeedback.error {
  background: rgba(244, 63, 94, 0.12);
  color: #7f1d1d;
}

.formFeedback.success {
  background: rgba(16, 185, 129, 0.2);
  color: #064e3b;
}

.formFeedback ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.hint {
  font-size: 0.9rem;
  color: #6b7280;
}

.academyLayout .inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.academyHero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid #f1b28e;
  background: linear-gradient(135deg, #fff5ef, #ffe7d8);
  box-shadow: 0 10px 28px rgba(235, 81, 15, 0.12);
}

.academyHero h2 {
  margin: 0 0 6px;
}

.academyHero .lede {
  margin: 0;
  color: #5a2f1d;
}

.ghostButton {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #f1b28e;
  background: #fff;
  color: #a14a1f;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ghostButton:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(235, 81, 15, 0.12);
}

.academyWrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.academyGrid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.academyCategory {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #e8ebf2;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}

.academyCategoryHeader {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.academyCategoryHeader img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #e6e9f0;
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.08);
}

.categoryTopline {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.categoryTopline .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff3eb;
  color: #7d3e1c;
  font-weight: 700;
}

.categoryTopline .chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #e6e9f0;
  color: #4c4f57;
  font-size: 12px;
  background: #fff;
}

.academyCategoryDesc {
  max-width: 720px;
  font-size: 0.92rem;
  color: #4c4f57;
}

.academyVideosGrid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  padding: 2px;
}

.academyVideosGrid .video-card {
  position: relative;
  width: 100%;
  max-width: 260px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(16, 24, 40, 0.06);
}

.academyVideosGrid .video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(16, 24, 40, 0.18);
}

.video-gradient {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  pointer-events: none;
}

.video-info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  color: white;
  z-index: 2;
}

.video-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.academyUncategorised h3 {
  margin-top: 10px;
  margin-bottom: 12px;
}

.no-videos {
  font-style: italic;
  color: #555;
}

.emptyState {
  padding: 20px;
  border: 1px dashed #e0e0e0;
  border-radius: 12px;
  color: #555;
  background: #fff;
  text-align: center;
}

.searchArea {
  padding: 50px;
  text-align: center;
}

.searchArea h2 {
  font-size: 32px;
}

.searchArea .niceSearch {
  display: flex;
  max-width: 800px;
  width: 100%;
  border: solid 1px #ccc;
  border-radius: 10px;
  overflow: hidden;
  flex-direction: row;
  flex-wrap: nowrap;
  background-color: white;
  justify-content: center;
  margin: 30px auto;
  transition: border-color 0.25s ease;
}

.searchArea .niceSearch:focus-within {
  border-color: var(--primary);
}

.searchArea .niceSearch input {
  flex-grow: 1;
  border: none !important;
  background-color: transparent;
  max-width: 100%;
  outline: none;
}

.searchArea .niceSearch button {
  margin-top: 0 !important;
}

.searchArea select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding: 5px 10px;
  padding-right: 40px;
  cursor: pointer;
  font-size: 16px;
  width: auto;
  max-width: none;
  border-radius: 10px;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.video-card {
  position: relative;
  width: 300px;
  height: 170px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.video-card:hover {
  transform: scale(1.02);
}

.video-gradient {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.video-info {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  color: white;
  z-index: 2;
}

.video-title {
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-category {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 3px;
}

.no-videos {
  font-style: italic;
  color: #555;
}

.searchArea-compact {
  padding: 0;
  text-align: left;
}

.filtersInline {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.searchGrid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.beta.lessMargin .inner {
  margin: 0 auto !important;
}

.beta.lessMargin {
  padding: 0 !important;
}

.beta .inner {
  background-color: #fffbea;
  border: 1px solid #ffe58f;
  color: #664d03;
  padding: 20px;
  border-radius: 8px;
  margin: 20px auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.beta h4 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #8c6d1f;
}

.beta p {
  font-size: 1rem;
  line-height: 1.6;
}

.reportBlock {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  background: #f9f9f9;
  margin: 20px 0;
}

.tierList {
  display: flex;
  width: 100%;
  margin-top: 20px;
  flex-direction: column;
  gap: 10px;
}

.tierList .tier {
  padding: 15px;
}

.tierList .tier.first {
  background-color: #fff0dd;
}

.tierList .tier.heading {
  background-color: #ebebee;
}

.tierList .tier.heading .elements div,
.tierList .tier.heading h3 {
  font-size: 14px !important;
  color: black !important;
  font-weight: 500 !important;
}

.tierList .elements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 16px;
  width: 100%;
  text-align: left;
  align-items: center;
}

.tierList .elements div {
  font-size: 18px;
}

.tierList .elements .tierName {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tierList .elements .successRatio {
  font-weight: bold;
  color: #c0420c;
}

.tierList .years {
  font-size: 13px;
  color: #333;
}

.ai-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(3, 6, 18, 0.18);
  isolation: isolate;
  border-radius: 14px;
}

.ai-content {
  position: relative;
  width: 100%;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e6e9f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 18px;
  padding: 20px;
  color: #1f2933;
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.06);
  z-index: 1;
}

.ai-content .dashTodo {
  flex-grow: 1;
  color: #1f2933;
}

.ai-content .ai-image {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.ai-content .ai-image .raiName {
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0.04em;
  color: #6b7280;
}

.ai-content .ai-image .raiName span {
  font-weight: 700;
  color: #111827;
}

.ai-content .ai-image img {
  width: 90px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 1px solid #e6e9f0;
  box-shadow: none;
  animation: none;
}

@keyframes aiNebula {
  0% {
    transform: translate3d(-4%, -2%, 0) scale(1);
  }
  100% {
    transform: translate3d(4%, 3%, 0) scale(1.05);
  }
}

@keyframes gridDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 200px 0, 0 200px;
  }
}

@keyframes lightSweep {
  0% {
    transform: translateX(-60%);
  }
  100% {
    transform: translateX(60%);
  }
}

@keyframes floatPulse {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45),
      0 0 25px rgba(235, 81, 15, 0.35);
  }
  50% {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 22px 35px rgba(0, 0, 0, 0.35),
      0 0 35px rgba(10, 197, 188, 0.45);
  }
}

.dashTodo {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: flex-start;
}

.dashTodo a {
  padding: 10px 20px;
  display: inline-block;
  background-color: var(--primary);
  color: var(--primary-text);
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
}

.profileHolder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.profileHolder .profile {
  position: relative;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.profileHolder .profile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, var(--primary), #7dd3fc);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.18;
}

.profileHolder .profile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: #dfe3e8;
}

.profileHolder .profile img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.profileHolder .profile h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.profileHolder .profile h5 {
  margin: 0;
  font-weight: 500;
  color: #4b5563;
}

.profileHolder .primaryButton {
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.2;
  align-self: flex-start;
  width: 100%;
  margin-top: 10px;
}

@keyframes aiPulse {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}

.ai-gradient-text {
  background: linear-gradient(
    45deg,
    var(--primary),
    #ff6b9d,
    #4ecdc4,
    #45b7d1,
    #96ceb4,
    var(--primary)
  );
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  animation: aiPulse 8s ease-in-out infinite alternate;
}

.avatarTopList {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 20px;
}

.avatarTopList .avatarItem {
  border: solid 1px #ccc;
  padding: 30px;
  border-raidus: 10px;
  background-color: white;
  text-align: center;
  border-radius: 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.avatarTopList .avatarItem i {
  font-size: 60px;
}

/* Shake with pause */
@keyframes medalShake {
  0% {
    transform: rotate(0deg);
  }
  5% {
    transform: rotate(-10deg);
  }
  10% {
    transform: rotate(10deg);
  }
  15% {
    transform: rotate(-5deg);
  }
  20% {
    transform: rotate(5deg);
  }
  25% {
    transform: rotate(0deg);
  } /* rest */
  100% {
    transform: rotate(0deg);
  }
}

/* Shine sweep with pause */
@keyframes medalShine {
  0%,
  25% {
    transform: translateX(-150%) rotate(25deg);
  }
  25%,
  50% {
    transform: translateX(150%) rotate(25deg);
  } /* sweep over 1s */
  50%,
  100% {
    transform: translateX(150%) rotate(25deg);
  } /* rest */
}

/* Icon wrapper */
.avatarItem .icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Gold first place icon */
.avatarItem .icon.first i {
  color: #d4af37;
  font-size: 60px;
  transform-origin: 50% 60%;
  animation: medalShake 5s ease-in-out infinite; /* total cycle = 5s */
}

/* Shine overlay */
.avatarItem .icon.first::after {
  content: "";
  position: absolute;
  top: -25%;
  left: -150%;
  width: 140%;
  height: 140%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 80%
  );
  pointer-events: none;
  animation: medalShine 5s ease-in-out infinite;
}

.avatarItem .second {
  color: #c0c0c0; /* True silver */
}

.avatarItem .third {
  color: #cd7f32; /* Deep bronze */
}

.avatarTopList .avatarItem .avatarName {
  font-size: 16px;
  font-weight: 800;
}

.header .last a {
  background-color: var(--primary);
  border-radius: 20px;
  padding: 5px 15px;
  color: var(--primary-text);
  text-decoration: none;
  display: inline-flex;
  gap: 5px;
  font-weight: 800;
  align-items: center;
  font-size: 12px;
}

.header .last a i {
  font-weight: 300;
}

.standardForm {
}

.standardForm .section {
}

.standardForm .section + .section {
  margin-top: 50px;
}

.standardForm h2 {
  font-size: 22px;
  color: #eb510f;
}

.standardForm label {
  font-weight: bold;
}

.standardForm input {
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 5px;
}

.projectionBox {
  margin-top: 10px;
  padding: 20px;
  border: 2px dashed #ccc;
  border-radius: 8px;
  background: #f9f9f9;
}

.projectionBox h3 {
  margin-bottom: 5px;
  color: #eb510f;
}

.projectionBox p {
  font-size: 16px;
}

.projectionBox .figure {
  font-size: 22px;
  font-weight: bold;
  margin: 20px 0;
}

.projectionBox hr {
  margin: 1rem 0;
  border: none;
  border-top: dashed 2px #ccc;
}

.mobile {
  display: none;
  background-color: black;
  justify-content: center;
  align-items: center;
}

.space {
  margin-top: 50px;
}

.spaceBelow {
  margin-bottom: 50px;
}

/* --- Animation --- */

.animate-in {
  opacity: 0;
  transform: translateY(150px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate {
  opacity: 1;
  transform: none;
}

/* Small desktop sizing issues --- */
@media only screen and (max-width: 1690px) {
  .inner {
    width: 95% !important;
    padding: 0;
  }
}

/* --- Mobile styles --- */

@media only screen and (max-width: 800px) {
  .inner {
    max-width: 1400px;
    padding: 20px;
  }
  body {
    padding-top: 0;
  }
  section {
    padding: 50px 0;
  }
  .together .inner {
    flex-direction: column;
  }
  header {
    position: relative;
  }
  header .inner {
    display: block;
    text-align: center;
  }
  header .inner .logo {
    padding: 10px;
    width: 100%;
    display: inline-block;
  }
  header .inner nav {
    width: 100%;
  }
  footer .columns {
    flex-direction: column;
  }
  footer .bottom .legal {
    float: none;
    margin-top: 10px;
  }
  .background .cards {
    flex-direction: column;
  }

  .mobile {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    color: white;
    padding: 30px;
    font-size: 24px;
  }
}

/* Mobile (up to 768px) */

@media (max-width: 768px) {
  .sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    left: -250px;
    /* Hide sidebar initially */
    top: 0;
    background: #0099cc;
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    padding-top: 20px;
  }
  .sidebar.active {
    left: 0;
    /* Show sidebar when active */
  }
  .sidebar nav ul {
    display: flex;
    flex-direction: column;
    padding: 10px;
  }
  .sidebar .user-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  .main-content {
    margin-left: 0;
    padding: 15px;
  }
  .menu-toggle {
    position: fixed;
    top: 15px;
    left: 15px;
    background: #006699;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 1100;
  }
}

/* Small screens (up to 480px) */

/* --- Events --- */
.eventsGridHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 8px;
}

.eventsGridHeader h3 {
  margin: 0 0 4px;
}

.eventsGridHeader .hint {
  margin: 0;
}

.eb-events,
.eventsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.eventCard {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 14px;
  padding: 14px;
  border: 1px solid #eef0f5;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff, #fbfcff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.eventCard__media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #eef0f5;
}

.eventCard__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 auto;
}

.eventCard__title {
  font-weight: 700;
  font-size: 1rem;
  color: #111827;
}

.eventCard__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #4b5563;
  font-size: 0.9rem;
}

.eventCard__meta i {
  color: #eb510f;
  margin-right: 4px;
}

.eventCard__summary {
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.4;
}

.eventCard__cta {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.eventCard .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: linear-gradient(135deg, #eb510f, #f87736);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 18px rgba(235, 81, 15, 0.2);
}

.eventCard .btn.disabled,
.eventCard .btn[aria-disabled="true"] {
  background: #d1d5db;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 768px) {
  .eventCard__cta {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .inner h1,
  .inner h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  .inner p {
    font-size: 14px;
    text-align: center;
  }
  .btn,
  button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }
}
