:root{
--bg:#150d08;
--text:#1f1b15;
--soft:#8a8a8a;

--accent:#fa0d08;
--accent2:#00e5ff;

--card:#141414;

--maxw:1100px;
}

/* =====================
BASE
===================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:var(--bg);
color:var(--text);
overflow-x:hidden;
font-family: 'Inter', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
line-height: 1.3;
overflow-x: hidden;
transition: background-color 0.3s cubic-bezier(0.2, 0.9, 0.4, 1);
}

.container{
max-width:var(--maxw);
margin:auto;
padding:0 24px;
}

html, body{
padding:0;
margin:0;
height: 100%;
}
.main{
height:100%;
min-height:500px;
min-width:1000px;
position:relative
}
.prodwig-layout,
.prodwig-screen,
.prodwig-screens{
width: 100%;
height: 100%;
overflow: hidden;
}
.prodwig-layout{
position: relative;
font-size: 14px;
background: #000
}
.prodwig-container{
position: relative;
z-index: 2;
margin: 0 auto;
max-width: 1200px;
height: 100%;
min-width: 960px
}

.prodwig-logo,
.prodwig-screen,
.prodwig-screen__aside,
.prodwig-screens{
	position: absolute
}
.prodwig-logo{
color:#fff;
}
.prodwig-screens{
	top: 0;
	left: 0;
	z-index: 1
}

.prodwig-screen{
display: none;
}

.prodwig-active-screen{
display: block
}
.prodwig-screen__aside{
z-index: 3;
overflow: hidden;
height: 100%;
top: 0
}
.prodwig-screen_main.r-side{
background-color:hsl(38, 60%, 92%);
background-image: 
repeating-linear-gradient(0deg, rgba(100, 70, 40, 0.1) 0px, rgba(100, 70, 40, 0.1) 1px, transparent 1px, transparent 52px),
repeating-linear-gradient(90deg, rgba(100, 70, 40, 0.1) 0px, rgba(100, 70, 40, 0.1) 1px, transparent 1px, transparent 52px);
}
.prodwig-screen_scr2{
background-color:#3b0f19;
}
.prodwig-screen_scr3{
background-color:#0a1e3a;

}
.prodwig-screen_scr4{
background-color:#0f2f24;
}
.prodwig-screen_scr5{
background-color:#24163a;
}
.prodwig-screen_scr6{
background-color:#08090c;
}
.reel{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%
}

.reel_main{
	width: 75%
}

.reel_aside{
	width: 25%
}

.reel_main[data=r-side]{
	left: 25%
}

.reel_aside[data=r-side]{
	left: 75%
}

.reel__separator[data=r-side]{
	left: 25%
}

.reel__screen{
	position: absolute;
	width: 100%;
	height: 100%;
	display: none
}

.reel__active-screen{
	display: block
}

.reel__screen-content{
	position: relative;
	padding: 20px;
	height: 100%;
	box-sizing: border-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: justify;
	justify-content: space-between
}
.reel__screen-content_aside{
padding: 120px 20px;
}

.reel_aside .reel__screen-content_main,
.reel_main .reel__screen-content_aside{
	display: none
}

.reel .reel__screen-content_visible{
	display: block;
	display: -ms-flexbox;
	display: flex
}

.reel_main[data=r-side] .reel__screen-content_aside{
	left: -100%
}

.reel_aside[data=r-side] .reel__screen-content_main{
	left: 100%
}


/* =====================
   КОНТЕЙНЕРЫ СТРЕЛОК
   ===================== */
.scr-arrow-container {
    position: absolute;
    width: 268%;
    left: 0;
}

.scr-down-container {
    bottom: 0;
}

.scr-top-container {
    top: 0;
}

.reel_aside .scr-arrow-container {
    display: none;
}

/* =====================
   СТРЕЛКИ (Unicode)
   ===================== */
.scr-arrow {
    position: relative;
    left: 50%;
    margin-left: -30px;
    width: 32px;
    text-align: center;
    height: 17px;
    cursor: pointer;
    transition: opacity 0.2s linear;
    opacity: 1;
    line-height: 1;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scr-arrow:hover {
    opacity: 0.8;
}

/* Стрелка вверх */
.scr-top {
    top: 40px;
}

/* Стрелка вниз */
.scr-down {
    bottom: 40px;
}

.scr-top::before {
    content: '▲';
    display: inline-block;
    transform: scale(1.6);
}

.scr-down::before {
    content: '▼';
    display: inline-block;
    transform: scale(1.6);
}
/* Убираем псевдоэлементы, если они были */
.scr-arrow::after {
    display: none;
}

/* =====================
   ТЕМЫ СТРЕЛОК
   ===================== */

/* Тёмная тема (по умолчанию) */
.scr-arrow {
    color: #f0f0f0;
}

/* Светлая тема */
.reel__screen.theme-light .scr-arrow {
    color: #1a1a2e;
}

/* Тёмная тема для явного указания */
.reel__screen.theme-dark .scr-arrow {
    color: #f0f0f0;
}

.scr-arrow-hint{
position: absolute;
text-align: center;
width: 200px;
height: 10px;
font-weight:600;
text-transform:uppercase;
left: -85px;
top:-50px;
}

.reel__screen.theme-light .scr-arrow-hint,
.reel__screen.theme-light .scr-arrow .scr-arrow-hint,
.reel__screen.theme-light .scr-arrow-container .scr-arrow-hint {
    color: #1a1a2e;
}

.reel__screen.theme-dark .scr-arrow-hint,
.reel__screen.theme-dark .scr-arrow .scr-arrow-hint,
.reel__screen.theme-dark .scr-arrow-container .scr-arrow-hint {
    color: #f0f0f0;
}

.scr-arrow-hint-top{
	top: 0;
	padding: 30px 0 0
}

.scr-arrow-hint-down{
	bottom: 0;
	padding: 10px 0 30px
}



/*media*/

@media (min-width:1900px),(min-height:1200px){
	.prodwig-screen{
		background-size: cover
	}
}
@media screen and (min-height:1px) and (max-height:699px){
	.prodwig-logo{
		top: 20px
	}
}

@media screen and (min-height:1px) and (max-height:699px){
	.reel__screen-content{
		padding-top: 220px
	}
}

@media screen and (min-width:1201px) and (max-width:2930px){
	.reel__screen-content{
		margin: 0
	}
}

@media screen and (max-height:770px){
	.scr-top{
		top: 20px
	}
	.scr-arrow-bottom{
		bottom: 20px
	}
}

@media screen and (max-height:720px){
	.scr-arrow{
		display: none
	}
}

/* =====================
CANVAS NETWORK
===================== */

canvas{
position:fixed;
top:0;
left:0;
z-index:0;
}

/* =====================
HERO
===================== */

.hero{
min-height:85vh;
display:flex;
align-items:center;
position:relative;
z-index:1;
}

.hero-inner{
max-width:760px;
}

/* =====================
TYPOGRAPHY
===================== */

.logo{
font-size:13px;
letter-spacing:4px;
color:var(--soft);
margin-bottom:30px;
}

h1{
font-size:72px;
font-weight:800;
margin-bottom:20px;
color:#fa0d08;
}

.lead{
font-size:28px;
margin-bottom:30px;
}

.rotate{
color:var(--accent);
font-weight:700;
}

.proof{
margin:22px 0;
color:var(--soft);
}

.proof strong{
color:white;
}
.hero-inner h2{
font-size:72px;
font-weight:800;
margin-bottom:20px;
}

.fact{
margin-top:35px;
border-left:3px solid var(--accent);
padding:18px 22px;
background:rgba(255,255,255,0.03);
color:var(--soft);
font-size:15px;
}

/* =====================
BUTTON
===================== */
/*
.btn{
display:inline-block;
margin-top:30px;
padding:14px 30px;
background:var(--accent);
color:white;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:.2s;
}

.btn:hover{
transform:translateY(-3px);
}

*/

.btn {
display:inline-block;
margin:16px 0;
background:var(--accent);
color:#fff;
padding:18px 36px;
font-size:18px;
border:none;
border-radius:10px;
cursor:pointer;
transition:0.3s;
box-shadow: 0 6px 15px rgba(250,13,8,0.4);
}
.btn:hover{
background:#e00d08;
box-shadow: 0 8px 20px rgba(250,13,8,0.66);
}


/* =====================
SCROLL HINT
===================== */

.scroll-hint{
margin-top:60px;
color:var(--soft);
font-size:13px;
opacity:0.7;
}

/* =====================
PRICING
===================== */

.pricing{
position:relative;
z-index:2;
margin-top:40px;
padding:80px 0;
}

.pricing h2{
font-size:38px;
margin-bottom:40px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:24px;
}

.card{
background:var(--card);
border:1px solid #1e1e1e;
padding:28px;
border-radius:12px;
transition:.2s;
}

.card:hover{
border-color:var(--accent);
transform:translateY(-5px);
}

.price{
font-size:28px;
font-weight:700;
margin:10px 0 20px;
color:var(--accent);
}

.card ul{
list-style:none;
color:var(--soft);
font-size:14px;
}

.card li{
margin-bottom:6px;
}
.phone-link {
font-family: 'Courier New', Courier, monospace;
font-size: 56px;
font-weight: bold;
text-decoration: none;
color:var(--text);
padding: 10px 20px;
border-radius: 8px;
display: inline-block;
transition: all 0.2s ease;
letter-spacing: 2px;
border: 2px solid #4a4a5e;
}
.phone-link:hover {
border-color:var(--accent2);
box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
}
.hidden-digits {
display: inline-block;
min-width: 4ch;
text-align: center;
transition: all 0.2s ease-in-out;
}
.hidden-digits::after {
content: "DWIG";
color: var(--accent2);
}
.phone-link:hover .hidden-digits::after {
content: "3944";
color:var(--text);
font-style: normal;
}
