/* ================= Fontawesome =========== */
/* ================= Colors =========== */
/* ============== Define Color ============== */
/* ================= Font Size =========== */
/* ================= Padding =========== */
.releaseNoteBody {
  --bg: #f4f6ff;
  --surface: #ffffff;
  --card-deep: #edf0fc;
  --border: #d8deef;
  --border-strong: #b8c4e8;
  --blue: #082eb5;
  --blue-mid: #1a45d4;
  --blue-light: #e4eafc;
  --blue-xlight: #f0f3fe;
  --amber: #c96a00;
  --amber-light: #fff3e0;
  --green: #0a7c4e;
  --green-light: #e0f7ee;
  --text-primary: #0b1540;
  --text-secondary: #364370;
  --text-muted: #6672a0;
  --text-dim: #9aaac8;
  --shadow-sm: 0 1px 4px rgba(8,46,181,0.05), 0 0 0 1px rgba(8,46,181,0.04);
  --shadow-md: 0 4px 20px rgba(8,46,181,0.09);
  --shadow-lg: 0 8px 40px rgba(8,46,181,0.18);
}

.releaseNoteBody {
  background: var(--bg);
  color: var(--text-primary);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

body.releaseNoteBody::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, #c4cde8 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* HERO */
.releaseNoteBody .hero {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0px 2rem 0px;
}

.releaseNoteBody .hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.releaseNoteBody .hero-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.releaseNoteBody .hero h1 {
  font-size: clamp(36px, 5vw, 45px);
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 0px;
  border-bottom: none;
}

.releaseNoteBody .hero h1 em {
  font-style: italic;
  color: var(--blue);
}

.releaseNoteBody .hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 300;
}

/* Notify Banner */
.releaseNoteBody .notify-banner {
  background: var(--blue);
  border-radius: 14px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}

.releaseNoteBody .notify-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.releaseNoteBody .notify-text strong {
  color: #fff;
  font-weight: 600;
}

.releaseNoteBody .notify-input-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.releaseNoteBody .notify-input {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 8px 14px;
  color: #fff;
  font-size: 13px;
  outline: none;
  width: 220px;
}

.releaseNoteBody .notify-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.releaseNoteBody .notify-input:focus {
  border-color: rgba(255, 255, 255, 0.7);
}

.releaseNoteBody .notify-btn {
  padding: 8px 20px;
  background: #fff;
  border: none;
  border-radius: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.releaseNoteBody .notify-btn:hover {
  opacity: 0.88;
}

/* Stats bar */
.releaseNoteBody .hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  width: fit-content;
}

.releaseNoteBody .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 32px;
  border-right: 1px solid var(--border);
}

.releaseNoteBody .stat-item:last-child {
  border-right: none;
}

.releaseNoteBody .stat-num {
  font-size: 28px;
  color: var(--blue);
  line-height: 1;
}

.releaseNoteBody .stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* TABS */
.releaseNoteBody .tabs-wrapper {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 2rem;
}

.releaseNoteBody .tabs {
  display: flex;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px;
  width: fit-content;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

.releaseNoteBody .tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 8px;
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.releaseNoteBody .tab-btn.active, .releaseNoteBody .tab-btn.active .stat-num {
  background: var(--blue);
  color: #fff;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(8, 46, 181, 0.3);
}

.releaseNoteBody .tab-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.releaseNoteBody .dot-green {
  background: var(--green);
}

.releaseNoteBody .dot-amber {
  background: var(--amber);
}

.releaseNoteBody .dot-blue {
  background: var(--blue);
}

.releaseNoteBody .dot-purple {
  background: #5b35c9;
}

.releaseNoteBody .tab-btn.active .tab-dot {
  background: rgba(255, 255, 255, 0.65);
}

/* PANELS */
.releaseNoteBody .panel {
  display: none;
  animation: fadeIn 0.3s ease;
  background: transparent;
  box-shadow: none;
}

.releaseNoteBody .panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.releaseNoteBody .section-title {
  font-size: 26px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.releaseNoteBody .section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* FEATURE GRID */
.releaseNoteBody .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 18px;
  margin-bottom: 52px;
}

.releaseNoteBody .feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  box-shadow: var(--shadow-sm);
}

.releaseNoteBody .feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.releaseNoteBody .feature-card.c-green:hover {
  border-color: #7ecfb0;
}

.releaseNoteBody .feature-card.c-amber:hover {
  border-color: #f0be70;
}

.releaseNoteBody .feature-card.c-blue:hover {
  border-color: #7090e8;
}

.releaseNoteBody .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
}

.releaseNoteBody .feature-card.c-green::before {
  background: linear-gradient(90deg, var(--green), #7ecfb0, transparent);
}

.releaseNoteBody .feature-card.c-amber::before {
  background: linear-gradient(90deg, var(--amber), #f5c245, transparent);
}

.releaseNoteBody .feature-card.c-blue::before {
  background: linear-gradient(90deg, var(--blue), #4a6eef, transparent);
}

.releaseNoteBody .card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
  background: transparent;
  padding: 0;
  border-bottom: none;
}

.releaseNoteBody .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.releaseNoteBody .icon-green {
  background: var(--green-light);
}

.releaseNoteBody .icon-amber {
  background: var(--amber-light);
}

.releaseNoteBody .icon-blue {
  background: var(--blue-light);
}

.releaseNoteBody .card-badge {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
  border: 1px solid;
}

.releaseNoteBody .badge-soon {
  color: var(--amber);
  background: var(--amber-light);
  border-color: #f5d090;
}

.releaseNoteBody .badge-live {
  color: var(--green);
  background: var(--green-light);
  border-color: #9adfc5;
}

.releaseNoteBody .badge-beta {
  color: var(--blue);
  background: var(--blue-light);
  border-color: var(--border-strong);
}

.releaseNoteBody .badge-locked {
  color: var(--text-muted);
  background: var(--card-deep);
  border-color: var(--border);
}

.releaseNoteBody .card-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.releaseNoteBody .card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.releaseNoteBody .card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.releaseNoteBody .meta-date {
  font-size: 11px;
  color: var(--text-dim);
}

.releaseNoteBody .card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.releaseNoteBody .tag {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 5px;
  background: var(--blue-xlight);
  color: var(--blue);
  border: 1px solid var(--blue-light);
}

/* Progress */
.releaseNoteBody .progress-wrap {
  margin: 14px 0;
}

.releaseNoteBody .progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.releaseNoteBody .progress-bar {
  height: 5px;
  background: var(--card-deep);
  border-radius: 3px;
  overflow: hidden;
}

.releaseNoteBody .progress-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease;
}

.releaseNoteBody .fill-amber {
  background: linear-gradient(90deg, var(--amber), #f5c245);
}

.releaseNoteBody .fill-blue {
  background: linear-gradient(90deg, var(--blue), #4a6eef);
}

/* TIMELINE */
.releaseNoteBody .timeline {
  position: relative;
  padding-left: 28px;
}

.releaseNoteBody .timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 0;
  width: 1.5px;
  background: linear-gradient(180deg, var(--blue), var(--border));
}

.releaseNoteBody .timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.releaseNoteBody .timeline-item::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid;
}

.releaseNoteBody .timeline-item.tl-blue::before {
  border-color: var(--blue);
  background: var(--blue-light);
}

.releaseNoteBody .timeline-item.tl-green::before {
  border-color: var(--green);
  background: var(--green-light);
}

.releaseNoteBody .timeline-item.tl-amber::before {
  border-color: var(--amber);
  background: var(--amber-light);
}

.releaseNoteBody .timeline-item.tl-dim::before {
  border-color: var(--text-dim);
  background: var(--card-deep);
}

.releaseNoteBody .timeline-date {
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 3px;
}

.releaseNoteBody .timeline-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 3px;
  color: var(--text-primary);
}

.releaseNoteBody .timeline-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* BETA */
.releaseNoteBody .lock-banner {
  background: linear-gradient(135deg, var(--blue), #1a45d4);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.releaseNoteBody .lock-icon {
  font-size: 38px;
  flex-shrink: 0;
}

.releaseNoteBody .lock-info {
  flex: 1;
  min-width: 200px;
}

.releaseNoteBody .lock-info h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.releaseNoteBody .lock-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.releaseNoteBody .lock-countdown {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.releaseNoteBody .count-unit {
  text-align: center;
}

.releaseNoteBody .count-num {
  font-size: 34px;
  line-height: 1;
  color: #fff;
  display: block;
}

.releaseNoteBody .count-label {
  font-size: 9px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.1em;
}

.releaseNoteBody .table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.releaseNoteBody .beta-features-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.releaseNoteBody .beta-features-table thead {
  background: var(--blue-xlight);
}

.releaseNoteBody .beta-features-table th {
  text-align: left;
  padding: 12px 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  border-bottom: 1px solid var(--border);
}

.releaseNoteBody .beta-features-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: middle;
}

.releaseNoteBody .beta-features-table tr:last-child td {
  border-bottom: none;
}

.releaseNoteBody .beta-features-table tr:hover td {
  background: var(--blue-xlight);
}

.releaseNoteBody .beta-features-table td:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

.releaseNoteBody .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid;
}

.releaseNoteBody .pill-open {
  color: var(--green);
  background: var(--green-light);
  border-color: #9adfc5;
}

.releaseNoteBody .pill-closing {
  color: var(--amber);
  background: var(--amber-light);
  border-color: #f5d090;
}

.releaseNoteBody .pill-locked {
  color: var(--text-muted);
  background: var(--card-deep);
  border-color: var(--border);
}

.releaseNoteBody .beta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .releaseNoteBody .beta-grid {
    grid-template-columns: 1fr;
  }
}
.releaseNoteBody .beta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.releaseNoteBody .beta-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.releaseNoteBody .step-list {
  list-style: none;
  counter-reset: steps;
}

.releaseNoteBody .step-list li {
  counter-increment: steps;
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.releaseNoteBody .step-list li::before {
  content: counter(steps);
  min-width: 26px;
  height: 26px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--blue);
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1px solid var(--border-strong);
}

.releaseNoteBody .code-block {
  background: var(--blue-xlight);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  font-size: 12px;
  color: var(--blue);
  line-height: 1.9;
  margin: 12px 0;
  overflow-x: auto;
}

.releaseNoteBody .code-block .comment {
  color: var(--text-dim);
}

.releaseNoteBody .code-block .key {
  color: var(--blue-mid);
  font-weight: 500;
}

.releaseNoteBody .code-block .val {
  color: var(--amber);
}

/* FEEDBACK */
.releaseNoteBody .feedback-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .releaseNoteBody .feedback-wrap {
    grid-template-columns: 1fr;
  }
}
.releaseNoteBody .feedback-meta {
  background: var(--blue);
  border-radius: 16px;
  padding: 32px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.releaseNoteBody .feedback-meta h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.releaseNoteBody .feedback-meta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
  line-height: 1.6;
}

.releaseNoteBody .rating-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 10px;
}

.releaseNoteBody .stars {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.releaseNoteBody .star {
  font-size: 26px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.15s, transform 0.15s;
}

.releaseNoteBody .star:hover, .releaseNoteBody .star.active {
  color: #ffd166;
  transform: scale(1.15);
}

.releaseNoteBody .category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.releaseNoteBody .cat-pill {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s;
}

.releaseNoteBody .cat-pill:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.releaseNoteBody .cat-pill.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
  font-weight: 500;
}

.releaseNoteBody .form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.releaseNoteBody .form-group {
  margin-bottom: 18px;
}

.releaseNoteBody .form-group label {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 7px;
  font-weight: 500;
}

.releaseNoteBody .form-group input,
.releaseNoteBody .form-group select,
.releaseNoteBody .form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 15px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.releaseNoteBody .form-group input:focus,
.releaseNoteBody .form-group select:focus,
.releaseNoteBody .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 46, 181, 0.1);
  background: #fff;
}

.releaseNoteBody .form-group select option {
  background: #fff;
  color: var(--text-primary);
}

.releaseNoteBody .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.releaseNoteBody .submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
  box-shadow: 0 4px 16px rgba(8, 46, 181, 0.28);
}

.releaseNoteBody .submit-btn:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(8, 46, 181, 0.32);
}

.releaseNoteBody .success-msg {
  display: none;
  text-align: center;
  padding: 48px 20px;
}

.releaseNoteBody .success-msg .check {
  font-size: 52px;
  margin-bottom: 16px;
}

.releaseNoteBody .success-msg h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.releaseNoteBody .success-msg p {
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .releaseNoteBody nav {
    display: none;
  }
  .releaseNoteBody .feature-grid {
    grid-template-columns: 1fr;
  }
  .releaseNoteBody .hero-stats {
    width: 100%;
  }
  .releaseNoteBody .form-row {
    grid-template-columns: 1fr;
  }
  .releaseNoteBody .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/*# sourceMappingURL=release.css.map */
