:root {
  --rt-bg: #020b12;
  --rt-bg-2: #06131e;
  --rt-top: #080d15;
  --rt-panel: #11141c;
  --rt-panel-dark: #0d0f15;
  --rt-card: rgba(12, 25, 39, .88);
  --rt-card-2: #17191f;
  --rt-field: #1d212c;
  --rt-border: rgba(114, 139, 168, .25);
  --rt-border-2: #3b414e;
  --rt-text: #f5f7fb;
  --rt-muted: #b8c0cd;
  --rt-muted-2: #8e9aad;
  --rt-blue: #316df4;
  --rt-blue-2: #6b78ff;
  --rt-blue-dark: #10234b;
  --rt-green: #078936;
  --rt-danger: #ff5570;
  --rt-focus: #9dbbff;
  --rt-radius: 18px;
  --rt-max: 1110px;
  --rt-sidebar: 575px;
  --rt-header: 75px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Monda", Arial, sans-serif;
  color: var(--rt-text);
  background:
  radial-gradient(circle at 18% 12%, rgba(36, 104, 255, .18), transparent 28%),
  radial-gradient(circle at 80% 18%, rgba(54, 116, 255, .12), transparent 30%),
  linear-gradient(180deg, #02070d 0%, #03101a 44%, #04101a 100%);
  letter-spacing: -.02em;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  outline: none;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  box-shadow: 0 0 0 3px var(--rt-focus);
}
button {
  cursor: pointer;
}
.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;
}
.page-wrap {
  width: min(var(--rt-max), calc(100% - 40px));
  margin: 0 auto;
}
.rt-body-locked {
  background: #1c1d1f;
}

/* =========================================================
   HEADER
========================================================= */
.app-header {
  height: var(--rt-header);
  border-bottom: 1px solid rgba(90, 115, 145, .13);
  background: rgba(2, 8, 14, .78);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.dashboard-header {
  background: #121620;
  border-bottom: 1px solid #20242d;
}
.header-inner {
  height: 100%;
  width: min(1210px, calc(100% - 42px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.dashboard-header .header-inner {
  width: 100%;
  padding: 0 29px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
}
.dashboard-header .brand {
  font-size: 16px;
}
.brand i {
  font-size: 28px;
}
.brand-accent {
  color: #5c86ff;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  color: #f4f5f8;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 21px;
  font-size: 14px;
  white-space: nowrap;
}
.dashboard-header .header-actions {
  gap: 28px;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn {
  min-height: 44px;
  border-radius: 999px;
  padding: 0 25px;
  border: 1px solid rgba(105, 139, 201, .35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  background: rgba(8, 17, 29, .45);
  color: var(--rt-text);
}
.btn-primary {
  background: linear-gradient(135deg, #3777ff, #2454d5);
  border-color: rgba(103, 147, 255, .55);
  box-shadow: 0 14px 35px rgba(45, 103, 241, .25);
}
.btn-outline {
  border-color: rgba(157, 174, 203, .35);
  background: rgba(5, 13, 23, .35);
}
.create-btn {
  min-height: 40px;
  padding: 0 22px;
  border-radius: 15px;
  border: 1px solid #4565b6;
  background: #1b2a51;
  color: var(--rt-text);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
}
.icon-link {
  width: 35px;
  height: 35px;
  border: 0;
  background: transparent;
  color: var(--rt-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 999px;
}
/* =========================================================
   HERO
========================================================= */
.hero {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 62px;
  align-items: center;
  padding: 84px 0 48px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 24px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(20, 66, 128, .25);
  color: #6092ff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.hero-title {
  margin: 22px 0 19px;
  font-size: clamp(48px, 5.5vw, 68px);
  line-height: .98;
  letter-spacing: -.075em;
  font-weight: 700;
}
.hero-title span {
  color: #587dff;
}
.hero-copy {
  max-width: 470px;
  margin: 0 0 34px;
  color: #c3c9d4;
  font-size: 18px;
  line-height: 1.55;
}
/* =========================================================
   HERO ACTIONS
========================================================= */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 520px;
}
.point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 12px;
  color: #d8ddea;
}
.point i {
  color: #4d7cff;
  font-size: 21px;
  margin-top: 2px;
}
.point strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}
.point span span {
  display: block;
  color: #aeb7c6;
  line-height: 1.35;
}

/* =========================================================
    HERO MEDIA
========================================================= */
.hero-media {
  position: relative;
  overflow: hidden;
  max-height: 580px;
  width: 420px;
}
.hero-media video,
.hero-media img {
  width: 420px;
  height: 100%;
  max-height: 580px;
  object-fit: cover;
  display: block;
}
.media-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  min-height: 27px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .52);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #dce5f5;
}
.play-btn {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 0;
  background: rgba(10, 14, 20, .78);
  color: #3875ff;
  font-size: 31px;
  display: grid;
  place-items: center;
}
.media-tags {
  position: absolute;
  left: 20px;
  bottom: 19px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.media-tag {
  min-height: 32px;
  border-radius: 999px;
  background: rgba(5, 11, 18, .65);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 700;
}
/* =========================================================
    SECTIONS
========================================================= */
.section {
  padding: 32px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 18px;
}
.section-title {
  margin: 0 0 7px;
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -.04em;
}
.section-copy {
  margin: 0;
  color: var(--rt-muted);
  font-size: 14px;
}
/* =========================================================
    FEATURE GRID
========================================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  border: 1px solid var(--rt-border);
  background:
  radial-gradient(circle at 24% 12%, rgba(48, 105, 225, .16), transparent 38%),
  var(--rt-card);
  border-radius: 12px;
  padding: 24px;
  min-height: 238px;
}
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(39, 89, 197, .27);
  color: #4e82ff;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 25px;
}
.card h3 {
  margin: 0 0 12px;
  font-size: 19px;
  letter-spacing: -.04em;
}
.card p {
  margin: 0;
  color: #c4ccd8;
  font-size: 14px;
  line-height: 1.55;
}
/* =========================================================
    STEPS
========================================================= */
.steps {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.step-card {
  min-height: 190px;
  padding: 31px;
}
.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}
.step-num {
  color: #4f7eff;
  font-size: 43px;
  font-weight: 700;
  line-height: 1;
}
.step-icon {
  width: 54px;
  height: 54px;
  margin: 0;
  font-size: 23px;
}
.arrow {
  color: #b9c4d4;
  font-size: 40px;
  text-align: center;
}
/* =========================================================
    CREATOR SECTION
========================================================= */
.creator-section {
  display: grid;
  grid-template-columns: 330px 1fr 46px;
  gap: 30px;
  align-items: center;
  padding-top: 22px;
}
.creator-copy h2 {
  margin: 17px 0 12px;
  font-size: 28px;
  line-height: 1.16;
}
.creator-copy p {
  margin: 0 0 20px;
  color: #c4ccd8;
  font-size: 15px;
  line-height: 1.55;
}
.check-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
  color: #c7cfdb;
  font-size: 13px;
}
.check-list i {
  color: #4c7eff;
  margin-right: 10px;
}
.example-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.example-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--rt-border);
  height: 308px;
  background: #101822;
}
.example-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.example-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .68);
  font-size: 11px;
  font-weight: 700;
}