/* =========================
TAP FADE STYLES
========================= */

*{ box-sizing: border-box; }

body { margin: 0;
	font-family: 'Inter', Arial, Helvetica, sans-serif;
	background:
		radial-gradient(circle at top, rgba(45, 140, 255, 0.14), transparent 35%),
		radial-gradient(circle at bottom, rgba(45, 140, 255, 0.08), transparent 40%),
		#050505;
	color: #ffffff; 
}

.container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.logo {
    display: block;
    width: 140px;
    height: 140px;
    margin: 0 auto 12px auto;
    border-radius: 50%;
    object-fit: cover;

    box-shadow:
    0 0 15px rgba(45,140,255,.45),
    0 0 35px rgba(45,140,255,.35),
    0 0 60px rgba(45,140,255,.20);
}

.profile-photo{
    width:100%;
    max-width:450px;
    border-radius:20px;
    height:380px;
    object-fit:cover;
    object-position:center 18%;
    margin:20px auto;
    display:block;

    border:2px solid rgba(45,140,255,.5);

    box-shadow:
    0 0 20px rgba(45,140,255,.35),
    0 0 40px rgba(45,140,255,.15);
}

.badge { 
	display: inline-block;
	padding: 6px 14px;
	border: 1px solid rgba(45, 140, 255, 0.5);
	border-radius: 999px;
	color: #2D8CFF;
	background: rgba(45, 140, 255, 0.08);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.5px;
	margin-bottom: 10px;
} 

h1 { 
	font-size: 34px;
	margin: 0 0 10px;
	font-weight: 900;
	letter-spacing: -0.5px
} 

p { 
	color: #b5b5b5;
	font-size: 15px;
	margin: 0 0 28px;
	line-height: 1.5;
} 

.book-btn {
	display: block;
	width: 100%;
	background: linear-gradient(
	180deg,
	#2D8CFF 0%,
	#006DFF 100%
	);
	color: #ffffff;
	padding: 18px;
	font-size: 17px;
	font-weight: 900;
	letter-spacing: 1px;
	text-decoration: none;
	border-radius: 14px;
	margin-bottom: 22px;
	box-shadow:
	0 0 15px rgba(45,140,255,.45),
	0 0 35px rgba(45,140,255,.25);
	transition: all 0.18s ease;
}

.book-btn:hover {
	transform: translateY(-2px) scale(1.01);
	box-shadow: 0 22px 50px rgba(45, 140, 255, 0.6);
}

.secondary-links { 
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px; margin-bottom: 30px;
} 

.secondary-links a { 
	color: #ffffff;
	text-decoration: none;
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.04);
	padding: 12px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 700;
	transition: all 0.15s ease;
} 

.secondary-links a:hover {
	background: rgba(255,255,255,0.08);
} 

.gallery { 
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
} 

.gallery img { width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 10px 25px rgba(0,0,0,0.35);
} 

.footer { 
	margin-top: 30px;
	font-size: 12px;
	color: #777;
	letter-spacing: 0.5px;
} 

@media (max-width: 600px) {
    body {
        padding: 0;
        align-items: flex-start;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 28px 16px 40px;
    }

    .logo {
        width: 115px;
        height: 115px;
        margin-bottom: 16px;
    }

    .badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    h1 {
        font-size: 28px;
        line-height: 1.1;
    }

    p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .book-btn {
        width: 100%;
        padding: 18px;
        font-size: 16px;
    }

    .secondary-links {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery img {
        height: 150px;
    }
}
	.site-wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 70px;
}

.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    max-width: 850px;
    font-size: clamp(44px, 8vw, 92px);
    line-height: 0.95;
    margin: 18px auto;
}

.hero p {
    max-width: 720px;
    font-size: 18px;
}

.hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 100%;
    max-width: 520px;
    margin-top: 10px;
}

.outline-btn {
    display: block;
    width: 100%;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(45, 140, 255, 0.45);
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 1px;
    background: rgba(255,255,255,0.04);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.section-card,
.flow-section,
.metrics-section,
.comparison,
.final-cta {
    margin: 28px auto;
    padding: 34px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.035);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    text-align: center;
}

.section-card h2,
.flow-section h2,
.metrics-section h2,
.comparison h2,
.final-cta h2 {
    font-size: clamp(28px, 4vw, 48px);
    margin: 0 0 12px;
}

.flow-grid,
.metric-grid,
.compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.metric-grid {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.metric-card,
.compare-card {
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.09);
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
}

.metric-card span {
    display: block;
    color: #9fb8d6;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.metric-card strong {
    display: block;
    font-size: 44px;
    color: #2D8CFF;
    text-shadow: 0 0 24px rgba(45,140,255,0.6);
}

.glow-card {
    border-color: rgba(45,140,255,0.25);
    box-shadow: 0 0 70px rgba(45,140,255,0.20);
}

.compare-grid {
    grid-template-columns: 1fr 1fr;
}

.compare-card.bright {
    border-color: rgba(45,140,255,0.35);
    box-shadow: 0 0 50px rgba(45,140,255,0.18);
}

.compare-card.dim {
    opacity: 0.75;
}

.final-cta {
    background:
        radial-gradient(circle at top, rgba(45,140,255,0.20), transparent 45%),
        rgba(255,255,255,0.04);
}

.final-cta .book-btn,
.final-cta .outline-btn {
    max-width: 420px;
    margin: 14px auto;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .site-wrap {
        padding: 24px 16px 50px;
    }

    .hero {
        min-height: auto;
        padding: 30px 0 22px;
    }

    .hero-actions,
    .flow-grid,
    .metric-grid,
    .compare-grid {
        grid-template-columns: 1fr;
    }

    .section-card,
    .flow-section,
    .metrics-section,
    .comparison,
    .final-cta {
        padding: 24px;
    }

    .metric-card strong {
        font-size: 36px;
    }
}

.image-feature {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: center;
    margin: 40px auto;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.035);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.image-feature.reverse {
    grid-template-columns: 0.85fr 1.15fr;
}

.image-feature.reverse .image-panel {
    order: 2;
}

.image-feature.reverse .feature-copy {
    order: 1;
}

.image-panel {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 20px 55px rgba(0,0,0,0.45);
}

.image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-copy {
    text-align: left;
}

.feature-copy h2 {
    font-size: clamp(32px, 4vw, 54px);
    line-height: 0.98;
    margin: 12px 0;
}

.feature-copy p {
    font-size: 20px;
    margin-bottom: 22px;
}

.proof-pill {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(45,140,255,0.45);
    color: #2D8CFF;
    background: rgba(45,140,255,0.08);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}

@media (max-width: 800px) {
    .image-feature,
    .image-feature.reverse {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .image-feature.reverse .image-panel,
    .image-feature.reverse .feature-copy {
        order: initial;
    }

    .image-panel {
        height: 320px;
    }

    .feature-copy {
        text-align: center;
    }
}

/* =========================
RED THEME
========================= */

body.red-theme {
    background:
        radial-gradient(circle at top, rgba(255,45,45,.16), transparent 35%),
        radial-gradient(circle at bottom, rgba(255,45,45,.08), transparent 40%),
        #050505;
}

body.red-theme .logo,
body.red-theme .profile-photo {
    box-shadow:
        0 0 18px rgba(255,0,0,.48),
        0 0 42px rgba(255,0,0,.28),
        0 0 70px rgba(255,0,0,.14);
}

body.red-theme .profile-photo {
    border: 2px solid rgba(255,45,45,.65);
}

body.red-theme .badge {
    color: #ff3d3d;
    border-color: rgba(255,45,45,.60);
    background: rgba(255,45,45,.10);
}

body.red-theme .book-btn {
    background: linear-gradient(180deg, #ff3d3d, #d90000);
    box-shadow:
        0 0 15px rgba(255,0,0,.48),
        0 0 35px rgba(255,0,0,.28);
}

/* =========================
PINK THEME
========================= */

body.pink-theme {
    background:
        radial-gradient(circle at top, rgba(255,45,170,.18), transparent 35%),
        radial-gradient(circle at bottom, rgba(255,45,170,.10), transparent 40%),
        #050505;
}

body.pink-theme .logo {
    box-shadow:
        0 0 15px rgba(255,45,170,.50),
        0 0 35px rgba(255,45,170,.38),
        0 0 60px rgba(255,45,170,.22);
}

body.pink-theme .profile-photo {
    border: 2px solid rgba(255,45,170,.65);
    box-shadow:
        0 0 18px rgba(255,45,170,.50),
        0 0 42px rgba(255,45,170,.28),
        0 0 70px rgba(255,45,170,.14);
}

body.pink-theme .badge {
    color: #ff4fb8;
    border: 1px solid rgba(255,45,170,.60);
    background: rgba(255,45,170,.10);
    box-shadow:
        0 0 12px rgba(255,45,170,.30),
        inset 0 0 12px rgba(255,45,170,.08);
}

body.pink-theme .book-btn {
    background: linear-gradient(180deg, #ff5fc3, #ff1493);
    box-shadow:
        0 0 15px rgba(255,20,147,.48),
        0 0 35px rgba(255,20,147,.28);
}

body.pink-theme .book-btn:hover {
    box-shadow:
        0 0 20px rgba(255,20,147,.70),
        0 0 50px rgba(255,20,147,.38);
}

/* ==================================================
   BLUE THEME
================================================== */

body.blue-theme {
    background:
        radial-gradient(circle at top, rgba(45,140,255,.14), transparent 35%),
        radial-gradient(circle at bottom, rgba(45,140,255,.08), transparent 40%),
        #050505;
}

body.blue-theme .logo {
    box-shadow:
        0 0 15px rgba(45,140,255,.45),
        0 0 35px rgba(45,140,255,.35),
        0 0 60px rgba(45,140,255,.20);
}

body.blue-theme .profile-photo {
    border: 2px solid rgba(45,140,255,.5);
    box-shadow:
        0 0 20px rgba(45,140,255,.35),
        0 0 40px rgba(45,140,255,.15);
}

body.blue-theme .badge {
    border: 1px solid rgba(45,140,255,.5);
    color: #2D8CFF;
    background: rgba(45,140,255,.08);
}

body.blue-theme .book-btn {
    background: linear-gradient(
        180deg,
        #2D8CFF,
        #006DFF
    );

    box-shadow:
        0 0 15px rgba(45,140,255,.45),
        0 0 35px rgba(45,140,255,.25);
}

body.blue-theme .book-btn:hover {
    box-shadow:
        0 0 18px rgba(45,140,255,.65),
        0 0 45px rgba(45,140,255,.35);
}

/* =========================
PURPLE THEME
========================= */

body.purple-theme {
    background:
        radial-gradient(circle at top, rgba(142,68,255,.16), transparent 35%),
        radial-gradient(circle at bottom, rgba(142,68,255,.08), transparent 40%),
        #050505;
}

body.purple-theme .logo,
body.purple-theme .profile-photo {
    box-shadow:
        0 0 18px rgba(142,68,255,.48),
        0 0 42px rgba(142,68,255,.28),
        0 0 70px rgba(142,68,255,.14);
}

body.purple-theme .profile-photo {
    border: 2px solid rgba(142,68,255,.65);
}

body.purple-theme .badge {
    color: #b06cff;
    border-color: rgba(142,68,255,.60);
    background: rgba(142,68,255,.10);
}

body.purple-theme .book-btn {
    background: linear-gradient(180deg, #9a4dff, #6a00ff);
    box-shadow:
        0 0 15px rgba(142,68,255,.48),
        0 0 35px rgba(142,68,255,.28);
}

/* =========================
GREEN THEME
========================= */

body.green-theme {
    background:
        radial-gradient(circle at top, rgba(0,200,120,.15), transparent 35%),
        radial-gradient(circle at bottom, rgba(0,200,120,.08), transparent 40%),
        #050505;
}

body.green-theme .logo,
body.green-theme .profile-photo {
    box-shadow:
        0 0 18px rgba(0,200,120,.48),
        0 0 42px rgba(0,200,120,.28),
        0 0 70px rgba(0,200,120,.14);
}

body.green-theme .profile-photo {
    border: 2px solid rgba(0,200,120,.65);
}

body.green-theme .badge {
    color: #00d98b;
    border-color: rgba(0,200,120,.60);
    background: rgba(0,200,120,.10);
}

body.green-theme .book-btn {
    background: linear-gradient(180deg, #00d98b, #008f5a);
    box-shadow:
        0 0 15px rgba(0,200,120,.48),
        0 0 35px rgba(0,200,120,.28);
}

/* =========================
GOLD THEME
========================= */

body.gold-theme {
    background:
        radial-gradient(circle at top, rgba(255,190,60,.14), transparent 35%),
        radial-gradient(circle at bottom, rgba(255,190,60,.07), transparent 40%),
        #050505;
}

body.gold-theme .logo,
body.gold-theme .profile-photo {
    box-shadow:
        0 0 18px rgba(255,190,60,.48),
        0 0 42px rgba(255,190,60,.28),
        0 0 70px rgba(255,190,60,.14);
}

body.gold-theme .profile-photo {
    border: 2px solid rgba(255,190,60,.70);
}

body.gold-theme .badge {
    color: #ffc857;
    border-color: rgba(255,190,60,.65);
    background: rgba(255,190,60,.10);
}

body.gold-theme .book-btn {
    background: linear-gradient(180deg, #ffd36a, #b8860b);
    color: #111;
    box-shadow:
        0 0 15px rgba(255,190,60,.48),
        0 0 35px rgba(255,190,60,.28);
}


/* ==================================================
   PROFESSIONAL IDENTITY MODULE
================================================== */

.professional-section {
    margin-top: 36px;
    padding: 26px 24px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.035);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
    text-align: left;
}

.professional-section h2 {
    margin: 0 0 24px;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 900;
}

.professional-line {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
}

.verified-status {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

/* ==================================================
   SHARED PROFILE MODULE
================================================== */

.profile-module {
    display: none;
    margin-top: 30px;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}


body.blue-theme .verified-status {
    color: #2D8CFF;
}

body.red-theme .verified-status {
    color: #ff3d3d;
}

body.pink-theme .verified-status {
    color: #ff4fb8;
}

body.purple-theme .verified-status {
    color: #b06cff;
}

body.green-theme .verified-status {
    color: #00d98b;
}

body.gold-theme .verified-status {
    color: #ffc857;
}

/* ==================================================
   FLOW CTA MODULE
================================================== */

.flow-cta {
    margin-top: 34px;
    padding: 26px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    text-align: center;
}

.flow-cta p {
    margin: 0 0 18px;
    color: #d2d2d2;
    font-size: 15px;
    line-height: 1.5;
}

.flow-button {
    display: inline-block;
    padding: 13px 20px;
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.6px;
    border: 1px solid currentColor;
    background: rgba(255,255,255,0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.flow-button:hover {
    transform: translateY(-2px);
}

body.blue-theme .flow-button {
    color: #2D8CFF;
    box-shadow: 0 0 20px rgba(45,140,255,.18);
}

body.red-theme .flow-button {
    color: #ff3d3d;
    box-shadow: 0 0 20px rgba(255,45,45,.18);
}

body.pink-theme .flow-button {
    color: #ff4fb8;
    box-shadow: 0 0 20px rgba(255,45,170,.18);
}

body.purple-theme .flow-button {
    color: #b06cff;
    box-shadow: 0 0 20px rgba(142,68,255,.18);
}

body.green-theme .flow-button {
    color: #00d98b;
    box-shadow: 0 0 20px rgba(0,200,120,.18);
}

body.gold-theme .flow-button {
    color: #ffc857;
    box-shadow: 0 0 20px rgba(255,190,60,.18);
}

/* ==================================================
   STORY MODULE
================================================== */

#story-section{

    text-align:left;

}

.profile-module-title{

    font-size:30px;

    font-weight:900;

    margin-bottom:24px;

}

#story-content{

    font-size:17px;

    line-height:1.8;

    color:#f2f2f2;

}

#story-signature{

    margin-top:24px;

    font-size:15px;

    font-weight:700;

    opacity:.75;

}

/* ==================================================
   BATTLE HONORS MODULE
================================================== */

#honors-section {
    text-align: left;
}

#honors-container {
    display: grid;
    gap: 14px;
}

.honor-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.035);
}

.honor-icon {
    flex: 0 0 auto;
    font-size: 26px;
}

.honor-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.honor-details strong {
    color: #ffffff;
    font-size: 16px;
}

.honor-details span {
    color: #a5a5a5;
    font-size: 13px;
}