@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;700&display=swap');

:root {
    --bg: #0a0a0a;
    --accent: #f4a100;
    --text: #ffffff;
    --text-sub: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.6);
    --border: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    padding: 0;
}

.document {
    max-width: 1000px;
    margin: 0 auto;
    background: #0a0a0a;
    padding: 0;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.content-inner {
    padding: 3rem 4rem;
}

header {
    padding: 2rem 4rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.logo span {
    color: var(--accent);
}

.meta-status {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.4);
    padding: 0.35rem 1rem;
    border-radius: 4px;
    background: rgba(74, 222, 128, 0.05);
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.15);
    text-shadow: 0 0 8px rgba(74, 222, 128, 0.4);
    font-weight: 600;
}

h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--text);
}

h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    margin: 3rem 0 1rem;
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    color: var(--text);
}

h3 {
    font-size: 1.25rem;
    margin: 2rem 0 0.5rem;
    color: var(--text);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

strong {
    color: rgba(255, 255, 255, 0.7); /* Grey Bold */
}

ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    list-style: none; /* Custom bullets */
}

ul li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

ul li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

ol li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

ol li strong {
    color: var(--text-sub);
}

/* Subscription specific bolding */
ul strong {
    color: rgba(255, 255, 255, 0.7); /* Grey Bold */
}

/* Tables */
.table-container {
    margin: 3rem 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

th, td {
    padding: 1rem 1rem 1rem 0;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

th {
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--accent);
}

td {
    color: var(--text-muted);
}

td:nth-child(2), th:nth-child(2),
td:nth-child(3), th:nth-child(3) {
    text-align: center;
}

td:nth-child(4), th:nth-child(4) {
    text-align: right;
}

.highlight {
    color: var(--accent);
}

hr {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 4rem 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem;
    gap: 2rem;
    overflow: hidden;
    background: linear-gradient(90deg, #0a0a0a 40%, rgba(10,10,10,0) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 550px;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
}

.hero-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 0 30px rgba(244, 161, 0, 0.1);
    animation: floating 4s ease-in-out infinite, glowPulse 4s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 20px rgba(244, 161, 0, 0.1); }
    50% { box-shadow: 0 0 50px rgba(244, 161, 0, 0.3); }
    100% { box-shadow: 0 0 20px rgba(244, 161, 0, 0.1); }
}

.hero-tagline {
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-weight: 700;
}

footer {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

@media (max-width: 600px) {
    h1 { font-size: 2.25rem; }
    body { padding: 1rem 0.5rem; }
    header { 
        padding: 2rem 1.5rem; 
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }
    .meta-status {
        padding: 0.25rem 0.75rem;
        font-size: 0.65rem;
    }
    .content-inner { padding: 2rem 1.5rem; }
    .hero-section { padding: 3rem 1.5rem; }
}

/* 3D Mockup Graphics Shared Styling */
.mockup-graphic, .hero-image, .graphic-right, .graphic-left {
    border-radius: 24px;
    box-shadow: 0 0 30px rgba(244, 161, 0, 0.1);
    animation: floating 6s ease-in-out infinite, glowPulse 6s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Offset animations for a more natural feel */
.graphic-right { animation-delay: -1s; }
.graphic-left { animation-delay: -2s; }
.mockup-graphic { animation-delay: -3.5s; }

.mockup-graphic {
    width: 100%;
    max-width: 750px;
    max-height: 450px;
    object-fit: cover;
    display: block;
    margin: 3rem auto;
}

.review-graphic {
    max-width: 525px !important; /* 30% reduction from 750px */
    max-height: 350px !important;
}

.graphic-right {
    float: right;
    width: 380px;
    margin-left: 2.5rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.graphic-left {
    float: left;
    width: 380px;
    margin-right: 2.5rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

/* Clearfix for floating graphics */
h2, hr, .table-container, .full-width-graphic {
    clear: both;
}

@media (max-width: 900px) {
    .graphic-right, .graphic-left, .review-graphic {
        float: none;
        width: 100% !important;
        max-width: 100% !important;
        margin: 2rem 0;
    }
    .hero-section {
        flex-direction: column;
        padding: 3rem 1.5rem;
        text-align: center;
        min-height: auto;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-image-container {
        justify-content: center;
        margin-top: 2rem;
    }
}

.roi-engine {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 4rem;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.roi-engine h2 {
    margin-top: 0;
    border: none;
    padding-left: 0;
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 4rem;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.inputs-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.input-section h4 {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.input-section h4::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.05);
}

.inputs-pane {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label-row label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
}

.value-display {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Results Display */
.results-pane {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.result-main {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.result-main .result-label {
    color: var(--accent);
    font-size: 0.85rem;
}

.result-main .result-value {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 0.5rem 0;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.breakdown-row span:last-child {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text);
}

.breakdown-row.total-investment {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    border-bottom: none;
    color: #4ade80;
}

.silent-sales-panel {
    margin-top: 1rem;
}

.silent-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.silent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.silent-metric {
    background: rgba(255,255,255,0.03);
    padding: 1rem;
    border-radius: 12px;
}

.silent-metric span {
    display: block;
}

.silent-metric .s-val {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #f4a100;
}

.silent-metric .s-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

@media (max-width: 1000px) {
    .calculator-grid { grid-template-columns: 1fr; gap: 4rem; }
}

@media (max-width: 600px) {
    .inputs-pane { grid-template-columns: 1fr; }
    .roi-engine { padding: 2rem 1.5rem; }
}
