:root {
  --next2me-bg-0: #071a33;
  --next2me-bg-1: #0b2448;
  --next2me-bg-2: #113765;
  --next2me-premium: #ffd085;
  --next2me-premium-soft: #ffe9bf;
  --next2me-panel: rgba(244, 249, 255, 0.92);
  --next2me-panel-strong: #ffffff;
  --next2me-line: rgba(26, 86, 156, 0.2);
  --next2me-ink: #0f2a4d;
  --next2me-muted: #547098;
  --next2me-primary: #1d86ff;
  --next2me-primary-soft: #4bb2ff;
  --next2me-accent: #19d7c5;
  --next2me-danger: #d84f65;
  --next2me-radius-xl: 26px;
  --next2me-radius-lg: 18px;
  --next2me-radius-md: 12px;
  --next2me-shadow: 0 28px 44px -30px rgba(8, 30, 65, 0.52);
  --next2me-shadow-strong: 0 34px 50px -32px rgba(8, 28, 60, 0.62);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body.next2me-body {
  margin: 0;
  color: var(--next2me-ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(540px 340px at 50% -14%, rgba(255, 212, 136, 0.18), rgba(255, 212, 136, 0)),
    radial-gradient(900px 500px at 15% -8%, rgba(34, 136, 255, 0.32), rgba(34, 136, 255, 0)),
    radial-gradient(1100px 520px at 95% -12%, rgba(29, 233, 205, 0.2), rgba(29, 233, 205, 0)),
    linear-gradient(180deg, var(--next2me-bg-0) 0%, var(--next2me-bg-1) 38%, var(--next2me-bg-2) 100%);
  line-height: 1.45;
}

body.next2me-body[data-tenant-design-gradient="off"] {
  background: linear-gradient(180deg, var(--next2me-bg-0) 0%, var(--next2me-bg-1) 50%, var(--next2me-bg-2) 100%);
}

body.next2me-body[data-tenant-design-gradient="off"] .next2me-bg-orb {
  display: none;
}

body.next2me-body[data-tenant-design-pattern="on"] .next2me-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(25deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 32px 32px, 24px 24px;
}

body.next2me-body[data-tenant-design-glass="off"] .curriculum-page,
body.next2me-body[data-tenant-design-glass="off"] .next2me-ops-panel,
body.next2me-body[data-tenant-design-glass="off"] .next2me-detail-panel,
body.next2me-body[data-tenant-design-glass="off"] .next2me-session,
body.next2me-body[data-tenant-design-glass="off"] .next2me-promise,
body.next2me-body[data-tenant-design-glass="off"] .next2me-insights-teaser {
  backdrop-filter: none;
  background: #ffffff;
}

body.next2me-body[data-tenant-design-motion="off"] *,
body.next2me-body[data-tenant-design-motion="off"] *::before,
body.next2me-body[data-tenant-design-motion="off"] *::after {
  animation: none !important;
  transition: none !important;
}

body.next2me-body[data-tenant-design-motion="dynamic"] .next2me-main > section {
  animation-duration: 0.95s;
}

body.next2me-body[data-tenant-design-shadow="low"] {
  --next2me-shadow: 0 18px 30px -24px rgba(8, 30, 65, 0.38);
  --next2me-shadow-strong: 0 24px 36px -26px rgba(8, 28, 60, 0.44);
}

body.next2me-body[data-tenant-design-shadow="high"] {
  --next2me-shadow: 0 36px 56px -28px rgba(8, 30, 65, 0.66);
  --next2me-shadow-strong: 0 42px 62px -30px rgba(8, 28, 60, 0.76);
}

body.next2me-body[data-tenant-design-density="compact"] .next2me-main {
  gap: 14px;
}

body.next2me-body[data-tenant-design-density="compact"] .next2me-hero {
  padding: 22px;
}

body.next2me-body[data-tenant-design-rounded="soft"] {
  --next2me-radius-xl: 18px;
  --next2me-radius-lg: 14px;
  --next2me-radius-md: 10px;
}

body.next2me-body[data-tenant-design-rounded="full"] {
  --next2me-radius-xl: 34px;
  --next2me-radius-lg: 26px;
  --next2me-radius-md: 18px;
}

body.next2me-body[data-tenant-design-contrast="high"] {
  --next2me-ink: #081c38;
  --next2me-muted: #35597f;
}

.next2me-bg-orb {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  filter: blur(64px);
  opacity: 0.34;
  pointer-events: none;
  z-index: 0;
}

.next2me-bg-orb-a {
  top: -220px;
  left: -140px;
  background: #3fa6ff;
}

.next2me-bg-orb-b {
  right: -170px;
  bottom: -260px;
  background: #2be0cc;
}

.next2me-shell {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.next2me-topbar {
  width: min(1240px, calc(100% - 30px));
  margin: 12px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: sticky;
  top: 0;
  z-index: 20;
  border: 1px solid rgba(194, 224, 255, 0.26);
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(5, 22, 44, 0.72), rgba(10, 40, 78, 0.64));
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 18px 30px -24px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.next2me-topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.next2me-topbar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.next2me-brand {
  display: inline-flex;
  align-items: center;
}

.next2me-brand img {
  width: 154px;
  max-width: 100%;
  display: block;
}

.next2me-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(204, 230, 255, 0.42);
  background: rgba(53, 127, 217, 0.35);
  padding: 10px 9px;
  cursor: pointer;
}

.next2me-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #f4f9ff;
}

.next2me-nav-toggle span + span {
  margin-top: 6px;
}

.next2me-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.next2me-nav a,
.next2me-inline-link {
  text-decoration: none;
}

.next2me-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(210, 233, 255, 0.3);
  color: #f4f9ff;
  background: rgba(24, 72, 138, 0.45);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.next2me-nav a:hover {
  transform: translateY(-1px);
  background: rgba(29, 86, 161, 0.72);
  border-color: rgba(255, 220, 160, 0.46);
}

.next2me-nav a.next2me-user-chip {
  min-height: 42px;
  padding: 6px 10px 6px 6px;
  border-radius: 999px;
  border-color: rgba(255, 223, 166, 0.44);
  background: rgba(12, 50, 99, 0.86);
  justify-content: flex-start;
  gap: 8px;
  min-width: 210px;
}

.next2me-nav a.next2me-user-chip:hover {
  transform: translateY(-1px);
  background: rgba(18, 64, 118, 0.96);
  border-color: rgba(255, 236, 198, 0.66);
}

.next2me-user-chip-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #4cb6ff, #1a84ff);
  color: #f4f9ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  border: 1px solid rgba(198, 230, 255, 0.42);
  background-size: cover;
  background-position: center;
}

.next2me-user-chip-avatar.has-image {
  color: transparent;
}

.next2me-user-chip-copy {
  display: grid;
  line-height: 1.1;
}

.next2me-user-chip-copy strong {
  color: #f4f9ff;
  font-size: 12px;
  font-weight: 800;
}

.next2me-user-chip-copy small {
  color: rgba(214, 233, 255, 0.86);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.next2me-nav a:focus-visible,
.next2me-nav-toggle:focus-visible,
.next2me-btn:focus-visible,
.next2me-inline-link:focus-visible,
.next2me-live-action:focus-visible {
  outline: 2px solid rgba(189, 228, 255, 0.92);
  outline-offset: 2px;
}

.next2me-main {
  width: min(1240px, calc(100% - 30px));
  margin: 14px auto 0;
  padding-bottom: 28px;
  display: grid;
  gap: 18px;
  flex: 1 0 auto;
}

.curriculum-page,
.next2me-ops-panel,
.next2me-detail-panel,
.next2me-session,
.next2me-promise,
.next2me-insights-teaser {
  border: 1px solid var(--next2me-line);
  border-radius: var(--next2me-radius-xl);
  background: var(--next2me-panel);
  box-shadow: var(--next2me-shadow);
  backdrop-filter: blur(8px);
}

.next2me-main > section {
  opacity: 0;
  transform: translateY(14px);
  animation: next2me-reveal 0.6s ease forwards;
}

.next2me-main > section:nth-child(1) {
  animation-delay: 0.03s;
}

.next2me-main > section:nth-child(2) {
  animation-delay: 0.11s;
}

.next2me-main > section:nth-child(3) {
  animation-delay: 0.18s;
}

.next2me-main > section:nth-child(4) {
  animation-delay: 0.24s;
}

.next2me-main > section:nth-child(5) {
  animation-delay: 0.3s;
}

@keyframes next2me-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.next2me-hero {
  display: grid;
  grid-template-columns: 1.05fr minmax(360px, 0.95fr);
  align-items: center;
  gap: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% -20%, rgba(71, 174, 255, 0.2), rgba(71, 174, 255, 0)),
    radial-gradient(circle at 0% 110%, rgba(35, 207, 180, 0.14), rgba(35, 207, 180, 0)),
    var(--next2me-panel);
  box-shadow: var(--next2me-shadow-strong);
}

.next2me-hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 141, 0.24), rgba(255, 214, 141, 0));
  pointer-events: none;
}

.next2me-eyebrow,
.next2me-card-kicker {
  margin: 0 0 10px;
  color: #1a6fcb;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}

.next2me-hero-copy h1,
.next2me-section-heading h2,
.next2me-promise-card h3,
.next2me-live-panel h3,
.next2me-live-card h4 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: -0.02em;
}

.next2me-hero-copy h1 {
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.08;
  max-width: 760px;
}

.next2me-hero-description,
.next2me-section-heading p,
.next2me-live-card p,
.next2me-field span,
.next2me-route-note,
.next2me-promise-card p {
  color: var(--next2me-muted);
}

.next2me-hero-description,
.next2me-section-heading p,
.next2me-live-card p,
.next2me-promise-card p {
  line-height: 1.7;
}

.next2me-hero-signals {
  margin-top: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.next2me-signal {
  min-height: 28px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(30, 102, 184, 0.2);
  background: rgba(255, 255, 255, 0.88);
  color: #2a578d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.next2me-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.next2me-route-note {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
}

.next2me-hero-media {
  display: grid;
  gap: 12px;
  align-items: start;
}

.next2me-banner {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 36px -28px rgba(13, 45, 88, 0.65);
}

.next2me-banner-mobile {
  display: none;
}

.next2me-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.next2me-metric-card {
  border: 1px solid rgba(19, 82, 154, 0.18);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 249, 255, 0.95));
  padding: 10px;
}

.next2me-metric-card strong {
  display: block;
  color: #1b4f91;
  font-size: 15px;
}

.next2me-metric-card span {
  display: block;
  margin-top: 4px;
  color: #5f7ea4;
  font-size: 12px;
  line-height: 1.45;
}

.next2me-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  min-height: 40px;
  padding: 10px 16px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.next2me-btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.next2me-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--next2me-primary-soft), var(--next2me-primary));
  box-shadow: 0 12px 24px -18px rgba(18, 94, 186, 0.9);
}

.next2me-btn-secondary {
  color: #16509a;
  border: 1px solid rgba(29, 118, 214, 0.22);
  background: #eef6ff;
}

.next2me-btn-ghost {
  color: #4f6788;
  border: 1px solid rgba(75, 106, 145, 0.24);
  background: #fff;
}

.next2me-hidden {
  display: none !important;
}

.next2me-promise,
.next2me-session,
.next2me-ops-panel,
.next2me-detail-panel,
.next2me-insights-teaser {
  padding: 22px;
}

.next2me-section-heading {
  display: grid;
  gap: 8px;
}

.next2me-section-heading h2 {
  font-size: clamp(24px, 3.1vw, 40px);
  line-height: 1.12;
}

.next2me-promise-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.next2me-promise-card {
  border: 1px solid rgba(22, 83, 153, 0.18);
  border-radius: 16px;
  background: #ffffff;
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.next2me-promise-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 28px -24px rgba(13, 56, 112, 0.56);
}

.next2me-promise-card h3 {
  font-size: 18px;
}

.next2me-promise-card p {
  margin: 10px 0 0;
  font-size: 14px;
}

.next2me-live-priority {
  border-color: rgba(21, 96, 181, 0.24);
  background:
    radial-gradient(circle at 100% -14%, rgba(44, 151, 255, 0.15), rgba(44, 151, 255, 0)),
    var(--next2me-panel);
}

.next2me-session-grid,
.next2me-live-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.next2me-session-form {
  display: grid;
  gap: 12px;
}

.next2me-field {
  display: grid;
  gap: 7px;
}

.next2me-field span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.next2me-field input,
.next2me-field select,
.next2me-field textarea {
  width: 100%;
  border: 1px solid rgba(29, 86, 156, 0.2);
  border-radius: var(--next2me-radius-md);
  background: #fff;
  padding: 11px 13px;
  color: var(--next2me-ink);
  font: inherit;
}

.next2me-session-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.next2me-session-actions-compact {
  margin-top: 12px;
}

.next2me-inline-state {
  font-size: 13px;
  font-weight: 700;
  color: #4f6d92;
}

.next2me-social-auth {
  margin-top: 2px;
  padding-top: 10px;
  border-top: 1px solid rgba(31, 80, 145, 0.14);
  display: grid;
  gap: 8px;
}

.next2me-social-title {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  color: #6984a8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.next2me-social-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.next2me-social-btn {
  min-height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(33, 84, 155, 0.22);
  background: #f2f7ff;
  color: #2d486e;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.next2me-social-btn:hover,
.next2me-social-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(29, 109, 229, 0.45);
}

.next2me-social-btn i {
  font-size: 15px;
}

.next2me-social-result {
  margin: 0;
  min-height: 18px;
  font-size: 12px;
  color: #5d789c;
}

.next2me-live-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.next2me-insights-teaser {
  background:
    radial-gradient(circle at 100% -14%, rgba(44, 151, 255, 0.18), rgba(44, 151, 255, 0)),
    radial-gradient(circle at 8% 110%, rgba(28, 208, 182, 0.12), rgba(28, 208, 182, 0)),
    var(--next2me-panel);
}

.next2me-insights-mini-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.next2me-insights-mini-metrics .next2me-live-kpi strong {
  font-size: clamp(24px, 3vw, 34px);
}

.next2me-insights-actions {
  margin-top: 14px;
}

.next2me-live-kpi,
.next2me-live-card,
.next2me-live-panel {
  border: 1px solid rgba(23, 85, 156, 0.18);
  border-radius: var(--next2me-radius-lg);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.next2me-live-kpi:hover,
.next2me-live-card:hover,
.next2me-live-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 28px -26px rgba(12, 50, 101, 0.55);
}

.next2me-live-kpi {
  padding: 14px;
}

.next2me-live-kpi p,
.next2me-live-kpi span {
  margin: 0;
}

.next2me-live-kpi strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--next2me-primary);
  font-size: 30px;
  line-height: 1.1;
  font-family: "Sora", "Manrope", sans-serif;
}

.next2me-live-panel {
  padding: 16px;
}

.next2me-live-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.next2me-inline-link {
  color: #1a62c5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.next2me-inline-label {
  opacity: 0.8;
}

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

.next2me-live-card {
  padding: 14px;
}

.next2me-live-card-priority {
  border-color: rgba(29, 134, 255, 0.42);
  box-shadow: 0 16px 26px -22px rgba(23, 103, 189, 0.52);
  background:
    linear-gradient(180deg, rgba(236, 247, 255, 0.88), rgba(255, 255, 255, 0.95)),
    #fff;
}

.next2me-live-card h4 {
  margin: 0 0 8px;
  font-size: 17px;
}

.next2me-live-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.next2me-live-card li {
  color: #5e789a;
  font-size: 13px;
}

.next2me-live-card li + li {
  margin-top: 4px;
}

.next2me-live-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.next2me-live-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(27, 117, 214, 0.24);
  background: rgba(28, 134, 255, 0.11);
  color: #1b6fc3;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.next2me-live-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.next2me-live-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(29, 109, 229, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: #1d4f9f;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.next2me-file-link {
  gap: 7px;
  justify-content: flex-start;
}

.next2me-file-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 22px;
  border-radius: 5px;
  border: 1px solid rgba(29, 109, 229, 0.24);
  background: rgba(29, 109, 229, 0.14);
  position: relative;
  line-height: 1;
}

.next2me-file-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 8px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 4px 0 currentColor, 0 8px 0 currentColor;
  opacity: 0.72;
}

.next2me-file-icon::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -1px;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.92);
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  border-top-right-radius: 4px;
}

.next2me-file-pdf {
  border-color: rgba(192, 57, 43, 0.35);
  background: rgba(192, 57, 43, 0.12);
  color: #a23125;
}

.next2me-file-excel {
  border-color: rgba(39, 174, 96, 0.35);
  background: rgba(39, 174, 96, 0.12);
  color: #1d8a4d;
}

.next2me-file-word {
  border-color: rgba(41, 98, 255, 0.34);
  background: rgba(41, 98, 255, 0.12);
  color: #2050d3;
}

.next2me-file-powerpoint {
  border-color: rgba(230, 126, 34, 0.36);
  background: rgba(230, 126, 34, 0.13);
  color: #bf641a;
}

.next2me-file-video {
  border-color: rgba(155, 89, 182, 0.36);
  background: rgba(155, 89, 182, 0.13);
  color: #8b4cab;
}

.next2me-file-audio {
  border-color: rgba(46, 204, 113, 0.34);
  background: rgba(46, 204, 113, 0.14);
  color: #218a4f;
}

.next2me-file-image {
  border-color: rgba(52, 152, 219, 0.36);
  background: rgba(52, 152, 219, 0.12);
  color: #1f7bb5;
}

.next2me-file-archive {
  border-color: rgba(127, 140, 141, 0.36);
  background: rgba(127, 140, 141, 0.14);
  color: #5d696a;
}

.next2me-live-action:hover {
  border-color: rgba(29, 109, 229, 0.44);
  color: #133a78;
}

.next2me-live-action-primary {
  border-color: rgba(29, 109, 229, 0.25);
  background: linear-gradient(135deg, var(--next2me-primary-soft), var(--next2me-primary));
  color: #fff;
}

.next2me-live-action-join {
  min-height: 38px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.next2me-live-empty,
.next2me-catalog-empty {
  margin: 0;
  color: #6983a2;
  font-style: italic;
}

body.next2me-body.next2me-modal-open {
  overflow: hidden;
}

.next2me-login-modal {
  position: fixed;
  inset: 0;
  z-index: 38;
  display: grid;
  place-items: center;
  padding: 16px;
}

.next2me-login-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 34, 52, 0.56);
  backdrop-filter: blur(3px);
}

.next2me-login-modal-panel {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  border-radius: 24px;
  border: 1px solid rgba(170, 214, 255, 0.52);
  background:
    radial-gradient(circle at 85% 0%, rgba(216, 239, 255, 0.35), rgba(216, 239, 255, 0)),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 44px -30px rgba(5, 26, 54, 0.72);
  padding: 22px;
  display: grid;
  gap: 14px;
}

.next2me-login-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.next2me-login-modal-header h3 {
  margin: 0;
}

.next2me-login-modal-inline-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.next2me-inline-link-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: #2d67aa;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.next2me-inline-link-btn:hover {
  color: #0f4e92;
}

.next2me-live-window {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 16px;
}

.next2me-live-window-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 34, 52, 0.54);
  backdrop-filter: blur(2px);
}

.next2me-live-window-panel {
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
  border-radius: 24px;
  border: 1px solid rgba(170, 214, 255, 0.52);
  background:
    radial-gradient(circle at 88% 2%, rgba(216, 239, 255, 0.4), rgba(216, 239, 255, 0)),
    rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 44px -30px rgba(5, 26, 54, 0.72);
  padding: 22px;
  display: grid;
  gap: 14px;
}

.next2me-live-window-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.next2me-live-window-header h3 {
  margin: 0;
}

.next2me-live-subtitle {
  margin: 8px 0 0;
  color: #496683;
  line-height: 1.5;
}

.next2me-live-window-close {
  border: 1px solid rgba(63, 136, 190, 0.25);
  background: #fff;
  color: #0f325f;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.next2me-live-window-materials {
  border: 1px solid rgba(63, 136, 190, 0.18);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
}

.next2me-live-window-materials h4 {
  margin: 0 0 10px;
  color: #165e93;
}

.next2me-live-material-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.next2me-live-window-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.next2me-live-window-actions .next2me-live-action {
  appearance: none;
  cursor: pointer;
}

.next2me-footer {
  margin-top: auto;
  padding: 10px 0 22px;
}

.next2me-footer-main {
  width: min(1240px, calc(100% - 30px));
  margin: 0 auto;
  border: 1px solid rgba(181, 220, 255, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 0%, rgba(38, 161, 255, 0.32), rgba(38, 161, 255, 0)),
    radial-gradient(circle at 86% -20%, rgba(255, 217, 148, 0.26), rgba(255, 217, 148, 0)),
    linear-gradient(135deg, #0b2752 0%, #104081 46%, #1765aa 100%);
  color: #ecf6ff;
  text-align: center;
  padding: 18px 16px 20px;
  box-shadow: 0 24px 36px -28px rgba(2, 16, 38, 0.72);
}

.next2me-footer-brandline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.next2me-footer-brandline img {
  width: 118px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 10px;
  padding: 5px 8px;
}

.next2me-footer-brandline p {
  margin: 0;
  color: rgba(236, 246, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
}

.next2me-footer-copy {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.next2me-footer-links {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.next2me-footer-links a {
  color: #eef8ff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(235, 247, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.next2me-footer-links a:hover {
  border-color: rgba(255, 223, 166, 0.58);
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 1120px) {
  .next2me-live-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .next2me-hero-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .next2me-topbar {
    width: min(100%, calc(100% - 20px));
    position: static;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 10px;
  }

  .next2me-topbar-head {
    width: 100%;
  }

  .next2me-nav-toggle {
    display: inline-block;
  }

  .next2me-main {
    width: min(100%, calc(100% - 20px));
  }

  .next2me-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: stretch;
    gap: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.22s ease, opacity 0.22s ease, padding-top 0.22s ease;
  }

  .next2me-topbar.nav-open .next2me-nav {
    max-height: 420px;
    opacity: 1;
    padding-top: 4px;
    pointer-events: auto;
  }

  .next2me-nav a {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
  }

  .next2me-nav a.next2me-user-chip {
    min-width: 0;
    flex: 1 1 100%;
  }

  .next2me-hero,
  .next2me-session-grid,
  .next2me-live-grid {
    grid-template-columns: 1fr;
  }

  .next2me-banner-desktop {
    display: none;
  }

  .next2me-banner-mobile {
    display: block;
  }
}

@media (max-width: 680px) {
  .next2me-main {
    gap: 14px;
    padding-bottom: 20px;
  }

  .next2me-hero,
  .next2me-session,
  .next2me-ops-panel,
  .next2me-detail-panel,
  .next2me-promise,
  .next2me-insights-teaser {
    padding: 16px;
    border-radius: 16px;
  }

  .next2me-live-kpis,
  .next2me-promise-grid {
    grid-template-columns: 1fr;
  }

  .next2me-hero-copy h1 {
    font-size: clamp(24px, 7.4vw, 34px);
  }

  .next2me-section-heading h2 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .next2me-hero-actions,
  .next2me-session-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .next2me-social-buttons {
    grid-template-columns: 1fr;
  }

  .next2me-btn {
    width: 100%;
  }

  .next2me-live-kpi strong {
    font-size: 24px;
  }

  .next2me-footer-main {
    width: min(100%, calc(100% - 20px));
  }

  .next2me-live-window-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .next2me-login-modal {
    padding: 0;
    align-items: stretch;
  }

  .next2me-login-modal-panel {
    width: 100%;
    min-height: 100dvh;
    border-radius: 0;
    padding: 18px 14px 24px;
  }

  .next2me-login-modal-inline-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .next2me-live-window-actions .next2me-live-action {
    flex: 1 1 100%;
  }
}

@media (max-width: 420px) {
  .next2me-topbar {
    border-radius: 16px;
    padding: 10px;
  }

  .next2me-brand img {
    width: 128px;
  }

  .next2me-nav a {
    flex-basis: 100%;
  }

  .next2me-main {
    width: min(100%, calc(100% - 12px));
  }

  .next2me-hero,
  .next2me-session,
  .next2me-ops-panel,
  .next2me-detail-panel,
  .next2me-promise,
  .next2me-insights-teaser {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .next2me-main > section {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .next2me-btn,
  .next2me-nav a,
  .next2me-social-btn,
  .next2me-live-action,
  .next2me-promise-card,
  .next2me-live-kpi,
  .next2me-live-card,
  .next2me-live-panel,
  .next2me-footer-links a {
    transition: none;
  }
}
