/* =====================================================
RESET
===================================================== */

*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}

/* =====================================================
BODY
===================================================== */

html {
scroll-behavior: smooth;
}

body {
min-height: 100vh;
min-height: 100dvh;

font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Noto Sans Telugu",
    Arial,
    sans-serif;

background: #07111f;
color: #f7fbff;

overflow-x: hidden;

}

/* =====================================================
MAIN WRAPPER
===================================================== */

.wrapper {
width: 100%;
max-width: 1080px;
min-height: 100dvh;

margin: auto;

background: transparent;

}

/* =====================================================
TOP BAR
===================================================== */

.topbar {
position: sticky;
top: 0;
z-index: 20;

display: flex;
align-items: center;
justify-content: space-between;

padding: 14px clamp(16px, 4vw, 46px);

border-bottom: 1px solid rgba(255, 255, 255, 0.09);

background: rgba(7, 17, 31, 0.9);

backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);

}

.top-brand {
display: flex;
align-items: center;
gap: 11px;
}

.top-brand img {
width: 44px;
height: 44px;

object-fit: cover;

border: 2px solid #ffbd59;
border-radius: 12px;

}

.top-brand strong {
display: block;

font-size: 14px;
font-weight: 900;

color: #ffffff;
letter-spacing: 0.4px;

}

.top-brand small {
display: block;

margin-top: 2px;

font-size: 10px;
color: #91a4bd;

}

/* =====================================================
TELEGRAM BUTTON
===================================================== */

.top-telegram {
display: flex;
align-items: center;
justify-content: center;

gap: 8px;

padding: 11px 15px;

border-radius: 10px;

background: #229ed9;

color: #ffffff;

text-decoration: none;

font-size: 12px;
font-weight: 800;

box-shadow:
    0 10px 24px rgba(34, 158, 217, 0.25);

transition:
    transform 0.2s ease,
    filter 0.2s ease;

}

.top-telegram:hover {
transform: translateY(-2px);
filter: brightness(1.08);
}

.top-telegram i {
font-size: 16px;
}

/* =====================================================
HERO
===================================================== */

.hero {
display: grid;

grid-template-columns:
    minmax(0, 1.15fr)
    minmax(270px, 0.85fr);

gap: 34px;

align-items: center;

padding:
    clamp(42px, 8vw, 88px)
    clamp(18px, 5vw, 58px)
    48px;

}

.hero-copy {
text-align: left;
}

/* =====================================================
KICKER
===================================================== */

.kicker {
display: inline-flex;
align-items: center;

gap: 8px;

padding: 7px 11px;

border: 1px solid rgba(255, 189, 89, 0.35);
border-radius: 8px;

color: #ffca78;

background: rgba(255, 189, 89, 0.08);

font-size: 11px;
font-weight: 800;

}

.kicker::before {
content: "";

width: 7px;
height: 7px;

border-radius: 50%;

background: #38d996;

box-shadow:
    0 0 12px #38d996;

}

/* =====================================================
HERO TITLE
===================================================== */

.hero h1 {
margin: 18px 0 14px;

max-width: 650px;

font-size: clamp(37px, 6vw, 68px);

line-height: 1.04;

letter-spacing: -2px;

color: #ffffff;

}

.hero h1 span {
display: block;

color: #ffbd59;

}

/* =====================================================
LEAD
===================================================== */

.lead {
max-width: 610px;

color: #b9c7d9;

font-size: clamp(15px, 2vw, 18px);

line-height: 1.8;

}

/* =====================================================
HERO ACTIONS
===================================================== */

.hero-actions {
display: flex;
align-items: center;

gap: 14px;

margin-top: 25px;

}

.primary-action {
display: inline-flex;

align-items: center;
justify-content: center;

gap: 10px;

min-height: 54px;

padding: 0 22px;

border-radius: 10px;

background:
    linear-gradient(
        135deg,
        #229ed9,
        #1678c8
    );

color: #ffffff;

text-decoration: none;

font-weight: 900;

box-shadow:
    0 15px 34px rgba(34, 158, 217, 0.27);

transition:
    transform 0.2s ease,
    filter 0.2s ease;

}

.primary-action:hover {
transform: translateY(-2px);
filter: brightness(1.08);
}

.primary-action:active {
transform: scale(0.97);
}

.primary-action i {
font-size: 18px;
}

.free-note {
font-size: 11px;
color: #8092aa;
}

/* =====================================================
HERO PANEL
===================================================== */

.hero-panel {
position: relative;

padding: 24px;

border: 1px solid rgba(255, 255, 255, 0.1);

border-radius: 24px;

background:
    linear-gradient(
        145deg,
        #13253c,
        #0b182a
    );

box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.34);

}

.hero-panel::after {
content: "";

position: absolute;

right: -8px;
bottom: -8px;

width: 100%;
height: 100%;

border:
    1px solid
    rgba(255, 189, 89, 0.22);

border-radius: 24px;

z-index: -1;

}

/* =====================================================
LOGO
===================================================== */

.logo-wrap {
width: 108px;
height: 108px;

margin: 0 auto 18px;

padding: 4px;

border-radius: 24px;

background:
    linear-gradient(
        135deg,
        #ffbd59,
        #229ed9
    );

}

.logo-wrap img {
width: 100%;
height: 100%;

object-fit: cover;

border-radius: 20px;

background: #0a1728;

}

/* =====================================================
PANEL TEXT
===================================================== */

.panel-title {
text-align: center;

font-size: 18px;
font-weight: 900;

}

.panel-sub {
margin-top: 6px;

text-align: center;

color: #8fa2b9;

font-size: 12px;

}

/* =====================================================
MINI STATS
===================================================== */

.mini-stats {
display: grid;

grid-template-columns:
    repeat(3, 1fr);

gap: 8px;

margin-top: 21px;

}

.mini-stat {
padding: 12px 5px;

border-radius: 10px;

background: rgba(255, 255, 255, 0.045);

text-align: center;

}

.mini-stat b {
display: block;

color: #ffbd59;

font-size: 15px;

}

.mini-stat span {
font-size: 9px;

color: #91a4bb;

}

/* =====================================================
LEARNING
===================================================== */

.learning {
padding:
18px
clamp(18px, 5vw, 58px)
56px;
}

.section-head {
display: flex;

align-items: flex-end;
justify-content: space-between;

gap: 20px;

margin-bottom: 20px;

}

.section-head h2 {
font-size: clamp(24px, 4vw, 36px);

color: #ffffff;

}

.section-head p {
max-width: 420px;

color: #8295ad;

font-size: 12px;

line-height: 1.7;

}

/* =====================================================
FEATURES
===================================================== */

.feature-grid {
display: grid;

grid-template-columns:
    repeat(2, 1fr);

gap: 14px;

}

.feature {
display: grid;

grid-template-columns: 46px 1fr;

gap: 14px;

padding: 20px;

border:
    1px solid
    rgba(255, 255, 255, 0.09);

border-radius: 15px;

background: #0d1c2f;

transition:
    transform 0.2s ease,
    border-color 0.2s ease;

}

.feature:hover {
transform: translateY(-3px);

border-color:
    rgba(34, 158, 217, 0.35);

}

.feature i {
display: grid;

place-items: center;

width: 46px;
height: 46px;

border-radius: 12px;

background:
    rgba(34, 158, 217, 0.13);

color: #45b9ef;

font-size: 18px;

}

.feature h3 {
font-size: 15px;

color: #f8fbff;

}

.feature p {
margin-top: 5px;

color: #8fa1b8;

font-size: 12px;

line-height: 1.65;

}

/* =====================================================
JOIN STRIP
===================================================== */

.join-strip {
display: grid;

grid-template-columns:
    1fr auto;

gap: 24px;

align-items: center;

margin:
    0
    clamp(18px, 5vw, 58px)
    36px;

padding: 24px 26px;

border-radius: 18px;

background:
    linear-gradient(
        120deg,
        #ffbd59,
        #f0933f
    );

color: #172033;


}

.join-strip h2 {
font-size: 22px;
}

.join-strip p {
margin-top: 5px;


font-size: 12px;

opacity: 0.75;


}

.join-strip .primary-action {
background: #101e31;


box-shadow: none;

white-space: nowrap;


}

/* =====================================================
DISCLAIMER
===================================================== */

.disclaimer {
margin:
0
clamp(18px, 5vw, 58px);

padding: 18px 0;

border-top:
    1px solid
    rgba(255, 255, 255, 0.08);

color: #71839a;

text-align: left;

font-size: 10px;

line-height: 1.7;

}

.disclaimer strong {
color: #94a5ba;
}

/* =====================================================
FOOTER
===================================================== */

.footer-badge {
padding: 0 18px 30px;

margin: 0;

text-align: center;

}

.footer-badge a {
border: 0;

background: none;

color: #8295ad;

font-size: 10px;

text-decoration: none;

}

.footer-badge a:hover {
color: #229ed9;
}

/* =====================================================
TABLET
===================================================== */

@media (max-width: 720px) {

.hero {
    grid-template-columns: 1fr;

    padding-top: 40px;
}


.hero-panel {
    max-width: 440px;
}


.section-head {
    display: block;
}


.section-head p {
    margin-top: 7px;
}


.feature-grid {
    grid-template-columns: 1fr;
}


.join-strip {
    grid-template-columns: 1fr;
}


.join-strip .primary-action {
    width: 100%;
}

}

/* =====================================================
MOBILE
===================================================== */

@media (max-width: 430px) {

.topbar {
    padding: 12px 15px;
}


.top-brand small {
    display: none;
}


.top-telegram span {
    display: none;
}


.top-telegram {
    width: 42px;
    height: 42px;

    padding: 0;

    justify-content: center;
}


.hero {
    padding:
        40px 16px 36px;

    gap: 27px;
}


.hero h1 {
    font-size: 39px;

    letter-spacing: -1.5px;
}


.hero-actions {
    display: block;
}


.hero-actions .primary-action {
    width: 100%;
}


.free-note {
    display: block;

    margin-top: 10px;

    text-align: center;
}


.learning {
    padding-left: 16px;
    padding-right: 16px;
}


.join-strip {
    margin-left: 16px;
    margin-right: 16px;

    padding:
        21px 17px;
}


.feature {
    padding: 17px;
}

}

/* =====================================================
REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

*,
*::before,
*::after {
    scroll-behavior: auto !important;
    transition: none !important;
}

}
