:root{
  --bg:#000;
  --fg:#f2f2f2;
  --muted:rgba(255,255,255,.68);
  --line:rgba(255,255,255,.08);
  --accent: #AC0000;
  --max:1120px;
  --pad:16px;
}

*{box-sizing:border-box; user-select: none;}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:var(--bg);
  color:var(--fg);
  overflow-x:hidden;
}

img{
  max-width:100%; 
  height:auto; 
  -webkit-user-drag: none;
  pointer-events: auto;
  display:block
}
a{color:inherit; text-decoration:none}
.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--pad);
}

.kicker{
  letter-spacing:.16em;
  text-transform:uppercase;
}

.h1{
  font-size:clamp(28px, 4.2vw, 52px);
  line-height:1.05;
  letter-spacing:.02em;
  margin:18px 0 10px;
  text-transform:uppercase;
}

.lead{
  color:var(--muted);
  font-size:clamp(14px, 1.7vw, 16px);
  line-height:1.7;
  max-width:720px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 18px;
  border:1px solid rgba(255,255,255,.18);
  background:#fff;
  color:#000;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
  transition:transform .15s ease, opacity .15s ease;
}
.btn:hover{transform:translateY(-1px); opacity:.92}

@media (min-width:768px){
  :root{--pad:24px}
}

.center{text-align:center}
.center .lead{margin-left:auto; margin-right:auto}

.textNormal {
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.4;
}

.titles span, .titlesh1 h1{
  display:block;
  line-height: 1.3;

  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #ff2b55 45%,
      #ffffff 100%
    );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

section {
  padding: clamp(60px, 10vw, 90px) clamp(20px, 4vw, 80px) clamp(60px, 8vw, 90px);
}

.first {
  padding: clamp(90px, 10vw, 90px) clamp(20px, 4vw, 80px) clamp(60px, 8vw, 90px) !important;
}

.title {
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-align: center;
}

.normalText {
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.4;
  text-align: center;
}