/* =========================================================
DEMONIC WOLF HOSTING
Premium Purple Theme
Main Stylesheet
========================================================= */

/* =========================================================
COLOR SYSTEM
========================================================= */

:root {
--purple: #7c3aed;
--purple-light: #a78bfa;
--purple-bright: #8b5cf6;
--purple-dark: #5b21b6;


--background: #030014;
--background-secondary: #08051a;
--surface: rgba(255, 255, 255, 0.035);
--surface-strong: rgba(255, 255, 255, 0.055);

--text: #ffffff;
--text-secondary: #c4b5fd;
--text-muted: #94a3b8;

--border: rgba(167, 139, 250, 0.14);
--border-hover: rgba(167, 139, 250, 0.55);

--shadow-purple: rgba(124, 58, 237, 0.35);

--radius-small: 10px;
--radius-medium: 14px;
--radius-large: 20px;


}

/* =========================================================
RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

html {
scroll-behavior: smooth;
}

body {
min-height: 100vh;


font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

color: var(--text);

background:
    radial-gradient(
        circle at 15% 10%,
        rgba(124, 58, 237, 0.25),
        transparent 32%
    ),
    radial-gradient(
        circle at 85% 5%,
        rgba(167, 139, 250, 0.16),
        transparent 30%
    ),
    radial-gradient(
        circle at 50% 70%,
        rgba(91, 33, 182, 0.10),
        transparent 35%
    ),
    var(--background);

overflow-x: hidden;


}

/* =========================================================
GLOBAL ELEMENTS
========================================================= */

a {
color: inherit;
}

button,
a {
-webkit-tap-highlight-color: transparent;
}

::selection {
background: rgba(124, 58, 237, 0.5);
color: white;
}

/* =========================================================
PREMIUM BACKGROUND EFFECT
========================================================= */

body::before {
content: "";

position: fixed;

width: 500px;
height: 500px;

top: 10%;
left: -250px;

background: rgba(124, 58, 237, 0.12);

filter: blur(120px);

pointer-events: none;

z-index: -1;

}

body::after {
content: "";

position: fixed;

width: 500px;
height: 500px;

right: -250px;
top: 45%;

background: rgba(139, 92, 246, 0.10);

filter: blur(120px);

pointer-events: none;

z-index: -1;

}

/* =========================================================
NAVBAR
========================================================= */

.navbar {
position: sticky;


top: 0;

width: 100%;

background: rgba(3, 0, 20, 0.72);

backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);

border-bottom: 1px solid rgba(167, 139, 250, 0.10);

z-index: 999;


}

.nav-container {
max-width: 1250px;


margin: 0 auto;

min-height: 76px;

padding: 14px 24px;

display: flex;

align-items: center;

justify-content: space-between;


}

/* LOGO */

.logo {
width: 48px;
height: 48px;


object-fit: contain;

transition: 0.25s ease;

filter:
    drop-shadow(0 0 10px rgba(124, 58, 237, 0.45));


}

.logo:hover {
transform: scale(1.05);


filter:
    drop-shadow(0 0 18px rgba(167, 139, 250, 0.65));


}

/* NAVIGATION */

.nav-links {
list-style: none;


display: flex;

align-items: center;

gap: 30px;


}

.nav-links a {
position: relative;


text-decoration: none;

color: #cbd5e1;

font-size: 14px;

font-weight: 600;

transition:
    color 0.25s ease,
    transform 0.25s ease;


}

.nav-links a:hover {
color: white;
}

/* NAV UNDERLINE */

.nav-links a:not(.portal-btn)::after {
content: "";


position: absolute;

left: 50%;
bottom: -8px;

width: 0;
height: 2px;

background: linear-gradient(
    90deg,
    var(--purple),
    var(--purple-light)
);

border-radius: 10px;

transform: translateX(-50%);

transition: width 0.25s ease;


}

.nav-links a:not(.portal-btn):hover::after {
width: 70%;
}

/* PORTAL BUTTON */

.portal-btn {
display: inline-flex;


align-items: center;
justify-content: center;

padding: 11px 19px;

border-radius: var(--radius-small);

background:
    linear-gradient(
        135deg,
        var(--purple),
        var(--purple-bright)
    );

color: white !important;

box-shadow:
    0 8px 25px rgba(124, 58, 237, 0.35);

transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;


}

.portal-btn:hover {
transform: translateY(-2px);


box-shadow:
    0 12px 35px rgba(124, 58, 237, 0.55);


}

/* =========================================================
HERO
========================================================= */

.hero {
position: relative;


max-width: 1100px;

margin: 0 auto;

padding: 155px 20px 125px;

text-align: center;


}

/* HERO GLOW */

.hero::before {
content: "";


position: absolute;

width: 500px;
height: 300px;

top: 70px;
left: 50%;

transform: translateX(-50%);

background:
    radial-gradient(
        ellipse,
        rgba(124, 58, 237, 0.22),
        transparent 70%
    );

filter: blur(30px);

pointer-events: none;

z-index: -1;


}

/* HERO TITLE */

.hero h1 {
position: relative;


max-width: 950px;

margin: 0 auto;

font-size: clamp(42px, 6vw, 68px);

line-height: 1.05;

font-weight: 800;

letter-spacing: -2.5px;

background:
    linear-gradient(
        135deg,
        #ffffff 15%,
        #ddd6fe 50%,
        #a78bfa 100%
    );

-webkit-background-clip: text;
background-clip: text;

color: transparent;


}

/* HERO DESCRIPTION */

.hero p {
max-width: 760px;


margin: 28px auto 0;

color: var(--text-muted);

font-size: 19px;

line-height: 1.8;


}

/* =========================================================
HERO BUTTONS
========================================================= */

.hero-buttons {
display: flex;


justify-content: center;

align-items: center;

gap: 16px;

margin-top: 42px;

flex-wrap: wrap;


}

/* PRIMARY BUTTON */

.primary-btn {
display: inline-flex;


align-items: center;

justify-content: center;

padding: 15px 27px;

border-radius: 12px;

background:
    linear-gradient(
        135deg,
        var(--purple),
        var(--purple-bright),
        var(--purple-light)
    );

color: white;

text-decoration: none;

font-weight: 700;

border: 1px solid rgba(255, 255, 255, 0.10);

box-shadow:
    0 12px 40px rgba(124, 58, 237, 0.42);

transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;


}

.primary-btn:hover {
transform: translateY(-4px);


box-shadow:
    0 18px 55px rgba(124, 58, 237, 0.62);


}

/* SECONDARY BUTTON */

.secondary-btn {
display: inline-flex;


align-items: center;

justify-content: center;

padding: 15px 27px;

border-radius: 12px;

border: 1px solid rgba(167, 139, 250, 0.24);

background: rgba(255, 255, 255, 0.025);

color: white;

text-decoration: none;

font-weight: 600;

backdrop-filter: blur(10px);

transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;


}

.secondary-btn:hover {
background: rgba(124, 58, 237, 0.12);


border-color: rgba(167, 139, 250, 0.55);

transform: translateY(-3px);


}

/* =========================================================
SERVICE SECTION
========================================================= */

.services {
max-width: 1250px;


margin: 0 auto;

padding: 75px 20px 100px;

display: grid;

grid-template-columns:
    repeat(
        auto-fit,
        minmax(280px, 1fr)
    );

gap: 28px;


}

/* =========================================================
GLASS CARDS
========================================================= */

.card {
position: relative;


padding: 38px;

border-radius: var(--radius-large);

background:
    linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.055),
        rgba(255, 255, 255, 0.018)
    );

border: 1px solid var(--border);

backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);

overflow: hidden;

transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;


}

/* CARD PURPLE LIGHT */

.card::before {
content: "";


position: absolute;

width: 180px;
height: 180px;

top: -100px;
right: -80px;

background: rgba(124, 58, 237, 0.15);

filter: blur(50px);

pointer-events: none;


}

.card:hover {
transform: translateY(-10px);


border-color: var(--border-hover);

box-shadow:
    0 25px 70px rgba(76, 29, 149, 0.28);


}

/* CARD TITLE */

.card h2 {
position: relative;


font-size: 25px;

line-height: 1.3;

margin-bottom: 15px;


}

/* CARD DESCRIPTION */

.card p {
color: var(--text-muted);


font-size: 15px;

line-height: 1.7;

margin-bottom: 22px;


}

/* CARD PRICE */

.card .price {
display: block;


margin-bottom: 22px;

color: white;

font-size: 27px;

font-weight: 800;


}

/* CARD LINK */

.card a {
text-decoration: none;


color: var(--purple-light);

font-weight: 700;

transition: color 0.2s ease;


}

.card a:hover {
color: white;
}

/* =========================================================
PRICING HEADER
========================================================= */

.pricing-header {
position: relative;


max-width: 900px;

margin: 0 auto;

padding: 120px 20px 40px;

text-align: center;


}

/* HEADER GLOW */

.pricing-header::before {
content: "";


position: absolute;

width: 420px;
height: 180px;

top: 70px;
left: 50%;

transform: translateX(-50%);

background:
    radial-gradient(
        ellipse,
        rgba(124, 58, 237, 0.18),
        transparent 70%
    );

filter: blur(25px);

z-index: -1;


}

/* PRICING TITLE */

.pricing-header h1 {
font-size: clamp(34px, 5vw, 50px);


line-height: 1.1;

font-weight: 800;

letter-spacing: -1.5px;

background:
    linear-gradient(
        135deg,
        #ffffff,
        #ddd6fe,
        #a78bfa
    );

-webkit-background-clip: text;
background-clip: text;

color: transparent;


}

/* PRICING DESCRIPTION */

.pricing-header p {
margin-top: 15px;


color: var(--text-muted);

font-size: 16px;

line-height: 1.7;


}

/* =========================================================
PRICING GRID
========================================================= */

.pricing-grid {
max-width: 1250px;


margin: 35px auto 100px;

padding: 20px;

display: grid;

grid-template-columns:
    repeat(
        auto-fit,
        minmax(270px, 1fr)
    );

gap: 28px;

align-items: stretch;


}

/* =========================================================
PRICING CARD
========================================================= */

.price-card {
position: relative;


display: flex;

flex-direction: column;

padding: 36px 32px;

border-radius: var(--radius-large);

background:
    linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.018)
    );

border: 1px solid rgba(167, 139, 250, 0.15);

backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);

overflow: hidden;

transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;


}

/* PRICING CARD GLOW */

.price-card::before {
content: "";


position: absolute;

width: 200px;
height: 200px;

top: -120px;
right: -80px;

background:
    radial-gradient(
        circle,
        rgba(124, 58, 237, 0.18),
        transparent 70%
    );

filter: blur(25px);

pointer-events: none;


}

.price-card:hover {
transform: translateY(-10px);


border-color: rgba(167, 139, 250, 0.55);

box-shadow:
    0 25px 80px rgba(91, 33, 182, 0.30);


}

/* =========================================================
PRICING TITLE
========================================================= */

.price-title {
font-size: 22px;


font-weight: 700;

color: white;

line-height: 1.3;


}

/* =========================================================
PRICING PRICE
========================================================= */

.price-card .price {
margin: 17px 0 20px;


font-size: 40px;

line-height: 1;

font-weight: 800;

color: white;


}

.price-card .price::first-letter {
color: var(--purple-light);
}

/* =========================================================
SPECIFICATIONS
========================================================= */

.spec-list {
flex: 1;


margin: 5px 0 25px;

color: #cbd5e1;

font-size: 14px;

line-height: 2;


}

/* =========================================================
PAYPAL CONTAINER
========================================================= */

[id^="paypal-button-container"] {
margin-top: auto;


width: 100%;


}

/* =========================================================
MOST POPULAR
========================================================= */

.popular {
position: absolute;


top: 18px;
right: 18px;

padding: 6px 12px;

border-radius: 999px;

background:
    linear-gradient(
        135deg,
        var(--purple),
        var(--purple-light)
    );

color: white;

font-size: 10px;

font-weight: 800;

letter-spacing: 0.5px;

box-shadow:
    0 6px 20px rgba(124, 58, 237, 0.35);


}

/* =========================================================
BEST VALUE
========================================================= */

.best-value {
position: absolute;


top: -1px;
left: 50%;

transform: translateX(-50%);

padding: 7px 18px;

border-radius:
    0 0 12px 12px;

background:
    linear-gradient(
        135deg,
        var(--purple),
        var(--purple-light)
    );

color: white;

font-size: 10px;

font-weight: 800;

letter-spacing: 0.6px;

box-shadow:
    0 8px 25px rgba(124, 58, 237, 0.35);


}

/* =========================================================
FEATURED PLAN
========================================================= */

.featured-plan {
border-color: rgba(167, 139, 250, 0.55);


background:
    linear-gradient(
        145deg,
        rgba(124, 58, 237, 0.13),
        rgba(255, 255, 255, 0.025)
    );

box-shadow:
    0 20px 70px rgba(124, 58, 237, 0.18);

transform: translateY(-6px);


}

.featured-plan:hover {
transform: translateY(-14px);


border-color: rgba(196, 181, 253, 0.8);

box-shadow:
    0 30px 90px rgba(124, 58, 237, 0.35);


}

/* =========================================================
BUY BUTTON
========================================================= */

.buy-btn {
display: flex;


align-items: center;

justify-content: center;

width: 100%;

padding: 14px 20px;

margin-top: 20px;

border-radius: 11px;

background:
    linear-gradient(
        135deg,
        var(--purple),
        var(--purple-bright)
    );

color: white;

text-decoration: none;

font-weight: 700;

box-shadow:
    0 10px 30px rgba(124, 58, 237, 0.35);

transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;


}

.buy-btn:hover {
transform: translateY(-3px);


box-shadow:
    0 15px 40px rgba(124, 58, 237, 0.55);


}

/* =========================================================
FOOTER
========================================================= */

footer {
margin-top: 80px;


padding: 40px 20px;

text-align: center;

color: #64748b;

font-size: 13px;

background:
    linear-gradient(
        to bottom,
        rgba(3, 0, 20, 0.2),
        rgba(3, 0, 20, 0.8)
    );

border-top:
    1px solid rgba(167, 139, 250, 0.10);


}

/* =========================================================
MOBILE NAVIGATION
========================================================= */

@media (max-width: 768px) {


.nav-container {
    min-height: 68px;

    padding: 12px 18px;
}

.logo {
    width: 42px;
    height: 42px;
}

.nav-links {
    display: none;
}


}

/* =========================================================
MOBILE HERO
========================================================= */

@media (max-width: 768px) {


.hero {
    padding: 110px 20px 80px;
}

.hero h1 {
    font-size: 42px;

    letter-spacing: -1.5px;
}

.hero p {
    font-size: 17px;

    line-height: 1.7;
}

.hero-buttons {
    margin-top: 32px;

    flex-direction: column;
}

.primary-btn,
.secondary-btn {
    width: 100%;

    max-width: 320px;
}


}

/* =========================================================
MOBILE SERVICES
========================================================= */

@media (max-width: 768px) {


.services {
    padding:
        45px
        18px
        70px;

    grid-template-columns: 1fr;

    gap: 20px;
}

.card {
    padding: 30px;
}


}

/* =========================================================
MOBILE PRICING
========================================================= */

@media (max-width: 768px) {


.pricing-header {
    padding:
        85px
        18px
        25px;
}

.pricing-header h1 {
    font-size: 36px;
}

.pricing-header p {
    font-size: 15px;
}

.pricing-grid {
    padding: 18px;

    margin-top: 20px;

    grid-template-columns: 1fr;

    gap: 20px;
}

.price-card {
    padding: 32px 26px;
}

.featured-plan {
    transform: none;
}

.featured-plan:hover {
    transform: translateY(-10px);
}
}

/* =========================================================
SMALL PHONES
========================================================= */

@media (max-width: 420px) {


.hero h1 {
    font-size: 36px;
}

.hero p {
    font-size: 16px;
}

.pricing-header h1 {
    font-size: 31px;
}

.price-card .price {
    font-size: 36px;
}


}

/* =========================================================
REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {


*,
*::before,
*::after {
    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;

    animation-duration: 0.01ms !important;
}


}
