@charset "UTF-8";

/* =========================================
   Inner Page Global Styles
   ========================================= */
:root {
    --pl-inner-text-dark: #1A1A1A;
    --pl-inner-text-grey: #5F5F5F;
    --pl-inner-border: #EAEAEA;
    --pl-mission-img-bg: #0F2532; 
    --pl-primary-green: #C5D635;
    --pl-hover-green: #b4c424;
}


.pageTechnologyCon{
	margin-top:100px;
	padding-bottom:160px;
}

.pageApplicationsCon{
	margin-top:100px;
	padding-bottom:60px;
}


.pageVisionCon{
	padding-bottom:160px;
}

/* =========================================
   1. Mission Section (Pixel Perfect)
   ========================================= */
.pl-mission {
    padding: 120px 0;
    background-color: #fff;
	margin-top:80px;
	position:relative;
}

.pl-mission-title {
    font-size: 52px; 
    font-weight: 700;
    color: var(--pl-inner-text-dark);
    margin-bottom: 30px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.1;
}

.pl-mission-title span {
    color: var(--pl-primary-green);
    font-style: italic;
    font-weight: 600;
}

.pl-mission-desc {
    font-size: 21px;
    line-height: 1.6;
    color: #142D39;
    margin-bottom: 45px;
    max-width: 100%;
}

.btn-pl-mission {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background-color: #FBFCF0; 
    border: 1px solid #D6DF85;
    border-radius: 4px;
    color: #A3B220; 
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-pl-mission i {
    margin-left: 12px;
    font-size: 12px;
    transition: transform 0.3s;
}

.btn-pl-mission:hover {
    background-color: var(--pl-primary-green);
    border-color: var(--pl-primary-green);
    color: #fff;
}

.btn-pl-mission:hover i {
    transform: translateX(5px);
}

.pl-mission-img {
    width: 100%;
    height: 420px; 
    background-color: var(--pl-mission-img-bg);
    border-radius: 2px;
    background: url('../img/ourmission_con.jpg') no-repeat center;
    background-size: cover;
}

/* =========================================
   2. Disclaimer Section (Pixel Perfect)
   ========================================= */
.pl-disclaimer-section {
    padding: 80px 0 100px 0;
    background-color: #fff;
}

.pl-disclaimer-title {
    font-size: 45px;
    font-weight: 700;
    color: #142D39;
    line-height: 1.2;
    font-family: 'Open Sans', sans-serif;
}

.pl-disclaimer-title span {
    color: var(--pl-primary-green);
    font-style: italic;
    font-weight: 600;
    display: block; 
}

.pl-disclaimer-text p {
    font-size: 18px;
    color: #142D39;
	font-weight: 500;
    line-height: 1.6; 
    margin-bottom: 25px;
    text-align: left;
}
.pl-disclaimer-text p:last-child {
    margin-bottom: 0;
}

/* =========================================
   3. Important Notes Grid (Pixel Perfect)
   ========================================= */
.pl-notes {
    padding: 0 0 120px 0;
    background-color: #fff;
}

.pl-notes-header {
    font-size: 21px;
    font-weight: 700;
    color: #2F3A40;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    font-family: 'Open Sans', sans-serif;
}

.pl-note-card {
    border: 1px solid var(--pl-inner-border); 
    padding: 45px 35px;
    height: 100%;
    background-color: #fff;
    transition: transform 0.3s;
    border-radius: 2px;
}

.pl-note-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.pl-note-icon {
	max-height:80px;
    margin-bottom: 20px;
    display: block;
}

.pl-note-title {
    font-size: 21px;
    font-weight: 700;
    color: #142D39;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
}

.pl-note-text {
    font-size: 16px;
    color: #142D39;
    line-height: 1.6;
    margin: 0;
}


/* =========================================
   Energy Revolution Page Styles (Independent)
   ========================================= */

/* 1. Page Title Section */
.pl-rev-hero {
    padding: 60px 0 80px 0;
    background: #fff;
}
.pl-rev-main-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #142D39;
    margin-left: 5%; 
}
.pl-rev-main-title span {
    color: var(--pl-primary-green);
    font-style: italic;
    font-weight: 600;
}

/* 2. Industry Background Section (Left Text, Right Image) */
.pl-rev-centralization {
    padding: 60px 0 100px 0;
    background-color: #fff;
}

.pl-rev-tagline {
    font-size: 15px;
    color: #142D39;
    margin-bottom: 10px;
    font-weight: 500;
}

.pl-rev-heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #142D39;
    line-height: 1.2;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 25px; 
	font-style: italic;
}

.pl-rev-heading span {
    color: var(--pl-primary-green);
    font-style: italic;
    font-weight: 600;
}

.pl-rev-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #E0E8A0; 
}

.pl-rev-text {
    font-size: 18px;
    color: #142D39;
    line-height: 1.6;
    margin-bottom: 25px;
}

.pl-rev-highlight {
    color: #B4C424; 
    font-weight: 600;
}

.btn-pl-rev-outline {
	display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background-color: #FBFCF0;
    border: 1px solid #D6DF85;
    border-radius: 4px;
    color: #9CAC18;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 20px;
}
.btn-pl-rev-outline i {
    margin-left: 8px;
    font-size: 10px;
    transition: transform 0.3s;
}
.btn-pl-rev-outline:hover {
    border-color: var(--pl-primary-green);
    color: var(--pl-hover-green);
}
.btn-pl-rev-outline:hover i {
    transform: translateX(3px);
}

.pl-rev-img-box {
    width: 100%;
    height: 400px;
    background-color: #eee;
    background: url('../img/distributedenergy_con.jpg') no-repeat center;
    background-size: cover;
    border-radius: 2px;
}

/* 3. Market Opportunities Section (Left Image, Right Text with Yellow BG) */
.pl-rev-market {
    padding: 0 0 180px 0; 
    background-color: #fff;
}

.pl-rev-market-row {
    display: flex;
    flex-wrap: wrap;
}

.pl-rev-market-img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    background-color: #ddd;
    background: url('../img/electricitydemand_con.jpg') no-repeat center;
    background-size: cover;
}

.pl-rev-market-content {
    background-color: #FBFFDE; 
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}


.pl-rev-market-content .pl-rev-heading::after {
    background-color: #D6DF85; 
}


/* =========================================
   Token Economics Page Styles (Updated)
   ========================================= */

/* 1. Page Title & Hero Image */
.pl-token-hero {
    padding: 100px 0 60px 0;
    background: #fff;
	margin-top:100px;
}
.pl-token-main-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 48px; 
    font-weight: 700;
    color: #142D39;
    margin-bottom: 25px;
    font-style: italic; 
}
.pl-token-main-title span {
    color: var(--pl-primary-green);
    font-style: italic;
    font-weight: 600;
}
.pl-token-hero-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #444;
    max-width: 700px; 
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 500; 
}
.pl-token-hero-img {
    width: 100%;
    height: 420px;
    background-color: #EAF4F8;
    background: url('../img/pltoken-herobg.jpg') no-repeat center;
    background-size: cover;
    border-radius: 4px;
}

/* 2. Token Overview (Stats Cards) */
.pl-token-overview {
    padding: 80px 0;
    background-color: #fff;
}
.pl-token-section-header {
    margin-bottom: 60px;
}
.pl-token-heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #142D39;
    line-height: 1.1;
    font-style: italic;
}
.pl-token-heading span {
    color: var(--pl-primary-green);
    font-style: italic;
    font-weight: 600;
    display: block; 
}
.pl-token-desc-text {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #142D39;
    line-height: 1.7;
    font-weight: 500;
    text-align: left;
}

.pl-token-stat-card {
    border: 1px solid #F0F0F0; 
    padding: 45px 35px;
    border-radius: 6px;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03); 
    transition: transform 0.3s, box-shadow 0.3s;
}
.pl-token-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.pl-token-stat-icon {
    font-size: 24px;
    color: #fff; 
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pl-primary-green);
    width: 52px;
    height: 52px;
    border-radius: 50%;
}
.pl-token-stat-icon img{
	width:32px;
	height:32px;
}
.pl-token-stat-value {
    font-family: 'Open Sans', sans-serif;
    font-size: 45px; 
    font-weight: 700;
    color: #142D39;
    margin-bottom: 15px;
    line-height: 1;
    display: flex;
    align-items: baseline;
}
.pl-token-stat-value span {
    font-size: 24px; 
    font-weight: 500;
    color: #142D39;
    margin-left: 8px;
}
.pl-token-stat-label {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 3. Issuance Structure */
.pl-token-issuance {
    padding: 60px 0 100px 0;
    background-color: #fff;
}
.pl-token-issuance-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}
.pl-token-img-box {
    width: 100%;
    height: 380px;
    background-color: #eee;
    background: url('../img/supplymechanism_con.jpg') no-repeat center;
    background-size: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-pl-token-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background-color: #FBFCF0; 
    border: 1px solid #D6DF85; 
    border-radius: 4px;
    color: #9CAC18; 
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 20px;
}
.btn-pl-token-outline:hover {
    background-color: var(--pl-primary-green);
    border-color: var(--pl-primary-green);
    color: #fff;
}
.btn-pl-token-outline i { margin-left: 8px; font-size: 11px; }



/* =========================================
   4. Token Allocation (Pixel Perfect)
   ========================================= */
.pl-token-allocation {
    padding: 0px 0 80px 0;
    background-color: #fff;
}

.pl-token-allocation .container{
	padding-top: 120px;
	border-top:1px solid #C1CC5E;
}

.pl-token-alloc-header-row {
    margin-bottom: 60px;
}

.pl-token-alloc-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: #142D39;
    line-height: 1.6;
    max-width: 560px;
    margin-left: auto; 
    text-align: left;
}

.pl-token-alloc-subheader {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #142D39;
    margin-bottom: 30px;
    margin-top: -20px; 
}

.pl-token-alloc-card {
    border: 1px solid #DEDEDE;
    padding: 50px 40px 80px 40px; 
    border-radius: 8px;
    height: 100%;
    background-color: #fff;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.pl-token-alloc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.pl-token-alloc-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #142D39;
    margin-bottom: 15px;
}

.pl-token-alloc-text {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
    padding-right: 10px;
}

.pl-token-alloc-icon {
    position: absolute;
    bottom: 25px;
    right: 25px;
	max-height:80px;
    color: #B4C424; 
}

/* =========================================
   5. Lock-up Period (Yellow BG)
   ========================================= */
.pl-token-lockup {
    padding: 100px 0;
    background: #FAFFD8 url(../img/transferrestrictions_bg.png) center center no-repeat; 
    background-size:cover;
	margin-top: 0; 
}

.pl-token-lockup-text p {
    font-family: 'Roboto', sans-serif;
    font-size:21px;
    color: #222;
    line-height: 1.6;
    margin-bottom: 25px;
}

.pl-token-strong-text {
    font-weight: 700;
    color: #142D39;
}

/* =========================================
   6. Revenue Sources
   ========================================= */
.pl-token-revenue {
    padding: 100px 0;
    background-color: #fff;
}

.pl-token-rev-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.text-highlight-green {
    color: #B4C424;
    font-weight: 600;
}

.text-highlight-bold {
    color: #000;
    font-weight: 700;
}

.pl-token-rev-img {
    width: 100%;
    height: 420px;
    background: url('../img/distribution_mechanism_con.jpg') no-repeat center;
    background-size: contain; 
}