:root{
  --bg:#101114;
  --bg2:#17191f;
  --panel:#1a1d24;
  --panel2:#20242d;
  --text:#ffffff;
  --muted:#b7bfcd;
  --line: rgba(255,255,255,.10);

  --dark:#0b0d11;
  --dark2:#141821;

  --red:#bf081f;
  --red2:#980617;
  --red3:#d10d27;

  --gold:#c8a56a;
  --gold2:#9f7d47;

  --input:#141824;

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 14px;
  --shadow: 0 18px 40px rgba(0,0,0,.30);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html,body{ overflow-x:hidden; }

body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(circle at top, rgba(191,8,31,.10), transparent 35%),
    linear-gradient(180deg, var(--bg2), var(--bg));
  color: var(--text);
  line-height: 1.55;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }

.cx3-container{
  width: min(var(--container), calc(100% - 32px));
  margin-inline:auto;
}

.cx3-section{
  margin-top: 22px;
}

.cx3-panel{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  backdrop-filter: blur(3px);
}

.cx3-section-title{
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 950;
  color:#fff;
}

.cx3-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .14s ease, filter .14s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
  user-select:none;
  line-height:1;
  white-space:nowrap;
  cursor:pointer;
}
.cx3-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.cx3-btn--red{
  background: linear-gradient(180deg, var(--red3), var(--red2));
  color:#fff;
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 10px 24px rgba(191,8,31,.28);
}
.cx3-btn--ghost{
  background: rgba(255,255,255,.04);
  color:#fff;
  border-color: rgba(255,255,255,.10);
}

/* Header */
.cx3-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(11,13,17,.96), rgba(20,24,33,.94));
  color:#fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.cx3-header__inner{
  display:grid;
  grid-template-columns: 1fr auto auto;
  align-items:center;
  gap: 16px;
  min-height: 70px;
}
.cx3-nav{
  display:flex;
  align-items:center;
  gap: 18px;
  overflow-x:auto;
  white-space:nowrap;
  scrollbar-width: thin;
}
.cx3-nav a{
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 800;
}
.cx3-nav a:hover{ color:#fff; }

.cx3-brand{
  justify-self:end;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.cx3-brand__logo{
  height: 34px;
  width:auto;
}
.cx3-header__cta{
  justify-self:end;
}

/* Hero */
.cx3-hero{
  padding: 18px 0 0;
}
.cx3-hero__wrap{
  position:relative;
  overflow:hidden;
  border-radius: 22px;
  min-height: 420px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  background:
    linear-gradient(90deg, rgba(7,10,15,.78) 0%, rgba(7,10,15,.58) 40%, rgba(7,10,15,.12) 72%, rgba(7,10,15,.10) 100%),
    #151922;
}
.cx3-hero__bg{
  position:absolute;
  inset:0;
}
.cx3-hero__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.cx3-hero__content{
  position:relative;
  z-index:1;
  display:grid;
  align-content:center;
  min-height:420px;
  padding: 28px;
  max-width: 520px;
}
.cx3-hero__badge{
  display:inline-flex;
  width: fit-content;
  align-items:center;
  justify-content:center;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red3), var(--red2));
  color:#fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing:.4px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.cx3-hero__kicker{
  color: #d7dbea;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.cx3-hero__title{
  margin: 6px 0 10px;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 1000;
  color:#fff;
}
.cx3-hero__title strong{
  color:#fff;
}
.cx3-hero__text{
  color: var(--muted);
  font-size: 16px;
  max-width: 44ch;
}
.cx3-hero__actions{
  margin-top: 16px;
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
}
.cx3-hero__note{
  margin-top: 10px;
  color: rgba(255,255,255,.66);
  font-size: 12px;
}

/* Main article */
.cx3-main{
  padding: 22px 0 44px;
}
.cx3-h1{
  margin: 0 0 12px;
  font-weight: 950;
  font-size: clamp(24px, 3vw, 38px);
  color:#fff;
}
.cx3-cta{
  display:flex;
  width: fit-content;
  align-items:center;
  justify-content:center;
  padding: 13px 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red3), var(--red2));
  color: #fff;
  font-weight: 950;
  letter-spacing: .3px;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .12s ease, filter .12s ease;
  margin: 0 auto;
  text-align:center;
  box-shadow: 0 10px 24px rgba(191,8,31,.28);
}
.cx3-cta:hover{ transform: translateY(-1px); filter: brightness(1.06); }

/* WYSIWYG */
.cx3-wysiwyg{ color:var(--muted); overflow-x:auto; margin-top: 12px; }
.cx3-wysiwyg p{ margin: .75em 0; }
.cx3-wysiwyg :where(h2,h3,h4){ margin: 1em 0 .45em; color:#fff; }
.cx3-wysiwyg ul, .cx3-wysiwyg ol{ margin: .65em 0 .65em 1.2em; }
.cx3-wysiwyg strong{ color:#fff; }
.cx3-wysiwyg a{ color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.22); }
.cx3-wysiwyg table{
  width:100%;
  border-collapse: collapse;
  margin: 12px 0;
  border-radius: 14px;
  overflow:hidden;
}
.cx3-wysiwyg th, .cx3-wysiwyg td{
  padding: 12px;
  border: 1px solid rgba(255,255,255,.10);
}
.cx3-wysiwyg th{ background: rgba(255,255,255,.05); color:#fff; }

/* Demo slots */
.cx3-slots{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.cx3-slot{
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border-radius: 18px;
  overflow:hidden;
  position:relative;
  transition: transform .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.cx3-slot:hover{
  transform: translateY(-2px);
  border-color: rgba(191,8,31,.70);
  box-shadow: 0 14px 30px rgba(191,8,31,.16);
}
.cx3-slot--featured{
  border-color: rgba(191,8,31,.85);
  box-shadow: 0 14px 30px rgba(191,8,31,.20);
}
.cx3-slot__thumb{
  aspect-ratio: 16 / 10;
  background:#0d0f14;
}
.cx3-slot__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.cx3-slot__body{
  padding: 12px;
}
.cx3-slot__title{
  margin:0 0 10px;
  color:#fff;
  font-size: 17px;
  font-weight: 900;
}
.cx3-slot__meta{
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 12px;
}

/* Reviews */
.cx3-reviews{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.cx3-reviews__list{
  display:grid;
  gap: 14px;
}
.cx3-review{
  border:1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,.025);
}
.cx3-review__name{
  color:#fff;
  font-weight:900;
  margin-bottom: 6px;
}
.cx3-review__text{
  color: var(--muted);
}
.cx3-form{
  display:grid;
  gap: 12px;
}
.cx3-label{
  display:grid;
  gap: 6px;
  color:#fff;
  font-weight: 800;
  font-size: 14px;
}
.cx3-input,
.cx3-textarea{
  width:100%;
  border:1px solid rgba(191,8,31,.95);
  border-radius: 16px;
  background: var(--input);
  color:#fff;
  padding: 13px 14px;
  outline:none;
  transition: border-color .12s ease, box-shadow .12s ease, transform .12s ease;
}
.cx3-input::placeholder,
.cx3-textarea::placeholder{ color: rgba(255,255,255,.38); }
.cx3-input:focus,
.cx3-textarea:focus{
  border-color: var(--red3);
  box-shadow: 0 0 0 4px rgba(191,8,31,.15);
}
.cx3-textarea{
  min-height: 170px;
  resize: vertical;
}

/* Footer */
.cx3-footer{
  margin-top: 24px;
  background: linear-gradient(180deg, #0d1016, #0a0c10);
  color: rgba(255,255,255,.86);
  border-top: 1px solid rgba(255,255,255,.08);
}
.cx3-footer__inner{
  padding: 22px 0 26px;
  display:grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 16px;
  align-items:start;
}
.cx3-footer__logo img{
  max-height: 40px;
  width:auto;
}
.cx3-footer__nav{
  display:grid;
  gap: 8px;
  margin-top: 10px;
}
.cx3-footer__nav a{
  color: rgba(255,255,255,.84);
  font-weight:700;
  font-size:14px;
}
.cx3-footer__nav a:hover{
  color:#fff;
  text-decoration: underline;
}
.cx3-footer__badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  opacity:.96;
}
.cx3-footer__badges img{
  height:24px;
  width:auto;
  object-fit:contain;
}
.cx3-footer__legal{
  color: rgba(255,255,255,.72);
  font-size:13px;
  line-height:1.45;
}
.cx3-footer__copy{
  margin-top:6px;
  color: rgba(255,255,255,.54);
  font-size:12px;
}

/* Utilities */
.cx3-grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}

@media (max-width: 980px){
  .cx3-header__inner{
    grid-template-columns: 1fr auto;
    row-gap: 10px;
    padding: 12px 0;
  }
  .cx3-nav{
    grid-column: 1 / -1;
    order: 3;
    padding-bottom: 8px;
  }
  .cx3-brand{
    justify-self:start;
  }
  .cx3-header__cta{
    justify-self:end;
  }
  .cx3-slots{
    grid-template-columns: 1fr 1fr;
  }
  .cx3-reviews{
    grid-template-columns: 1fr;
  }
  .cx3-footer__inner{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .cx3-container{
    width: min(var(--container), calc(100% - 24px));
  }
  .cx3-hero__wrap{
    min-height: 380px;
  }
  .cx3-hero__content{
    min-height: 380px;
    padding: 20px;
  }
  .cx3-hero__title{
    font-size: clamp(26px, 9vw, 40px);
  }
  .cx3-slots{
    grid-template-columns: 1fr;
  }
  .cx3-panel{
    padding: 16px;
  }
  .cx3-btn,
  .cx3-cta{
    min-height: 42px;
    padding: 11px 16px;
  }
}